Manual Translation file/list
Hi,
We have a problem with the existing translations and phrases used in our local and English language.
I would like a page where we can export / import the translation file used so we can change everything we want to in both our local language and in English.
We now do that via a very "dirty"-method, using CSS to remove/hide the default text and add the text we want.
This however, does not change when user changes language on the Help Center.
Example:
- /*Replace text in newticket form - orange button*/
- .Button__btnFont.Button__primary.commonStyle__zt3buttonPrimaryBg.commonStyle__zt3buttonPrimaryText.Button__buttonCommon.commonStyle__cursor.commonStyle__tAlignCenter.commonStyle__inlineBlock.commonStyle__outlineNone.commonStyle__overflowDotted {
- text-indent: -9999px;
- line-height: 0; /* Collapse the original line */
- }
- .Button__btnFont.Button__primary.commonStyle__zt3buttonPrimaryBg.commonStyle__zt3buttonPrimaryText.Button__buttonCommon.commonStyle__cursor.commonStyle__tAlignCenter.commonStyle__inlineBlock.commonStyle__outlineNone.commonStyle__overflowDotted:after {
- content: "Registreren";
- text-indent: 0;
- display: block;
- line-height: initial; /* New content takes up original line height */
- }