-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: inline english texts if no translation is fetched (#479)
- Loading branch information
Showing
8 changed files
with
83 additions
and
48 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
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
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,26 @@ | ||
const MULTIINPUT_SHOW_MORE_TOKENS = { | ||
key: "MULTIINPUT_SHOW_MORE_TOKENS", | ||
defaultText: "{0} More", | ||
}; | ||
|
||
const TEXTAREA_CHARACTERS_LEFT = { | ||
key: "TEXTAREA_CHARACTERS_LEFT", | ||
defaultText: "{0} characters remaining", | ||
}; | ||
|
||
const TEXTAREA_CHARACTERS_EXCEEDED = { | ||
key: "TEXTAREA_CHARACTERS_EXCEEDED", | ||
defaultText: "{0} characters over limit", | ||
}; | ||
|
||
const PANEL_ICON = { | ||
key: "PANEL_ICON", | ||
defaultText: "Expand/Collapse", | ||
}; | ||
|
||
export { | ||
MULTIINPUT_SHOW_MORE_TOKENS, | ||
TEXTAREA_CHARACTERS_LEFT, | ||
TEXTAREA_CHARACTERS_EXCEEDED, | ||
PANEL_ICON, | ||
}; |
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