From b361f8a12e89e531ba385d05849ea8102b24827b Mon Sep 17 00:00:00 2001 From: Valentin Charbonnier Date: Fri, 27 Oct 2017 15:46:35 +0200 Subject: [PATCH] Fixes --- .../Aura OS/Shell/cmdIntr/FileSystem/Mkfil.cs | 2 +- Aura Operating System/Aura OS/System/Translation/Text/Text.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Aura Operating System/Aura OS/Shell/cmdIntr/FileSystem/Mkfil.cs b/Aura Operating System/Aura OS/Shell/cmdIntr/FileSystem/Mkfil.cs index b878216..5d4f62f 100644 --- a/Aura Operating System/Aura OS/Shell/cmdIntr/FileSystem/Mkfil.cs +++ b/Aura Operating System/Aura OS/Shell/cmdIntr/FileSystem/Mkfil.cs @@ -52,7 +52,7 @@ public static void c_mkfil(string mkfil, short startIndex = 0, short count = 6) } else { - L.Text.Display("alreadyexist"); + L.Text.Display("alreadyexist", file); } } } diff --git a/Aura Operating System/Aura OS/System/Translation/Text/Text.cs b/Aura Operating System/Aura OS/System/Translation/Text/Text.cs index 8a8178a..34e042f 100644 --- a/Aura Operating System/Aura OS/System/Translation/Text/Text.cs +++ b/Aura Operating System/Aura OS/System/Translation/Text/Text.cs @@ -63,7 +63,7 @@ public static void Display(string ToTranslate, string arg = "", string arg2 = "" Console.WriteLine(arg + " n'existe pas !"); break; case "alreadyexist": - Console.WriteLine(arg + " existe deja !"); + Console.WriteLine(arg + " existe déjà !"); break; case "Computername": Console.WriteLine("Nom du PC: " + Kernel.ComputerName); @@ -263,7 +263,7 @@ public static void Display(string ToTranslate, string arg = "", string arg2 = "" Console.WriteLine(arg + " does not exist!"); break; case "alreadyexist": - Console.WriteLine(arg + " already exist!"); + Console.WriteLine(arg + " already exists!"); break; case "Computername": Console.WriteLine("Computer name: " + Kernel.ComputerName);