Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Oct 27, 2017
1 parent a71f34e commit b361f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions Aura Operating System/Aura OS/System/Translation/Text/Text.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit b361f8a

Please sign in to comment.