Skip to content

Commit 813bf78

Browse files
committed
Fix some minor bugs
1 parent 5e557a5 commit 813bf78

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

GitAutoUpdateGUI/FormMain.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1684,6 +1684,7 @@ private void buttonCreateBackupScript_Click(object sender, EventArgs e)
16841684
return;
16851685
}
16861686

1687+
Logger.Clear(textBoxLog);
16871688
Logger.Add(textBoxLog, Translate("Creating the GitCloneBackup.bat script"));
16881689
Logger.Add(textBoxLog, Translate("Listing Visual Studio solutions with Git"));
16891690
listViewVSProjects.Items.Clear();
@@ -1741,11 +1742,11 @@ private void buttonCreateBackupScript_Click(object sender, EventArgs e)
17411742
}
17421743
}
17431744
}
1745+
}
17441746

1745-
Logger.Add(textBoxLog, projectCount + Punctuation.OneSpace + Translate("project") + Plural(projectCount) +
1747+
Logger.Add(textBoxLog, projectCount + Punctuation.OneSpace + Translate("project") + Plural(projectCount) +
17461748
Punctuation.OneSpace + Translate(Plural(projectCount, "has")) + Punctuation.OneSpace +
17471749
Translate("been found") + FrenchPlural(projectCount, _currentLanguage));
1748-
}
17491750

17501751
// if no selected project has been checked, display message
17511752
var selectedProjects = listViewVSProjects.CheckedItems;

GitAutoUpdateGUI/Translations.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -549,16 +549,16 @@
549549
<englishValue>The config file doesn't exist in</englishValue>
550550
<frenchValue>Le fichier config n'existe pas</frenchValue>
551551
</term>
552-
<!--<term>
553-
<name></name>
554-
<englishValue></englishValue>
555-
<frenchValue></frenchValue>
556-
</term>-->
557-
<!--<term>
558-
<name></name>
559-
<englishValue></englishValue>
560-
<frenchValue></frenchValue>
561-
</term>-->
552+
<term>
553+
<name>Adding the gitted project</name>
554+
<englishValue>Adding the gitted project</englishValue>
555+
<frenchValue>Ajout du projet git</frenchValue>
556+
</term>
557+
<term>
558+
<name>Creating the GitCloneBackup.bat script</name>
559+
<englishValue>Creating the GitCloneBackup.bat script</englishValue>
560+
<frenchValue>Création du script GitCloneBackup.bat</frenchValue>
561+
</term>
562562
<!--<term>
563563
<name></name>
564564
<englishValue></englishValue>

0 commit comments

Comments
 (0)