1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-08 15:06:08 +02:00

Fixing translation extraction

This commit is contained in:
Jesús Espino 2021-03-30 21:35:48 +02:00
parent ad50065699
commit 53a6331a05
2 changed files with 15 additions and 5 deletions

View File

@ -1,7 +1,4 @@
{ {
"BoardCard.delete": "Delete",
"BoardCard.duplicate": "Duplicate",
"BoardCard.untitled": "Untitled",
"BoardComponent.add-a-group": "+ Add a group", "BoardComponent.add-a-group": "+ Add a group",
"BoardComponent.delete": "Delete", "BoardComponent.delete": "Delete",
"BoardComponent.hidden-columns": "Hidden columns", "BoardComponent.hidden-columns": "Hidden columns",
@ -23,15 +20,26 @@
"ContentBlock.Delete": "Delete", "ContentBlock.Delete": "Delete",
"ContentBlock.DeleteAction": "delete", "ContentBlock.DeleteAction": "delete",
"ContentBlock.addElement": "add {type}", "ContentBlock.addElement": "add {type}",
"ContentBlock.checkbox": "checkbox",
"ContentBlock.divider": "divider",
"ContentBlock.editCardCheckbox": "toggled-checkbox",
"ContentBlock.editCardCheckboxText": "edit card text",
"ContentBlock.editCardText": "edit card text",
"ContentBlock.editText": "Edit text...",
"ContentBlock.image": "image",
"ContentBlock.insertAbove": "Insert above", "ContentBlock.insertAbove": "Insert above",
"ContentBlock.moveDown": "Move down", "ContentBlock.moveDown": "Move down",
"ContentBlock.moveUp": "Move up", "ContentBlock.moveUp": "Move up",
"ContentBlock.text": "text",
"Filter.includes": "includes", "Filter.includes": "includes",
"Filter.is-empty": "is empty", "Filter.is-empty": "is empty",
"Filter.is-not-empty": "is not empty", "Filter.is-not-empty": "is not empty",
"Filter.not-includes": "doesn't include", "Filter.not-includes": "doesn't include",
"FilterComponent.add-filter": "+ Add filter", "FilterComponent.add-filter": "+ Add filter",
"FilterComponent.delete": "Delete", "FilterComponent.delete": "Delete",
"KanbanCard.delete": "Delete",
"KanbanCard.duplicate": "Duplicate",
"KanbanCard.untitled": "Untitled",
"Mutator.duplicate-board": "duplicate board", "Mutator.duplicate-board": "duplicate board",
"Mutator.new-board-from-template": "new board from template", "Mutator.new-board-from-template": "new board from template",
"Mutator.new-card-from-template": "new card from template", "Mutator.new-card-from-template": "new card from template",
@ -96,6 +104,7 @@
"Sidebar.set-theme": "Set theme", "Sidebar.set-theme": "Set theme",
"Sidebar.settings": "Settings", "Sidebar.settings": "Settings",
"Sidebar.spanish": "Spanish", "Sidebar.spanish": "Spanish",
"Sidebar.system-theme": "System theme",
"Sidebar.template-from-board": "New template from board", "Sidebar.template-from-board": "New template from board",
"Sidebar.turkish": "Turkish", "Sidebar.turkish": "Turkish",
"Sidebar.untitled": "Untitled", "Sidebar.untitled": "Untitled",
@ -113,6 +122,7 @@
"TableHeaderMenu.sort-descending": "Sort descending", "TableHeaderMenu.sort-descending": "Sort descending",
"TableRow.open": "Open", "TableRow.open": "Open",
"View.NewBoardTitle": "Board view", "View.NewBoardTitle": "Board view",
"View.NewGalleryTitle": "Gallery view",
"View.NewTableTitle": "Table view", "View.NewTableTitle": "Table view",
"ViewHeader.add-template": "+ New template", "ViewHeader.add-template": "+ New template",
"ViewHeader.delete-template": "Delete", "ViewHeader.delete-template": "Delete",
@ -137,5 +147,5 @@
"ViewTitle.remove-icon": "Remove icon", "ViewTitle.remove-icon": "Remove icon",
"ViewTitle.show-description": "show description", "ViewTitle.show-description": "show description",
"ViewTitle.untitled-board": "Untitled board", "ViewTitle.untitled-board": "Untitled board",
"WorkspaceComponent.editing-board-template": "You're editing a board template" "Workspace.editing-board-template": "You're editing a board template"
} }

View File

@ -10,7 +10,7 @@
"test": "jest", "test": "jest",
"check": "eslint --ext .tsx,.ts . --quiet --cache", "check": "eslint --ext .tsx,.ts . --quiet --cache",
"fix": "eslint --ext .tsx,.ts . --quiet --fix --cache", "fix": "eslint --ext .tsx,.ts . --quiet --fix --cache",
"i18n-extract": "formatjs extract src/**/*.tsx src/**/*.ts --out-file i18n/tmp.json; formatjs compile i18n/tmp.json --out-file i18n/en.json; rm i18n/tmp.json", "i18n-extract": "formatjs extract src/*/*/*.ts? src/*/*.ts? src/*.ts? --out-file i18n/tmp.json; formatjs compile i18n/tmp.json --out-file i18n/en.json; rm i18n/tmp.json",
"runserver-test": "cd cypress && FOCALBOARD_SINGLE_USER_TOKEN=TESTTOKEN ../../bin/focalboard-server -single-user", "runserver-test": "cd cypress && FOCALBOARD_SINGLE_USER_TOKEN=TESTTOKEN ../../bin/focalboard-server -single-user",
"cypress:ci": "start-server-and-test runserver-test http://localhost:8088 cypress:run", "cypress:ci": "start-server-and-test runserver-test http://localhost:8088 cypress:run",
"cypress:run": "cypress run", "cypress:run": "cypress run",