Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azerbaijani lang support added #21562

Merged
merged 5 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions generators/languages/support/languages.mts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ const partialLanguages: PartialLanguage[] = [
languageTag: 'hy',
dayjsLocale: 'hy-am',
},
{
name: 'Azerbaijani (Latin)',
displayName: 'Azərbaycan dili',
languageTag: 'az-Latn-az',
angularLocale: 'az-Latn',
dayjsLocale: 'az',
},
{
name: 'Belarusian',
displayName: 'Беларускі',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<%#
Copyright 2013-2023 the original author or authors from the JHipster project.

This file is part of the JHipster project, see https://www.jhipster.tech/
for more information.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-%><%
let helpBlocks = 0; %>
{
"<%= frontendAppName %>": {
"<%= entityTranslationKey %>" : {
"home": {
"title": "<%= entityClassPluralHumanized %>",
"refreshListLabel": "Siyahını yenilə",
<%_ if (!readOnly) { _%>
"createLabel": "Yeni <%= entityClassHumanized %> əlavə et",
"createOrEditLabel": "Yeni <%= entityClassHumanized %> əlavə et və ya yenilə",
<%_ } _%>
<%_ if (searchEngineAny) { _%>
"search": "<%= entityClassHumanized %> axtar",
<%_ } _%>
"notFound": "<%= entityClassPluralHumanized %> məlumatı tapılmadı"
},
<%_ if (!microserviceAppName && !readOnly) { _%>
"created": "{{ param }} ID ilə bir <%= entityClassHumanized %> əlavə edildi",
"updated": "{{ param }} nolu <%= entityClassHumanized %> dəyişildi",
"deleted": "{{ param }} nolu <%= entityClassHumanized %> silindi",
<%_ } _%>
<%_ if (!readOnly) { _%>
"delete": {
"question": "{{ id }} nolu <%= entityClassHumanized %> silinəcək. Davam etmək istəyirsiniz?"
},
<%_ } _%>
"detail": {
"title": "<%= entityClassHumanized %>"
}<% for (idx in fields) {
if (typeof fields[idx].javadoc !== 'undefined') ++helpBlocks; %>,
"<%= fields[idx].fieldName %>": "<%= fields[idx].fieldNameHumanized %>"<% } %><% for (idx in relationships) { %>,
"<%= relationships[idx].relationshipName %>": "<%= relationships[idx].relationshipNameHumanized %>"<% } if (helpBlocks > 0) { %>,
"help": {<% for (idx in fields) {
if (fields[idx].javadoc) {
--helpBlocks; %>
"<%= fields[idx].fieldName %>": "<%= fields[idx].javadoc %>"<% if (helpBlocks > 0) { %>,<% }
}
} %>
}<% } %>
}
}
<%_ if (microserviceAppName && !readOnly) { _%>,
"<%= microserviceAppName %>": {
"<%= entityTranslationKey %>" : {
"created": "{{ param }} ID ilə bir <%= entityClassHumanized %> əlavə edildi",
"updated": "{{ param }} nolu <%= entityClassHumanized %> dəyişdirildi",
"deleted": "{{ param }} nolu <%= entityClassHumanized %> silindi"
}
}
<%_ } _%>
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<%#
Copyright 2013-2023 the original author or authors from the JHipster project.

This file is part of the JHipster project, see https://www.jhipster.tech/
for more information.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-%>
# Error page
error.title=\u0130\u015Fleminiz \u015Fu anda ger\u00e7ekle\u015Ftirilemiyor
error.subtitle=Təəssuf ki, xəta baş verdi
error.status=Status:
error.message=Mesaj:

<%_ if (generateUserManagement) { _%>
# Activation email
email.activation.title=<%= baseName %> hesab aktivləşdirilməsi
email.activation.greeting=Hörmətli {0}
email.activation.text1=<%= baseName %> hesabınız yaradıldı. Zəhmət olmasa, aşağıdakı linkə basaraq aktivkəşdirmə prosesini tamamlayın
email.activation.text2=Hörmətlə,
email.signature=<%= baseName %> Team.

# Creation email
email.creation.text1=<%= baseName %> hesabınız yaradıldı. Zəhmət olmasa, aşağıdakı linkə basaraq davam edin:

# Reset email
email.reset.title=<%= baseName %> Şifrə sıfırlama
email.reset.greeting=Dəyərli {0}
email.reset.text1=<%= baseName %> hesabınız üçün şifrə sıfırlamaq müraciəti qeydə alındı. Zəhmət olmasa, şifrənizi sıfırlamaq üçün aşağıdakı linkə basın:
email.reset.text2=Hörmətlə,
<%_ } _%>
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<%#
Copyright 2013-2023 the original author or authors from the JHipster project.

This file is part of the JHipster project, see https://www.jhipster.tech/
for more information.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-%>
{
"activate": {
"title": "Aktivləşdirmə",
"messages": {
"success": "<strong>İstifadəçi aktivləşdirmə prosesi başa çatdı.</strong> Zəhmət olmasa, ",
"error": "<strong>İstifadəçi aktivləşdirmə prosesi uğurla başa çatmadı.</strong> Zəhmət olmasa, giriş səhifəsindən qeydiyyatdan keçin."
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"configuration": {
"title": "Konfiqurasiya",
"filter": "Filterlə (prefikslə)",
"table": {
"prefix": "Prefiks",
"properties": "Xüsusiyyətlər"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"error": {
"title": "Xəta Səhifəsi!",
"http": {
"400": "Xətalı sorğu.",
"403": "Bu səhifəyə icazəniz yoxdur.",
"404": "Bu səhifə mövcud deyil.",
"405": "İstifadə etdiyiniz HTTP metodu bu URL üçün dəstəklənmir.",
"500": "Daxili server xətası."
},
"concurrencyFailure": "Fərqli bir istifadəçi bu məlumatları sizinlə eyni vaxtda dəyişdirdi. Bu səbəbdən dəyişiklikləriniz qeyd alınmadı.",
"validation": "Serverdə validasiya xətası baş verdi."
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"gateway": {
"title": "Şəbəkə",
"routes": {
"title": "Etibarlı yönləndirmələr",
"url": "URL",
"service": "Xidmət",
"servers": "Mövcud serverlər",
"error": "Diqqət: mövcud server tapılmadı!"
},
"refresh": {
"button": "Yenilə"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
<%#
Copyright 2013-2023 the original author or authors from the JHipster project.

This file is part of the JHipster project, see https://www.jhipster.tech/
for more information.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-%>
{
"global": {
"title": "<%= capitalizedBaseName %>",
"browsehappy": "<strong>Müasir olmayan</strong> bir brauzer istifadə edirsiniz. Zəhmət olmasa, istifadəçi rahatlığını yüksəltmək üçün <a href=\"http://browsehappy.com/?locale=tr\">brauzerinizi güncəlləyin</a>.",
"menu": {
"home": "Ana Səhifə",
"jhipster-needle-menu-add-element": "JHipster will add additional menu entries here (do not translate!)",
"entities": {
"main": "Məlumatlar",
"jhipster-needle-menu-add-entry": "JHipster will add additional entities here (do not translate!)"
},
"account": {
"main": "Hesab",
"settings": "Parametrlər",
"password": "Şifrə",
"sessions": "Sessiyalar",
"login": "Giriş",
"logout": "Çıxış",
"register": "Qeydiyyat"
},
"admin": {
"main": "Administrasiya",
<%_ if (applicationTypeGateway) { _%>
"gateway": "Şəbəkə",
<%_ } _%>
"userManagement": "İstifadəçi idarəetməsi",
"tracker": "İstifadəçi izləmə",
"metrics": "Ölçülər",
"health": "Sağlamlıq",
"configuration": "Konfiqurasiya",
"logs": "Sistem loqları",
"apidocs": "API",
"database": "Məlumat bazası",
"jhipster-needle-menu-add-admin-element": "JHipster will add additional menu entries here (do not translate!)"
},
"language": "Dil"
},
"form": {
"username.label": "İstifadəçi Adı",
"username.placeholder": "İstifadəçi Adınız",
"currentpassword.label": "Mövcud Şifrə",
"currentpassword.placeholder": "Mövcud Şifrəniz",
"newpassword.label": "Yeni Şifrə",
"newpassword.placeholder": "Yeni Şifrəniz",
"confirmpassword.label": "Yeni Şifrə Təsdiq",
"confirmpassword.placeholder": "Yeni Şifrənizi Təsdiqləyin",
"email.label": "E-poçt",
"email.placeholder": "E-poçt adresiniz"
},
"messages": {
"info": {
"authenticated": {
"prefix": "",
"link": "Giriş",
"suffix": " etmək istəyirsinizsə, cari hesablardan birini yoxlaya bilərsniz:<br/>- Admin (istifadəçi adı=\"admin\" və şifrə=\"admin\") <br/>- İstifadəçi (istifadəçi adı=\"user\" və şifrə=\"user\")."
},
"register": {
"noaccount": "Hazırda hesabınız yoxdur?",
"link": "Yeni hesab yarat"
}
},
"error": {
"dontmatch" : "Şifrələr eyni deyil!"
},
"validate": {
"newpassword": {
"required": "Şifrə məcburidir.",
"minlength": "Şifrəniz ən az 4 hərfdən ibarət olmalıdır",
"maxlength": "Şifrəniz 50 hərfdən uzun ola bilməz",
"strength": "Şifrə çətinliyi:"
},
"confirmpassword": {
"required": "Şifrə təsdiqi məcburidir.",
"minlength": "Şifrə təsdiqi ən az 4 hərfdən ibarət olmalıdır",
"maxlength": "Şifrə təsdiqi 50 hərfdən uzun ola bilməz"
},
"email": {
"required": "E-poçt adresiniz zorunludur.",
"invalid": "E-poçt adresiniz düzgün deyil.",
"minlength": "E-poçt adresiniz ən az 5 hərf olmalıdır",
"maxlength": "E-poçt adresiniz 50 hərfdən uzun ola bilməz"
}
}
},
"field": {
"id" : "ID"
},
"ribbon": {
"dev": "Proqram Modu"
},
"item-count": "Cəmi {{total}} məlumatın {{first}} - {{second}} arası göstərilir."
},
"entity": {
"action": {
"addblob": "Binary Böyük Data Əlavə Et",
"addimage": "Şəkil Əlavə Et",
"back": "Geri",
"cancel": "İmtina",
"delete": "Sil",
"edit": "Dəyişiklik Et",
"open": "Aç",
"save": "Yadda Saxla",
"view": "Göstər",
"show": "Göstər {{otherEntity}}"
},
"detail": {
"field": "Məlumat",
"value": "Dəyər"
},
"delete": {
"title": "Silmək istədiyinizdən Əminsiniz?"
},
"validation": {
"required": "Bu məlumat məcburidir.",
"minlength": "Bu məlumat ən az {{min}} hərfdən ibarət ola bilər.",
"maxlength": "Bu məlumat ən çox {{max}} hərfdən ibarət ola bilər.",
"min": "Bu məlumat en az {{min}} olmalıdır.",
"max": "Bu məlumat ən çox {{max}} olmalıdır.",
"minbytes": "Bu məlumat ən az {{min}} byte olmalıdır.",
"maxbytes": "Bu məlumat ən çox {{max}} byte olmalıdır.",
"pattern": "Bu məlumat {{pattern}} formatına uymur.",
"number": "Bu məlumat ədəd olmalı.",
"datetimelocal": "Bu məlumat tarix və ya vaxt olmalıdır.",
"patternLogin": "Bu məlumat hərf, ədəd və ya e-poçt adresi olmalıdır."
},
"filters": {
"set": "Aşağıdaki filterlər qeyd edildi",
"clear": "Filteri təmizlə",
"clearAll": "Bütün filterləri təmizlə"
}
},
"error": {
"internalServerError": "Daxili server xətası",
"server.not.reachable": "Serverə bağlanmaq mümkün deyil",
"url.not.found": "Tapılmadı",
"NotNull": "{{fieldName}} məlumatı boş ola bilməz!",
"Size": "{{fieldName}} məlumatı min/max limitlərini dəstəkləmir!",
"userexists": "Bu istifadəçi adı daha əvvəl istifadə edilib!",
"emailexists": "Bu E-poçt adresi artıq istifadə edilir!",
"idexists": "Yeni bir {{entityName}} əlavə edilərkən ID məlumatına sahib ola bilməz",
"idnull": "Etibarsız ID",
"idinvalid": "Etibarsız Id",
"idnotfound": "ID tapılmadı",
"file": {
"could.not.extract": "Fayl çıxarıla bilmədi",
"not.image": "Faylın bir şəkil olması gözlənilirdi; ancaq \"{{ fileType }}\" olduğu göründü"
}
},
"footer": "Səhifənin aşağısı üçün məlumat"
}
Loading