Manual Translation file/list

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:
  1. /*Replace text in newticket form - orange button*/
  2. .Button__btnFont.Button__primary.commonStyle__zt3buttonPrimaryBg.commonStyle__zt3buttonPrimaryText.Button__buttonCommon.commonStyle__cursor.commonStyle__tAlignCenter.commonStyle__inlineBlock.commonStyle__outlineNone.commonStyle__overflowDotted {
  3.   text-indent: -9999px;
  4.   line-height: 0; /* Collapse the original line */
  5. }
  6. .Button__btnFont.Button__primary.commonStyle__zt3buttonPrimaryBg.commonStyle__zt3buttonPrimaryText.Button__buttonCommon.commonStyle__cursor.commonStyle__tAlignCenter.commonStyle__inlineBlock.commonStyle__outlineNone.commonStyle__overflowDotted:after {
  7.   content: "Registreren";
  8.   text-indent: 0;
  9.   display: block;
  10.   line-height: initial; /* New content takes up original line height */
  11. }