Skip to content

Commit

Permalink
fix(i18n): wrong fr translate fn
Browse files Browse the repository at this point in the history
See-also: logseq#10868
  • Loading branch information
andelf committed Jan 18, 2024
1 parent 1bacfe9 commit 5efbf48
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/resources/dicts/fr.edn
Original file line number Diff line number Diff line change
Expand Up @@ -806,5 +806,15 @@
:settings-page/auto-chmod "Automatiquement changer les permissions du fichier"
:settings-page/auto-chmod-desc "Désactiver pour permettre l'édition par plusieurs utilisateurs avec les permissions données par l'appartenance au groupe."
:settings-page/tab-keymap "Raccourcis"
:unlinked-references/reference-count (fn [total] (cond (= total "") "Références non liées" (= total 0) "Aucune référence non liée" (= total 1) "1 référence non liée" (> total 1) (str total " références non liées")))
}
:unlinked-references/reference-count (fn [total]
(cond
(or (nil? total) (= total ""))
"Références non liées"
(= total 0)
"Aucune référence non liée"
(= total 1)
"1 référence non liée"
(> total 1)
(str total " références non liées")
:else
"Références non liées"))}

0 comments on commit 5efbf48

Please sign in to comment.