Skip to content

Commit

Permalink
Replace the term upload library to add library in translation files
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed May 14, 2024
1 parent 680dee3 commit 4b9c62a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion frontend/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,14 @@
"packager": "Packager",
"dependencies": "Dependencies",
"copyright": "Copyright",
"uploadYourLibrary": "Upload your own library",
"addYourLibrary": "Add your own library",
"libraryFileInYaml": "Library file in YAML format",
"importBackup": "Import backup",
"exportBackup": "Export backup",
"confirmImportBackup": "Are you sure you want to import this backup? This will overwrite all existing data.",
"exportDatabase": "Export database",
"upload": "Upload",
"add": "Add",
"undefined": "--",
"production": "Production",
"design": "Design",
Expand Down
3 changes: 2 additions & 1 deletion frontend/messages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,14 @@
"packager": "Éditeur",
"dependencies": "Dépendances",
"copyright": "Copyright",
"uploadYourLibrary": "Téléchargez votre propre bibliothèque",
"addYourLibrary": "Ajouter votre propre bibliothèque",
"libraryFileInYaml": "Fichier de librairie en format YAML",
"importBackup": "Importer une sauvegarde",
"exportBackup": "Exporter une sauvegarde",
"confirmImportBackup": "Êtes-vous sûr de vouloir importer cette sauvegarde ? Cela écrasera toutes les données existantes.",
"exportDatabase": "Exporter la base de données",
"upload": "Télécharger",
"add": "Ajouter",
"undefined": "--",
"production": "Production",
"design": "Conception",
Expand Down
3 changes: 2 additions & 1 deletion frontend/messages/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,14 @@
"packager": "Empacotador",
"dependencies": "Dependências",
"copyright": "Direitos autorais",
"uploadYourLibrary": "Carregue sua própria biblioteca",
"addYourLibrary": "Adicione sua própria biblioteca",
"libraryFileInYaml": "Arquivo de biblioteca no formato YAML",
"importBackup": "Importar backup",
"exportBackup": "Exportar backup",
"confirmImportBackup": "Você tem certeza de que deseja importar este backup? Isso substituirá todos os dados existentes.",
"exportDatabase": "Exportar banco de dados",
"upload": "Carregar",
"add": "Adicionar",
"undefined": "--",
"production": "Produção",
"design": "Design",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/routes/(app)/libraries/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@
{form}
helpText={m.libraryFileInYaml()}
field="file"
label={m.uploadYourLibrary()}
label={m.addYourLibrary()}
/>

<button
class="btn variant-filled-primary font-semibold w-full"
data-testid="save-button"
type="submit">{m.upload()}</button
type="submit">{m.add()}</button
>
</SuperForm>
{:catch err}
Expand Down

0 comments on commit 4b9c62a

Please sign in to comment.