-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73475d5
commit ccb0eea
Showing
11 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export const fr = { | ||
media: { | ||
title: 'Dossiers', | ||
download: 'Télécharger un fichier', | ||
properties: 'Propriétés', | ||
files: { | ||
title: 'Les fichiers chargés' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import {de} from './de.js'; | ||
import {en} from './en.js'; | ||
import {fr} from './fr.js'; | ||
|
||
export const locales = {de, en}; | ||
export const locales = {de, en, fr}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export const fr = { | ||
micropub: { | ||
title: 'Articles', | ||
microformats: 'Microformats pour cet article', | ||
properties: 'Propriétés', | ||
posts: { | ||
title: 'Article publié' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import {de} from './de.js'; | ||
import {en} from './en.js'; | ||
import {fr} from './fr.js'; | ||
|
||
export const locales = {de, en}; | ||
export const locales = {de, en, fr}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export const fr = { | ||
share: { | ||
title: 'Transmettre', | ||
'bookmark-of': 'URL', | ||
name: 'Titre', | ||
content: 'Contenu', | ||
submit: 'Publier', | ||
error: { | ||
'bookmark-of': 'Tapez une addresse Web comme https://example.org', | ||
name: 'Tapez un titre' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import {de} from './de.js'; | ||
import {en} from './en.js'; | ||
import {fr} from './fr.js'; | ||
|
||
export const locales = {de, en}; | ||
export const locales = {de, en, fr}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export const fr = { | ||
error: 'Erreur', | ||
errorSummaryTitle: 'Il y a un problème', | ||
noValue: 'Pas encore défini', | ||
optionalValue: '(facultatif)', | ||
guidance: { | ||
discovery: 'Alors que {{app}} peut être repéré par les clients Micropub et demander l’autorisation de publier sur votre site, ajoutez les valeurs suivantes à la partie `<head>` de votre site web:' | ||
}, | ||
session: { | ||
login: { | ||
title: 'Se connecter', | ||
description: 'Connectez-vous avec IndieAuth pour vérifier que %s vous appartient', | ||
me: 'Adresse web', | ||
submit: 'Connectez-vous avec IndieAuth', | ||
error: { | ||
validateState: 'code manquant ou décalage état' | ||
} | ||
}, | ||
logout: { | ||
title: 'Déconnexion' | ||
} | ||
}, | ||
status: { | ||
title: 'Statut du serveur', | ||
application: { | ||
summaryTitle: 'Paramètres de l’application', | ||
name: 'Nom de l’application', | ||
locale: 'Langue', | ||
localeNotAvailable: '{{ app }} n’a pas encore été traduit en {{ locale }}', | ||
themeColor: 'Couleur de thème', | ||
themeColorScheme: 'Schéma de couleurs du thème', | ||
themeColorSchemeValue: { | ||
automatic: 'Automatique', | ||
light: 'Lumière', | ||
dark: 'Sombre' | ||
}, | ||
endpoints: 'Endpoints' | ||
}, | ||
publication: { | ||
summaryTitle: 'Paramètres de Puplication', | ||
me: 'Adresse web', | ||
locale: 'Langue', | ||
timeZone: 'Fuseau horaire', | ||
store: 'Magasin de contenu', | ||
preset: 'Préréglage', | ||
postTypes: 'Types de article', | ||
syndicationTargets: 'Cibles de syndication', | ||
mediaEndpoint: 'Media endpoint' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import {de} from './de.js'; | ||
import {en} from './en.js'; | ||
import {fr} from './fr.js'; | ||
|
||
export const locales = {de, en}; | ||
export const locales = {de, en, fr}; |