FIX: Correct a little type in French language.

FIX: Correct few typos in the TC related unit.
This commit is contained in:
Denis Bisson 2018-11-07 03:46:45 +00:00
commit 4dc3b8a831
2 changed files with 7 additions and 8 deletions

View file

@ -25,7 +25,7 @@ msgstr ""
"Project-Id-Version: Double Commander 0.5.1 beta\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-01-17 23:08+0300\n"
"PO-Revision-Date: 2018-11-04 11:06-0500\n"
"PO-Revision-Date: 2018-11-06 22:42-0500\n"
"Last-Translator: Denis Bisson <denis.bisson@denisbisson.org>\n"
"Language-Team: Zebulon Tourneboulle <zebulon.tourneboulle@gmail.com>\n"
"MIME-Version: 1.0\n"
@ -10140,7 +10140,7 @@ msgstr "Par nom de commande;Par raccourcis-clavier (groupé);Par raccourcis-clav
#: ulng.rsimporttoolbarproblem
msgid "Cannot find reference to default bar file"
msgstr "On ne troube pas de rérérence à la barre par défaut"
msgstr "On ne trouve pas de rérérence à la barre par défaut"
#: ulng.rslistoffindfileswindows
msgid "List of \"Find files\" windows"
@ -12861,4 +12861,3 @@ msgstr "Nombre de remplacements : %d"
#: ulng.rszeroreplacement
msgid "No replacement took place."
msgstr "Aucun remplacement n'a eu lieu."

View file

@ -785,14 +785,14 @@ end;
{ GetTotalCommandeMainBarFilename }
// We'll return the TC main bar filename.
// At the same time, since we're in the config file, we'll determine the icon size for the button bar.
// TC attemts to save the "default.bar" file in the same location as the executable.
// TC attempts to save the "default.bar" file in the same location as the executable.
// When it can, it will be located there.
// If not, it will store it in the same location as the ini file.
// Obviously, if it's somewhere else or no matter what, it will also have it store its location in the ini file in the section "Buttonbar" under the variable "Buttonbar".
// Obviously, if it's configured somewhere else by the user, its location will be stored into the ini file in the section "Buttonbar" under the variable "Buttonbar".
// So the flow to find it would be something like that:
// 1.Let's attempt to read it from "Buttonbar/Buttonbar" from the ini file. If it's there, we may quick searching and exit with that.
// 2.If it was not found, let's attempt to see if we have one in the same directory as the ini config file. If it's there, we may quick searching and exit with that.
// 3.If we still don't have one, let's check if it is in the same folder as the installer... and it will have to be!
// 1.Let's attempt to read it from "Buttonbar/Buttonbar" from the ini file. If it's there, we may quit searching and exit with that.
// 2.If it was not found, let's attempt to see if we have one in the same directory as the ini config file. If it's there, we may quit searching and exit with that.
// 3.If we still don't have one, let's check if it is in the same folder as the executable itself... And it will have to be there!
function GetTotalCommandeMainBarFilename: string;
var
TCMainConfigFile: TIniFileEx;