From f2bf417c977a247d207e6aee6bdb4c7dc80d85be Mon Sep 17 00:00:00 2001 From: Michal Stanke Date: Wed, 23 Mar 2016 19:33:36 +0100 Subject: [PATCH] Remove Verbatim mentions --- docs/localization.rst | 11 +++-------- kitsune/customercare/tests/test_templates.py | 2 +- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/docs/localization.rst b/docs/localization.rst index a56652696b9..5f2e4ce80ff 100644 --- a/docs/localization.rst +++ b/docs/localization.rst @@ -10,7 +10,7 @@ Kitsune is localized with `gettext `_. User-facing strings in the code or templates need to be marked for gettext localization. -We use `Verbatim `_ to provide an easy interface +We use `Pontoon `_ to provide an easy interface to localizing these files. Localizers are also free to download the PO files and use whatever tool they are comfortable with. @@ -440,12 +440,7 @@ Updating the Localizations ========================== When strings are added or updated, we need to update the templates and PO files -for localizers. This needs to be coordinated with someone who has rights to -update the data on `Verbatim `_. If you commit -new strings to SVN and they are not updated right away on Verbatim, there will -be big merging headaches. - -Updating strings is pretty easy. Check out the localizations as above, then:: +for localizers, which is pretty easy. Check out the localizations as above, then:: $ python manage.py extract $ python manage.py merge @@ -538,6 +533,6 @@ Bug description template: strings for this locale to production. Mozilla Support strings can be fixed in the Support Mozilla project - in Verbatim . + in Pontoon . If you have any questions, let us know. diff --git a/kitsune/customercare/tests/test_templates.py b/kitsune/customercare/tests/test_templates.py index c2a307b21ed..db1f3b5f412 100644 --- a/kitsune/customercare/tests/test_templates.py +++ b/kitsune/customercare/tests/test_templates.py @@ -94,7 +94,7 @@ def test_list_canned_responses_nondefault_locale(self): eq_(200, r.status_code) doc = pq(r.content) - # Listing all responses, l10n-agnostic (English if not in Verbatim). + # Listing all responses, l10n-agnostic (English if not in Pontoon). eq_(3, len(doc('#accordion a.reply-topic'))) def test_messed_up_canned_responses(self):