From 25f4c4194a723fe8a9adaaa1f5c252a607e7f12d Mon Sep 17 00:00:00 2001 From: Reena-cell Date: Tue, 31 May 2022 18:21:48 +0200 Subject: [PATCH] feature internalization i18n WIP --- apimanager/config/templates/config/index.html | 5 +- .../consumers/templates/consumers/detail.html | 37 +- .../customers/templates/customers/create.html | 34 +- .../templates/dynamicendpoints/index.html | 11 +- .../locale/any/de/LC_MESSAGES/django.mo | Bin 1576 -> 0 bytes .../locale/any/de/LC_MESSAGES/django.po | 115 -- .../locale/any/es/LC_MESSAGES/django.mo | Bin 8934 -> 0 bytes .../locale/any/es/LC_MESSAGES/django.po | 1185 -------------- .../locale/any/fr/LC_MESSAGES/django.mo | Bin 2798 -> 0 bytes .../locale/any/fr/LC_MESSAGES/django.po | 231 --- .../locale/any/hi/LC_MESSAGES/django.mo | Bin 2132 -> 0 bytes .../locale/any/hi/LC_MESSAGES/django.po | 115 -- apimanager/locale/any/newlatest.py | 64 - apimanager/locale/es/LC_MESSAGES/django.mo | Bin 13711 -> 16516 bytes apimanager/locale/es/LC_MESSAGES/django.po | 1382 ++++++++++++++++- .../locale/{newlatest1.py => generatePo.py} | 0 apimanager/locale/hi/LC_MESSAGES/django.mo | Bin 514 -> 2132 bytes apimanager/locale/newlatest.py | 64 - .../templates/methodrouting/index.html | 57 +- apimanager/webui/templates/webui/index.html | 15 +- 20 files changed, 1452 insertions(+), 1863 deletions(-) delete mode 100644 apimanager/locale/any/de/LC_MESSAGES/django.mo delete mode 100644 apimanager/locale/any/de/LC_MESSAGES/django.po delete mode 100644 apimanager/locale/any/es/LC_MESSAGES/django.mo delete mode 100644 apimanager/locale/any/es/LC_MESSAGES/django.po delete mode 100644 apimanager/locale/any/fr/LC_MESSAGES/django.mo delete mode 100644 apimanager/locale/any/fr/LC_MESSAGES/django.po delete mode 100644 apimanager/locale/any/hi/LC_MESSAGES/django.mo delete mode 100644 apimanager/locale/any/hi/LC_MESSAGES/django.po delete mode 100644 apimanager/locale/any/newlatest.py rename apimanager/locale/{newlatest1.py => generatePo.py} (100%) delete mode 100644 apimanager/locale/newlatest.py diff --git a/apimanager/config/templates/config/index.html b/apimanager/config/templates/config/index.html index 6029dae..2fbc623 100644 --- a/apimanager/config/templates/config/index.html +++ b/apimanager/config/templates/config/index.html @@ -1,13 +1,14 @@ {% extends 'base.html' %} {% load static %} +{% load i18n %} {% block page_title %}{{ block.super }} / Users{% endblock page_title %} {% block content %}
-

Config

+

{% trans "Config" %}

-

The configuration of the API

+

{% trans "The configuration of the API" %}

 	
diff --git a/apimanager/consumers/templates/consumers/detail.html b/apimanager/consumers/templates/consumers/detail.html index db85389..0569ed9 100644 --- a/apimanager/consumers/templates/consumers/detail.html +++ b/apimanager/consumers/templates/consumers/detail.html @@ -1,17 +1,18 @@ {% extends 'base.html' %} {% load humanize static %} +{% load i18n %} {% block page_title %}{{ block.super }} / Consumer {{ consumer.app_name }}{% endblock page_title %} {% block content %}
-

Consumer {{ consumer.app_name }}

+

{% trans "Consumer" %} {{ consumer.app_name }}

-

Params

+

{% trans "Params" %}

{% csrf_token %} {{ form.consumer_id }} @@ -60,7 +61,7 @@
- +
@@ -76,14 +77,14 @@
- App Name
+ {% trans "App Name" %}
{{ consumer.app_name }}
- App Type
+ {% trans "App Type" %}
{{ consumer.app_type }}
@@ -92,14 +93,14 @@
- Developer Email
+ {% trans "Developer Email" %}
{{ consumer.developer_email }}
- User Email
+ {% trans "User Email" %}
{% if consumer.created_by_user.user_id %}{{ consumer.created_by_user.email }}{% else %}{{ consumer.created_by_user.email }}{% endif %}
@@ -108,14 +109,14 @@
- Created
+ {% trans "Created" %}
{{ consumer.created|naturaltime }}
- Created By User ID
+ {% trans "Created By User ID" %}
{{ consumer.created_by_user_id }}
@@ -124,13 +125,13 @@
- Redirect URL
+ {% trans "Redirect URL" %}
{{ consumer.redirect_url }}
- Per minute call limit
+ {% trans "Per minute call limit" %}
{{ consumer.per_minute_call_limit }}
@@ -139,13 +140,13 @@
- Per hour call limit
+ {% trans "Per hour call limit" %}
{{ consumer.per_hour_call_limit }}
- Per day call limit
+ {% trans "Per day call limit" %}
{{ consumer.per_day_call_limit }}
@@ -155,13 +156,13 @@
- Per week call limit
+ {% trans "Per week call limit" %}
{{ consumer.per_week_call_limit }}
- Per month call limit
+ {% trans "Per month call limit" %}
{{ consumer.per_month_call_limit }}
@@ -171,7 +172,7 @@
- Description
+ {% trans "Description" %}
{{ consumer.description }}
@@ -190,9 +191,9 @@
{% if consumer.enabled %} -
diff --git a/apimanager/customers/templates/customers/create.html b/apimanager/customers/templates/customers/create.html index 1eaf1a3..94b1f30 100644 --- a/apimanager/customers/templates/customers/create.html +++ b/apimanager/customers/templates/customers/create.html @@ -21,7 +21,7 @@
{% if form.bank_id.errors %}
{{ form.bank_id.errors }}
{% endif %}
- {% trans "bank_id" %} + {% trans "Bank Id" %} {{ form.bank_id }}
@@ -35,7 +35,7 @@
{% if form.customer_number.errors %}
{{ form.customer_number.errors }}
{% endif %}
- {% trans "customer_number" %} + {% trans "customer number" %} {{ form.customer_number }}
@@ -45,14 +45,14 @@
{% if form.legal_name.errors %}
{{ form.legal_name.errors }}
{% endif %}
- {% trans "legal_name" %} + {% trans "legal name" %} {{ form.legal_name }}
{% if form.mobile_phone_number.errors %}
{{ form.mobile_phone_number.errors }}
{% endif %}
- {% trans "mobile_phone_number" %} + {% trans "mobile phone number" %} {{ form.mobile_phone_number }}
@@ -69,14 +69,14 @@
{% if form.face_image_url.errors %}
{{ form.face_image_url.errors }}
{% endif %}
- {% trans "face_image_url" %} + {% trans "face image url" %} {{ form.face_image_url }}
{% if form.face_image_date.errors %}
{{ form.face_image_date.errors }}
{% endif %}
- {% trans "face_image_date" %} + {% trans "face image date" %} {{ form.face_image_date }}
@@ -86,14 +86,14 @@
{% if form.date_of_birth.errors %}
{{ form.date_of_birth.errors }}
{% endif %}
- {% trans "date_of_birth" %} + {% trans "date of birth" %} {{ form.date_of_birth }}
{% if form.relationship_status.errors %}
{{ form.relationship_status.errors }}
{% endif %}
- {% trans "relationship_status" %} + {% trans "relationship status" %} {{ form.relationship_status }}
@@ -110,7 +110,7 @@
{% if form.dob_of_dependants.errors %}
{{ form.dob_of_dependants.errors }}
{% endif %}
- {% trans "dob_of_dependants" %} + {% trans "dob of dependants" %} {{ form.dob_of_dependants }}
@@ -120,14 +120,14 @@
{% if form.credit_rating_rating.errors %}
{{ form.credit_rating_rating.errors }}
{% endif %}
- {% trans "credit_rating_rating" %} + {% trans "credit rating rating" %} {{ form.credit_rating_rating }}
{% if form.credit_rating_source.errors %}
{{ form.credit_rating_source.errors }}
{% endif %}
- {% trans "credit_rating_source" %} + {% trans "credit rating source" %} {{ form.credit_rating_source }}
@@ -135,14 +135,14 @@
{% if form.credit_limit_currency.errors %}
{{ form.credit_limit_currency.errors }}
{% endif %}
- {% trans "credit_limit_currency" %} + {% trans "credit limit currency" %} {{ form.credit_limit_currency }}
{% if form.credit_limit_amount.errors %}
{{ form.credit_limit_amount.errors }}
{% endif %}
- {% trans "credit_limit_amount" %} + {% trans "credit limit amount" %} {{ form.credit_limit_amount }}
@@ -152,14 +152,14 @@
{% if form.highest_education_attained.errors %}
{{ form.highest_education_attained.errors }}
{% endif %}
- {% trans "highest_education_attained" %} + {% trans "highest education attained" %} {{ form.highest_education_attained }}
{% if form.employment_status.errors %}
{{ form.employment_status.errors }}
{% endif %}
- {% trans "employment_status" %} + {% trans "employment status" %} {{ form.employment_status }}
@@ -169,14 +169,14 @@
{% if form.kyc_status.errors %}
{{ form.kyc_status.errors }}
{% endif %}
- {% trans "kyc_status" %} + {% trans "kyc status" %} {{ form.kyc_status }}
{% if form.last_ok_date.errors %}
{{ form.last_ok_date.errors }}
{% endif %}
- {% trans "last_ok_date" %} + {% trans "last ok date" %} {{ form.last_ok_date }}
diff --git a/apimanager/dynamicendpoints/templates/dynamicendpoints/index.html b/apimanager/dynamicendpoints/templates/dynamicendpoints/index.html index 23ff31b..35f0238 100644 --- a/apimanager/dynamicendpoints/templates/dynamicendpoints/index.html +++ b/apimanager/dynamicendpoints/templates/dynamicendpoints/index.html @@ -1,15 +1,16 @@ {% extends 'base.html' %} {% load static %} +{% load i18n %} {% block page_title %}{{ block.super }} / Dynamic Endpoints{% endblock page_title %} {% block content %} -

Dynamic Endpoints

+

{% trans "Dynamic Endpoints" %}

-
+
-
+
@@ -29,14 +30,14 @@ {% if forloop.counter0 == 0 %}
- saved. + {% trans "saved." %}
{% endif %} {% if forloop.counter0 > 0 %}
- +
{% endif %} diff --git a/apimanager/locale/any/de/LC_MESSAGES/django.mo b/apimanager/locale/any/de/LC_MESSAGES/django.mo deleted file mode 100644 index b614195600b677e2919bd3e95966f93d7afb78ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1576 zcmZvb&u=3&6vqcx76>e`GaS{`co!Xv4 zd*#4|3kOb|xP!QG;s%H1z(0V5goHr+14x_@;`=7EEtRk|`HVgGd*Ao`%`amX^bgO7rHAnEObFM{{L zCTckbpThhbB&EFHRlE;Uz8^u#_j5J>4Wzt(f)wv6f>WJqAn9KRUjXYM>1ct^fjyAw z$Uy4DF-U#-2&8kLRNub<>D<>K#s3z31-xJJSCIPhcQwC;V|R2VTsTzq^Vxp;fR4{-!J8>}C1@5j3dJ4^<{cCT9-$fb3Gr+%g;yjjdV zAK3=0^?Q6EPZXWuEfHjc-A&>FPkX!-v%Ov;ZNGW1*G+02;R7Gx3cMC*a)a$0bULgX zrwO~0q;b2m6}MW0WH@{mTg|M1E-8~>BcRHOdt?JgzF7`k{+D?-T*|+L% z*KlzG*TF}pOXvym!|>Kp3uQJ~HW$vzuz4`r;kPgLk*uk7JTaM_;4&KQ_E?2lU&9@m z?^u`n1~bcY>NnrnV5`^7Hw=4ilij+xQ6tOo@&*^uoO@12T_q>dY2kfgX85vSdaquw zGT&<5$ORg65d=3ecA|h~;he%uuxsT$kEPOpg;@j{HKmi;Jg6Bmcwwdvtutg07rcZ4 z$)O*pY@uNfsf-pB>Hn-K4ZmzgDka4cNoL_gk>`3<1ue3sG(|XDxpHO8GHYo|I=L&o y$itbKYlarE|CU4V%1jW9ofYh;&mY7xm0RhL1W(}>qa&sD!shsYv9VN_Z2K>4Bzp<~ diff --git a/apimanager/locale/any/de/LC_MESSAGES/django.po b/apimanager/locale/any/de/LC_MESSAGES/django.po deleted file mode 100644 index 08705b0..0000000 --- a/apimanager/locale/any/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,115 +0,0 @@ -# Open Bank Project API Manager i18n files. -# Copyright (C) 2022 TESOBE GmbH -# This file is distributed under the AGPL. Commercial licences are available from TESOBE. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-05-12 04:46+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: base/templates/base.html:48 -msgid "Home" -msgstr "Startseite" - -#: base/templates/base.html:50 consumers/templates/consumers/index.html:10 -msgid "Consumers" -msgstr "Verbraucher" - -#: base/templates/base.html:52 -msgid "Entitlement Requests" -msgstr "Berechtigungsanfragen" - -#: base/templates/base.html:57 -msgid "Users" -msgstr "Verbindung zu WP-Benutzern" - -#: base/templates/base.html:59 -msgid "All" -msgstr "Alle" - -#: base/templates/base.html:60 -msgid "My User" -msgstr "Mein Benutzer" - -#: base/templates/base.html:61 -msgid "Invite Developer" -msgstr "Entwickler einladen" - -#: base/templates/base.html:68 -msgid "Metrics" -msgstr "Metriken" - -#: base/templates/base.html:70 -msgid "API Metrics" -msgstr "API-Metriken" - -#: base/templates/base.html:71 -msgid "Connector Metrics" -msgstr "Konnektor-Metriken" - -#: base/templates/base.html:72 -msgid "KPI Dashboard" -msgstr "KPI Dashboard" - -#: base/templates/base.html:79 -msgid "Resources" -msgstr "Ressourcen" - -#: base/templates/base.html:81 -msgid "Customers" -msgstr "Kunden" - -#: base/templates/base.html:82 -msgid "Branches" -msgstr "Niederlassungen" - -#: base/templates/base.html:83 -msgid "ATMs" -msgstr "ATMs" - -#: base/templates/base.html:92 -msgid "Configurations" -msgstr "Konfigurationen" - -#: base/templates/base.html:94 -msgid "Config" -msgstr "Konfig." - -#: base/templates/base.html:95 -msgid "Webui Props" -msgstr "Webui Requisiten" - -#: base/templates/base.html:96 -msgid "Method Routings" -msgstr "Methoden-Routings" - -#: base/templates/base.html:97 -msgid "Dynamic Endpoints" -msgstr "Dynamische Endpunkte" - -#: base/templates/base.html:98 -msgid "My API Collections" -msgstr "Meine API-Sammlungen" - -#: base/templates/home.html:5 -msgid "Welcome to API Manager" -msgstr "Willkommen bei API Manager" - -#: consumers/templates/consumers/index.html:47 -msgid "Statistics" -msgstr "Statistiken" - -#: consumers/templates/consumers/index.html:49 -msgid "Total number of consumers" -msgstr "Gesamtzahl der Verbraucher" diff --git a/apimanager/locale/any/es/LC_MESSAGES/django.mo b/apimanager/locale/any/es/LC_MESSAGES/django.mo deleted file mode 100644 index e8ada8fd0425b38fff88f983d971966f5318ff71..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8934 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, 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-05-27 10:03+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: atms/templates/atms/index.html:4 base/templates/base.html:83 -msgid "ATMs" -msgstr "Cajeros automáticos" - -#: atms/templates/atms/index.html:17 atms/templates/atms/index.html:222 -msgid "ATM Id" -msgstr "Identificación del cajero automático" - -#: atms/templates/atms/index.html:24 atms/templates/atms/index.html:223 -#: branches/templates/branches/index.html:161 -#: users/templates/users/detail.html:99 -msgid "Bank Id" -msgstr "identificación del banco" - -#: atms/templates/atms/index.html:31 branches/templates/branches/index.html:36 -#: branches/templates/branches/index.html:197 -msgid "name" -msgstr "nombre" - -#: atms/templates/atms/index.html:40 -msgid "services" -msgstr "servicios" - -#: atms/templates/atms/index.html:48 branches/templates/branches/index.html:53 -msgid "location_latitude" -msgstr "ubicación_latitud" - -#: atms/templates/atms/index.html:56 branches/templates/branches/index.html:60 -msgid "location_longitude" -msgstr "ubicación longitud" - -#: atms/templates/atms/index.html:66 branches/templates/branches/index.html:70 -msgid "meta_license_name" -msgstr "nombre de la metalicencia" - -#: atms/templates/atms/index.html:73 -msgid "located_at" -msgstr "situado en" - -#: atms/templates/atms/index.html:80 -msgid "has_deposit_capability" -msgstr "tiene_capacidad_depósito" - -#: atms/templates/atms/index.html:90 branches/templates/branches/index.html:94 -msgid "is_accessible" -msgstr "es_accesible" - -#: atms/templates/atms/index.html:98 -msgid "accessibility_features" -msgstr "funciones de accesibilidad" - -#: atms/templates/atms/index.html:105 -#: branches/templates/branches/index.html:108 -msgid "more_info" -msgstr "más información" - -#: atms/templates/atms/index.html:114 -msgid "notes" -msgstr "notas" - -#: atms/templates/atms/index.html:121 -msgid "supported_languages" -msgstr "idiomas soportados" - -#: atms/templates/atms/index.html:128 -msgid "supported_currencies" -msgstr "monedas admitidas" - -#: atms/templates/atms/index.html:137 -msgid "location_categories" -msgstr "categorías_de_ubicación" - -#: atms/templates/atms/index.html:145 -msgid "minimum_withdrawal" -msgstr "retiro mínimo" - -#: atms/templates/atms/index.html:152 -msgid "site_name" -msgstr "nombre del sitio" - -#: atms/templates/atms/index.html:161 -msgid "branch_identification" -msgstr "sucursal_identificación" - -#: atms/templates/atms/index.html:168 -msgid "site_identification" -msgstr "identificación_del_sitio" - -#: atms/templates/atms/index.html:173 -msgid "cash_withdrawal_national_fee" -msgstr "tasa nacional retirada de efectivo" - -#: atms/templates/atms/index.html:183 -msgid "balance_inquiry_fee" -msgstr "tarifa de consulta de saldo" - -#: atms/templates/atms/index.html:190 -msgid "cash_withdrawal_international_fee" -msgstr "retiro de efectivo tarifa_internacional" - -#: atms/templates/atms/index.html:199 -#: branches/templates/branches/index.html:128 -msgid "address" -msgstr "dirección" - -#: atms/templates/atms/index.html:206 -#: branches/templates/branches/index.html:135 -msgid "lobby" -msgstr "vestíbulo" - -#: atms/templates/atms/index.html:224 -msgid "ATM Name" -msgstr "Nombre del cajero automático" - -#: atms/templates/atms/index.html:225 -msgid "More info" -msgstr "Más información" - -#: atms/templates/atms/index.html:226 -#: branches/templates/branches/index.html:164 -msgid "Update Button" -msgstr "Botón Actualizar" - -#: base/templates/base.html:11 -msgid "API Manager" -msgstr "Administrador de API" - -#: base/templates/base.html:48 -msgid "Home" -msgstr "Casa" - -#: base/templates/base.html:50 consumers/templates/consumers/index.html:10 -msgid "Consumers" -msgstr "Consumidoras" - -#: base/templates/base.html:52 -#: entitlementrequests/templates/entitlementrequests/index.html:8 -msgid "Entitlement Requests" -msgstr "Solicitudes de derechos" - -#: base/templates/base.html:57 users/templates/users/index.html:8 -msgid "Users" -msgstr "Usuarias" - -#: base/templates/base.html:59 -#: consumers/templates/consumers/includes/filter_apptype.html:4 -#: consumers/templates/consumers/includes/filter_enabled.html:4 -#: consumers/templates/consumers/includes/filter_time.html:7 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:7 -msgid "All" -msgstr "Todos" - -#: base/templates/base.html:60 -msgid "My User" -msgstr "Mi usuaria" - -#: base/templates/base.html:61 users/templates/users/invitation.html:8 -msgid "Invite Developer" -msgstr "Invitar a desarrollador" - -#: base/templates/base.html:68 -msgid "Metrics" -msgstr "Métrica" - -#: base/templates/base.html:70 metrics/templates/metrics/api.html:9 -msgid "API Metrics" -msgstr "Métricas de la API" - -#: base/templates/base.html:71 metrics/templates/metrics/connector.html:9 -msgid "Connector Metrics" -msgstr "Métricas del conector" - -#: base/templates/base.html:72 -msgid "KPI Dashboard" -msgstr "Panel de KPI" - -#: base/templates/base.html:79 -msgid "Resources" -msgstr "Recursos" - -#: base/templates/base.html:81 -msgid "Customers" -msgstr "Clientes" - -#: base/templates/base.html:82 branches/templates/branches/index.html:9 -msgid "Branches" -msgstr "Sucursales" - -#: base/templates/base.html:92 -msgid "Configurations" -msgstr "Configuraciones" - -#: base/templates/base.html:94 -msgid "Config" -msgstr "Configuración" - -#: base/templates/base.html:95 -msgid "Webui Props" -msgstr "Accesorios webui" - -#: base/templates/base.html:96 -msgid "Method Routings" -msgstr "Enrutamiento de métodos" - -#: base/templates/base.html:97 -msgid "Dynamic Endpoints" -msgstr "Puntos finales dinámicos" - -#: base/templates/base.html:98 -msgid "My API Collections" -msgstr "Mis colecciones de API" - -#: base/templates/home.html:5 -msgid "Welcome to API Manager" -msgstr "Bienvenido al Administrador de API" - -#: base/templates/home.html:10 -msgid "" -"This app gives you access to management functionality for the sandbox at" -msgstr "" -"Esta aplicación le brinda acceso a la funcionalidad de administración para " -"el sandbox en" - -#: base/templates/home.html:10 -msgid "You have to" -msgstr "Tienes que" - -#: base/templates/home.html:10 -msgid "register" -msgstr "Registrarse" - -#: base/templates/home.html:10 -msgid "" -"an account before being able to proceed. The logged-in user needs to have " -"specific roles granted to use the functionality." -msgstr "" -"una cuenta antes de poder continuar. El usuario registrado debe tener. roles " -"específicos otorgados para usar la funcionalidad" - -#: branches/templates/branches/index.html:22 -#, fuzzy -#| msgid "Branches" -msgid "Branch_Id" -msgstr "Sucursales" - -#: branches/templates/branches/index.html:29 -#: users/templates/users/detail.html:75 -#: users/templates/users/invitation.html:22 -msgid "bank_id" -msgstr "id_banco" - -#: branches/templates/branches/index.html:46 -#, fuzzy -#| msgid "Branches" -msgid "branch_type" -msgstr "Sucursales" - -#: branches/templates/branches/index.html:77 -msgid "branch_routing_scheme" -msgstr "esquema de enrutamiento de sucursales" - -#: branches/templates/branches/index.html:84 -msgid "branch_routing_address" -msgstr "dirección_enrutamiento_sucursal" - -#: branches/templates/branches/index.html:101 -#, fuzzy -#| msgid "accessibility_features" -msgid "accessibleFeatures" -msgstr "funciones de accesibilidad" - -#: branches/templates/branches/index.html:118 -msgid "phone_number" -msgstr "número de teléfono" - -#: branches/templates/branches/index.html:142 -msgid "drive_up" -msgstr "subir" - -#: branches/templates/branches/index.html:151 -#: users/templates/users/detail.html:83 users/templates/users/detail.html:88 -msgid "Add" -msgstr "Agregar" - -#: branches/templates/branches/index.html:160 -#, fuzzy -#| msgid "Branches" -msgid "Branch Id" -msgstr "Sucursales" - -#: branches/templates/branches/index.html:162 -#, fuzzy -#| msgid "Branches" -msgid "Branch Name" -msgstr "Sucursales" - -#: branches/templates/branches/index.html:163 -#, fuzzy -#| msgid "more_info" -msgid "More_info" -msgstr "más información" - -#: branches/templates/branches/index.html:176 -#: branches/templates/branches/index.html:203 -#, fuzzy -#| msgid "address" -msgid "Address" -msgstr "dirección" - -#: branches/templates/branches/index.html:178 -msgid "line1" -msgstr "línea 1" - -#: branches/templates/branches/index.html:179 -msgid "line2" -msgstr "línea 2" - -#: branches/templates/branches/index.html:180 -msgid "line3" -msgstr "línea 3" - -#: branches/templates/branches/index.html:181 -msgid "city" -msgstr "ciudad" - -#: branches/templates/branches/index.html:182 -#, fuzzy -#| msgid "country" -msgid "county" -msgstr "países" - -#: branches/templates/branches/index.html:183 -#, fuzzy -#| msgid "status" -msgid "state" -msgstr "estado" - -#: branches/templates/branches/index.html:184 -msgid "postcode" -msgstr "código postal" - -#: branches/templates/branches/index.html:185 -#, fuzzy -#| msgid "country" -msgid "country_code" -msgstr "países" - -#: branches/templates/branches/index.html:188 -#, fuzzy -#| msgid "Action" -msgid "Location" -msgstr "Acción" - -#: branches/templates/branches/index.html:190 -#, fuzzy -#| msgid "location_latitude" -msgid "latitude" -msgstr "ubicación_latitud" - -#: branches/templates/branches/index.html:191 -#, fuzzy -#| msgid "location_longitude" -msgid "longitude" -msgstr "ubicación longitud" - -#: branches/templates/branches/index.html:194 -#, fuzzy -#| msgid "meta_license_name" -msgid "Meta License" -msgstr "nombre de la metalicencia" - -#: branches/templates/branches/index.html:196 -msgid "id" -msgstr "identificación" - -#: branches/templates/branches/index.html:200 -#, fuzzy -#| msgid "Method Routings" -msgid "Branch Routing" -msgstr "Enrutamiento de métodos" - -#: branches/templates/branches/index.html:202 -msgid "Scheme" -msgstr "Esquema" - -#: branches/templates/branches/index.html:206 -#, fuzzy -#| msgid "Branches" -msgid "Branch Type" -msgstr "Sucursales" - -#: branches/templates/branches/index.html:207 -#, fuzzy -#| msgid "More info" -msgid "More Info" -msgstr "Más información" - -#: branches/templates/branches/index.html:208 -msgid "Phone Number" -msgstr "Número de teléfono" - -#: branches/templates/branches/index.html:209 -#, fuzzy -#| msgid "accessibility_features" -msgid "Accessible Features" -msgstr "funciones de accesibilidad" - -#: consumers/templates/consumers/includes/filter_apptype.html:2 -msgid "Web" -msgstr "Web" - -#: consumers/templates/consumers/includes/filter_apptype.html:3 -msgid "Mobile" -msgstr "Móvil" - -#: consumers/templates/consumers/includes/filter_enabled.html:2 -msgid "Enabled" -msgstr "Activada" - -#: consumers/templates/consumers/includes/filter_enabled.html:3 -msgid "Disabled" -msgstr "Desactivada" - -#: consumers/templates/consumers/includes/filter_time.html:2 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:2 -msgid "Last Hour" -msgstr "Ultima hora" - -#: consumers/templates/consumers/includes/filter_time.html:3 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:3 -msgid "Last Day" -msgstr "Último día" - -#: consumers/templates/consumers/includes/filter_time.html:4 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:4 -msgid "Last Week" -msgstr "Semana Pasada" - -#: consumers/templates/consumers/includes/filter_time.html:5 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:5 -msgid "Last Month" -msgstr "El mes pasado" - -#: consumers/templates/consumers/includes/filter_time.html:6 -#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:6 -msgid "Last Year" -msgstr "El año pasado" - -#: consumers/templates/consumers/index.html:47 -#: users/templates/users/index.html:49 -msgid "Statistics" -msgstr "Estadísticas" - -#: consumers/templates/consumers/index.html:49 -msgid "Total number of consumers" -msgstr "Número total de consumidoras" - -#: consumers/templates/consumers/index.html:50 -msgid "Total number of unique developer email addresses" -msgstr "" -"Número total de direcciones de correo electrónico de desarrolladores únicas" - -#: consumers/templates/consumers/index.html:51 -msgid "Total number of unique consumer names" -msgstr "Número total de nombres de consumidores únicos" - -#: consumers/templates/consumers/index.html:57 -msgid "ID" -msgstr "IDENTIFICACIÓN" - -#: consumers/templates/consumers/index.html:58 -msgid "Name" -msgstr "Nombre" - -#: consumers/templates/consumers/index.html:59 -msgid "Description" -msgstr "Descripción" - -#: consumers/templates/consumers/index.html:60 -#: entitlementrequests/templates/entitlementrequests/index.html:30 -msgid "Created" -msgstr "Creado" - -#: consumers/templates/consumers/index.html:61 -#: entitlementrequests/templates/entitlementrequests/index.html:31 -#: entitlementrequests/templates/entitlementrequests/index.html:32 -#: users/templates/users/detail.html:100 users/templates/users/index.html:60 -msgid "Action" -msgstr "Acción" - -#: entitlementrequests/templates/entitlementrequests/index.html:27 -msgid "Role Name" -msgstr "Nombre de rol" - -#: entitlementrequests/templates/entitlementrequests/index.html:28 -msgid "User name" -msgstr "Nombre de usuario" - -#: entitlementrequests/templates/entitlementrequests/index.html:29 -msgid "Bank ID" -msgstr "identificación del banco" - -#: metrics/templates/metrics/api.html:12 -#: metrics/templates/metrics/connector.html:12 -#: metrics/templates/metrics/custom_summary.html:38 -#: metrics/templates/metrics/daily_summary.html:37 -#: metrics/templates/metrics/hourly_summary.html:35 -#: metrics/templates/metrics/monthly_summary.html:38 -#: metrics/templates/metrics/quarterly_summary.html:36 -#: metrics/templates/metrics/yearly_summary.html:38 -#, fuzzy -#| msgid "Filters" -msgid "Filter" -msgstr "Filtros" - -#: metrics/templates/metrics/api.html:24 -#: metrics/templates/metrics/connector.html:24 -msgid "from_date" -msgstr "partir de la fecha" - -#: metrics/templates/metrics/api.html:31 -#: metrics/templates/metrics/connector.html:31 -#: metrics/templates/metrics/custom_summary.html:57 -#: metrics/templates/metrics/daily_summary.html:50 -#: metrics/templates/metrics/hourly_summary.html:48 -msgid "to_date" -msgstr "hasta la fecha" - -#: metrics/templates/metrics/api.html:38 -#: metrics/templates/metrics/connector.html:38 -msgid "limit" -msgstr "límite" - -#: metrics/templates/metrics/api.html:45 -#: metrics/templates/metrics/connector.html:45 -msgid "offset" -msgstr "compensar" - -#: metrics/templates/metrics/api.html:55 -#, fuzzy -#| msgid "Consumers" -msgid "consumer_id" -msgstr "Consumidoras" - -#: metrics/templates/metrics/api.html:63 -msgid "user_id" -msgstr "id_usuario" - -#: metrics/templates/metrics/api.html:71 -msgid "anon" -msgstr "luego" - -#: metrics/templates/metrics/api.html:79 -#, fuzzy -#| msgid "site_name" -msgid "app_name" -msgstr "nombre del sitio" - -#: metrics/templates/metrics/api.html:90 -msgid "verb" -msgstr "verbo" - -#: metrics/templates/metrics/api.html:98 -msgid "url" -msgstr "URL" - -#: metrics/templates/metrics/api.html:108 -#, fuzzy -#| msgid "Implemented by Partial Function" -msgid "implemented_by_partial_function" -msgstr "Implementado por función parcial" - -#: metrics/templates/metrics/api.html:116 -#, fuzzy -#| msgid "Implemented In Version" -msgid "implemented in version" -msgstr "Implementado en la versión" - -#: metrics/templates/metrics/api.html:123 -#: metrics/templates/metrics/connector.html:75 -#: metrics/templates/metrics/custom_summary.html:69 -#: metrics/templates/metrics/daily_summary.html:62 -#: metrics/templates/metrics/hourly_summary.html:60 -#: metrics/templates/metrics/monthly_summary.html:72 -#: metrics/templates/metrics/quarterly_summary.html:61 -#: metrics/templates/metrics/weekly_summary.html:62 -#: metrics/templates/metrics/yearly_summary.html:63 -#, fuzzy -#| msgid "Update Button" -msgid "Update filter" -msgstr "Botón Actualizar" - -#: metrics/templates/metrics/api.html:130 -#: metrics/templates/metrics/api_summary_partial_function.html:6 -msgid "List" -msgstr "Lista" - -#: metrics/templates/metrics/api.html:131 -#: metrics/templates/metrics/api_summary_partial_function.html:7 -msgid "Summary by Partial Function" -msgstr "Resumen por función parcial" - -#: metrics/templates/metrics/api.html:143 -msgid "Verb" -msgstr "Verbo" - -#: metrics/templates/metrics/api.html:144 -msgid "URL" -msgstr "URL" - -#: metrics/templates/metrics/api.html:145 -#: metrics/templates/metrics/connector.html:86 -msgid "Date" -msgstr "Fecha" - -#: metrics/templates/metrics/api.html:146 -#, fuzzy -#| msgid "Configurations" -msgid "Duration(ms)" -msgstr "Configuraciones" - -#: metrics/templates/metrics/api.html:147 -msgid "Details" -msgstr "Detalles" - -#: metrics/templates/metrics/api.html:162 -#, fuzzy -#| msgid "User name" -msgid "User Name" -msgstr "Nombre de usuario" - -#: metrics/templates/metrics/api.html:163 users/templates/users/detail.html:11 -msgid "User ID" -msgstr "Identificación de usuario" - -#: metrics/templates/metrics/api.html:164 -msgid "Developer Email" -msgstr "Correo electrónico del desarrollador" - -#: metrics/templates/metrics/api.html:165 -#, fuzzy -#| msgid "ATM Name" -msgid "App Name" -msgstr "Nombre del cajero automático" - -#: metrics/templates/metrics/api.html:166 -#, fuzzy -#| msgid "Consumers" -msgid "Consumer ID" -msgstr "Consumidoras" - -#: metrics/templates/metrics/api.html:167 -msgid "Implemented by Partial Function" -msgstr "Implementado por función parcial" - -#: metrics/templates/metrics/api.html:168 -msgid "Implemented In Version" -msgstr "Implementado en la versión" - -#: metrics/templates/metrics/connector.html:55 -#, fuzzy -#| msgid "Connector Metrics" -msgid "connector_name" -msgstr "Métricas del conector" - -#: metrics/templates/metrics/connector.html:62 -#, fuzzy -#| msgid "First Name" -msgid "function_name" -msgstr "Nombre" - -#: metrics/templates/metrics/connector.html:69 -#, fuzzy -#| msgid "Correlation ID" -msgid "correlation_id" -msgstr "ID de correlación" - -#: metrics/templates/metrics/connector.html:87 -#, fuzzy -#| msgid "Connector Metrics" -msgid "Connector Name" -msgstr "Métricas del conector" - -#: metrics/templates/metrics/connector.html:88 -#, fuzzy -#| msgid "First Name" -msgid "Function Name" -msgstr "Nombre" - -#: metrics/templates/metrics/connector.html:89 -msgid "Correlation ID" -msgstr "ID de correlación" - -#: metrics/templates/metrics/connector.html:90 -msgid "Duration (ms)" -msgstr "Duración (ms)" - -#: metrics/templates/metrics/custom_summary.html:10 -#: metrics/templates/metrics/daily_summary.html:11 -#: metrics/templates/metrics/hourly_summary.html:9 -#: metrics/templates/metrics/monthly_summary.html:10 -#: metrics/templates/metrics/quarterly_summary.html:10 -#: metrics/templates/metrics/weekly_summary.html:9 -#: metrics/templates/metrics/yearly_summary.html:10 -msgid "API Usage Report" -msgstr "Informe de uso de la API" - -#: metrics/templates/metrics/custom_summary.html:11 -#: metrics/templates/metrics/daily_summary.html:12 -#: metrics/templates/metrics/hourly_summary.html:10 -#: metrics/templates/metrics/monthly_summary.html:11 -#: metrics/templates/metrics/weekly_summary.html:10 -#: metrics/templates/metrics/yearly_summary.html:11 -#, fuzzy -#| msgid "API Manager" -msgid "API instance" -msgstr "Administrador de API" - -#: metrics/templates/metrics/custom_summary.html:18 -#: metrics/templates/metrics/daily_summary.html:17 -#: metrics/templates/metrics/hourly_summary.html:15 -#: metrics/templates/metrics/monthly_summary.html:18 -#: metrics/templates/metrics/quarterly_summary.html:16 -#: metrics/templates/metrics/weekly_summary.html:17 -#: metrics/templates/metrics/yearly_summary.html:18 -#, fuzzy -#| msgid "Last Year" -msgid "Year" -msgstr "El año pasado" - -#: metrics/templates/metrics/custom_summary.html:19 -#: metrics/templates/metrics/daily_summary.html:18 -#: metrics/templates/metrics/hourly_summary.html:16 -#: metrics/templates/metrics/monthly_summary.html:19 -#: metrics/templates/metrics/quarterly_summary.html:17 -#: metrics/templates/metrics/weekly_summary.html:18 -#: metrics/templates/metrics/yearly_summary.html:19 -msgid "Quarter" -msgstr "Cuarta parte" - -#: metrics/templates/metrics/custom_summary.html:20 -#: metrics/templates/metrics/daily_summary.html:19 -#: metrics/templates/metrics/hourly_summary.html:17 -#: metrics/templates/metrics/monthly_summary.html:20 -#: metrics/templates/metrics/quarterly_summary.html:18 -#: metrics/templates/metrics/weekly_summary.html:19 -#: metrics/templates/metrics/yearly_summary.html:20 -#, fuzzy -#| msgid "Last Month" -msgid "Month" -msgstr "El mes pasado" - -#: metrics/templates/metrics/custom_summary.html:21 -#: metrics/templates/metrics/daily_summary.html:20 -#: metrics/templates/metrics/hourly_summary.html:18 -#: metrics/templates/metrics/monthly_summary.html:21 -#: metrics/templates/metrics/quarterly_summary.html:19 -#: metrics/templates/metrics/weekly_summary.html:20 -#: metrics/templates/metrics/yearly_summary.html:21 -#, fuzzy -#| msgid "Last Week" -msgid "Week" -msgstr "Semana Pasada" - -#: metrics/templates/metrics/custom_summary.html:22 -#: metrics/templates/metrics/daily_summary.html:21 -#: metrics/templates/metrics/hourly_summary.html:19 -#: metrics/templates/metrics/monthly_summary.html:22 -#: metrics/templates/metrics/quarterly_summary.html:20 -#: metrics/templates/metrics/weekly_summary.html:21 -#: metrics/templates/metrics/yearly_summary.html:22 -msgid "Day" -msgstr "Día" - -#: metrics/templates/metrics/custom_summary.html:24 -#: metrics/templates/metrics/daily_summary.html:23 -#: metrics/templates/metrics/hourly_summary.html:21 -#: metrics/templates/metrics/monthly_summary.html:24 -#: metrics/templates/metrics/quarterly_summary.html:22 -#: metrics/templates/metrics/weekly_summary.html:23 -#: metrics/templates/metrics/yearly_summary.html:24 -#, fuzzy -#| msgid "Customers" -msgid "Custom" -msgstr "Clientes" - -#: metrics/templates/metrics/custom_summary.html:50 -#, fuzzy -#| msgid "from_date" -msgid "from_date_custom" -msgstr "partir de la fecha" - -#: metrics/templates/metrics/custom_summary.html:64 -#: metrics/templates/metrics/daily_summary.html:57 -#: metrics/templates/metrics/hourly_summary.html:55 -#: metrics/templates/metrics/monthly_summary.html:58 -#: metrics/templates/metrics/quarterly_summary.html:56 -#: metrics/templates/metrics/weekly_summary.html:57 -#: metrics/templates/metrics/yearly_summary.html:58 -msgid "Include System Calls" -msgstr "Incluir llamadas del sistema" - -#: metrics/templates/metrics/custom_summary.html:85 -#: metrics/templates/metrics/daily_summary.html:78 -#: metrics/templates/metrics/monthly_summary.html:88 -#: metrics/templates/metrics/quarterly_summary.html:77 -#: metrics/templates/metrics/weekly_summary.html:78 -#: metrics/templates/metrics/yearly_summary.html:79 -msgid "Total API calls" -msgstr "Total de llamadas de API" - -#: metrics/templates/metrics/custom_summary.html:89 -#: metrics/templates/metrics/daily_summary.html:82 -#: metrics/templates/metrics/hourly_summary.html:80 -#: metrics/templates/metrics/monthly_summary.html:92 -#: metrics/templates/metrics/quarterly_summary.html:81 -#: metrics/templates/metrics/weekly_summary.html:82 -#: metrics/templates/metrics/yearly_summary.html:83 -msgid "API calls made using API Explorer" -msgstr "Llamadas API realizadas con API Explorer" - -#: metrics/templates/metrics/custom_summary.html:94 -msgid "Calls per day (last 30 days)" -msgstr "Llamadas por día (últimos 30 días)" - -#: metrics/templates/metrics/custom_summary.html:98 -#: metrics/templates/metrics/monthly_summary.html:101 -#: metrics/templates/metrics/quarterly_summary.html:94 -#: metrics/templates/metrics/weekly_summary.html:91 -#: metrics/templates/metrics/yearly_summary.html:92 -msgid "Average number of calls per day" -msgstr "Número promedio de llamadas" - -#: metrics/templates/metrics/custom_summary.html:102 -#: metrics/templates/metrics/daily_summary.html:95 -#: metrics/templates/metrics/hourly_summary.html:96 -#: metrics/templates/metrics/monthly_summary.html:105 -#: metrics/templates/metrics/quarterly_summary.html:98 -#: metrics/templates/metrics/weekly_summary.html:95 -#: metrics/templates/metrics/yearly_summary.html:96 -msgid "Average response time (ms)" -msgstr "Tiempo de Respuesta Promedio(ms)" - -#: metrics/templates/metrics/custom_summary.html:106 -#: metrics/templates/metrics/daily_summary.html:100 -#: metrics/templates/metrics/hourly_summary.html:101 -#: metrics/templates/metrics/monthly_summary.html:109 -#: metrics/templates/metrics/quarterly_summary.html:103 -#: metrics/templates/metrics/weekly_summary.html:100 -#: metrics/templates/metrics/yearly_summary.html:101 -msgid "Median time from consumer registration to first API call" -msgstr "" -"Tiempo medio desde el registro del consumidor hasta la primera llamada a la " -"APIMediana de tiempo desde el registro del consumidor hasta la primera " -"llamada API" - -#: metrics/templates/metrics/custom_summary.html:111 -#: metrics/templates/metrics/daily_summary.html:105 -#: metrics/templates/metrics/hourly_summary.html:106 -#: metrics/templates/metrics/monthly_summary.html:114 -#: metrics/templates/metrics/quarterly_summary.html:108 -#: metrics/templates/metrics/weekly_summary.html:105 -#: metrics/templates/metrics/yearly_summary.html:106 -msgid "Apps with distinct names" -msgstr "Aplicaciones con nombres distintos" - -#: metrics/templates/metrics/custom_summary.html:115 -#: metrics/templates/metrics/monthly_summary.html:118 -#, fuzzy -#| msgid "Total number of unique developer email addresses" -msgid "Distinct developer email addresses" -msgstr "" -"Número total de direcciones de correo electrónico de desarrolladores únicas" - -#: metrics/templates/metrics/custom_summary.html:120 -#: metrics/templates/metrics/daily_summary.html:114 -#: metrics/templates/metrics/hourly_summary.html:115 -#: metrics/templates/metrics/monthly_summary.html:123 -#: metrics/templates/metrics/quarterly_summary.html:117 -#: metrics/templates/metrics/weekly_summary.html:114 -#: metrics/templates/metrics/yearly_summary.html:115 -msgid "Active Apps (at least one API call in the period)" -msgstr "Aplicaciones activas (al menos una llamada a la API en el período)" - -#: metrics/templates/metrics/custom_summary.html:124 -#: metrics/templates/metrics/daily_summary.html:118 -#: metrics/templates/metrics/monthly_summary.html:127 -#: metrics/templates/metrics/quarterly_summary.html:121 -#: metrics/templates/metrics/weekly_summary.html:118 -#: metrics/templates/metrics/yearly_summary.html:119 -msgid "Top 10 APIs" -msgstr "Las 10 API principales" - -#: metrics/templates/metrics/custom_summary.html:128 -#: metrics/templates/metrics/daily_summary.html:122 -#: metrics/templates/metrics/monthly_summary.html:131 -#: metrics/templates/metrics/quarterly_summary.html:125 -#: metrics/templates/metrics/weekly_summary.html:122 -#: metrics/templates/metrics/yearly_summary.html:123 -#, fuzzy -#| msgid "Consumers" -msgid "Top 10 Consumers" -msgstr "Consumidoras" - -#: metrics/templates/metrics/custom_summary.html:132 -#: metrics/templates/metrics/daily_summary.html:126 -#: metrics/templates/metrics/hourly_summary.html:123 -#: metrics/templates/metrics/monthly_summary.html:135 -#: metrics/templates/metrics/quarterly_summary.html:129 -#: metrics/templates/metrics/weekly_summary.html:126 -#: metrics/templates/metrics/yearly_summary.html:127 -msgid "Top Warehouse APIs" -msgstr "Principales API de almacén" - -#: metrics/templates/metrics/custom_summary.html:136 -#: metrics/templates/metrics/daily_summary.html:130 -#: metrics/templates/metrics/monthly_summary.html:139 -#: metrics/templates/metrics/quarterly_summary.html:133 -#: metrics/templates/metrics/weekly_summary.html:130 -#: metrics/templates/metrics/yearly_summary.html:131 -msgid "Top Apps using data warehouse" -msgstr "Principales aplicaciones que utilizan el almacén de datos" - -#: metrics/templates/metrics/custom_summary.html:140 -#: metrics/templates/metrics/daily_summary.html:134 -#: metrics/templates/metrics/monthly_summary.html:143 -#: metrics/templates/metrics/quarterly_summary.html:137 -#: metrics/templates/metrics/weekly_summary.html:134 -#: metrics/templates/metrics/yearly_summary.html:135 -#, fuzzy -#| msgid "Total number of consumers" -msgid "Total number of CanSearchWarehouse users" -msgstr "Número total de consumidoras" - -#: metrics/templates/metrics/custom_summary.html:145 -#: metrics/templates/metrics/daily_summary.html:139 -#: metrics/templates/metrics/hourly_summary.html:132 -#: metrics/templates/metrics/monthly_summary.html:148 -#: metrics/templates/metrics/quarterly_summary.html:142 -#: metrics/templates/metrics/weekly_summary.html:139 -#: metrics/templates/metrics/yearly_summary.html:140 -msgid "Users with role CanSearchWarehouse" -msgstr "Usuarios con rol CanSearchWarehouse" - -#: metrics/templates/metrics/custom_summary.html:146 -msgid "N/A" -msgstr "N / A" - -#: metrics/templates/metrics/daily_summary.html:70 -#: metrics/templates/metrics/hourly_summary.html:68 -#: metrics/templates/metrics/monthly_summary.html:80 -#: metrics/templates/metrics/quarterly_summary.html:69 -#: metrics/templates/metrics/weekly_summary.html:70 -#: metrics/templates/metrics/yearly_summary.html:71 -msgid "Period" -msgstr "Período" - -#: metrics/templates/metrics/daily_summary.html:70 -#: metrics/templates/metrics/hourly_summary.html:68 -#: metrics/templates/metrics/monthly_summary.html:80 -#: metrics/templates/metrics/quarterly_summary.html:69 -#: metrics/templates/metrics/weekly_summary.html:70 -#: metrics/templates/metrics/yearly_summary.html:71 -msgid "From" -msgstr "Desde" - -#: metrics/templates/metrics/daily_summary.html:70 -#: metrics/templates/metrics/hourly_summary.html:68 -#: metrics/templates/metrics/monthly_summary.html:80 -#: metrics/templates/metrics/quarterly_summary.html:69 -#: metrics/templates/metrics/weekly_summary.html:70 -#: metrics/templates/metrics/yearly_summary.html:71 -msgid "to" -msgstr "para" - -#: metrics/templates/metrics/daily_summary.html:87 -msgid "Calls per hour" -msgstr "Llamadas por hora" - -#: metrics/templates/metrics/daily_summary.html:91 -#, fuzzy -#| msgid "Average number of calls per day" -msgid "Average number of calls per hour" -msgstr "Número promedio de llamadas" - -#: metrics/templates/metrics/daily_summary.html:109 -#: metrics/templates/metrics/hourly_summary.html:110 -#: metrics/templates/metrics/quarterly_summary.html:112 -#: metrics/templates/metrics/weekly_summary.html:109 -#, fuzzy -#| msgid "Total number of unique developer email addresses" -msgid "Apps with distinct developer email addresses" -msgstr "" -"Número total de direcciones de correo electrónico de desarrolladores únicas" - -#: metrics/templates/metrics/hourly_summary.html:20 -#, fuzzy -#| msgid "Last Hour" -msgid "Hour" -msgstr "Ultima hora" - -#: metrics/templates/metrics/hourly_summary.html:76 -#, fuzzy -#| msgid "Total API calls" -msgid "API calls" -msgstr "Total de llamadas de API" - -#: metrics/templates/metrics/hourly_summary.html:84 -#: metrics/templates/metrics/hourly_summary.html:88 -#, fuzzy -#| msgid "Calls per hour" -msgid "Calls per minute" -msgstr "Llamadas por hora" - -#: metrics/templates/metrics/hourly_summary.html:92 -#, fuzzy -#| msgid "Average number of calls per day" -msgid "Average number of calls hour" -msgstr "Número promedio de llamadas" - -#: metrics/templates/metrics/hourly_summary.html:119 -#, fuzzy -#| msgid "Top 10 APIs" -msgid "Top APIs" -msgstr "Las 10 API principales" - -#: metrics/templates/metrics/hourly_summary.html:127 -#, fuzzy -#| msgid "Top Apps using data warehouse" -msgid "Top apps using the data warehouse" -msgstr "Principales aplicaciones que utilizan el almacén de datos" - -#: metrics/templates/metrics/hourly_summary.html:137 -#, fuzzy -#| msgid "Total number of consumers" -msgid "CanSearchWarehouse users" -msgstr "Número total de consumidoras" - -#: metrics/templates/metrics/monthly_summary.html:97 -#: metrics/templates/metrics/weekly_summary.html:87 -#, fuzzy -#| msgid "Calls per hour" -msgid "Calls per day" -msgstr "Llamadas por hora" - -#: metrics/templates/metrics/quarterly_summary.html:86 -#: metrics/templates/metrics/yearly_summary.html:88 -#, fuzzy -#| msgid "Calls per hour" -msgid "Calls per month" -msgstr "Llamadas por hora" - -#: users/templates/users/detail.html:8 -msgid "User" -msgstr "Usuaria" - -#: users/templates/users/detail.html:16 users/templates/users/index.html:59 -#: users/templates/users/invitation.html:71 -msgid "Email" -msgstr "Correo electrónico" - -#: users/templates/users/detail.html:21 -msgid "Provider" -msgstr "Proveedor" - -#: users/templates/users/detail.html:26 -msgid "Provider ID" -msgstr "ID de es proveedor" - -#: users/templates/users/detail.html:31 -msgid "Deleted" -msgstr "Eliminado" - -#: users/templates/users/detail.html:36 -msgid "Locked" -msgstr "Bloqueado" - -#: users/templates/users/detail.html:47 -msgid "Delete User" -msgstr "Eliminar usuario" - -#: users/templates/users/detail.html:51 -msgid "Unlock User" -msgstr "Desbloquear usuario" - -#: users/templates/users/detail.html:62 -msgid "Add Entitlement" -msgstr "Agregar derecho" - -#: users/templates/users/detail.html:69 users/templates/users/detail.html:98 -msgid "Role name" -msgstr "Nombre de rol" - -#: users/templates/users/detail.html:94 -msgid "Entitlements" -msgstr "Derechos" - -#: users/templates/users/detail.html:114 -msgid "Delete" -msgstr "Eliminar" - -#: users/templates/users/index.html:11 -msgid "Filters" -msgstr "Filtros" - -#: users/templates/users/index.html:44 -msgid "Pagination" -msgstr "Paginación" - -#: users/templates/users/index.html:51 -msgid "Total number of users" -msgstr "Total de usuarios" - -#: users/templates/users/index.html:57 -msgid "User Id" -msgstr "Id de usuario" - -#: users/templates/users/index.html:58 -msgid "Username" -msgstr "Nombre de usuario" - -#: users/templates/users/invitation.html:29 -#, fuzzy -#| msgid "site_name" -msgid "first_name" -msgstr "nombre del sitio" - -#: users/templates/users/invitation.html:36 -#, fuzzy -#| msgid "site_name" -msgid "last_name" -msgstr "nombre del sitio" - -#: users/templates/users/invitation.html:45 -#, fuzzy -#| msgid "Email" -msgid "email" -msgstr "Correo electrónico" - -#: users/templates/users/invitation.html:52 -#: users/templates/users/invitation.html:72 -msgid "company" -msgstr "empresa" - -#: users/templates/users/invitation.html:59 -#: users/templates/users/invitation.html:73 -msgid "country" -msgstr "países" - -#: users/templates/users/invitation.html:69 -msgid "First Name" -msgstr "Nombre" - -#: users/templates/users/invitation.html:70 -msgid "Last Name" -msgstr "Apellido" - -#: users/templates/users/invitation.html:74 -msgid "status" -msgstr "estado" - -#, fuzzy -#~| msgid "Role Name" -#~ msgid "Role_Name" -#~ msgstr "Nombre de rol" diff --git a/apimanager/locale/any/fr/LC_MESSAGES/django.mo b/apimanager/locale/any/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 2b6c30f242b74db0ce71a579f823ebdcbf5d2037..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2798 zcmbu9O^g&p6vs#BbB>b+O> z-tXJTK4NH-=#QX(b{k`};P@uI(2k8Uwi$d5yc4W~cv!s{p94ws0(dw0QZX;Utr*AP zHt;fd5BMH<7x-~8z5krUJq3~<3&sBsB>9UV#le6ad;=tZu7I@uYmm<2 z2XGho6G(Pn1s?{lfwX=zoS?Yv0_l7_knEfWDQ-S^FIWfnf-iuy|0R&(_9jUBJ^(rR z1xR-P0@C^X4U*n}Ks;!(wbfvgd7(&fy&prnC1!(*Fra z_I(NN2EQx#D~MxY2hqviedveL>8w`UllY)JN^K81mgF&`xR8z1ybRhY^c%M(z!9eRpSlej0`RFI}Kio2>1@2)Qb6W%w|lW!X;tZ ztX7M%Um!C9N#wIigif0^J&?0mA`Jc+5jYXC*~~hf&s2mBjZAapl@%2vGUQbirCKUy zSyegdVvz{tcw4-Z35&@ySjlP?R#VH;30@J)BG#!e>?~}r1a_&X0~0ZLv7{s3)|r#4 zZ)u!+)mY)=bI)!s^U~@NeG1CF>{@9qodct1RgW!}TH$*Ic57 zmOU?endB{_Q~HiWn8=;ZH);eb=tFrBLZ_8I8B4d)T|^)wUw?L25B%_#iZ@7s)+@QHKaw<4czDxzChTCzBUq?^WQWVL#NB4VnIHmRev;< z2p4o?846`Z7vUEykxC|6(!C_zQe=WlLCg|uL|3Xs&2kB)9n{0`Wvs&oPGO_{`CKk+ zvozI)%nUPQgbK;D^~pF;{S5K348gmI1MzB+cOD^ynPuMcXV3bltNeVmJztw^mf8r3 zabCmrW#r9ded~2}nU`8~URx|nTH{p^fHHrf>bJedoLBMrnYnVKcKF4)X0=ogtn)eu zxJ5{`Df3ec^*V3*jVeE0ZTPkNNxxEQSLf$XKy+l6*AYQd=5@b$dVwrCUay~w<%Bl< zbs1RDs5PqVW=~EWE#cBT9I4k?Nnwu@ueu{?97r|A!==Dj;ieZlr@Uk9a%9$`FkV%K zI>L=D^J6{fO05`~6?><&No<*`G#}dOXQue*bNZm-C-~%{sS;}p2e{&tC3NvvlmGY? zKkd&j>P7x`bcS5+;}{U}o9Ay$MRW^AW-N~~y6Ke87?QlzNizC}TpkXF12!8=xM|sq ziQLMwmq*9}VQ`-UX|>`}p5A00gp)u;uoEJY(Gu%hxCA^pfa{$J8L#KJ;Te_=2YHgG zWCo>qC+Ni@$Y^~}BiVfvBy2RQ6r?yoERg=#>jr;N11ua`OML7{foi}w6p2{c+%?wJ z2~~lOWgxd4|9XaUo9Y2}M|f_GiB3|=4L{FyEs@|nFAZ!4QCb!%gO51pTNZ}l02yq8 z&9G$e`^EkLU&X&#I4E%$|PT}6BCr7*>J#zpRU)0|6eBz>S=)TRMZQG>uB>L yVQ@o`iIyqEaYL=x=t|b5O2IDgTPql^vxrhz*lvmlAbvvS8PiAkqMW?hkADF;@v2$? diff --git a/apimanager/locale/any/fr/LC_MESSAGES/django.po b/apimanager/locale/any/fr/LC_MESSAGES/django.po deleted file mode 100644 index 95573d7..0000000 --- a/apimanager/locale/any/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,231 +0,0 @@ -# Open Bank Project API Manager i18n files. -# Copyright (C) 2022 TESOBE GmbH -# This file is distributed under the AGPL. Commercial licences are available from TESOBE. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-05-20 11:46+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: atms/templates/atms/index.html:4 base/templates/base.html:83 -msgid "ATMs" -msgstr "GAB" - -#: atms/templates/atms/index.html:17 atms/templates/atms/index.html:24 -msgid "ATM Id" -msgstr "N ° GAB" - -#: atms/templates/atms/index.html:31 -msgid "name" -msgstr "nom" - -#: atms/templates/atms/index.html:40 -msgid "services" -msgstr "services" - -#: atms/templates/atms/index.html:48 -msgid "location_latitude" -msgstr "location_latitude" - -#: atms/templates/atms/index.html:56 -msgid "location_longitude" -msgstr "location_longitude" - -#: atms/templates/atms/index.html:66 -msgid "meta_license_name" -msgstr "meta_license_name" - -#: atms/templates/atms/index.html:73 -msgid "located_at" -msgstr "situé à" - -#: atms/templates/atms/index.html:80 -msgid "has_deposit_capability" -msgstr "has_deposit_capability" - -#: atms/templates/atms/index.html:90 -msgid "is_accessible" -msgstr "est accessible." - -#: atms/templates/atms/index.html:98 -msgid "accessibility_features" -msgstr "accessibilité_caractéristiques" - -#: atms/templates/atms/index.html:105 -msgid "more_info" -msgstr "plus_informations" - -#: atms/templates/atms/index.html:114 -msgid "notes" -msgstr "notes" - -#: atms/templates/atms/index.html:121 -msgid "supported_languages" -msgstr "langues_prises en charge" - -#: atms/templates/atms/index.html:128 -msgid "supported_currencies" -msgstr "devises_prises en charge" - -#: atms/templates/atms/index.html:137 -msgid "location_categories" -msgstr "location_categories" - -#: atms/templates/atms/index.html:145 -msgid "minimum_withdrawal" -msgstr "retrait_minimum" - -#: atms/templates/atms/index.html:152 -msgid "site_name" -msgstr "{$site_name}" - -#: atms/templates/atms/index.html:161 -msgid "branch_identification" -msgstr "identification_de_branche" - -#: atms/templates/atms/index.html:168 -msgid "site_identification" -msgstr "identification_du_site" - -#: base/templates/base.html:11 -#, fuzzy -#| msgid "Welcome to API Manager" -msgid "API Manager" -msgstr "Bienvenue dans API Manager" - -#: base/templates/base.html:48 -msgid "Home" -msgstr "Page d'accueil" - -#: base/templates/base.html:50 consumers/templates/consumers/index.html:10 -msgid "Consumers" -msgstr "Consommateurs" - -#: base/templates/base.html:52 -msgid "Entitlement Requests" -msgstr "Demandes de droits" - -#: base/templates/base.html:57 -msgid "Users" -msgstr "Comptes" - -#: base/templates/base.html:59 -msgid "All" -msgstr "Tous" - -#: base/templates/base.html:60 -msgid "My User" -msgstr "Mon utilisateur" - -#: base/templates/base.html:61 -msgid "Invite Developer" -msgstr "Inviter un développeur" - -#: base/templates/base.html:68 -msgid "Metrics" -msgstr "Indicateurs" - -#: base/templates/base.html:70 -msgid "API Metrics" -msgstr "Métriques API" - -#: base/templates/base.html:71 -msgid "Connector Metrics" -msgstr "Indicateurs du connecteur" - -#: base/templates/base.html:72 -msgid "KPI Dashboard" -msgstr "KPI Tableau de bord" - -#: base/templates/base.html:79 -msgid "Resources" -msgstr "Ressources" - -#: base/templates/base.html:81 -msgid "Customers" -msgstr "Clients" - -#: base/templates/base.html:82 -msgid "Branches" -msgstr "Agences" - -#: base/templates/base.html:92 -msgid "Configurations" -msgstr "Configurations" - -#: base/templates/base.html:94 -msgid "Config" -msgstr "Config" - -#: base/templates/base.html:95 -msgid "Webui Props" -msgstr "Accessoires Webui" - -#: base/templates/base.html:96 -msgid "Method Routings" -msgstr "Acheminement des méthodes" - -#: base/templates/base.html:97 -msgid "Dynamic Endpoints" -msgstr "Points de terminaison dynamiques" - -#: base/templates/base.html:98 -msgid "My API Collections" -msgstr "Mes collections d'API" - -#: base/templates/home.html:5 -msgid "Welcome to API Manager" -msgstr "Bienvenue dans API Manager" - -#: consumers/templates/consumers/includes/filter_time.html:2 -msgid "Last Hour" -msgstr "" - -#: consumers/templates/consumers/index.html:47 -msgid "Statistics" -msgstr "Statistiques" - -#: consumers/templates/consumers/index.html:49 -msgid "Total number of consumers" -msgstr "Nombre total de consommateurs" - -#: consumers/templates/consumers/index.html:50 -msgid "Total number of unique developer email addresses" -msgstr "" - -#: consumers/templates/consumers/index.html:51 -#, fuzzy -#| msgid "Total number of consumers" -msgid "Total number of unique consumer names" -msgstr "Nombre total de consommateurs" - -#: consumers/templates/consumers/index.html:57 -msgid "ID" -msgstr "ID" - -#: consumers/templates/consumers/index.html:58 -msgid "Name" -msgstr "Nom" - -#: consumers/templates/consumers/index.html:59 -msgid "Description" -msgstr "Description" - -#: consumers/templates/consumers/index.html:60 -msgid "Created" -msgstr "Créé" - -#: consumers/templates/consumers/index.html:61 -msgid "Action" -msgstr "Action" diff --git a/apimanager/locale/any/hi/LC_MESSAGES/django.mo b/apimanager/locale/any/hi/LC_MESSAGES/django.mo deleted file mode 100644 index 6e30619b5370d7a02c6376aae6547dc17ece3fa2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2132 zcmaKsTWB0*6vs!cxAoe3EsB03qEaSp1hH%y%_h5PmhL8Dvx&4XGTBTvBa@lU%xo}E z#(*|bq==+>P$ive0Um%=co(d}```q;2fhOzhSTsMY{UEE*^HlN z>z~8NS-%R!-%a=^{1H9`e}<31Kj6LaFL((4o6QdrT>Kt}Irt(J?OpJ0I0QxSFnki8 zf&Jt%2ahoShM?jJ`IoIK{**CC^0M9!--6>% z;;g{u;SW&ke}zZkKiR%Xa$hq{)LU}dc}P{) zK<1>S>npX8M{4|(9;F}2S#(J6q@Ges=_}!k$9O6GzUPT-_8=q`F2-nCRqZHn8lh3B zSNXWE(H~e|W5y1R0pFW;ni<-G6*<1AS3SEC`N6Iw=fd`^9kAC9BVUh-3!XLWG*ro( zYWa>Ag+|GXoXE9jZ7)(ad#-JVEDmwnD0}lxWUHb*Z@YfW4vbUCDq7*pq;CaN1_EdN zDOK~^k>fQ(nQOt-1tt0ieAh*f*2dC!h=ZCP`t6`W4r39r!$=aW`;p};uRS|y2g;vT zja}Jd6B=*ZlWj+h27XJ%ZUbp5@^y@=Cg`BQ|EyitM~PT`JVf>WEn^sG*U3wS45v z$Z#oFvBJo#(}K{oC~{s6j#nybxKJ&r6QydQTnnr(EMb=#WFt4d+` zhf z`k;Ay@0`e*wga=|HT)@>kypnjohUczaywje&<|$Ayz*Ll8uq@{qtapTE1r6xS9QPI zlQWX|d=g(yI*UpCQ4%k!B;HIqXOsA1()lEbzfR&CNxY)RTj^OgIE&FH^Q|Pl%ACSN5nP`W zYnD=t7db(g+oeFf%UU(c#OSw06vrsS+o~2q(xkG@HcM-ILPqO)u$dNw7*qfaY*RdZ zB7tdIwX9NlF0RsY@}(rHG}*$(hdTEUbXv%{M7(WXGQ!{%i!ZbU8GWnGkuC`${2ZWT zoWxnYBb;ujY)#|GiBc zo5Y_HoEQ{BE+N418l%+f1uaT0?XHVk=t%#PbY}X;A&n, 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-05-12 04:46+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: base/templates/base.html:48 -msgid "Home" -msgstr "होमपेज" - -#: base/templates/base.html:50 consumers/templates/consumers/index.html:10 -msgid "Consumers" -msgstr "उपभोक्‍ता" - -#: base/templates/base.html:52 -msgid "Entitlement Requests" -msgstr "एंटाइटेलमेंट अनुरोध" - -#: base/templates/base.html:57 -msgid "Users" -msgstr "उपयोगकर्ता" - -#: base/templates/base.html:59 -msgid "All" -msgstr "सभी" - -#: base/templates/base.html:60 -msgid "My User" -msgstr "मेरा उपयोगकर्ता" - -#: base/templates/base.html:61 -msgid "Invite Developer" -msgstr "डेवलपर को आमंत्रित करें" - -#: base/templates/base.html:68 -msgid "Metrics" -msgstr "मेट्रिक्स" - -#: base/templates/base.html:70 -msgid "API Metrics" -msgstr "एपीआई मेट्रिक्स" - -#: base/templates/base.html:71 -msgid "Connector Metrics" -msgstr "कनेक्टर मेट्रिक्स" - -#: base/templates/base.html:72 -msgid "KPI Dashboard" -msgstr "केपीआई डैशबोर्ड" - -#: base/templates/base.html:79 -msgid "Resources" -msgstr "संसाधन" - -#: base/templates/base.html:81 -msgid "Customers" -msgstr "ग्राहक" - -#: base/templates/base.html:82 -msgid "Branches" -msgstr "कार्यालयों की शाखाए" - -#: base/templates/base.html:83 -msgid "ATMs" -msgstr "एटीएम" - -#: base/templates/base.html:92 -msgid "Configurations" -msgstr "कॉन्फ़िगरेशंस" - -#: base/templates/base.html:94 -msgid "Config" -msgstr "कॉन्फ़िग" - -#: base/templates/base.html:95 -msgid "Webui Props" -msgstr "Webui प्रॉप्स" - -#: base/templates/base.html:96 -msgid "Method Routings" -msgstr "विधि रूटिंग" - -#: base/templates/base.html:97 -msgid "Dynamic Endpoints" -msgstr "डायनामिक एंडपॉइंट्स" - -#: base/templates/base.html:98 -msgid "My API Collections" -msgstr "मेरे एपीआई संग्रह" - -#: base/templates/home.html:5 -msgid "Welcome to API Manager" -msgstr "एपीआई प्रबंधक में आपका स्वागत है" - -#: consumers/templates/consumers/index.html:47 -msgid "Statistics" -msgstr "आँकड़े" - -#: consumers/templates/consumers/index.html:49 -msgid "Total number of consumers" -msgstr "उपभोक्ताओं की कुल संख्या" diff --git a/apimanager/locale/any/newlatest.py b/apimanager/locale/any/newlatest.py deleted file mode 100644 index 9abd6da..0000000 --- a/apimanager/locale/any/newlatest.py +++ /dev/null @@ -1,64 +0,0 @@ -from translate import Translator # Convert one language to another -from concurrent.futures import ThreadPoolExecutor as tpe # Multithreading -from threading import Lock # Locking Purpose - -lock=Lock() # Intializing Lock -languages=['de','es','fr','hi'] # Defining languages - - -# This class is used for converting languages -class clsTranslate(): - def translateText(self, strString, strTolang): - """ - This function translates one language into another language. It takes two - parameters - 1. strString :=> String that you want to convert - 2. strTolang :=> Languages(fr,hi,es etc) - """ - self.strString = strString - self.strTolang = strTolang - translator = Translator(to_lang=self.strTolang) - translation = translator.translate(self.strString) - return (str(translation)) - - -# This is method for writing file - -def writeFile(language): - print(language,"Started") - fileName=f'locale/{language}/LC_MESSAGES/django.po' # Openning a file - try: - with open(fileName,encoding='utf-8') as f: # Reading from the file - a=[i.replace("\n","") for i in f.readlines()] # Reading everyline from a file and store it into a - except Exception as e: - print(fileName, e) - b=0 - for i in range(len(a)): - if 'msgid' in a[i] and a[i]!='msgid ""': - b=i - break - - if b!=0: - trans=clsTranslate() # Creating object for translation class - for i in range(b-1,len(a),4): - - comment,msgid,msgstr=a[i],a[i+1],a[i+2] - if msgstr == 'msgstr ""': - ms=msgid[7:len(msgid)-1] - val=trans.translateText(ms,language) - a[i+2]=f'msgstr "{val}"' - try: - lock.acquire() - with open(fileName,'w',encoding='utf-8') as f: - for i in a: - f.write(f"{i}\n") - print(language,"is completed") - lock.release() - except Exception as e: - print(e) - lock.release() - else: - print(language,"is completed") - -with tpe() as e: - e.map(writeFile,languages) \ No newline at end of file diff --git a/apimanager/locale/es/LC_MESSAGES/django.mo b/apimanager/locale/es/LC_MESSAGES/django.mo index 79290e3e91e9fd72f1c20b4989820d3bc0fad8c0..93883e16b8be0af864ea1639ca02455b971bd114 100644 GIT binary patch literal 16516 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 Vu2!?~Z$9Q#r?Zpeiw2vs{|1DB)EWQ) literal 13711 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 U`^va6S$T)\n" "Language-Team: LANGUAGE \n" @@ -18,23 +18,160 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: atms/templates/atms/index.html:4 base/templates/base.html:83 +msgid "ATMs" +msgstr "cajeros automáticos" + +#: atms/templates/atms/index.html:17 atms/templates/atms/index.html:222 +msgid "ATM Id" +msgstr "ID del cajero automático" + +#: atms/templates/atms/index.html:24 atms/templates/atms/index.html:223 +#: branches/templates/branches/index.html:161 +#: customers/templates/customers/create.html:24 +#: users/templates/users/detail.html:99 +#: users/templates/users/invitation.html:22 +msgid "Bank Id" +msgstr "Id. de banco" + +#: atms/templates/atms/index.html:31 +#: consumers/templates/consumers/index.html:58 +msgid "Name" +msgstr "Nombre" + +#: atms/templates/atms/index.html:40 +msgid "Services" +msgstr "Servicios" + +#: atms/templates/atms/index.html:48 +msgid "Location Latitude" +msgstr "Ubicación Latitud" + +#: atms/templates/atms/index.html:56 +msgid "Location Longitude" +msgstr "Longitud de la ubicación" + +#: atms/templates/atms/index.html:66 +msgid "Meta License Name" +msgstr "Nombre de la Licencia" + +#: atms/templates/atms/index.html:73 +msgid "Located At" +msgstr "La página de presentación, que está ubicada en" + +#: atms/templates/atms/index.html:80 +msgid "Has Deposit Capability" +msgstr "Tiene capacidad de depósito" + +#: atms/templates/atms/index.html:90 +msgid "Is Accessible" +msgstr "producción y validación es" + +#: atms/templates/atms/index.html:98 +msgid "Accessibility Features" +msgstr "Características de accesibilidad" + +#: atms/templates/atms/index.html:105 +#: branches/templates/branches/index.html:207 +msgid "More Info" +msgstr "Más información" + +#: atms/templates/atms/index.html:114 +msgid "Notes" +msgstr "Notas:" + +#: atms/templates/atms/index.html:121 +msgid "Supported Languages" +msgstr "Idiomas admitidos" + +#: atms/templates/atms/index.html:128 +msgid "Supported Currencies" +msgstr "Divisas Soportadas" + +#: atms/templates/atms/index.html:137 +msgid "Location Categories" +msgstr "Categorías de ubicación" + +#: atms/templates/atms/index.html:145 +msgid "Minimum Withdrawal" +msgstr "El retiro mínimo" + +#: atms/templates/atms/index.html:152 +msgid "Site Name" +msgstr "Nobre del sitio" + +#: atms/templates/atms/index.html:161 +msgid "Branch Identification" +msgstr "Identificación de la sucursal" + +#: atms/templates/atms/index.html:168 +msgid "Site Identification" +msgstr "IDENTIFICACIÓN DEL LUGAR" + +#: atms/templates/atms/index.html:173 +msgid "Cash Withdrawal National Fee" +msgstr "Cargo Nacional por Retiro de Efectivo" + +#: atms/templates/atms/index.html:183 +msgid "Balance Inquiry Fee" +msgstr "Cargo por consulta de saldo" + +#: atms/templates/atms/index.html:190 +msgid "Cash Withdrawal International Fee" +msgstr "Cargo internacional por retiro de efectivo" + +#: atms/templates/atms/index.html:199 +#: branches/templates/branches/index.html:176 +#: branches/templates/branches/index.html:203 +msgid "Address" +msgstr "Dirección" + +#: atms/templates/atms/index.html:206 +msgid "Lobby" +msgstr "Sala de espera" + +#: atms/templates/atms/index.html:224 +msgid "ATM Name" +msgstr "Nombre del cajero automático" + +#: atms/templates/atms/index.html:225 +msgid "More info" +msgstr "Más información" + +#: atms/templates/atms/index.html:226 +#: branches/templates/branches/index.html:164 +msgid "Update Button" +msgstr "Botón Actualizar" + +#: base/templates/base.html:11 +#, fuzzy +#| msgid "Welcome to API Manager" +msgid "API Manager" +msgstr "Bienvenido al Administrador de API" + #: base/templates/base.html:48 msgid "Home" msgstr "Casa" -#: base/templates/base.html:50 +#: base/templates/base.html:50 consumers/templates/consumers/index.html:10 msgid "Consumers" msgstr "Consumidoras" #: base/templates/base.html:52 +#: entitlementrequests/templates/entitlementrequests/index.html:8 msgid "Entitlement Requests" msgstr "Solicitudes de derechos" -#: base/templates/base.html:57 +#: base/templates/base.html:57 users/templates/users/index.html:8 msgid "Users" msgstr "Usuarias" #: base/templates/base.html:59 +#: consumers/templates/consumers/includes/filter_apptype.html:4 +#: consumers/templates/consumers/includes/filter_enabled.html:4 +#: consumers/templates/consumers/includes/filter_time.html:7 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:7 +#: users/templates/users/includes/filter_locked.html:4 msgid "All" msgstr "Todos" @@ -44,7 +181,7 @@ msgstr "Todos" msgid "My User" msgstr "Mi usuaria" -#: base/templates/base.html:61 +#: base/templates/base.html:61 users/templates/users/invitation.html:8 msgid "Invite Developer" msgstr "Invitar a desarrollador" @@ -52,13 +189,13 @@ msgstr "Invitar a desarrollador" msgid "Metrics" msgstr "Métrica" -#: base/templates/base.html:70 +#: base/templates/base.html:70 metrics/templates/metrics/api.html:9 #, fuzzy #| msgid "Metrics" msgid "API Metrics" msgstr "Métricas de la API" -#: base/templates/base.html:71 +#: base/templates/base.html:71 metrics/templates/metrics/connector.html:9 msgid "Connector Metrics" msgstr "Métricas del conector" @@ -76,19 +213,15 @@ msgstr "Recursos" msgid "Customers" msgstr "Consumidoras" -#: base/templates/base.html:82 +#: base/templates/base.html:82 branches/templates/branches/index.html:9 msgid "Branches" msgstr "Sucursales" -#: base/templates/base.html:83 -msgid "ATMs" -msgstr "cajeros automáticos" - #: base/templates/base.html:92 msgid "Configurations" msgstr "Configuraciones" -#: base/templates/base.html:94 +#: base/templates/base.html:94 config/templates/config/index.html:9 #, fuzzy #| msgid "Configurations" msgid "Config" @@ -103,6 +236,7 @@ msgid "Method Routings" msgstr "Enrutamiento de métodos" #: base/templates/base.html:97 +#: dynamicendpoints/templates/dynamicendpoints/index.html:7 msgid "Dynamic Endpoints" msgstr "Puntos finales dinámicos" @@ -113,3 +247,1227 @@ msgstr "Mis colecciones de API" #: base/templates/home.html:5 msgid "Welcome to API Manager" msgstr "Bienvenido al Administrador de API" + +#: base/templates/home.html:10 +msgid "" +"This app gives you access to management functionality for the OBP instance at" +msgstr "" +"Esta aplicación le brinda acceso a la funcionalidad de administración para " +"la instancia de OBP en" + +#: base/templates/home.html:10 +msgid "You have to" +msgstr "Tienes que" + +#: base/templates/home.html:10 +msgid "register" +msgstr "Registrarse" + +#: base/templates/home.html:10 +msgid "an account before being able to proceed" +msgstr "una cuenta antes de poder continuar" + +#: base/templates/home.html:10 +msgid "" +"The logged-in user needs to have specific roles granted to use the " +"functionality." +msgstr "" +"El usuario que inició sesión debe tener roles específicos otorgados para " +"usar la funcionalidad." + +#: branches/templates/branches/index.html:22 +#, fuzzy +#| msgid "Branches" +msgid "Branch_Id" +msgstr "ID_sucursal" + +#: branches/templates/branches/index.html:29 +#: users/templates/users/detail.html:75 +msgid "bank_id" +msgstr "bank_id" + +#: branches/templates/branches/index.html:36 +#: branches/templates/branches/index.html:197 +msgid "name" +msgstr "nombre" + +#: branches/templates/branches/index.html:46 +#, fuzzy +#| msgid "Branches" +msgid "branch_type" +msgstr "Sucursales" + +#: branches/templates/branches/index.html:53 +msgid "location_latitude" +msgstr "ubicación_latitud" + +#: branches/templates/branches/index.html:60 +msgid "location_longitude" +msgstr "ubicación longitud" + +#: branches/templates/branches/index.html:70 +msgid "meta_license_name" +msgstr "nombre de la metalicencia" + +#: branches/templates/branches/index.html:77 +msgid "branch_routing_scheme" +msgstr "esquema_de_rama_de_enrutamiento" + +#: branches/templates/branches/index.html:84 +msgid "branch_routing_address" +msgstr "dirección_enrutamiento_sucursal" + +#: branches/templates/branches/index.html:94 +msgid "is_accessible" +msgstr "producción y validación es" + +#: branches/templates/branches/index.html:101 +#, fuzzy +#| msgid "accessible Features" +msgid "accessibleFeatures" +msgstr "Funciones accesibles" + +#: branches/templates/branches/index.html:108 +msgid "more_info" +msgstr "más información" + +#: branches/templates/branches/index.html:118 +msgid "phone_number" +msgstr "número_de_teléfono" + +#: branches/templates/branches/index.html:128 +msgid "address" +msgstr "dirección" + +#: branches/templates/branches/index.html:135 +msgid "lobby" +msgstr "ejercer presión" + +#: branches/templates/branches/index.html:142 +msgid "drive_up" +msgstr "subir" + +#: branches/templates/branches/index.html:151 +#: users/templates/users/detail.html:83 users/templates/users/detail.html:88 +msgid "Add" +msgstr "Agregar" + +#: branches/templates/branches/index.html:160 +#, fuzzy +#| msgid "Branches" +msgid "Branch Id" +msgstr "Identificación de la sucursal" + +#: branches/templates/branches/index.html:162 +#, fuzzy +#| msgid "Branches" +msgid "Branch Name" +msgstr "Nombre de la sucursal" + +#: branches/templates/branches/index.html:163 +msgid "More_info" +msgstr "Más información" + +#: branches/templates/branches/index.html:178 +msgid "line1" +msgstr "Apartado 1" + +#: branches/templates/branches/index.html:179 +msgid "line2" +msgstr "Apartado 2" + +#: branches/templates/branches/index.html:180 +msgid "line3" +msgstr "Apartado 3" + +#: branches/templates/branches/index.html:181 +msgid "city" +msgstr "población" + +#: branches/templates/branches/index.html:182 +msgid "county" +msgstr "Hajdú-Bihar" + +#: branches/templates/branches/index.html:183 +msgid "state" +msgstr "estado" + +#: branches/templates/branches/index.html:184 +msgid "postcode" +msgstr "código postal" + +#: branches/templates/branches/index.html:185 +msgid "country_code" +msgstr "código de país" + +#: branches/templates/branches/index.html:188 +msgid "Location" +msgstr "Ubicación" + +#: branches/templates/branches/index.html:190 +msgid "latitude" +msgstr "latitud" + +#: branches/templates/branches/index.html:191 +msgid "longitude" +msgstr "longitud" + +#: branches/templates/branches/index.html:194 +msgid "Meta License" +msgstr "Meta Licencia" + +#: branches/templates/branches/index.html:196 +msgid "id" +msgstr "identificación" + +#: branches/templates/branches/index.html:200 +#, fuzzy +#| msgid "Method Routings" +msgid "Branch Routing" +msgstr "Enrutamiento de sucursales" + +#: branches/templates/branches/index.html:202 +msgid "Scheme" +msgstr "Pauta" + +#: branches/templates/branches/index.html:206 +#, fuzzy +#| msgid "Branches" +msgid "Branch Type" +msgstr "Sucursales" + +#: branches/templates/branches/index.html:208 +msgid "Phone Number" +msgstr "Número de teléfono" + +#: branches/templates/branches/index.html:209 +msgid "Accessible Features" +msgstr "Características accesibles" + +#: config/templates/config/index.html:11 +msgid "The configuration of the API" +msgstr "La configuración de la API" + +#: consumers/templates/consumers/detail.html:9 +#, fuzzy +#| msgid "Consumers" +msgid "Consumer" +msgstr "Consumidoras" + +#: consumers/templates/consumers/detail.html:15 +#, fuzzy +#| msgid "Parameters" +msgid "Params" +msgstr "Parámetros" + + +#: consumers/templates/consumers/detail.html:64 +#, fuzzy +#| msgid "Consumers" +msgid "Update Consumer" +msgstr "Consumidoras" + +#: consumers/templates/consumers/detail.html:80 +#: metrics/templates/metrics/api.html:165 +msgid "App Name" +msgstr "Nombre de la aplicación" + +#: consumers/templates/consumers/detail.html:87 +#, fuzzy +#| msgid "App Name" +msgid "App Type" +msgstr "Nombre de la aplicación" + +#: consumers/templates/consumers/detail.html:96 +#: metrics/templates/metrics/api.html:164 +msgid "Developer Email" +msgstr "Correo electrónico del desarrollador" + +#: consumers/templates/consumers/detail.html:103 +#, fuzzy +#| msgid "Email" +msgid "User Email" +msgstr "Correo electrónico" + +#: consumers/templates/consumers/detail.html:112 +#: consumers/templates/consumers/index.html:60 +#: entitlementrequests/templates/entitlementrequests/index.html:30 +msgid "Created" +msgstr "Creado" + +#: consumers/templates/consumers/detail.html:119 +#, fuzzy +msgid "Created By User ID" +msgstr "Crear cliente" + +#: consumers/templates/consumers/detail.html:128 +msgid "Redirect URL" +msgstr "Redireccionar URL" + +#: consumers/templates/consumers/detail.html:134 +msgid "Per minute call limit" +msgstr "Límite de llamadas por minuto" + +#: consumers/templates/consumers/detail.html:143 +msgid "Per hour call limit" +msgstr "Límite de llamadas por hora" + +#: consumers/templates/consumers/detail.html:149 +msgid "Per day call limit" +msgstr "Límite de llamadas por día" + +#: consumers/templates/consumers/detail.html:159 +msgid "Per week call limit" +msgstr "Límite de llamadas por semana" + +#: consumers/templates/consumers/detail.html:165 +msgid "Per month call limit" +msgstr "Límite de llamadas por mes" + +#: consumers/templates/consumers/detail.html:175 +#: consumers/templates/consumers/index.html:59 +msgid "Description" +msgstr "Descripción" + +#: consumers/templates/consumers/detail.html:194 +#, fuzzy +#| msgid "Disabled" +msgid "Disable" +msgstr "Deshabilitado" + +#: consumers/templates/consumers/detail.html:196 +#, fuzzy +#| msgid "Enabled" +msgid "Enable" +msgstr "Habilitado" + +#: consumers/templates/consumers/includes/filter_apptype.html:2 +msgid "Web" +msgstr "Web" + +#: consumers/templates/consumers/includes/filter_apptype.html:3 +msgid "Mobile" +msgstr "Móvil" + +#: consumers/templates/consumers/includes/filter_enabled.html:2 +msgid "Enabled" +msgstr "Habilitado" + +#: consumers/templates/consumers/includes/filter_enabled.html:3 +msgid "Disabled" +msgstr "Deshabilitado" + +#: consumers/templates/consumers/includes/filter_time.html:2 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:2 +msgid "Last Hour" +msgstr "Última hora" + +#: consumers/templates/consumers/includes/filter_time.html:3 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:3 +msgid "Last Day" +msgstr "Último día" + +#: consumers/templates/consumers/includes/filter_time.html:4 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:4 +msgid "Last Week" +msgstr "La semana pasada" + +#: consumers/templates/consumers/includes/filter_time.html:5 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:5 +msgid "Last Month" +msgstr "Último mes" + +#: consumers/templates/consumers/includes/filter_time.html:6 +#: entitlementrequests/templates/entitlementrequests/includes/filter_time.html:6 +msgid "Last Year" +msgstr "El año pasado" + +#: consumers/templates/consumers/index.html:47 +#: users/templates/users/index.html:49 +msgid "Statistics" +msgstr "Estadísticas" + +#: consumers/templates/consumers/index.html:49 +msgid "Total number of consumers" +msgstr "Número total de consumidores" + +#: consumers/templates/consumers/index.html:50 +msgid "Total number of unique developer email addresses" +msgstr "Número total de direcciones de correo electrónico de desarrolladores únicas" + +#: consumers/templates/consumers/index.html:51 +msgid "Total number of unique consumer names" +msgstr "Número total de nombres de consumidores únicos" + +#: consumers/templates/consumers/index.html:57 +msgid "ID" +msgstr "Identificación" + +#: consumers/templates/consumers/index.html:61 +#: entitlementrequests/templates/entitlementrequests/index.html:31 +#: entitlementrequests/templates/entitlementrequests/index.html:32 +#: users/templates/users/detail.html:100 users/templates/users/index.html:60 +msgid "Action" +msgstr "Acción" + +#: customers/templates/customers/create.html:10 +#, fuzzy +msgid "Create Customer" +msgstr "Crear cliente" + +#: customers/templates/customers/create.html:31 +msgid "username" +msgstr "nombre de usuario" + +#: customers/templates/customers/create.html:38 +msgid "customer number" +msgstr "número de cliente" + +#: customers/templates/customers/create.html:48 +#, fuzzy +#| msgid "legal_name" +msgid "legal name" +msgstr "Nombre_juridico" + +#: customers/templates/customers/create.html:55 +msgid "mobile phone number" +msgstr "teléfono móvil" + +#: customers/templates/customers/create.html:62 +#: users/templates/users/invitation.html:45 +msgid "email" +msgstr "correo electrónico" + +#: customers/templates/customers/create.html:72 +#, fuzzy +#| msgid "face_image_url" +msgid "face image url" +msgstr "URL de la imagen de la cara" + +#: customers/templates/customers/create.html:79 +#, fuzzy +#| msgid "face_image_date" +msgid "face image date" +msgstr "fecha de la imagen de la cara" + +#: customers/templates/customers/create.html:89 +#, fuzzy +#| msgid "date_of_birth" +msgid "date of birth" +msgstr "fecha de nacimiento" + +#: customers/templates/customers/create.html:96 +#, fuzzy +#| msgid "relationship_status" +msgid "relationship status" +msgstr "estado civil" + +#: customers/templates/customers/create.html:106 +msgid "dependants" +msgstr "personas a cargo" + +#: customers/templates/customers/create.html:113 +#, fuzzy +#| msgid "dob_of_dependants" +msgid "dob of dependants" +msgstr "dob de dependientes" + +#: customers/templates/customers/create.html:123 +#, fuzzy +#| msgid "credit_rating_rating" +msgid "credit rating rating" +msgstr "calificación crediticia" + +#: customers/templates/customers/create.html:130 +#, fuzzy +#| msgid "credit_rating_source" +msgid "credit rating source" +msgstr "fuente de calificación crediticia" + +#: customers/templates/customers/create.html:138 +#, fuzzy +#| msgid "credit_limit_currency" +msgid "credit limit currency" +msgstr "moneda límite de crédito" + +#: customers/templates/customers/create.html:145 +#, fuzzy +#| msgid "credit_limit_amount" +msgid "credit limit amount" +msgstr "importe del límite de crédito" + +#: customers/templates/customers/create.html:155 +#, fuzzy +#| msgid "highest_education_attained" +msgid "highest education attained" +msgstr "mayor_educación_alcanzada" + +#: customers/templates/customers/create.html:162 +#, fuzzy +#| msgid "employment_status" +msgid "employment status" +msgstr "Estado de Empleo" + +#: customers/templates/customers/create.html:172 +#, fuzzy +#| msgid "kyc_status" +msgid "kyc status" +msgstr "estado de kyc" + +#: customers/templates/customers/create.html:179 +#, fuzzy +#| msgid "last_ok_date" +msgid "last ok date" +msgstr "última fecha aceptable" + +#: dynamicendpoints/templates/dynamicendpoints/index.html:10 +msgid "ENDPOINT ID" +msgstr "ID DE PUNTO FINAL" + +#: dynamicendpoints/templates/dynamicendpoints/index.html:13 +msgid "SWAGGER STRING" +msgstr "CUERDA SWAGGER" + +#: dynamicendpoints/templates/dynamicendpoints/index.html:33 +#, fuzzy +#| msgid "Created" +msgid "Create" +msgstr "Creado" + +#: dynamicendpoints/templates/dynamicendpoints/index.html:33 +msgid "saved." +msgstr "salvado." + +#: dynamicendpoints/templates/dynamicendpoints/index.html:40 +#: users/templates/users/detail.html:114 webui/templates/webui/index.html:49 +msgid "Delete" +msgstr "Eliminar" + +#: entitlementrequests/templates/entitlementrequests/index.html:27 +msgid "Role Name" +msgstr "Nombre del Papel" + +#: entitlementrequests/templates/entitlementrequests/index.html:28 +msgid "User name" +msgstr "Nombre de usuario" + +#: entitlementrequests/templates/entitlementrequests/index.html:29 +msgid "Bank ID" +msgstr "Id. de banco" + +#: methodrouting/templates/methodrouting/index.html:7 +#, fuzzy +#| msgid "Method Routings" +msgid "Method Routing" +msgstr "Enrutamiento de métodos" + +#: methodrouting/templates/methodrouting/index.html:10 +#, fuzzy +#| msgid "Connector Metrics" +msgid "Method Name" +msgstr "Métricas del conector" + +#: methodrouting/templates/methodrouting/index.html:13 +#: metrics/templates/metrics/connector.html:87 +#, fuzzy +#| msgid "Connector Metrics" +msgid "Connector Name" +msgstr "Métricas del conector" + +#: methodrouting/templates/methodrouting/index.html:16 +msgid "Pattern" +msgstr "Patrona" + +#: methodrouting/templates/methodrouting/index.html:19 +msgid "Is Match" +msgstr "es partido" + +#: methodrouting/templates/methodrouting/index.html:22 +msgid "Parameters" +msgstr "Parámetros" + +#: methodrouting/templates/methodrouting/index.html:25 +msgid "Method ID" +msgstr "Identificación del método" + +#: methodrouting/templates/methodrouting/index.html:41 +#: methodrouting/templates/methodrouting/index.html:50 +#: methodrouting/templates/methodrouting/index.html:55 +#: methodrouting/templates/methodrouting/index.html:59 +msgid "mapped" +msgstr "mapeada" + + +#: methodrouting/templates/methodrouting/index.html:42 +#: methodrouting/templates/methodrouting/index.html:49 +#: methodrouting/templates/methodrouting/index.html:60 +msgid "internal" +msgstr "interna" + +#: methodrouting/templates/methodrouting/index.html:43 +#: methodrouting/templates/methodrouting/index.html:54 +#: methodrouting/templates/methodrouting/index.html:58 +msgid "kafka_vSept2018" +msgstr "kafka_vseptiembre2018" + + +#: methodrouting/templates/methodrouting/index.html:44 +#: methodrouting/templates/methodrouting/index.html:56 +#: methodrouting/templates/methodrouting/index.html:61 +msgid "akka_vDec2018" +msgstr "akka_vdiciembre2018" + + +#: methodrouting/templates/methodrouting/index.html:45 +#: methodrouting/templates/methodrouting/index.html:53 +#: methodrouting/templates/methodrouting/index.html:62 +msgid "rest_vMar2019" +msgstr "rest_vMar2019" + +#: methodrouting/templates/methodrouting/index.html:46 +#: methodrouting/templates/methodrouting/index.html:52 +#: methodrouting/templates/methodrouting/index.html:63 +msgid "kafka_vMay2019" +msgstr "kafka_vmayo2019" + + +#: methodrouting/templates/methodrouting/index.html:47 +#: methodrouting/templates/methodrouting/index.html:51 +msgid "stored_procedure_vDec2019" +msgstr "procedimiento_almacenado_vdic2019" + + +#: metrics/templates/metrics/api.html:12 +#: metrics/templates/metrics/connector.html:12 +#: metrics/templates/metrics/custom_summary.html:38 +#: metrics/templates/metrics/daily_summary.html:37 +#: metrics/templates/metrics/hourly_summary.html:35 +#: metrics/templates/metrics/monthly_summary.html:38 +#: metrics/templates/metrics/quarterly_summary.html:36 +#: metrics/templates/metrics/yearly_summary.html:38 +msgid "Filter" +msgstr "Filtrar" + +#: metrics/templates/metrics/api.html:24 +msgid "from date" +msgstr "desde fecha" + +#: metrics/templates/metrics/api.html:31 +#: metrics/templates/metrics/connector.html:31 +#: metrics/templates/metrics/custom_summary.html:57 +#: metrics/templates/metrics/daily_summary.html:50 +#: metrics/templates/metrics/hourly_summary.html:48 +#: metrics/templates/metrics/monthly_summary.html:51 +msgid "to_date" +msgstr "fecha hasta" + +#: metrics/templates/metrics/api.html:38 +#: metrics/templates/metrics/connector.html:38 +msgid "limit" +msgstr "Límite" + +#: metrics/templates/metrics/api.html:45 +#: metrics/templates/metrics/connector.html:45 +msgid "offset" +msgstr "compensación" + +#: metrics/templates/metrics/api.html:55 +#, fuzzy +#| msgid "Consumers" +msgid "consumer id" +msgstr "Consumidoras" + +#: metrics/templates/metrics/api.html:63 +msgid "user_id" +msgstr "id_usuario" + +#: metrics/templates/metrics/api.html:71 +msgid "anon" +msgstr "Anón" + +#: metrics/templates/metrics/api.html:79 +msgid "app_name" +msgstr "nombre de la aplicación" + +#: metrics/templates/metrics/api.html:90 +msgid "verb" +msgstr "verbo" + +#: metrics/templates/metrics/api.html:98 +msgid "url" +msgstr "url" + +#: metrics/templates/metrics/api.html:108 +msgid "implemented by partial function" +msgstr "implementado por función parcial" + +#: metrics/templates/metrics/api.html:116 +msgid "implemented in version" +msgstr "implementado en versión" + +#: metrics/templates/metrics/api.html:123 +#: metrics/templates/metrics/connector.html:75 +#: metrics/templates/metrics/custom_summary.html:69 +#: metrics/templates/metrics/daily_summary.html:62 +#: metrics/templates/metrics/hourly_summary.html:60 +#: metrics/templates/metrics/monthly_summary.html:72 +#: metrics/templates/metrics/quarterly_summary.html:61 +#: metrics/templates/metrics/weekly_summary.html:63 +#: metrics/templates/metrics/yearly_summary.html:63 +msgid "Update filter" +msgstr "Actualizar Filtro" + +#: metrics/templates/metrics/api.html:130 +#: metrics/templates/metrics/api_summary_partial_function.html:6 +msgid "List" +msgstr "Lista" + +#: metrics/templates/metrics/api.html:131 +#: metrics/templates/metrics/api_summary_partial_function.html:7 +msgid "Summary by Partial Function" +msgstr "Resumen por Función Parcial" + +#: metrics/templates/metrics/api.html:143 +msgid "Verb" +msgstr "Verbo" + +#: metrics/templates/metrics/api.html:144 +msgid "URL" +msgstr "URL" + +#: metrics/templates/metrics/api.html:145 +#: metrics/templates/metrics/connector.html:86 +msgid "Date" +msgstr "Fecha" + +#: metrics/templates/metrics/api.html:146 +#, fuzzy +#| msgid "Configurations" +msgid "Duration(ms)" +msgstr "Configuraciones" + +#: metrics/templates/metrics/api.html:147 +msgid "Details" +msgstr "Descripción" + +#: metrics/templates/metrics/api.html:162 +msgid "User Name" +msgstr "Nombre de Usuario" + +#: metrics/templates/metrics/api.html:163 users/templates/users/detail.html:11 +#, fuzzy +#| msgid "Users" +msgid "User ID" +msgstr "Usuarias" + +#: metrics/templates/metrics/api.html:166 +#, fuzzy +#| msgid "Consumers" +msgid "Consumer ID" +msgstr "Consumidoras" + +#: metrics/templates/metrics/api.html:167 +msgid "Implemented by Partial Function" +msgstr "Implementado por Función Parcial" + +#: metrics/templates/metrics/api.html:168 +msgid "Implemented In Version" +msgstr "Implementado en versión" + +#: metrics/templates/metrics/connector.html:24 +msgid "from_date" +msgstr "partir de la fecha" + +#: metrics/templates/metrics/connector.html:55 +msgid "connector_name" +msgstr "conector_nombre" + +#: metrics/templates/metrics/connector.html:62 +msgid "function_name" +msgstr "nombre de la función" + +#: metrics/templates/metrics/connector.html:69 +msgid "correlation_id" +msgstr "correlación_id" + +#: metrics/templates/metrics/connector.html:88 +msgid "Function Name" +msgstr "Nombre de la función" + +#: metrics/templates/metrics/connector.html:89 +msgid "Correlation ID" +msgstr "Id. de correlación" + +#: metrics/templates/metrics/connector.html:90 +msgid "Duration (ms)" +msgstr "Duración (ms)" + +#: metrics/templates/metrics/custom_summary.html:10 +#: metrics/templates/metrics/daily_summary.html:11 +#: metrics/templates/metrics/hourly_summary.html:9 +#: metrics/templates/metrics/monthly_summary.html:10 +#: metrics/templates/metrics/quarterly_summary.html:10 +#: metrics/templates/metrics/weekly_summary.html:10 +#: metrics/templates/metrics/yearly_summary.html:10 +msgid "API Usage Report" +msgstr "LACC usage report" + +#: metrics/templates/metrics/custom_summary.html:11 +#: metrics/templates/metrics/daily_summary.html:12 +#: metrics/templates/metrics/hourly_summary.html:10 +#: metrics/templates/metrics/monthly_summary.html:11 +#: metrics/templates/metrics/weekly_summary.html:11 +#: metrics/templates/metrics/yearly_summary.html:11 +msgid "API instance" +msgstr "Instancia de API" + +#: metrics/templates/metrics/custom_summary.html:18 +#: metrics/templates/metrics/daily_summary.html:17 +#: metrics/templates/metrics/hourly_summary.html:15 +#: metrics/templates/metrics/monthly_summary.html:18 +#: metrics/templates/metrics/quarterly_summary.html:16 +#: metrics/templates/metrics/weekly_summary.html:18 +#: metrics/templates/metrics/yearly_summary.html:18 +msgid "Year" +msgstr "Lo que va" + +#: metrics/templates/metrics/custom_summary.html:19 +#: metrics/templates/metrics/daily_summary.html:18 +#: metrics/templates/metrics/hourly_summary.html:16 +#: metrics/templates/metrics/monthly_summary.html:19 +#: metrics/templates/metrics/quarterly_summary.html:17 +#: metrics/templates/metrics/weekly_summary.html:19 +#: metrics/templates/metrics/yearly_summary.html:19 +msgid "Quarter" +msgstr "Trimestre" + +#: metrics/templates/metrics/custom_summary.html:20 +#: metrics/templates/metrics/daily_summary.html:19 +#: metrics/templates/metrics/hourly_summary.html:17 +#: metrics/templates/metrics/monthly_summary.html:20 +#: metrics/templates/metrics/quarterly_summary.html:18 +#: metrics/templates/metrics/weekly_summary.html:20 +#: metrics/templates/metrics/yearly_summary.html:20 +msgid "Month" +msgstr "Mes" + +#: metrics/templates/metrics/custom_summary.html:21 +#: metrics/templates/metrics/daily_summary.html:20 +#: metrics/templates/metrics/hourly_summary.html:18 +#: metrics/templates/metrics/monthly_summary.html:21 +#: metrics/templates/metrics/quarterly_summary.html:19 +#: metrics/templates/metrics/weekly_summary.html:21 +#: metrics/templates/metrics/yearly_summary.html:21 +msgid "Week" +msgstr "Semana" + +#: metrics/templates/metrics/custom_summary.html:22 +#: metrics/templates/metrics/daily_summary.html:21 +#: metrics/templates/metrics/hourly_summary.html:19 +#: metrics/templates/metrics/monthly_summary.html:22 +#: metrics/templates/metrics/quarterly_summary.html:20 +#: metrics/templates/metrics/weekly_summary.html:22 +#: metrics/templates/metrics/yearly_summary.html:22 +msgid "Day" +msgstr "Dia" + +#: metrics/templates/metrics/custom_summary.html:24 +#: metrics/templates/metrics/daily_summary.html:23 +#: metrics/templates/metrics/hourly_summary.html:21 +#: metrics/templates/metrics/monthly_summary.html:24 +#: metrics/templates/metrics/quarterly_summary.html:22 +#: metrics/templates/metrics/weekly_summary.html:24 +#: metrics/templates/metrics/yearly_summary.html:24 +#, fuzzy +#| msgid "Consumers" +msgid "Custom" +msgstr "Consumidoras" + +#: metrics/templates/metrics/custom_summary.html:50 +msgid "from_date_custom" +msgstr "desde la fecha personalizada" + +#: metrics/templates/metrics/custom_summary.html:64 +#: metrics/templates/metrics/daily_summary.html:57 +#: metrics/templates/metrics/hourly_summary.html:55 +#: metrics/templates/metrics/monthly_summary.html:58 +#: metrics/templates/metrics/quarterly_summary.html:56 +#: metrics/templates/metrics/weekly_summary.html:58 +#: metrics/templates/metrics/yearly_summary.html:58 +msgid "Include System Calls" +msgstr "Incluir llamadas del sistema" + +#: metrics/templates/metrics/custom_summary.html:85 +#: metrics/templates/metrics/daily_summary.html:78 +#: metrics/templates/metrics/monthly_summary.html:88 +#: metrics/templates/metrics/quarterly_summary.html:77 +#: metrics/templates/metrics/weekly_summary.html:79 +#: metrics/templates/metrics/yearly_summary.html:79 +msgid "Total API calls" +msgstr "Total de llamadas de API" + +#: metrics/templates/metrics/custom_summary.html:89 +#: metrics/templates/metrics/daily_summary.html:82 +#: metrics/templates/metrics/hourly_summary.html:80 +#: metrics/templates/metrics/monthly_summary.html:92 +#: metrics/templates/metrics/quarterly_summary.html:81 +#: metrics/templates/metrics/weekly_summary.html:83 +#: metrics/templates/metrics/yearly_summary.html:83 +msgid "API calls made using API Explorer" +msgstr "Llamadas API realizadas con API Explorer" + +#: metrics/templates/metrics/custom_summary.html:94 +msgid "Calls per day (last 30 days)" +msgstr "Llamadas por día (últimos 30 días)" + +#: metrics/templates/metrics/custom_summary.html:98 +#: metrics/templates/metrics/monthly_summary.html:101 +#: metrics/templates/metrics/quarterly_summary.html:94 +#: metrics/templates/metrics/weekly_summary.html:92 +#: metrics/templates/metrics/yearly_summary.html:92 +msgid "Average number of calls per day" +msgstr "Número promedio de llamadas" + +#: metrics/templates/metrics/custom_summary.html:102 +#: metrics/templates/metrics/daily_summary.html:95 +#: metrics/templates/metrics/hourly_summary.html:96 +#: metrics/templates/metrics/monthly_summary.html:105 +#: metrics/templates/metrics/quarterly_summary.html:98 +#: metrics/templates/metrics/weekly_summary.html:96 +#: metrics/templates/metrics/yearly_summary.html:96 +msgid "Average response time (ms)" +msgstr "Tiempo de Respuesta Promedio(ms)" + +#: metrics/templates/metrics/custom_summary.html:106 +#: metrics/templates/metrics/daily_summary.html:100 +#: metrics/templates/metrics/hourly_summary.html:101 +#: metrics/templates/metrics/monthly_summary.html:109 +#: metrics/templates/metrics/quarterly_summary.html:103 +#: metrics/templates/metrics/weekly_summary.html:101 +#: metrics/templates/metrics/yearly_summary.html:101 +msgid "Median time from consumer registration to first API call" +msgstr "Tiempo medio desde el registro del consumidor hasta la primera llamada a la API" + + +#: metrics/templates/metrics/custom_summary.html:111 +#: metrics/templates/metrics/daily_summary.html:105 +#: metrics/templates/metrics/hourly_summary.html:106 +#: metrics/templates/metrics/monthly_summary.html:114 +#: metrics/templates/metrics/quarterly_summary.html:108 +#: metrics/templates/metrics/weekly_summary.html:106 +#: metrics/templates/metrics/yearly_summary.html:106 +msgid "Apps with distinct names" +msgstr "Aplicaciones con nombres distintos" + +#: metrics/templates/metrics/custom_summary.html:115 +#: metrics/templates/metrics/monthly_summary.html:118 +msgid "Distinct developer email addresses" +msgstr "Distintas direcciones de correo electrónico para desarrolladores" + +#: metrics/templates/metrics/custom_summary.html:120 +#: metrics/templates/metrics/daily_summary.html:114 +#: metrics/templates/metrics/hourly_summary.html:115 +#: metrics/templates/metrics/monthly_summary.html:123 +#: metrics/templates/metrics/quarterly_summary.html:117 +#: metrics/templates/metrics/weekly_summary.html:115 +#: metrics/templates/metrics/yearly_summary.html:115 +msgid "Active Apps (at least one API call in the period)" +msgstr "Aplicaciones activas (al menos una llamada API en el periodo)" + +#: metrics/templates/metrics/custom_summary.html:124 +#: metrics/templates/metrics/daily_summary.html:118 +#: metrics/templates/metrics/monthly_summary.html:127 +#: metrics/templates/metrics/quarterly_summary.html:121 +#: metrics/templates/metrics/weekly_summary.html:119 +#: metrics/templates/metrics/yearly_summary.html:119 +msgid "Top 10 APIs" +msgstr "Las 10 mejores API" + +#: metrics/templates/metrics/custom_summary.html:128 +#: metrics/templates/metrics/daily_summary.html:122 +#: metrics/templates/metrics/monthly_summary.html:131 +#: metrics/templates/metrics/quarterly_summary.html:125 +#: metrics/templates/metrics/weekly_summary.html:123 +#: metrics/templates/metrics/yearly_summary.html:123 +#, fuzzy +#| msgid "Consumers" +msgid "Top 10 Consumers" +msgstr "Las 10 principales consumidoras" + +#: metrics/templates/metrics/custom_summary.html:132 +#: metrics/templates/metrics/daily_summary.html:126 +#: metrics/templates/metrics/hourly_summary.html:123 +#: metrics/templates/metrics/monthly_summary.html:135 +#: metrics/templates/metrics/quarterly_summary.html:129 +#: metrics/templates/metrics/weekly_summary.html:127 +#: metrics/templates/metrics/yearly_summary.html:127 +msgid "Top Warehouse APIs" +msgstr "Principales API de almacén" + +#: metrics/templates/metrics/custom_summary.html:136 +#: metrics/templates/metrics/daily_summary.html:130 +#: metrics/templates/metrics/monthly_summary.html:139 +#: metrics/templates/metrics/quarterly_summary.html:133 +#: metrics/templates/metrics/weekly_summary.html:131 +#: metrics/templates/metrics/yearly_summary.html:131 +msgid "Top Apps using data warehouse" +msgstr "Principales aplicaciones que utilizan el almacén de datos" + +#: metrics/templates/metrics/custom_summary.html:140 +#: metrics/templates/metrics/daily_summary.html:134 +#: metrics/templates/metrics/monthly_summary.html:143 +#: metrics/templates/metrics/quarterly_summary.html:137 +#: metrics/templates/metrics/weekly_summary.html:135 +#: metrics/templates/metrics/yearly_summary.html:135 +msgid "Total number of CanSearchWarehouse users" +msgstr "Número total de usuarios de CanSearchWarehouse" + +#: metrics/templates/metrics/custom_summary.html:145 +#: metrics/templates/metrics/daily_summary.html:139 +#: metrics/templates/metrics/hourly_summary.html:132 +#: metrics/templates/metrics/monthly_summary.html:148 +#: metrics/templates/metrics/quarterly_summary.html:142 +#: metrics/templates/metrics/weekly_summary.html:140 +#: metrics/templates/metrics/yearly_summary.html:140 +msgid "Users with role CanSearchWarehouse" +msgstr "Usuarios con rol CanSearchWarehouse" + +#: metrics/templates/metrics/custom_summary.html:146 +msgid "N/A" +msgstr "N/A" + +#: metrics/templates/metrics/daily_summary.html:70 +#: metrics/templates/metrics/hourly_summary.html:68 +#: metrics/templates/metrics/monthly_summary.html:80 +#: metrics/templates/metrics/quarterly_summary.html:69 +#: metrics/templates/metrics/weekly_summary.html:71 +#: metrics/templates/metrics/yearly_summary.html:71 +msgid "Period" +msgstr "Período" + +#: metrics/templates/metrics/daily_summary.html:70 +#: metrics/templates/metrics/hourly_summary.html:68 +#: metrics/templates/metrics/monthly_summary.html:80 +#: metrics/templates/metrics/quarterly_summary.html:69 +#: metrics/templates/metrics/weekly_summary.html:71 +#: metrics/templates/metrics/yearly_summary.html:71 +msgid "From" +msgstr "Desde" + +#: metrics/templates/metrics/daily_summary.html:70 +#: metrics/templates/metrics/hourly_summary.html:68 +#: metrics/templates/metrics/monthly_summary.html:80 +#: metrics/templates/metrics/quarterly_summary.html:69 +#: metrics/templates/metrics/weekly_summary.html:71 +#: metrics/templates/metrics/yearly_summary.html:71 +msgid "to" +msgstr "a" + +#: metrics/templates/metrics/daily_summary.html:87 +msgid "Calls per hour" +msgstr "Llamadas por Hora" + +#: metrics/templates/metrics/daily_summary.html:91 +msgid "Average number of calls per hour" +msgstr "Número promedio de llamadas" + +#: metrics/templates/metrics/daily_summary.html:109 +#: metrics/templates/metrics/hourly_summary.html:110 +#: metrics/templates/metrics/quarterly_summary.html:112 +#: metrics/templates/metrics/weekly_summary.html:110 +msgid "Apps with distinct developer email addresses" +msgstr "Aplicaciones con distintas direcciones de correo electrónico de desarrollador" + + +#: metrics/templates/metrics/hourly_summary.html:20 +msgid "Hour" +msgstr "Hora" + +#: metrics/templates/metrics/hourly_summary.html:76 +#, fuzzy +#| msgid "Metrics" +msgid "API calls" +msgstr "Métricas de la API" + +#: metrics/templates/metrics/hourly_summary.html:84 +#: metrics/templates/metrics/hourly_summary.html:88 +msgid "Calls per minute" +msgstr "Llamadas por minuto" + +#: metrics/templates/metrics/hourly_summary.html:92 +msgid "Average number of calls hour" +msgstr "Número promedio de llamadas" + +#: metrics/templates/metrics/hourly_summary.html:119 +msgid "Top APIs" +msgstr "Principales APIs" + +#: metrics/templates/metrics/hourly_summary.html:127 +msgid "Top apps using the data warehouse" +msgstr "Principales aplicaciones que utilizan el almacén de datos" + +#: metrics/templates/metrics/hourly_summary.html:137 +msgid "CanSearchWarehouse users" +msgstr "Usuarios de CanSearchWarehouse" + +#: metrics/templates/metrics/monthly_summary.html:97 +#: metrics/templates/metrics/weekly_summary.html:88 +msgid "Calls per day" +msgstr "Maximo de llamadas por día" + +#: metrics/templates/metrics/quarterly_summary.html:86 +#: metrics/templates/metrics/yearly_summary.html:88 +msgid "Calls per month" +msgstr "llamadas por mes" + +#: users/templates/users/detail.html:8 +#, fuzzy +#| msgid "Users" +msgid "User" +msgstr "Usuarias" + +#: users/templates/users/detail.html:16 users/templates/users/index.html:59 +#: users/templates/users/invitation.html:71 +msgid "Email" +msgstr "Correo electrónico" + +#: users/templates/users/detail.html:21 +msgid "Provider" +msgstr "Proveedor" + +#: users/templates/users/detail.html:26 +msgid "Provider ID" +msgstr "ID de es proveedor" + +#: users/templates/users/detail.html:31 +msgid "Deleted" +msgstr "Eliminado" + +#: users/templates/users/detail.html:36 +#: users/templates/users/includes/filter_locked.html:3 +msgid "Locked" +msgstr "Bloqueado" + +#: users/templates/users/detail.html:47 +msgid "Delete User" +msgstr "Eliminar usuario" + +#: users/templates/users/detail.html:51 +msgid "Unlock User" +msgstr "Desbloquear usuario" + +#: users/templates/users/detail.html:62 +#, fuzzy +#| msgid "Entitlement Requests" +msgid "Add Entitlement" +msgstr "Solicitudes de derechos" + +#: users/templates/users/detail.html:69 users/templates/users/detail.html:98 +msgid "Role name" +msgstr "Nombre de rol" + +#: users/templates/users/detail.html:94 +#, fuzzy +#| msgid "Entitlement Requests" +msgid "Entitlements" +msgstr "Solicitudes de derechos" + +#: users/templates/users/includes/filter_locked.html:2 +msgid "Active" +msgstr "Activo" + +#: users/templates/users/includes/filter_pagination.html:4 +msgid "Offset" +msgstr "Desplazamiento" + +#: users/templates/users/includes/filter_pagination.html:8 +msgid "Limit" +msgstr "Límite" + +#: users/templates/users/includes/filter_role.html:8 +msgid "All Roles" +msgstr "Todas las Funciones" + +#: users/templates/users/index.html:11 +msgid "Filters" +msgstr "Filtros" + +#: users/templates/users/index.html:44 +msgid "Pagination" +msgstr "Paginación" + +#: users/templates/users/index.html:51 +msgid "Total number of users" +msgstr "Total de usuarios" + +#: users/templates/users/index.html:57 +#, fuzzy +#| msgid "Users" +msgid "User Id" +msgstr "Usuarias" + +#: users/templates/users/index.html:58 +#, fuzzy +#| msgid "Users" +msgid "Username" +msgstr "Usuarias" + +#: users/templates/users/index.html:69 +msgid "View" +msgstr "Ver" + +#: users/templates/users/invitation.html:29 +#: users/templates/users/invitation.html:69 +msgid "First Name" +msgstr "Nombre" + +#: users/templates/users/invitation.html:36 +#: users/templates/users/invitation.html:70 +msgid "Last Name" +msgstr "Apellido" + +#: users/templates/users/invitation.html:52 +#: users/templates/users/invitation.html:72 +msgid "company" +msgstr "empresa" + +#: users/templates/users/invitation.html:59 +#: users/templates/users/invitation.html:73 +msgid "country" +msgstr "países" + +#: users/templates/users/invitation.html:74 +msgid "status" +msgstr "estado" + +#: webui/templates/webui/index.html:10 +msgid "WEBUI" +msgstr "WEBUI" + +#: webui/templates/webui/index.html:13 +#, fuzzy +#| msgid "Webui Props" +msgid "Web UI Props Name" +msgstr "Accesorios webui" + +#: webui/templates/webui/index.html:16 +#, fuzzy +#| msgid "Webui Props" +msgid "Web UI Props Value" +msgstr "Accesorios webui" + +#: webui/templates/webui/index.html:19 +#, fuzzy +#| msgid "Webui Props" +msgid "Web UI Props Id" +msgstr "Accesorios webui" + +#: webui/templates/webui/index.html:22 +msgid "Save Value" +msgstr "Guardar valor" + + +#: webui/templates/webui/index.html:48 +msgid "Save" +msgstr "Ahorrar" + diff --git a/apimanager/locale/newlatest1.py b/apimanager/locale/generatePo.py similarity index 100% rename from apimanager/locale/newlatest1.py rename to apimanager/locale/generatePo.py diff --git a/apimanager/locale/hi/LC_MESSAGES/django.mo b/apimanager/locale/hi/LC_MESSAGES/django.mo index 1f214f0c89ff3718be900881212790ad8ff28f66..6e30619b5370d7a02c6376aae6547dc17ece3fa2 100644 GIT binary patch literal 2132 zcmaKsTWB0*6vs!cxAoe3EsB03qEaSp1hH%y%_h5PmhL8Dvx&4XGTBTvBa@lU%xo}E z#(*|bq==+>P$ive0Um%=co(d}```q;2fhOzhSTsMY{UEE*^HlN z>z~8NS-%R!-%a=^{1H9`e}<31Kj6LaFL((4o6QdrT>Kt}Irt(J?OpJ0I0QxSFnki8 zf&Jt%2ahoShM?jJ`IoIK{**CC^0M9!--6>% z;;g{u;SW&ke}zZkKiR%Xa$hq{)LU}dc}P{) zK<1>S>npX8M{4|(9;F}2S#(J6q@Ges=_}!k$9O6GzUPT-_8=q`F2-nCRqZHn8lh3B zSNXWE(H~e|W5y1R0pFW;ni<-G6*<1AS3SEC`N6Iw=fd`^9kAC9BVUh-3!XLWG*ro( zYWa>Ag+|GXoXE9jZ7)(ad#-JVEDmwnD0}lxWUHb*Z@YfW4vbUCDq7*pq;CaN1_EdN zDOK~^k>fQ(nQOt-1tt0ieAh*f*2dC!h=ZCP`t6`W4r39r!$=aW`;p};uRS|y2g;vT zja}Jd6B=*ZlWj+h27XJ%ZUbp5@^y@=Cg`BQ|EyitM~PT`JVf>WEn^sG*U3wS45v z$Z#oFvBJo#(}K{oC~{s6j#nybxKJ&r6QydQTnnr(EMb=#WFt4d+` zhf z`k;Ay@0`e*wga=|HT)@>kypnjohUczaywje&<|$Ayz*Ll8uq@{qtapTE1r6xS9QPI zlQWX|d=g(yI*UpCQ4%k!B;HIqXOsA1()lEbzfR&CNxY)RTj^OgIE&FH^Q|Pl%ACSN5nP`W zYnD=t7db(g+oeFf%UU(c#OSw06vrsS+o~2q(xkG@HcM-ILPqO)u$dNw7*qfaY*RdZ zB7tdIwX9NlF0RsY@}(rHG}*$(hdTEUbXv%{M7(WXGQ!{%i!ZbU8GWnGkuC`${2ZWT zoWxnYBb;ujY)#|GiBc zo5Y_HoEQ{BE+N418l%+f1uaT0?XHVk=t%#PbY}X;A&n String that you want to convert - 2. strTolang :=> Languages(fr,hi,es etc) - """ - self.strString = strString - self.strTolang = strTolang - translator = Translator(to_lang=self.strTolang) - translation = translator.translate(self.strString) - return (str(translation)) - - -# This is method for writing file - -def writeFile(language): - print(language,"Started") - fileName=f'locale/{language}/LC_MESSAGES/django.po' # Openning a file - try: - with open(fileName,encoding='utf-8') as f: # Reading from the file - a=[i.replace("\n","") for i in f.readlines()] # Reading everyline from a file and store it into a - except Exception as e: - print(fileName, e) - b=0 - for i in range(len(a)): - if 'msgid' in a[i] and a[i]!='msgid ""': - b=i - break - - if b!=0: - trans=clsTranslate() # Creating object for translation class - for i in range(b-1,len(a),4): - - comment,msgid,msgstr=a[i],a[i+1],a[i+2] - if msgstr == 'msgstr ""': - ms=msgid[7:len(msgid)-1] - val=trans.translateText(ms,language) - a[i+2]=f'msgstr "{val}"' - try: - lock.acquire() - with open(fileName,'w',encoding='utf-8') as f: - for i in a: - f.write(f"{i}\n") - print(language,"is completed") - lock.release() - except Exception as e: - print(e) - lock.release() - else: - print(language,"is completed") - -with tpe() as e: - e.map(writeFile,languages) \ No newline at end of file diff --git a/apimanager/methodrouting/templates/methodrouting/index.html b/apimanager/methodrouting/templates/methodrouting/index.html index 83b2856..c19cc15 100644 --- a/apimanager/methodrouting/templates/methodrouting/index.html +++ b/apimanager/methodrouting/templates/methodrouting/index.html @@ -1,27 +1,28 @@ {% extends 'base.html' %} {% load static %} +{% load i18n %} {% block page_title %}{{ block.super }} / Method Routings{% endblock page_title %} {% block content %} -

Method Routing

+

{% trans "Method Routing" %}

-
+
-
+
-
+
-
+
-
+
-
+
@@ -37,29 +38,29 @@