Skip to content

Commit

Permalink
Merge pull request #201 from alizeegagnon/french_translation
Browse files Browse the repository at this point in the history
Fixed fr_FR translation and added french canadian translation
  • Loading branch information
MrGlockenspiel committed Apr 10, 2024
2 parents 6061af6 + 0cb7f77 commit e0b4833
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/i18n.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#endif


// Compare 5 fist chars from strings
// Compare 5 first chars from strings
#define match_str(match, with) (match && with && (strncmp(match, with, 5) == 0))
// Length of array
#define length(array) (sizeof(array) / sizeof(array[0]))
Expand All @@ -33,7 +33,9 @@ i18n_info_soup langs[] = {
{"No hay necesidad de activar ", "", "No somos tan molestos como Microsoft."}},
{"de_DE", {"", " aktivieren", "Wechseln Sie zu den Einstellungen, um ", " zu aktivieren."},
{"", " muss nicht aktiviert werden", "Wir sind nicht so lästig wie Microsoft."}},
{"fr_FR", {"Activer ", "", "Aller en les paramètres pour activer ", "."},
{"fr_CA", {"Activez ", "", "Accédez aux paramètres pour activer ", "."},
{"Pas besoin d'activer", "", "Nous ne sommes pas aussi gossants que Microsoft."}},
{"fr_FR", {"Activez ", "", "Accédez aux paramètres pour activer ", "."},
{"Pas besoin d'activer", "", "Nous ne sommes pas aussi agaçants que Microsoft."}},
{"it_IT", {"Attiva ", "", "Passa a Impostazioni per attivare ", "."},
{NULL, NULL, NULL}},
Expand Down

0 comments on commit e0b4833

Please sign in to comment.