-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'pu/ccheng/lang_minutes' into '2024.11'
fix(translation): fix translation for format message See merge request tine20/tine20!6388
- Loading branch information
Showing
16 changed files
with
143 additions
and
14 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 |
---|---|---|
|
@@ -5,7 +5,6 @@ msgstr "" | |
"PO-Revision-Date: 2008-07-29 21:14+0100\n" | ||
"Last-Translator: Cornelius Weiss <[email protected]>\n" | ||
"Language-Team: Tine 2.0 Translators\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
@@ -126,6 +125,9 @@ msgstr "Save Copy As" | |
msgid "Exporting Document ..." | ||
msgstr "Exporting Document ..." | ||
|
||
msgid "Version details for version { version } not available." | ||
msgstr "Version details for version { version } not available." | ||
|
||
msgid "Overwrite Existing File?" | ||
msgstr "Overwrite Existing File?" | ||
|
||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ Ext.namespace('Tine.Timetracker'); | |
* <p><pre> | ||
* </pre></p> | ||
* | ||
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3 | ||
* @license http://www.gnu.org/licenses/agpl.html AGPL Version 3q | ||
* @author Philipp Schüle <[email protected]> | ||
* | ||
* @param {Object} config | ||
|
@@ -88,12 +88,12 @@ Tine.Timetracker.TimesheetGridPanel = Ext.extend(Tine.widgets.grid.GridPanel, { | |
this.pagingToolbar.items.get('wt-bar').update(Ext.ux.PercentRenderer({ | ||
qtitle: this.app.i18n._('Working Time Statistics'), | ||
qtip: | ||
this.app.formatMessage(`Working Time Target: { target }`, { | ||
this.app.formatMessage('Working Time Target: { target }', { | ||
target: Ext.ux.form.DurationSpinner.durationRenderer(data.workingTimeTarget, { | ||
baseUnit: 'seconds' | ||
}) | ||
}) + "<br>" + | ||
this.app.formatMessage(`Working Time Recorded: { recorded }`, { | ||
this.app.formatMessage('Working Time Recorded: { recorded }', { | ||
recorded: Ext.ux.form.DurationSpinner.durationRenderer(data.totalsum || 0, { | ||
baseUnit: 'minutes' | ||
}) | ||
|
@@ -108,8 +108,8 @@ Tine.Timetracker.TimesheetGridPanel = Ext.extend(Tine.widgets.grid.GridPanel, { | |
this.pagingToolbar.items.get('to-bar').update(Ext.ux.PercentRenderer({ | ||
qtitle: this.app.i18n._('Turnover Statistics'), | ||
qtip: | ||
this.app.formatMessage(`Turnover Target: { target }`, {target: Ext.util.Format.money(data.turnOverGoal)}) + "<br>" + | ||
this.app.formatMessage(`Turnover Recorded: { recorded }`, {recorded: Ext.util.Format.money(data.clearedAmount || 0)}), | ||
this.app.formatMessage('Turnover Target: { target }', {target: Ext.util.Format.money(data.turnOverGoal)}) + "<br>" + | ||
this.app.formatMessage('Turnover Recorded: { recorded }', {recorded: Ext.util.Format.money(data.clearedAmount || 0)}), | ||
percent: Math.round(100 * (data.clearedAmount || 0) / data.turnOverGoal) | ||
})); | ||
} | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ msgstr "" | |
"PO-Revision-Date: 2008-07-29 21:14+0100\n" | ||
"Last-Translator: Cornelius Weiss <[email protected]>\n" | ||
"Language-Team: Tine 2.0 Translators\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
@@ -240,9 +239,21 @@ msgstr "Turnover:" | |
msgid "Working Time Statistics" | ||
msgstr "Working Time Statistics" | ||
|
||
msgid "Working Time Target: { target }" | ||
msgstr "Working Time Target: { target }" | ||
|
||
msgid "Working Time Recorded: { recorded }" | ||
msgstr "Working Time Recorded: { recorded }" | ||
|
||
msgid "Turnover Statistics" | ||
msgstr "Turnover Statistics" | ||
|
||
msgid "Turnover Target: { target }" | ||
msgstr "Turnover Target: { target }" | ||
|
||
msgid "Turnover Recorded: { recorded }" | ||
msgstr "Turnover Recorded: { recorded }" | ||
|
||
msgid "timeframe" | ||
msgstr "timeframe" | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ msgstr "" | |
"PO-Revision-Date: 2008-07-29 21:14+0100\n" | ||
"Last-Translator: Cornelius Weiss <[email protected]>\n" | ||
"Language-Team: Tine 2.0 Translators\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
@@ -489,6 +488,12 @@ msgstr "URI of the sentry service in the following format: https://<key>:<secret | |
msgid "Sentry Loglevel Bitmask" | ||
msgstr "Sentry Loglevel Bitmask" | ||
|
||
msgid "Sentry Environment" | ||
msgstr "Sentry Environment" | ||
|
||
msgid "One of: AUTODETECT, PRODUCTION, TEST, DEVELOPMENT" | ||
msgstr "One of: AUTODETECT, PRODUCTION, TEST, DEVELOPMENT" | ||
|
||
msgid "API key to access status URI" | ||
msgstr "API key to access status URI" | ||
|
||
|
@@ -1397,6 +1402,18 @@ msgstr "No Information" | |
msgid "No Access" | ||
msgstr "No Access" | ||
|
||
#, python-brace-format | ||
msgid "{0} minute" | ||
msgid_plural "{0} minutes" | ||
msgstr[0] "{0} minute" | ||
msgstr[1] "{0} minutes" | ||
|
||
#, python-brace-format | ||
msgid "{0} hour" | ||
msgid_plural "{0} hours" | ||
msgstr[0] "{0} hour" | ||
msgstr[1] "{0} hours" | ||
|
||
#, python-brace-format | ||
msgid "{0} second" | ||
msgid_plural "{0} seconds" | ||
|
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