-
-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the translation information into i18n.js
This will an initialization problem. Sometimes the translation has wasn't initialized, but the translation for a given was requested, that lead to untranslated string in the UI.
- Loading branch information
1 parent
decb42d
commit d44a7c3
Showing
6 changed files
with
32 additions
and
51 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
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,28 @@ | ||
export const en = { | ||
allowed_chars: "of %{count} chars", | ||
cancel: "Cancel", | ||
cancelled: "Cancelled", | ||
click_to_edit: "click to edit", | ||
complete: "Complete", | ||
element_dirty_notice: | ||
"This element has unsaved changes. Do you really want to fold it?", | ||
help: "Help", | ||
ok: "Ok", | ||
page_dirty_notice: | ||
"You have unsaved changes on this page. They will be lost if you continue.", | ||
page_found: "Page found", | ||
pages_found: "Pages found", | ||
url_validation_failed: "The url has no valid format.", | ||
warning: "Warning!", | ||
"File is too large": "File is too large", | ||
"File is too small": "File is too small", | ||
"File type not allowed": "File type not allowed", | ||
"Maximum number of files exceeded": "Maximum number of files exceeded.", | ||
"Uploaded bytes exceed file size": "Uploaded bytes exceed file size", | ||
formats: { | ||
datetime: "Y-m-d H:i", | ||
date: "Y-m-d", | ||
time: "H:i", | ||
time_24hr: false | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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