主要h5页面增加俄语/西班牙语/乌兹别克语翻译
This commit is contained in:
@@ -778,6 +778,9 @@ const languageMap = [
|
|||||||
{ name: '印尼语', code: 'id', fuzzy: ['id', 'in', 'id-', 'in-'] },
|
{ name: '印尼语', code: 'id', fuzzy: ['id', 'in', 'id-', 'in-'] },
|
||||||
{ name: '土耳其语', code: 'tr', fuzzy: ['tr', 'tr-'] },
|
{ name: '土耳其语', code: 'tr', fuzzy: ['tr', 'tr-'] },
|
||||||
{ name: '巴西语', code: 'pt', fuzzy: ['pt-BR', 'pt'] },
|
{ name: '巴西语', code: 'pt', fuzzy: ['pt-BR', 'pt'] },
|
||||||
|
{ name: '西班牙语', code: 'es', fuzzy: ['es'] },
|
||||||
|
{ name: '俄语', code: 'ru', fuzzy: ['ru'] },
|
||||||
|
{ name: '乌兹别克语', code: 'uz', fuzzy: ['uz','uz-UZ'] },
|
||||||
];
|
];
|
||||||
// 判断当前语言环境
|
// 判断当前语言环境
|
||||||
function getLanguageCode(language) {
|
function getLanguageCode(language) {
|
||||||
@@ -861,6 +864,12 @@ function langCodeFun(langCode) {
|
|||||||
document.body.classList.add('china');
|
document.body.classList.add('china');
|
||||||
} else if (langCode == "pt") {
|
} else if (langCode == "pt") {
|
||||||
document.body.classList.add('brazil');
|
document.body.classList.add('brazil');
|
||||||
|
}else if (langCode == "es") {
|
||||||
|
document.body.classList.add('Spanish');
|
||||||
|
}else if (langCode == "ru") {
|
||||||
|
document.body.classList.add('Russian');
|
||||||
|
}else if (langCode == "uz") {
|
||||||
|
document.body.classList.add('Uzbek');
|
||||||
}
|
}
|
||||||
// if (window.location.href.match(/guildAr/)) {
|
// if (window.location.href.match(/guildAr/)) {
|
||||||
// document.documentElement.setAttribute("dir", "ltr");
|
// document.documentElement.setAttribute("dir", "ltr");
|
||||||
|
@@ -46,8 +46,25 @@ function initLocalLang() {
|
|||||||
window.lang = window.langBr || window.langEn;
|
window.lang = window.langBr || window.langEn;
|
||||||
window.lang.code = 'pt';
|
window.lang.code = 'pt';
|
||||||
window.lang.defaults = false;
|
window.lang.defaults = false;
|
||||||
|
} else if (lang === 'es' || window.location.href.match('=es')) {
|
||||||
} else {
|
// 西班牙语 - 使用 window.langBr 或 fallback 到 window.langEn
|
||||||
|
console.log("langHandler" + '西班牙')
|
||||||
|
window.lang = window.langEs || window.langEn;
|
||||||
|
window.lang.code = 'es';
|
||||||
|
window.lang.defaults = false;
|
||||||
|
}else if (lang === 'ru' || window.location.href.match('=ru')) {
|
||||||
|
// 俄语 - 使用 window.langBr 或 fallback 到 window.langEn
|
||||||
|
console.log("langHandler" + '俄语')
|
||||||
|
window.lang = window.langRu || window.langEn;
|
||||||
|
window.lang.code = 'ru';
|
||||||
|
window.lang.defaults = false;
|
||||||
|
}else if (lang === 'uz' || window.location.href.match('=uz')) {
|
||||||
|
// 乌兹别克语 - 使用 window.langBr 或 fallback 到 window.langEn
|
||||||
|
console.log("langHandler" + '乌兹别克语')
|
||||||
|
window.lang = window.langUz || window.langEn;
|
||||||
|
window.lang.code = 'uz';
|
||||||
|
window.lang.defaults = false;
|
||||||
|
}else {
|
||||||
console.log("langHandler" + '默认英语')
|
console.log("langHandler" + '默认英语')
|
||||||
window.lang = langEn
|
window.lang = langEn
|
||||||
window.lang.code = null
|
window.lang.code = null
|
||||||
|
@@ -50,6 +50,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/agencyList.js?v=1.0"></script>
|
<script src="./js/agencyList.js?v=1.0"></script>
|
||||||
|
@@ -89,6 +89,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
|
23
view/moliparty/modules/BD-Center/local/es.js
Normal file
23
view/moliparty/modules/BD-Center/local/es.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langEs = {
|
||||||
|
// Módulo
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Centro BD',
|
||||||
|
Monthly_Number:'Número Mensual de Nuevas Agencias',
|
||||||
|
Total_Agency:'Agencias Totales',
|
||||||
|
Check_Detail:'Ver Detalles de la Agencia',
|
||||||
|
Agency_Number:'Número de Agencia',
|
||||||
|
Agency_Income:'Ingresos Totales de Diamantes de la Agencia',
|
||||||
|
Agency_List:'Lista de Agencias',
|
||||||
|
Agency_ID:'ID de Agencia:',
|
||||||
|
Agent_ID:'ID de Agente:',
|
||||||
|
Create_Date:'Fecha de Creación:',
|
||||||
|
Diamonds_Income:'Ingresos de Diamantes:',
|
||||||
|
Forward_Order:'Orden Ascendente',
|
||||||
|
Inverted_Order:'Orden Descendente',
|
||||||
|
title_date:'Selección de Fecha',
|
||||||
|
Confirm:'Confirmar',
|
||||||
|
Coins_Income:'Ingresos de Monedas:',
|
||||||
|
Agency_Coins_Income:'Ingresos Totales de Monedas de la Agencia',
|
||||||
|
Invite_Agency:'Invitar Agencia',
|
||||||
|
}
|
||||||
|
}
|
23
view/moliparty/modules/BD-Center/local/ru.js
Normal file
23
view/moliparty/modules/BD-Center/local/ru.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langRu = {
|
||||||
|
// Модуль
|
||||||
|
demoModule: {
|
||||||
|
page_title:'BD Центр',
|
||||||
|
Monthly_Number:'Ежемесячное количество новых агентств',
|
||||||
|
Total_Agency:'Всего агентств',
|
||||||
|
Check_Detail:'Просмотреть детали агентства',
|
||||||
|
Agency_Number:'Номер агентства',
|
||||||
|
Agency_Income:'Общий доход агентства в алмазах',
|
||||||
|
Agency_List:'Список агентств',
|
||||||
|
Agency_ID:'ID агентства:',
|
||||||
|
Agent_ID:'ID агента:',
|
||||||
|
Create_Date:'Дата создания:',
|
||||||
|
Diamonds_Income:'Доход в алмазах:',
|
||||||
|
Forward_Order:'Прямой порядок',
|
||||||
|
Inverted_Order:'Обратный порядок',
|
||||||
|
title_date:'Выбор даты',
|
||||||
|
Confirm:'Подтвердить',
|
||||||
|
Coins_Income:'Доход в монетах:',
|
||||||
|
Agency_Coins_Income:'Общий доход агентства в монетах',
|
||||||
|
Invite_Agency:'Пригласить агентство',
|
||||||
|
}
|
||||||
|
}
|
23
view/moliparty/modules/BD-Center/local/uz.js
Normal file
23
view/moliparty/modules/BD-Center/local/uz.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langUz = {
|
||||||
|
// Modul
|
||||||
|
demoModule: {
|
||||||
|
page_title:'BD Markazi',
|
||||||
|
Monthly_Number:'Oylik Yangi Agentliklar Soni',
|
||||||
|
Total_Agency:'Jami Agentliklar',
|
||||||
|
Check_Detail:'Agentlik Tafsilotlarini Ko‘rish',
|
||||||
|
Agency_Number:'Agentlik Raqami',
|
||||||
|
Agency_Income:'Agentlikning Umumiy Olmos Daromadi',
|
||||||
|
Agency_List:'Agentliklar Ro‘yxati',
|
||||||
|
Agency_ID:'Agentlik ID:',
|
||||||
|
Agent_ID:'Agent ID:',
|
||||||
|
Create_Date:'Yaratilgan Sana:',
|
||||||
|
Diamonds_Income:'Olmosh Daromadi:',
|
||||||
|
Forward_Order:'Oldinga Tartib',
|
||||||
|
Inverted_Order:'Teskari Tartib',
|
||||||
|
title_date:'Sana Tanlash',
|
||||||
|
Confirm:'Tasdiqlash',
|
||||||
|
Coins_Income:'Tangalar Daromadi:',
|
||||||
|
Agency_Coins_Income:'Agentlikning Umumiy Tanga Daromadi',
|
||||||
|
Invite_Agency:'Agentlikni Taklif Qilish',
|
||||||
|
}
|
||||||
|
}
|
@@ -117,6 +117,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
|
18
view/moliparty/modules/eventDetails/local/es.js
Normal file
18
view/moliparty/modules/eventDetails/local/es.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
langEs = {
|
||||||
|
// Módulo
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Detalles del Evento',
|
||||||
|
Unsub:'Cancelar suscripción',
|
||||||
|
Sub:'Suscribirse',
|
||||||
|
Participate:'Participar',
|
||||||
|
Start_Time:'Hora de inicio',
|
||||||
|
Event_starting:'Evento comenzando',
|
||||||
|
Event_ended:'Evento terminado',
|
||||||
|
Room_ID:'ID de Sala',
|
||||||
|
Sub_successful:'Suscripción exitosa',
|
||||||
|
Cancel_successful:'Cancelación exitosa',
|
||||||
|
Event_swing:'¡El evento está en pleno apogeo, haz clic para unirte ahora!!!',
|
||||||
|
Open_Molistar:'Abrir MoliParty',
|
||||||
|
Copy_Successfully:'Copiado exitosamente',
|
||||||
|
}
|
||||||
|
}
|
18
view/moliparty/modules/eventDetails/local/ru.js
Normal file
18
view/moliparty/modules/eventDetails/local/ru.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
langRu = {
|
||||||
|
// Модуль
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Детали события',
|
||||||
|
Unsub:'Отписаться',
|
||||||
|
Sub:'Подписаться',
|
||||||
|
Participate:'Участвовать',
|
||||||
|
Start_Time:'Время начала',
|
||||||
|
Event_starting:'Событие начинается',
|
||||||
|
Event_ended:'Событие завершено',
|
||||||
|
Room_ID:'ID комнаты',
|
||||||
|
Sub_successful:'Подписка успешна',
|
||||||
|
Cancel_successful:'Отмена успешна',
|
||||||
|
Event_swing:'Событие в самом разгаре, нажмите чтобы присоединиться сейчас!!!',
|
||||||
|
Open_Molistar:'Открыть MoliParty',
|
||||||
|
Copy_Successfully:'Скопировано успешно',
|
||||||
|
}
|
||||||
|
}
|
18
view/moliparty/modules/eventDetails/local/uz.js
Normal file
18
view/moliparty/modules/eventDetails/local/uz.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
langUz = {
|
||||||
|
// Modul
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Tadbir Tafsilotlari',
|
||||||
|
Unsub:'Obunani bekor qilish',
|
||||||
|
Sub:'Obuna bo‘lish',
|
||||||
|
Participate:'Qatnashish',
|
||||||
|
Start_Time:'Boshlanish vaqti',
|
||||||
|
Event_starting:'Tadbir boshlanmoqda',
|
||||||
|
Event_ended:'Tadbir tugadi',
|
||||||
|
Room_ID:'Xona ID',
|
||||||
|
Sub_successful:'Obuna muvaffaqiyatli',
|
||||||
|
Cancel_successful:'Bekor qilish muvaffaqiyatli',
|
||||||
|
Event_swing:'Tadbir to‘liq tebranishda, hozir qo‘shilish uchun bosing!!!',
|
||||||
|
Open_Molistar:'MoliParty ochish',
|
||||||
|
Copy_Successfully:'Muvaffaqiyatli nusxalandi',
|
||||||
|
}
|
||||||
|
}
|
@@ -66,6 +66,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/shareIndex.js?v=1.0"></script>
|
<script src="./js/shareIndex.js?v=1.0"></script>
|
||||||
|
@@ -78,6 +78,9 @@
|
|||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/BANK.js"></script>
|
<script src="./js/BANK.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
</html>
|
</html>
|
@@ -61,6 +61,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/bankTransferLira.js"></script>
|
<script src="./js/bankTransferLira.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -61,6 +61,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/CARD_USD.js"></script>
|
<script src="./js/CARD_USD.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -61,6 +61,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/PAYONNER.js"></script>
|
<script src="./js/PAYONNER.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -57,6 +57,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/USDT.js"></script>
|
<script src="./js/USDT.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -56,6 +56,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/VODAFONE.js"></script>
|
<script src="./js/VODAFONE.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/adminSet.js"></script>
|
<script src="./js/adminSet.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/adminSet2.js"></script>
|
<script src="./js/adminSet2.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -82,5 +82,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/agencyDiamondIncome.js"></script>
|
<script src="./js/agencyDiamondIncome.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -50,6 +50,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/amethystWallet.js"></script>
|
<script src="./js/amethystWallet.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -59,7 +59,10 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/bill.js?v=1.0"></script>
|
<script src="./js/bill.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
@@ -117,6 +117,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/cos-js-sdk-v5.min.js"></script>
|
<script src="./js/cos-js-sdk-v5.min.js"></script>
|
||||||
<script src="./js/createGuild.js"></script>
|
<script src="./js/createGuild.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -59,6 +59,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/diamondStatistics.js"></script>
|
<script src="./js/diamondStatistics.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
|
||||||
|
@@ -64,5 +64,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/diamondWithdraw.js"></script>
|
<script src="./js/diamondWithdraw.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -103,7 +103,10 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/generalSalary.js"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="./js/generalSalary.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</html>
|
</html>
|
||||||
|
@@ -41,6 +41,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<!-- <script src="./js/guide.js"></script> -->
|
<!-- <script src="./js/guide.js"></script> -->
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@@ -65,5 +65,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/guild.js?v=2"></script>
|
<script src="./js/guild.js?v=2"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -70,5 +70,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/guildInfoSet.js?v=1.0"></script>
|
<script src="./js/guildInfoSet.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -267,5 +267,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/index.js?v=3.111"></script>
|
<script src="./js/index.js?v=3.111"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/invitation.js?v=1.0"></script>
|
<script src="./js/invitation.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
605
view/moliparty/modules/guild-ar/local/es.js
Normal file
605
view/moliparty/modules/guild-ar/local/es.js
Normal file
@@ -0,0 +1,605 @@
|
|||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Cargando...`,
|
||||||
|
layerIndex2: `Exitoso`,
|
||||||
|
layerIndex3: `Error de red`,
|
||||||
|
text1: `Nombre de la agencia`,
|
||||||
|
text2: `Nombre de la agencia`,
|
||||||
|
text3: `Administrador`,
|
||||||
|
text4: `Configuración`,
|
||||||
|
text5: `Ingresos`,
|
||||||
|
text6: `Invitar`,
|
||||||
|
text7: `Detalles`,
|
||||||
|
text8: `Nombre de la agencia`,
|
||||||
|
text9: `Cancelar`,
|
||||||
|
text10: `Confirmar`,
|
||||||
|
text11: 'Nombre de la agencia:',
|
||||||
|
text12: `Maestro`,
|
||||||
|
text13: `Administrador`,
|
||||||
|
text14: `Eliminar`,
|
||||||
|
text15_h1: `Eliminar miembros`,
|
||||||
|
text15: `Antes de decidir eliminar un miembro, preste atención a lo siguiente:<br><br>
|
||||||
|
<strong>Restablecimiento del volumen de diamantes y salario:</strong> <br>
|
||||||
|
Después de eliminar un miembro, el volumen de diamantes y salario acumulados por el miembro en la agencia se restablecerá. <br><br>
|
||||||
|
<strong>Por favor, considere cuidadosamente su decisión.</strong>`,
|
||||||
|
text16: `ID de MoliParty`,
|
||||||
|
text17_h1: `Instrucciones para salir de la agencia`,
|
||||||
|
text17: `Antes de decidir salir de la agencia, preste atención to lo siguiente:<br><br>
|
||||||
|
<strong>Restablecimiento del Volumen de Diamantes y Salario:</strong> <br>
|
||||||
|
Después de salir de la agencia, el volumen de diamantes y salario que haya acumulado en la agencia se restablecerá. Por favor, considere cuidadosamente su decisión. <br><br>
|
||||||
|
<strong>Proceso de confirmación de solicitud de salida: </strong><br>
|
||||||
|
Después de enviar una solicitud para salir de la agencia, el agente revisará su solicitud dentro de 24 horas. Si el agente no la procesa dentro de 24 horas, el sistema confirmará automáticamente su solicitud de salida después de 24 horas.`,
|
||||||
|
text18: `Salir`,
|
||||||
|
texts1: "Estadísticas de ingresos en monedas",
|
||||||
|
texts2: "Estadísticas de ingresos salariales",
|
||||||
|
texts3: "Configuración de la agencia",
|
||||||
|
texts4: "Configuración del administrador",
|
||||||
|
texts5: "Mi salario",
|
||||||
|
newtext1: "Mis ingresos",
|
||||||
|
newtext2: "Cuenta salarial",
|
||||||
|
newtext3: "Información de la agencia",
|
||||||
|
newtext4: "Administrador de la agencia",
|
||||||
|
newtext5: "Nivel de la agencia",
|
||||||
|
newtext6: "Nivel actual de la agencia:",
|
||||||
|
newtext7: "Requisitos para el siguiente nivel:",
|
||||||
|
coins: "Monedas",
|
||||||
|
transfer_salary: "Transferencia salarial:",
|
||||||
|
audit: 'En revisión',
|
||||||
|
weeklyRewardsText1: 'Recompensas semanales del Host',
|
||||||
|
weeklyRewardsText2: 'Puedes obtener un total de 2,240,000 monedas.',
|
||||||
|
weeklyRewardsText22: 'Puedes obtener un total de 3,000,000 monedas.',
|
||||||
|
weeklyRewardsText3: 'Obtener',
|
||||||
|
weeklyRewardsText33: 'Obtenido',
|
||||||
|
weeklyRewardsText4: 'Nivel del Host',
|
||||||
|
weeklyRewardsText5: 'Tiempo de reinicio: lunes 0:00 (GMT+3)',
|
||||||
|
weeklyRewardsText6: 'Tiempo de reinicio: lunes 0:00 (GMT+8)',
|
||||||
|
Invite_Agency:'Invitar a la agencia',
|
||||||
|
Invite_Host:'Invitar al Host',
|
||||||
|
Diamond_statistics:'Estadísticas de ingresos de diamantes',
|
||||||
|
Diamond_income:'Ingresos de diamantes',
|
||||||
|
Valid_days:'Días válidos',
|
||||||
|
Agency_income:'Ingresos de diamantes de la agencia',
|
||||||
|
My_data:'Mis datos',
|
||||||
|
Member_data:'Datos de miembros',
|
||||||
|
Date_txt:'Fecha',
|
||||||
|
Diamond_income_txt:'Ingresos de <br >diamantes',
|
||||||
|
Active_time:'Tiempo <br >activo',
|
||||||
|
Valid_days_txt:'Días <br >válidos',
|
||||||
|
Min:'Min',
|
||||||
|
Members:'Miembros',
|
||||||
|
Me:'Yo',
|
||||||
|
Amethyst_Wallet:'Billetera de Amatista',
|
||||||
|
Exchange_Coin:'Intercambiar Amatista por monedas',
|
||||||
|
Amethyst_Balance:'Saldo de Amatista:',
|
||||||
|
Bills:'Facturas',
|
||||||
|
Exchange_quantity:function(num){
|
||||||
|
return `La cantidad de intercambio debe ser múltiplo de ${num}`
|
||||||
|
},
|
||||||
|
Exchangeable_Coins:'Monedas intercambiables:',
|
||||||
|
Confirm_Exchange:'Confirmar intercambio',
|
||||||
|
Please_enter:'Por favor ingrese',
|
||||||
|
Exchange_successful:'Intercambio exitoso',
|
||||||
|
Total_coins:'¡Recompensa total de hasta 7,214,920 monedas!',
|
||||||
|
Countdown:'Cuenta regresiva:',
|
||||||
|
Day:'Día',
|
||||||
|
Host_Level:'Nivel del Host:',
|
||||||
|
Reward_detail:' Detalles de la recompensa',
|
||||||
|
Daily_Rewards:'Recompensas principales',
|
||||||
|
Extra_Rewards:'Recompensas adicionales',
|
||||||
|
Complete_days:'Completar 5 días',
|
||||||
|
mic_chat:'2 horas diarias de chat con micrófono',
|
||||||
|
Unlock_time:'¡Completa 180 minutos de tiempo de micrófono y obtén recompensas de hasta 1,000,330 monedas!',
|
||||||
|
Days:'Tiempo de micrófono',
|
||||||
|
hours_time:'3 horas de tiempo de micrófono',
|
||||||
|
The_wallet:'Recompensa recibida exitosamente, las monedas se han depositado en su billetera.',
|
||||||
|
valid_day:'La duración válida de 3 horas con micrófono debe completarse dentro de un día. Si no se alcanza la duración de 3 horas el mismo día, las estadísticas de duración con micrófono se reiniciarán al día siguiente.',
|
||||||
|
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Administrador`,
|
||||||
|
text2: `Buscar`,
|
||||||
|
text3: `Sin datos`,
|
||||||
|
text4: `¿Asignar administrador?`,
|
||||||
|
text5: `Cancelar`,
|
||||||
|
text6: `Confirmar`,
|
||||||
|
text7: `Agregar`,
|
||||||
|
text8: `Agregado`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Administrador`,
|
||||||
|
text2: `Configuración`,
|
||||||
|
text3: `Agregar administrador`,
|
||||||
|
text4: `Sin datos`,
|
||||||
|
text5: `¿Eliminar administrador?`,
|
||||||
|
text6: `Cancelar`,
|
||||||
|
text7: `Confirmar`,
|
||||||
|
text8: `Maestro`,
|
||||||
|
text9: `Administrador`,
|
||||||
|
text10: `Eliminar`,
|
||||||
|
text11: 'Eliminado',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Todo`,
|
||||||
|
text2: `Todo`,
|
||||||
|
text3: `Agencia`,
|
||||||
|
text4: `¿Solicitud para unirse?`,
|
||||||
|
text5: `Cancelar`,
|
||||||
|
text6: `Confirmar`,
|
||||||
|
text7: `Agregar`,
|
||||||
|
text8: 'Enviado',
|
||||||
|
newText1: 'Crear agencia',
|
||||||
|
newText2: 'En revisión',
|
||||||
|
newText3: 'Por favor, espere pacientemente~',
|
||||||
|
newText4: 'Unirse',
|
||||||
|
newText5: 'ID del Agente:',
|
||||||
|
placeholder: 'Por favor ingrese el ID del Agente para buscar',
|
||||||
|
},
|
||||||
|
createGuild: {
|
||||||
|
text1: `Solicitud de registro de agencia`,
|
||||||
|
text2: `Avatar de la agencia`,
|
||||||
|
text3: `Nombre de la agencia`,
|
||||||
|
text4: `Información de contacto del agente`,
|
||||||
|
text5: `Tarjeta de identificación del agente`,
|
||||||
|
text6: `ID del invitador`,
|
||||||
|
text7: `Imagen del invitador.`,
|
||||||
|
text8: `Enviado exitosamente`,
|
||||||
|
text9: `Gracias por enviar su solicitud para crear un gremio. La revisaremos dentro de 3 días hábiles.
|
||||||
|
Por favor
|
||||||
|
espere pacientemente y le responderemos lo antes posible.`,
|
||||||
|
text10: `Confirmar`,
|
||||||
|
placeholder: `Por favor ingrese`,
|
||||||
|
null: `Los campos obligatorios no pueden estar vacíos`,
|
||||||
|
imgerr:'Error al cargar la imagen, por favor intente nuevamente',
|
||||||
|
Area_Code:'Código de área',
|
||||||
|
Contact_type:'Tipo de contacto',
|
||||||
|
Select:'Seleccionar',
|
||||||
|
Please_number:'Por favor ingrese su número de teléfono',
|
||||||
|
confirm: `OK`,
|
||||||
|
text9_new:'¡Felicitaciones por crear su nueva agencia! <br /> Para ayudarle a crecer más rápido, agregue a nuestro gerente oficial ahora y obtenga instantáneamente: <br /> ✔ 7000 monedas <br /> ✔ Placa de nombre exclusiva <br /> ✔ Vehículo de edición limitada (3 días) <br /> ¡Haga que su agencia se destaque desde el primer día!',
|
||||||
|
text10_new:'Encontrar gerente oficial',
|
||||||
|
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Configuración de la agencia`,
|
||||||
|
text2: `Configuración de la agencia`,
|
||||||
|
text3: `Nombre: `,
|
||||||
|
text4: `Nombre`,
|
||||||
|
text5: `Fondo:`,
|
||||||
|
text6: `Eliminar`,
|
||||||
|
text7: `Guardar`,
|
||||||
|
text8: `Cargado`,
|
||||||
|
textConte1: `Guardar`,
|
||||||
|
textConte2: `Editar`,
|
||||||
|
textConte3: `Agregar`,
|
||||||
|
textConte4: `Cuenta de pago`,
|
||||||
|
text55: `Avatar de la agencia`,
|
||||||
|
toastMsgText1: `La carga de GIF no es compatible actualmente`,
|
||||||
|
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Buscar`,
|
||||||
|
text2: `Encontrar MoliPartyID`,
|
||||||
|
text3: `Buscar`,
|
||||||
|
text4: `Sin contenido`,
|
||||||
|
text5: `¿Invitar a la agencia?`,
|
||||||
|
text6: `Cancelar`,
|
||||||
|
text7: `Confirmar`,
|
||||||
|
text8: `Agregar`,
|
||||||
|
text9: `Sin datos`,
|
||||||
|
text10: 'Invitación enviada',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior a la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior a la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow3: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow4: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow5: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow6: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow7: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow8: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow9: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow10: {
|
||||||
|
text1: `Estadísticas de ingresos`,
|
||||||
|
text2: `Ingresos totales en monedas`,
|
||||||
|
text3: `Ingresos en monedas de miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior to la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder los 90 días`,
|
||||||
|
text6: `Ingresos en monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Estadísticas de salarios`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Mi salario`,
|
||||||
|
text5: `Salario en monedas`,
|
||||||
|
text6: `Comisión`,
|
||||||
|
text7: `Diamantes restantes`,
|
||||||
|
text8: `Salarios de miembros`,
|
||||||
|
text9: `Mes`,
|
||||||
|
text10: `Miembro`,
|
||||||
|
text11: `Días válidos`,
|
||||||
|
text12: `Ingresos en monedas`,
|
||||||
|
text13: `Salario en monedas`,
|
||||||
|
text14: `Diamantes restantes`,
|
||||||
|
text15: `Ver`,
|
||||||
|
text16: `Detalles`,
|
||||||
|
text17: `Actual`,
|
||||||
|
textss: 'Salario total en monedas:'
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Salario del miembro`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Salario en monedas`,
|
||||||
|
text5: `Ingresos en monedas`,
|
||||||
|
text6: `Días válidos`,
|
||||||
|
text7: `Diamantes restantes`,
|
||||||
|
text8: `Detalles diarios`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Fecha`,
|
||||||
|
text11: `Duración`,
|
||||||
|
text12: `Ingreso diario`,
|
||||||
|
text13: `Ingreso mensual`,
|
||||||
|
text14: `Salario en monedas`,
|
||||||
|
},
|
||||||
|
memberFlow222: {
|
||||||
|
text1: `Salario del miembro`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Salario en monedas`,
|
||||||
|
text5: `Ingresos en monedas`,
|
||||||
|
text6: `Días válidos`,
|
||||||
|
text7: `Diamantes restantes`,
|
||||||
|
text8: `Detalles diarios`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Fecha`,
|
||||||
|
text11: `Duración`,
|
||||||
|
text12: `Ingreso diario`,
|
||||||
|
text13: `Ingreso mensual`,
|
||||||
|
text14: `Salario en monedas`,
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
text1: `Buscar`,
|
||||||
|
text2: `Encontrar MoliPartyID`,
|
||||||
|
text3: `Buscar`,
|
||||||
|
text4: `Sin contenido`,
|
||||||
|
text5: `¿Solicitar unirse?`,
|
||||||
|
text6: `Eliminar`,
|
||||||
|
text7: `Cancelar`,
|
||||||
|
text8: 'Enviado',
|
||||||
|
},
|
||||||
|
lay: {
|
||||||
|
ok: 'Confirmar',
|
||||||
|
close: 'Cancelar',
|
||||||
|
departed: 'Salido',
|
||||||
|
},
|
||||||
|
personal: {
|
||||||
|
duration: `Mi duración:`,
|
||||||
|
text1: `Personal<span></span>`,
|
||||||
|
text2: `Agencia<span></span>`,
|
||||||
|
text3: `Mis diamantes:`,
|
||||||
|
text4: `Retirar`,
|
||||||
|
text5: `Ingresar a mi cuenta salarial`,
|
||||||
|
text6: `Ingresos de este ciclo`,
|
||||||
|
text7: `(Ingresos totales generados al retirar diamantes a la cuenta salarial durante este ciclo)`,
|
||||||
|
text8: `Ingresos totales`,
|
||||||
|
text9: `Ingresos liquidados`,
|
||||||
|
text10: `Ingresos restantes`,
|
||||||
|
text11: `Ingresos del último ciclo`,
|
||||||
|
text12: `Ingresos totales`,
|
||||||
|
text13: `Ingresos liquidados`,
|
||||||
|
text14: `Ingresos restantes`,
|
||||||
|
text15: `Salario del agente`,
|
||||||
|
text16: `Salario del agente`,
|
||||||
|
text17: `Ingresos de diamantes`,
|
||||||
|
text18: `Tasa de ingresos del agente`,
|
||||||
|
text19: `Datos del anfitrión`,
|
||||||
|
text20: `Ingresos de diamantes`,
|
||||||
|
},
|
||||||
|
diamondWithdraw: {
|
||||||
|
text1: `Retiro de diamantes`,
|
||||||
|
text2: `Confirmar`,
|
||||||
|
text3: `Retiro exitoso`,
|
||||||
|
text4: `Ingresar cuenta salarial`,
|
||||||
|
text5: `Cancelar`,
|
||||||
|
text6: `Diamantes`,
|
||||||
|
text7: `Retirado exitosamente <b>0</b>ÜS a la cuenta salarial`,
|
||||||
|
text9: `Mis diamantes:`
|
||||||
|
},
|
||||||
|
salary: {
|
||||||
|
text1: `Cuenta salarial`,
|
||||||
|
text2: `Mi salario:`,
|
||||||
|
text3: `Factura`,
|
||||||
|
text4: `Personal`,
|
||||||
|
text5: `Agente`,
|
||||||
|
text6: `Método de transferencia`,
|
||||||
|
text7: `Transferir dólares`,
|
||||||
|
text8: `Confirmar`,
|
||||||
|
text9: `Recargar agente`,
|
||||||
|
text10: `No hay agente de recarga en esta área`,
|
||||||
|
text11: `Cancelar`,
|
||||||
|
text12: `Confirmar`,
|
||||||
|
text13: `Recargar agente`,
|
||||||
|
text14: `¿Estás seguro de que quieres enviar <b></b> al agente para liquidación?`,
|
||||||
|
text15: `Cantidad personalizada`,
|
||||||
|
text16: `Todo`,
|
||||||
|
text17: `Se puede intercambiar por <b>0</b> monedas de oro`,
|
||||||
|
text18: `(Intercambio a una proporción de 1:<b>7000</b>)`,
|
||||||
|
text19: `Intercambiar monedas`,
|
||||||
|
text20: `Transferir a oficial`,
|
||||||
|
text21: `El canal de retiro se abre el 1 y 2 de cada mes.`,
|
||||||
|
text22: `Liquidación del agente`,
|
||||||
|
text23: `Transferir a agente de monedas`,
|
||||||
|
text24: `Por favor ingrese la cantidad a redimir`,
|
||||||
|
text25: `Monedas`,
|
||||||
|
textnew1: `Cuenta de retiro`,
|
||||||
|
textnew2: `Desvinculado`,
|
||||||
|
textnew3: `Seleccionar cuenta`,
|
||||||
|
textnew4: `Retiro`,
|
||||||
|
textnew5: `Monto de retiro`,
|
||||||
|
textnew6: `Tasa de comisión`,
|
||||||
|
textnew7: `Comisión`,
|
||||||
|
textnew8: `Tasa de cambio USD a EGP: 1:`,
|
||||||
|
textnew8_TRY: `Tasa de cambio USD a TRY: 1:`,
|
||||||
|
textnew9: `Monto estimado`,
|
||||||
|
textnew10: `Nota: El monto de llegada estimado puede verse afectado por la tasa de cambio bancaria, etc.`,
|
||||||
|
textnew11: `Retirar`,
|
||||||
|
textnew12: `Cancelar`,
|
||||||
|
textnew13: `Por favor seleccione una cuenta de retiro`,
|
||||||
|
textnew14: `Más del monto máximo transferible.`,
|
||||||
|
textnew15: `Éxito`,
|
||||||
|
textnew16: `El tiempo de procesamiento para solicitudes de retiro es del 3 al 10 de cada mes.`,
|
||||||
|
textnew17: `OK`,
|
||||||
|
textnew18: `Calificación de estrellas:`,
|
||||||
|
Reminder:'Recordatorio',
|
||||||
|
tip_txt1:function (num) {
|
||||||
|
return `¿Estás seguro de que quieres transferir el salario (<span style="color:#313131;font-weight:500">ÜS:${num}</span>) a este usuario?`
|
||||||
|
},
|
||||||
|
tip_txt2:'¡La operación no se puede deshacer, por favor opere con precaución!',
|
||||||
|
},
|
||||||
|
newENsalary:{
|
||||||
|
textnew16:'¡Envío exitoso! El sistema ha aceptado su solicitud y la procesará lo antes posible.',
|
||||||
|
text21:'El Agente puede retirar una vez por semana.'
|
||||||
|
},
|
||||||
|
bill: {
|
||||||
|
text1: `Factura`,
|
||||||
|
text2: `Ingresos`,
|
||||||
|
text3: `Gastos`,
|
||||||
|
text4: `Salario:`,
|
||||||
|
text5: `Retiro de diamantes`,
|
||||||
|
text6: `Retiro oficial`,
|
||||||
|
text7: `Intercambio de salario por monedas`,
|
||||||
|
text8: `Transferencia de salario`,
|
||||||
|
text9: `Salario del agente`,
|
||||||
|
text10: `En revisión`,
|
||||||
|
text11: `Emitido`,
|
||||||
|
text12: `Rechazado`,
|
||||||
|
text13: ``,
|
||||||
|
OfficialIncrease:'Aumento salarial oficial',
|
||||||
|
OfficialDeduction:'Deducción salarial oficial'
|
||||||
|
},
|
||||||
|
success: {
|
||||||
|
text1: `Liquidación exitosa`,
|
||||||
|
text2: `Intercambio exitoso`,
|
||||||
|
text3: `Salario`,
|
||||||
|
text4: `Estado actual`,
|
||||||
|
text5: `Intercambio exitoso`,
|
||||||
|
text6: `Cuenta de intercambio`,
|
||||||
|
text7: `Intercambiar monedas`,
|
||||||
|
text8: `Tiempo de intercambio`,
|
||||||
|
text9: `Orden`,
|
||||||
|
text10: ``,
|
||||||
|
text11: `Estado actual`,
|
||||||
|
text12: `Exitoso`,
|
||||||
|
text13: `Cuenta`,
|
||||||
|
text14: `Cuenta de liquidación`,
|
||||||
|
text15: `Tiempo`,
|
||||||
|
text16: `Orden`,
|
||||||
|
},
|
||||||
|
payonner: {
|
||||||
|
text1: `Payonner`,
|
||||||
|
text2: `Confirmar`,
|
||||||
|
text3: `Desvincular`,
|
||||||
|
text4: `País`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Tipo de moneda:`,
|
||||||
|
text7: `País`,
|
||||||
|
text8: `payeeAccountNo`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Los campos obligatorios no pueden estar vacíos`,
|
||||||
|
},
|
||||||
|
bank: {
|
||||||
|
text1: `Confirmar`,
|
||||||
|
text2: `Desvincular`,
|
||||||
|
text3: `País`,
|
||||||
|
text4: `OK`,
|
||||||
|
text5: `País`,
|
||||||
|
text6: `payeeAccountNo`,
|
||||||
|
text7: `Nombre del banco`,
|
||||||
|
text8: `Código SWIFT`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Dirección`,
|
||||||
|
},
|
||||||
|
pTitle: {
|
||||||
|
p1: `País`,
|
||||||
|
p2: `payeeAccountNo`,
|
||||||
|
p3: `Nombre del banco (solo ingresar en inglés)`,
|
||||||
|
p4: `Código SWIFT (solo ingresar en inglés)`,
|
||||||
|
p5: `payeeName (solo ingresar en inglés)`,
|
||||||
|
p6: `Dirección (solo ingresar en inglés)`,
|
||||||
|
p7: `payeeAccount (formato de correo electrónico)`,
|
||||||
|
DocumentID:'DocumentID',
|
||||||
|
AccountType:'Tipo de cuenta',
|
||||||
|
Email:'E:Email',
|
||||||
|
Phone:'P:Teléfono',
|
||||||
|
CPFCNPJ:'C:CPF/CNPJ',
|
||||||
|
EVP:'B:EVP',
|
||||||
|
p71: `payeeAccount (número de teléfono)`,
|
||||||
|
p72:'Formato: 11 dígitos que comienzan con 09',
|
||||||
|
p73:'Formato: 11 dígitos que comienzan con 84',
|
||||||
|
AccountNo:'Número de cuenta',
|
||||||
|
payeeAccount:'payeeAccount',
|
||||||
|
|
||||||
|
},
|
||||||
|
weeklyRewards: {
|
||||||
|
text1: `Recompensas semanales del Host`,
|
||||||
|
text2: `Puedes obtener <b>2240000</b> monedas en total.`,
|
||||||
|
text22: `Puedes obtener <b>3000000</b> monedas en total.`,
|
||||||
|
text3: `Obtener`,
|
||||||
|
text4: `Nivel del Host`,
|
||||||
|
text5: `Obtenido`,
|
||||||
|
},
|
||||||
|
weeklyRewardsRule: {
|
||||||
|
text1: `Reglas`,
|
||||||
|
text2: `<p>1 Tiempo de actividad: 0:00-23:59 (GMT+3) cada semana.</p>
|
||||||
|
<p>2 Recompensas en monedas: Calcula los ingresos de diamantes del usuario cada semana, y puedes obtener monedas correspondientes cuando
|
||||||
|
alcanzas cierto nivel.</p>
|
||||||
|
<p>3 Gradiente de recompensas en monedas</p>`,
|
||||||
|
text3: `./images/weeklyRewardsRule2.png`,
|
||||||
|
text33: `./images/weeklyRewardsRule2-tren.png`,
|
||||||
|
text22: `<p>1 Tiempo de actividad: 0:00-23:59 (GMT+8) cada semana.</p>
|
||||||
|
<p>2 Recompensas en monedas: Calcula los ingresos de diamantes del usuario cada semana, y puedes obtener monedas correspondientes cuando
|
||||||
|
alcanzas cierto nivel.</p>
|
||||||
|
<p>3 Gradiente de recompensas en monedas</p>`,
|
||||||
|
text2New: `<p style="font-weight:500"> Tiempo de actividad:</p>
|
||||||
|
<p>Cada lunes 00:00 a domingo 23:59 (GMT+8)</p>
|
||||||
|
<p style="font-weight:500">Tareas de actividad:</p>
|
||||||
|
<p>¡Completa las tareas a continuación para ganar incentivos de diamantes para los niveles correspondientes!</p>
|
||||||
|
<p style="font-weight:500">Tarea 1: Contribución por volumen</p>
|
||||||
|
<p>Gana recompensas basadas en los diamantes totales recibidos del consumo esta semana.</p>
|
||||||
|
<p style="font-weight:500">Tarea 2: Diligencia en línea</p>
|
||||||
|
<p>Requisito de duración: Duración diaria del micrófono de voz ≥ 180 minutos.</p>`,
|
||||||
|
Important_Notes: `<p style="font-weight:500">Notas importantes:</p>
|
||||||
|
<p>Reinicio semanal: Tu volumen de ingresos de diamantes y días válidos se reinician automáticamente al comienzo de una nueva semana.</p>
|
||||||
|
<p>La duración válida de 3 horas con micrófono debe completarse dentro de un día. Si no se alcanza la duración de 3 horas el mismo día, las estadísticas de duración con micrófono se reiniciarán al día siguiente.</p>
|
||||||
|
<p>Distribución de recompensas: Las recompensas deben reclamarse manualmente.</p>
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
agencyDiamondIncome: {
|
||||||
|
text1: `Ingresos de diamantes de la agencia`,
|
||||||
|
text2: `Construyendo una agencia, puedes buscar ingresos de diamantes en cualquier momento.`,
|
||||||
|
text3: `La salida del usuario de la agencia puede resultar en cambios de datos.`,
|
||||||
|
text4: `Hasta`,
|
||||||
|
text5: `Selección de fecha`,
|
||||||
|
text6: `Confirmar`,
|
||||||
|
text7: `Buscar`,
|
||||||
|
},
|
||||||
|
bankTransferLira: {
|
||||||
|
text1: `Transferencia bancaria lira`,
|
||||||
|
text2: `Confirmar`,
|
||||||
|
text3: `Desvincular`,
|
||||||
|
text4: `País`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Tipo de moneda:`,
|
||||||
|
text7: `País`,
|
||||||
|
text8: `TR+24Números`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Los campos obligatorios no pueden estar vacíos`,
|
||||||
|
text11: `payeeAccount(IBAN)`,
|
||||||
|
},
|
||||||
|
CARD_USD: {
|
||||||
|
text1: `Tarjeta usd`,
|
||||||
|
text2: `Confirmar`,
|
||||||
|
text3: `Desvincular`,
|
||||||
|
text4: `País`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Tipo de moneda:`,
|
||||||
|
text7: `País`,
|
||||||
|
text8: `payeeAccount`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Los campos obligatorios no pueden estar vacíos`,
|
||||||
|
text11: `payeeAccount`,
|
||||||
|
},
|
||||||
|
}
|
741
view/moliparty/modules/guild-ar/local/ru.js
Normal file
741
view/moliparty/modules/guild-ar/local/ru.js
Normal file
@@ -0,0 +1,741 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Загрузка...`,
|
||||||
|
layerIndex2: `Успешно`,
|
||||||
|
layerIndex3: `Ошибка сети`,
|
||||||
|
text1: `Название агентства`,
|
||||||
|
text2: `Название агентства`,
|
||||||
|
text3: `Администратор`,
|
||||||
|
text4: `Настройки`,
|
||||||
|
text5: `Доход`,
|
||||||
|
text6: `Пригласить`,
|
||||||
|
text7: `Подробности`,
|
||||||
|
text8: `Название агентства`,
|
||||||
|
text9: `Отмена`,
|
||||||
|
text10: `Подтвердить`,
|
||||||
|
text11: 'Название агентства:',
|
||||||
|
text12: `Мастер`,
|
||||||
|
text13: `Администратор`,
|
||||||
|
text14: `Удалить`,
|
||||||
|
text15_h1: `Удаление участников`,
|
||||||
|
text15: `Прежде чем удалить участника, обратите внимание на следующее:<br><br>
|
||||||
|
<strong>Обнуление оборота алмазов и зарплаты:</strong> <br>
|
||||||
|
После удаления участника оборот алмазов и зарплата, накопленные участником в агентстве, будут обнулены. <br><br>
|
||||||
|
<strong>Пожалуйста, тщательно обдумайте ваше решение.</strong>`,
|
||||||
|
text16: `MoliParty ID`,
|
||||||
|
text17_h1: `Инструкции по выходу из агентства`,
|
||||||
|
text17: `Прежде чем выйти из агентства, обратите внимание на следующее:<br><br>
|
||||||
|
<strong>Обнуление оборота алмазов и зарплаты:</strong> <br>
|
||||||
|
После выхода из агентства ваш накопленный оборот алмазов и зарплата в агентстве будут обнулены. Пожалуйста, тщательно обдумайте ваше решение. <br><br>
|
||||||
|
<strong>Процесс одобрения заявки на выход: </strong><br>
|
||||||
|
После подачи заявки на выход из агентства агент рассмотрит ваш запрос в течение 24 часов. Если агент не обработает его в течение 24 часов, система автоматически одобрит вашу заявку на выход через 24 часа.`,
|
||||||
|
text18: `Выйти`,
|
||||||
|
texts1: "Статистика дохода в монетах",
|
||||||
|
texts2: "Статистика дохода от зарплаты",
|
||||||
|
texts3: "Настройки агентства",
|
||||||
|
texts4: "Настройки администратора",
|
||||||
|
texts5: "Моя зарплата",
|
||||||
|
newtext1: "Мой доход",
|
||||||
|
newtext2: "Зарплатный счет",
|
||||||
|
newtext3: "Информация об агентстве",
|
||||||
|
newtext4: "Администратор агентства",
|
||||||
|
newtext5: "Уровень агентства",
|
||||||
|
newtext6: "Текущий уровень агентства:",
|
||||||
|
newtext7: "Для следующего уровня нужно:",
|
||||||
|
coins: "Монеты",
|
||||||
|
transfer_salary: "Перевод зарплаты:",
|
||||||
|
audit: 'На проверке',
|
||||||
|
weeklyRewardsText1: 'Еженедельные награды ведущего',
|
||||||
|
weeklyRewardsText2: 'Всего вы можете получить 2240000 монет.',
|
||||||
|
weeklyRewardsText22: 'Всего вы можете получить 3000000 монет.',
|
||||||
|
weeklyRewardsText3: 'Получить',
|
||||||
|
weeklyRewardsText33: 'Получено',
|
||||||
|
weeklyRewardsText4: 'Уровень ведущего',
|
||||||
|
weeklyRewardsText5: 'Время сброса: понедельник 0:00 (GMT+3)',
|
||||||
|
weeklyRewardsText6: 'Время сброса: понедельник 0:00 (GMT+8)',
|
||||||
|
Invite_Agency:'Пригласить агентство',
|
||||||
|
Invite_Host:'Пригласить ведущего',
|
||||||
|
Diamond_statistics:'Статистика дохода в алмазах',
|
||||||
|
Diamond_income:'Доход в алмазах',
|
||||||
|
Valid_days:'Действительные дни',
|
||||||
|
Agency_income:'Доход агентства в алмазах',
|
||||||
|
My_data:'Мои данные',
|
||||||
|
Member_data:'Данные участников',
|
||||||
|
Date_txt:'Дата',
|
||||||
|
Diamond_income_txt:'Доход в<br>алмазах',
|
||||||
|
Active_time:'Активное<br>время',
|
||||||
|
Valid_days_txt:'Действительные<br>дни',
|
||||||
|
Min:'Мин',
|
||||||
|
Members:'Участники',
|
||||||
|
Me:'Я',
|
||||||
|
Amethyst_Wallet:'Аметистовый кошелек',
|
||||||
|
Exchange_Coin:'Обменять аметист на монеты',
|
||||||
|
Amethyst_Balance:'Баланс аметиста:',
|
||||||
|
Bills:'Счета',
|
||||||
|
Exchange_quantity:function(num){
|
||||||
|
return `Количество обмена должно быть кратно ${num}`
|
||||||
|
},
|
||||||
|
Exchangeable_Coins:'Обмениваемые монеты:',
|
||||||
|
Confirm_Exchange:'Подтвердить обмен',
|
||||||
|
Please_enter:'Пожалуйста, введите',
|
||||||
|
Exchange_successful:'Обмен успешен',
|
||||||
|
Total_coins:'Общая награда до 7,214,920 монет!',
|
||||||
|
Countdown:'Обратный отсчет:',
|
||||||
|
Day:'День',
|
||||||
|
Host_Level:'Уровень ведущего:',
|
||||||
|
Reward_detail:' Детали награды',
|
||||||
|
Daily_Rewards:'Базовые награды',
|
||||||
|
Extra_Rewards:'Дополнительные награды',
|
||||||
|
Complete_days:'Завершить 5 дней',
|
||||||
|
mic_chat:'2 часа ежедневного общения в микрофоне',
|
||||||
|
Unlock_time:'Завершите 180 минут времени в микрофоне, получите награду до 1,000,330 монет!',
|
||||||
|
Days:'Время в микрофоне',
|
||||||
|
hours_time:'3 часа времени в микрофоне',
|
||||||
|
The_wallet:'Награда успешно получена, монеты зачислены в ваш кошелек.',
|
||||||
|
valid_day:'Действительная 3-часовая продолжительность в микрофоне должна быть завершена в течение одного дня. Если 3-часовая продолжительность не будет достигнута в тот же день, статистика продолжительности в микрофоне будет сброшена на следующий день.',
|
||||||
|
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Администратор`,
|
||||||
|
text2: `Найти`,
|
||||||
|
text3: `Нет данных`,
|
||||||
|
text4: `Назначить администратора?`,
|
||||||
|
text5: `Отмена`,
|
||||||
|
text6: `Подтвердить`,
|
||||||
|
text7: `Добавить`,
|
||||||
|
text8: `Добавлено`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Администратор`,
|
||||||
|
text2: `Настройки`,
|
||||||
|
text3: `Добавить администратора`,
|
||||||
|
text4: `Нет данных`,
|
||||||
|
text5: `Удалить администратора?`,
|
||||||
|
text6: `Отмена`,
|
||||||
|
text7: `Подтвердить`,
|
||||||
|
text8: `Мастер`,
|
||||||
|
text9: `Администратор`,
|
||||||
|
text10: `Удалить`,
|
||||||
|
text11: 'Удалено',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Все`,
|
||||||
|
text2: `Все`,
|
||||||
|
text3: `Агентство`,
|
||||||
|
text4: `Подать заявку на вступление?`,
|
||||||
|
text5: `Отмена`,
|
||||||
|
text6: `Подтвердить`,
|
||||||
|
text7: `Добавить`,
|
||||||
|
text8: 'Отправлено',
|
||||||
|
newText1: 'Создать агентство',
|
||||||
|
newText2: 'На рассмотрении',
|
||||||
|
newText3: 'Пожалуйста, подождите терпеливо~',
|
||||||
|
newText4: 'Присоединиться',
|
||||||
|
newText5: 'ID агента:',
|
||||||
|
placeholder: 'Пожалуйста, введите ID агента для поиска',
|
||||||
|
},
|
||||||
|
createGuild: {
|
||||||
|
text1: `Заявка на регистрацию агентства`,
|
||||||
|
text2: `Аватар агентства`,
|
||||||
|
text3: `Название агентства`,
|
||||||
|
text4: `Контактная информация агента`,
|
||||||
|
text5: `Удостоверение личности агента`,
|
||||||
|
text6: `ID пригласившего`,
|
||||||
|
text7: `Фото пригласившего`,
|
||||||
|
text8: `Заявка успешно отправлена`,
|
||||||
|
text9: `Спасибо за подачу заявки на создание гильдии. Мы рассмотрим ее в течение 3 рабочих дней.
|
||||||
|
Пожалуйста,
|
||||||
|
подождите терпеливо, и мы дадим вам ответ как можно скорее.`,
|
||||||
|
text10: `Подтвердить`,
|
||||||
|
placeholder: `Пожалуйста, введите`,
|
||||||
|
null: `Обязательные поля не могут быть пустыми`,
|
||||||
|
imgerr:'Не удалось загрузить изображение, попробуйте еще раз',
|
||||||
|
Area_Code:'Код региона',
|
||||||
|
Contact_type:'Тип контакта',
|
||||||
|
Select:'Выбрать',
|
||||||
|
Please_number:'Пожалуйста, введите ваш номер телефона',
|
||||||
|
confirm: `OK`,
|
||||||
|
text9_new:'Поздравляем с созданием нового агентства! <br /> Чтобы помочь вам быстрее расти, добавьте нашего официального менеджера сейчас и мгновенно получите: <br /> ✔ 7000 монет <br /> ✔ Эксклюзивную табличку с именем <br /> ✔ Ограниченный транспорт (3 дня) <br /> Сделайте ваше агентство заметным с первого дня!',
|
||||||
|
text10_new:'Найти официального менеджера',
|
||||||
|
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Настройки агентства`,
|
||||||
|
text2: `Настройки агентства`,
|
||||||
|
text3: `Название: `,
|
||||||
|
text4: `Название`,
|
||||||
|
text5: `Фон:`,
|
||||||
|
text6: `Удалить`,
|
||||||
|
text7: `Сохранить`,
|
||||||
|
text8: `Загружено`,
|
||||||
|
textConte1: `Сохранить`,
|
||||||
|
textConte2: `Редактировать`,
|
||||||
|
textConte3: `Добавить`,
|
||||||
|
textConte4: `Платежный счет`,
|
||||||
|
text55: `Аватар агентства`,
|
||||||
|
toastMsgText1: `Загрузка GIF в настоящее время не поддерживается`,
|
||||||
|
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Найти`,
|
||||||
|
text2: `Найти MoliPartyID`,
|
||||||
|
text3: `Найти`,
|
||||||
|
text4: `Нет содержимого`,
|
||||||
|
text5: `Пригласить в агентство?`,
|
||||||
|
text6: `Отмена`,
|
||||||
|
text7: `Подтвердить`,
|
||||||
|
text8: `Добавить`,
|
||||||
|
text9: `Нет данных`,
|
||||||
|
text10: 'Приглашение отправлено',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow3: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow4: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow5: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow6: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow7: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow8: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow9: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow10: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow11: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow12: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow13: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow14: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow15: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow16: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow17: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow18: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow19: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow20: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow21: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow23: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow24: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow25: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow26: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow27: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow28: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow29: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow30: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow31: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow32: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow33: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow34: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow35: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow36: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow37: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow38: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow39: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow40: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow41: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow42: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow43: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow44: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow45: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow46: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow47: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow48: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow49: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow50: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
}
|
||||||
|
}
|
809
view/moliparty/modules/guild-ar/local/uz.js
Normal file
809
view/moliparty/modules/guild-ar/local/uz.js
Normal file
@@ -0,0 +1,809 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Yuklanmoqda...`,
|
||||||
|
layerIndex2: `Muvaffaqiyatli`,
|
||||||
|
layerIndex3: `Tarmoq xatosi`,
|
||||||
|
text1: `Agentlik nomi`,
|
||||||
|
text2: `Agentlik nomi`,
|
||||||
|
text3: `Administrator`,
|
||||||
|
text4: `Sozlamalar`,
|
||||||
|
text5: `Daromad`,
|
||||||
|
text6: `Taklif qilish`,
|
||||||
|
text7: `Tafsilotlar`,
|
||||||
|
text8: `Agentlik nomi`,
|
||||||
|
text9: `Bekor qilish`,
|
||||||
|
text10: `Tasdiqlash`,
|
||||||
|
text11: 'Agentlik nomi:',
|
||||||
|
text12: `Master`,
|
||||||
|
text13: `Administrator`,
|
||||||
|
text14: `O'chirish`,
|
||||||
|
text15_h1: `A'zolarni olib tashlash`,
|
||||||
|
text15: `A'zoni olib tashlashga qaror qilishdan oldin, quyidagilarga e'tibor bering:<br><br>
|
||||||
|
<strong>Olmos aylanmasi va maoshni qayta o'rnatish:</strong> <br>
|
||||||
|
A'zoni olib tashlaganingizdan so'ng, agentlikda a'zo tomonidan to'plangan olmos aylanmasi va maosh qayta o'rnatiladi. <br><br>
|
||||||
|
<strong>Iltimos, qaroringizni diqqat bilan ko'rib chiqing.</strong>`,
|
||||||
|
text16: `MoliParty ID`,
|
||||||
|
text17_h1: `Agentlikdan chiqish bo'yicha ko'rsatmalar`,
|
||||||
|
text17: `Agentlikdan chiqishga qaror qilishdan oldin, quyidagilarga e'tibor bering:<br><br>
|
||||||
|
<strong>Olmos Aylanmasi va Maoshni Qayta O'rnatish:</strong> <br>
|
||||||
|
Agentlikdan chiqqaningizdan so'ng, agentlikda to'plagan olmos aylanmasi va maoshingiz qayta o'rnatiladi. Iltimos, qaroringizni diqqat bilan ko'rib chiqing. <br><br>
|
||||||
|
<strong>Chiqish arizasini tasdiqlash jarayoni: </strong><br>
|
||||||
|
Agentlikdan chiqish uchun ariza topshirgandan so'ng, agent 24 soat ichida sizning so'rovingizni ko'rib chiqadi. Agar agent 24 soat ichida uni qayta ishlamasa, tizim 24 soatdan keyin sizning chiqish arizangizni avtomatik ravishda tasdiqlaydi.`,
|
||||||
|
text18: `Chiqish`,
|
||||||
|
texts1: "Tangalar daromadi statistikasi",
|
||||||
|
texts2: "Maosh daromadi statistikasi",
|
||||||
|
texts3: "Agentlik sozlamalari",
|
||||||
|
texts4: "Administrator sozlamalari",
|
||||||
|
texts5: "Mening maoshim",
|
||||||
|
newtext1: "Mening daromadim",
|
||||||
|
newtext2: "Maosh hisobi",
|
||||||
|
newtext3: "Agentlik ma'lumotlari",
|
||||||
|
newtext4: "Agentlik administratori",
|
||||||
|
newtext5: "Agentlik darajasi",
|
||||||
|
newtext6: "Joriy agentlik darajasi:",
|
||||||
|
newtext7: "Keyingi daraja uchun kerak:",
|
||||||
|
coins: "Tangalar",
|
||||||
|
transfer_salary: "Maosh o'tkazmasi:",
|
||||||
|
audit: 'Tekshiruvda',
|
||||||
|
weeklyRewardsText1: 'Host haftalik mukofotlari',
|
||||||
|
weeklyRewardsText2: 'Jami 2240000 tanga olishingiz mumkin.',
|
||||||
|
weeklyRewardsText22: 'Jami 3000000 tanga olishingiz mumkin.',
|
||||||
|
weeklyRewardsText3: 'Olish',
|
||||||
|
weeklyRewardsText33: 'Olingan',
|
||||||
|
weeklyRewardsText4: 'Host darajasi',
|
||||||
|
weeklyRewardsText5: `Qayta o'rnatish vaqti: dushanba 0:00 (GMT+3)`,
|
||||||
|
weeklyRewardsText6: `Qayta o'rnatish vaqti: dushanba 0:00 (GMT+8)`,
|
||||||
|
Invite_Agency:'Agentlikni taklif qilish',
|
||||||
|
Invite_Host:'Hostni taklif qilish',
|
||||||
|
Diamond_statistics:'Olmos daromadi statistikasi',
|
||||||
|
Diamond_income:'Olmos daromadi',
|
||||||
|
Valid_days:'Amal qilish kunlari',
|
||||||
|
Agency_income:'Agentlik olmos daromadi',
|
||||||
|
My_data:'Mening ma\'lumotlarim',
|
||||||
|
Member_data:'A\'zolar ma\'lumotlari',
|
||||||
|
Date_txt:'Sana',
|
||||||
|
Diamond_income_txt:'Olmos <br >daromadi',
|
||||||
|
Active_time:'Faol <br >vaqt',
|
||||||
|
Valid_days_txt:'Amal qilish <br >kunlari',
|
||||||
|
Min:'Min',
|
||||||
|
Members:'A\'zolar',
|
||||||
|
Me:'Men',
|
||||||
|
Amethyst_Wallet:'Ametist hamyon',
|
||||||
|
Exchange_Coin:'Ametistni tangaga almashtirish',
|
||||||
|
Amethyst_Balance:'Ametist balansi:',
|
||||||
|
Bills:'Hisoblar',
|
||||||
|
Exchange_quantity:function(num){
|
||||||
|
return `Almashtirish miqdori ${num} ga karrali bo'lishi kerak`
|
||||||
|
},
|
||||||
|
Exchangeable_Coins:'Almashtiriladigan tangalar:',
|
||||||
|
Confirm_Exchange:'Almashtirishni tasdiqlash',
|
||||||
|
Please_enter:'Iltimos kiriting',
|
||||||
|
Exchange_successful:'Almashtirish muvaffaqiyatli',
|
||||||
|
Total_coins:'Jami mukofot 7,214,920 tangagacha!',
|
||||||
|
Countdown:'Qaytish hisobi:',
|
||||||
|
Day:'Kun',
|
||||||
|
Host_Level:'Host darajasi:',
|
||||||
|
Reward_detail:' Mukofot tafsilotlari',
|
||||||
|
Daily_Rewards:'Asosiy mukofotlar',
|
||||||
|
Extra_Rewards:`Qo'shimcha mukofotlar`,
|
||||||
|
Complete_days:'5 kunni tugatish',
|
||||||
|
mic_chat:'Kunlik 2 soat mikrafon suhbati',
|
||||||
|
Unlock_time:'180 daqiqa mikrafon vaqtini tugating, 1,000,330 tangagacha mukofot oling!',
|
||||||
|
Days:'Mikrafon vaqti',
|
||||||
|
hours_time:'3 soat mikrafon vaqti',
|
||||||
|
The_wallet:'Mukofot muvaffaqiyatli qabul qilindi, tangalar sizning hamyoningizga qo\'yildi.',
|
||||||
|
valid_day:'Amal qiladigan 3 soatlik mikrafon davomiyligi bir kun ichida tugatilishi kerak. Agar 3 soatlik davomiylik xuddi shu kunda erishilmasa, mikrafon davomiyligi statistikasi keyingi kunda qayta o\'rnatiladi.',
|
||||||
|
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Qidirish`,
|
||||||
|
text3: `Ma'lumot yo'q`,
|
||||||
|
text4: `Administrator tayinlash?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo'shish`,
|
||||||
|
text8: `Qo'shilgan`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Sozlamalar`,
|
||||||
|
text3: `Administrator qo'shish`,
|
||||||
|
text4: `Ma'lumot yo'q`,
|
||||||
|
text5: `Administratorni olib tashlash?`,
|
||||||
|
text6: `Bekor qilish`,
|
||||||
|
text7: `Tasdiqlash`,
|
||||||
|
text8: `Master`,
|
||||||
|
text9: `Administrator`,
|
||||||
|
text10: `O'chirish`,
|
||||||
|
text11: 'O\'chirilgan',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Hammasi`,
|
||||||
|
text2: `Hammasi`,
|
||||||
|
text3: `Agentlik`,
|
||||||
|
text4: `A'zo bo'lish uchun ariza?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo'shish`,
|
||||||
|
text8: 'Yuborilgan',
|
||||||
|
newText1: 'Agentlik yaratish',
|
||||||
|
newText2: 'Ko\'rib chiqilmoqda',
|
||||||
|
newText3: 'Iltimos, sabr bilan kuting~',
|
||||||
|
newText4: 'Qo\'shilish',
|
||||||
|
newText5: 'Agent ID:',
|
||||||
|
placeholder: 'Iltimos, qidirish uchun Agent ID ni kiriting',
|
||||||
|
},
|
||||||
|
createGuild: {
|
||||||
|
text1: `Agency Registration Application`,
|
||||||
|
text2: `Agency Avatar`,
|
||||||
|
text3: `Agency Name`,
|
||||||
|
text4: `Agent Contact Info`,
|
||||||
|
text5: `Agent ID Card`,
|
||||||
|
text6: `Taklif qiluvchi ID`,
|
||||||
|
text7: `Taklif qiluvchi rasm.`,
|
||||||
|
text8: `Muvaffaqiyatli yuborildi`,
|
||||||
|
text9: `Gildiya yaratish uchun ariza topshirganingiz uchun tashakkur. Biz uni 3 ish kuni ichida ko'rib chiqamiz.
|
||||||
|
Iltimos
|
||||||
|
sabr bilan kuting va biz sizga imkon qadar tezroq javob beramiz.`,
|
||||||
|
text10: `Tasdiqlash`,
|
||||||
|
placeholder: `Iltimos kiriting`,
|
||||||
|
null: `Majburiy maydonlar bo'sh bo'lishi mumkin emas`,
|
||||||
|
imgerr:'Rasm yuklanmadi, iltimos qayta urinib ko\'ring',
|
||||||
|
Area_Code:'Hudud kodi',
|
||||||
|
Contact_type:'Aloqa turi',
|
||||||
|
Select:'Tanlash',
|
||||||
|
Please_number:'Iltimos telefon raqamingizni kiriting',
|
||||||
|
confirm: `OK`,
|
||||||
|
text9_new:'Yangi agentlik yaratganingiz bilan tabriklaymiz! <br /> Tezroq o\'sishingizga yordam berish uchun, hozirda rasmiy menejerimizni qo\'shing va darhol oling: <br /> ✔ 7000 tanga <br /> ✔ Eksklyuziv nom plitkasi <br /> ✔ Cheklangan nashrdagi transport (3 kun) <br /> Agentligingizni birinchi kundan ajralib turishi uchun!',
|
||||||
|
text10_new:'Rasmiy menejerni topish',
|
||||||
|
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Agentlik sozlamalari`,
|
||||||
|
text2: `Agentlik sozlamalari`,
|
||||||
|
text3: `Nomi: `,
|
||||||
|
text4: `Nomi`,
|
||||||
|
text5: `Fon:`,
|
||||||
|
text6: `O'chirish`,
|
||||||
|
text7: `Saqlash`,
|
||||||
|
text8: `Yuklangan`,
|
||||||
|
textConte1: `Saqlash`,
|
||||||
|
textConte2: `Tahrirlash`,
|
||||||
|
textConte3: `Qo'shish`,
|
||||||
|
textConte4: `To'lov hisobi`,
|
||||||
|
text55: `Agentlik avatari`,
|
||||||
|
toastMsgText1: `GIF yuklash hozirda qo'llab-quvvatlanmaydi`,
|
||||||
|
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Qidirish`,
|
||||||
|
text2: `MoliPartyID ni topish`,
|
||||||
|
text3: `Qidirish`,
|
||||||
|
text4: `Tarkib yo'q`,
|
||||||
|
text5: `Agentlikka taklif qilish?`,
|
||||||
|
text6: `Bekor qilish`,
|
||||||
|
text7: `Tasdiqlash`,
|
||||||
|
text8: `Qo'shish`,
|
||||||
|
text9: `Ma'lumot yo'q`,
|
||||||
|
text10: 'Taklif yuborildi',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow3: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow4: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow5: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow6: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow7: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow8: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow9: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow10: {
|
||||||
|
text1: `Daromad statistikasi`,
|
||||||
|
text2: `Jami tangalar daromadi`,
|
||||||
|
text3: `A'zolar tangalar daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo'lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt davri 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadya beruvchilar soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
// ... existing code for other memberFlow objects ...
|
||||||
|
};
|
||||||
|
|
||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Yuklanmoqda...`,
|
||||||
|
layerIndex2: `Muvaffaqiyatli`,
|
||||||
|
layerIndex3: `Tarmoq xatosi`,
|
||||||
|
text1: `Agentlik nomi`,
|
||||||
|
text2: `Agentlik nomi`,
|
||||||
|
text3: `Administrator`,
|
||||||
|
text4: `Sozlamalar`,
|
||||||
|
text5: `Daromad`,
|
||||||
|
text6: `Taklif qilish`,
|
||||||
|
text7: `Tafsilotlar`,
|
||||||
|
text8: `Agentlik nomi`,
|
||||||
|
text9: `Bekor qilish`,
|
||||||
|
text10: `Tasdiqlash`,
|
||||||
|
text11: 'Agentlik nomi:',
|
||||||
|
text12: `Master`,
|
||||||
|
text13: `Administrator`,
|
||||||
|
text14: `O'chirish`,
|
||||||
|
text15_h1: `A'zolarni olib tashlash`,
|
||||||
|
text15: `A'zoni olib tashlashga qaror qilishdan oldin, quyidagilarga e'tibor bering:<br><br>
|
||||||
|
<strong>Olmos aylanmasi va maoshni qayta o'rnatish:</strong> <br>
|
||||||
|
A'zoni olib tashlaganingizdan so'ng, agentlikda a'zo tomonidan to'plangan olmos aylanmasi va maosh qayta o'rnatiladi. <br><br>
|
||||||
|
<strong>Iltimos, qaroringizni diqqat bilan ko'rib chiqing.</strong>`,
|
||||||
|
text16: `MoliParty ID`,
|
||||||
|
text17_h1: `Agentlikdan chiqish bo'yicha ko'rsatmalar`,
|
||||||
|
text17: `Agentlikdan chiqishga qaror qilishdan oldin, quyidagilarga e'tibor bering:<br><br>
|
||||||
|
<strong>Olmos Aylanmasi va Maoshni Qayta O'rnatish:</strong> <br>
|
||||||
|
Agentlikdan chiqqaningizdan so'ng, agentlikda to'plagan olmos aylanmasi va maoshingiz qayta o'rnatiladi. Iltimos, qaroringizni diqqat bilan ko'rib chiqing. <br><br>
|
||||||
|
<strong>Chiqish arizasini tasdiqlash jarayoni: </strong><br>
|
||||||
|
Agentlikdan chiqish uchun ariza topshirgandan so'ng, agent 24 soat ichida sizning so'rovingizni ko'rib chiqadi. Agar agent 24 soat ichida uni qayta ishlamasa, tizim 24 soatdan keyin sizning chiqish arizangizni avtomatik ravishda tasdiqlaydi.`,
|
||||||
|
text18: `Chiqish`,
|
||||||
|
texts1: "Tangalar daromadi statistikasi",
|
||||||
|
texts2: "Maosh daromadi statistikasi",
|
||||||
|
texts3: "Agentlik sozlamalari",
|
||||||
|
texts4: "Administrator sozlamalari",
|
||||||
|
texts5: "Mening maoshim",
|
||||||
|
newtext1: "Mening daromadim",
|
||||||
|
newtext2: "Maosh hisobi",
|
||||||
|
newtext3: "Agentlik ma'lumotlari",
|
||||||
|
newtext4: "Agentlik administratori",
|
||||||
|
newtext5: "Agentlik darajasi",
|
||||||
|
newtext6: "Joriy agentlik darajasi:",
|
||||||
|
newtext7: "Keyingi daraja uchun kerak:",
|
||||||
|
coins: "Tangalar",
|
||||||
|
transfer_salary: "Maosh o'tkazmasi:",
|
||||||
|
audit: 'Tekshiruvda',
|
||||||
|
weeklyRewardsText1: 'Host haftalik mukofotlari',
|
||||||
|
weeklyRewardsText2: 'Jami 2240000 tanga olishingiz mumkin.',
|
||||||
|
weeklyRewardsText22: 'Jami 3000000 tanga olishingiz mumkin.',
|
||||||
|
weeklyRewardsText3: 'Olish',
|
||||||
|
weeklyRewardsText33: 'Olingan',
|
||||||
|
weeklyRewardsText4: 'Host darajasi',
|
||||||
|
weeklyRewardsText5: 'Qayta o\'rnatish vaqti: dushanba 0:00 (GMT+3)',
|
||||||
|
weeklyRewardsText6: 'Qayta o\'rnatish vaqti: dushanba 0:00 (GMT+8)',
|
||||||
|
Invite_Agency:'Agentlikni taklif qilish',
|
||||||
|
Invite_Host:'Hostni taklif qilish',
|
||||||
|
Diamond_statistics:'Olmos daromadi statistikasi',
|
||||||
|
Diamond_income:'Olmos daromadi',
|
||||||
|
Valid_days:'Amal qilish kunlari',
|
||||||
|
Agency_income:'Agentlik olmos daromadi',
|
||||||
|
My_data:'Mening ma\'lumotlarim',
|
||||||
|
Member_data:'A\'zolar ma\'lumotlari',
|
||||||
|
Date_txt:'Sana',
|
||||||
|
Diamond_income_txt:'Olmos <br >daromadi',
|
||||||
|
Active_time:'Faol <br >vaqt',
|
||||||
|
Valid_days_txt:'Amal qilish <br >kunlari',
|
||||||
|
Min:'Min',
|
||||||
|
Members:'A\'zolar',
|
||||||
|
Me:'Men',
|
||||||
|
Amethyst_Wallet:'Ametist hamyon',
|
||||||
|
Exchange_Coin:'Ametistni tangaga almashtirish',
|
||||||
|
Amethyst_Balance:'Ametist balansi:',
|
||||||
|
Bills:'Hisoblar',
|
||||||
|
Exchange_quantity:function(num){
|
||||||
|
return `Almashtirish miqdori ${num} ga karrali bo'lishi kerak`
|
||||||
|
},
|
||||||
|
Exchangeable_Coins:'Almashtiriladigan tangalar:',
|
||||||
|
Confirm_Exchange:'Almashtirishni tasdiqlash',
|
||||||
|
Please_enter:'Iltimos kiriting',
|
||||||
|
Exchange_successful:'Almashtirish muvaffaqiyatli',
|
||||||
|
Total_coins:'Jami mukofot 7,214,920 tangagacha!',
|
||||||
|
Countdown:'Qaytish hisobi:',
|
||||||
|
Day:'Kun',
|
||||||
|
Host_Level:'Host darajasi:',
|
||||||
|
Reward_detail:' Mukofot tafsilotlari',
|
||||||
|
Daily_Rewards:'Asosiy mukofotlar',
|
||||||
|
Extra_Rewards:'Qo\'shimcha mukofotlar',
|
||||||
|
Complete_days:'5 kunni tugatish',
|
||||||
|
mic_chat:'Kunlik 2 soat mikrafon suhbati',
|
||||||
|
Unlock_time:'180 daqiqa mikrafon vaqtini tugating, 1,000,330 tangagacha mukofot oling!',
|
||||||
|
Days:'Mikrafon vaqti',
|
||||||
|
hours_time:'3 soat mikrafon vaqti',
|
||||||
|
The_wallet:'Mukofot muvaffaqiyatli qabul qilindi, tangalar sizning hamyoningizga qo\'yildi.',
|
||||||
|
valid_day:'Amal qiladigan 3 soatlik mikrafon davomiyligi bir kun ichida tugatilishi kerak. Agar 3 soatlik davomiylik xuddi shu kunda erishilmasa, mikrafon davomiyligi statistikasi keyingi kunda qayta o\'rnatiladi.',
|
||||||
|
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Qidirish`,
|
||||||
|
text3: `Ma'lumot yo'q`,
|
||||||
|
text4: `Administrator tayinlash?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo'shish`,
|
||||||
|
text8: `Qo'shilgan`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Sozlamalar`,
|
||||||
|
text3: `Administrator qo'shish`,
|
||||||
|
text4: `Ma'lumot yo'q`,
|
||||||
|
text5: `Administratorni olib tashlash?`,
|
||||||
|
text6: `Bekor qilish`,
|
||||||
|
text7: `Tasdiqlash`,
|
||||||
|
text8: `Master`,
|
||||||
|
text9: `Administrator`,
|
||||||
|
text10: `O'chirish`,
|
||||||
|
text11: 'O\'chirilgan',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Hammasi`,
|
||||||
|
text2: `Hammasi`,
|
||||||
|
text3: `Agentlik`,
|
||||||
|
text4: `A'zo bo'lish uchun ariza?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo'shish`,
|
||||||
|
text8: 'Yuborilgan',
|
||||||
|
newText1: 'Agentlik yaratish',
|
||||||
|
newText2: 'Ko\'rib chiqilmoqda',
|
||||||
|
newText3: 'Iltimos, sabr bilan kuting~',
|
||||||
|
newText4: 'Qo\'shilish',
|
||||||
|
newText5: 'Agent ID:',
|
||||||
|
placeholder: 'Iltimos, qidirish uchun Agent ID ni kiriting',
|
||||||
|
},
|
||||||
|
createGuild: {
|
||||||
|
text1: `Agency Registration Application`,
|
||||||
|
text2: `Agency Avatar`,
|
||||||
|
text3: `Agency Name`,
|
||||||
|
text4: `Agent Contact Info`,
|
||||||
|
text5: `Agent ID Card`,
|
||||||
|
text6: `Taklif qiluvchi ID`,
|
||||||
|
text7: `Taklif qiluvchi rasm.`,
|
||||||
|
text8: `Muvaffaqiyatli yuborildi`,
|
||||||
|
text9: `Gildiya yaratish uchun ariza topshirganingiz uchun tashakkur. Biz uni 3 ish kuni ichida ko'rib chiqamiz.
|
||||||
|
Iltimos
|
||||||
|
sabr bilan kuting va biz sizga imkon qadar tezroq javob beramiz.`,
|
||||||
|
text10: `Tasdiqlash`,
|
||||||
|
placeholder: `Iltimos kiriting`,
|
||||||
|
null: `Mandatory fields cannot be blank`,
|
||||||
|
imgerr:'Image upload failed, please try again',
|
||||||
|
Area_Code:'Area Code',
|
||||||
|
Contact_type:'Contact type',
|
||||||
|
Select:'Select',
|
||||||
|
Please_number:'Please enter your phone number',
|
||||||
|
confirm: `OK`,
|
||||||
|
text9_new:'Congratulations on creating your new agency! <br /> To help you grow faster, add our official manager now and instantly get: <br /> ✔ 7000 coins <br /> ✔ Exclusive Nameplate <br /> ✔ Limited-edition Vehicle (3 days) <br /> Make your agency stand out from day one!',
|
||||||
|
text10_new:'Find Official manager',
|
||||||
|
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Agency Settings`,
|
||||||
|
text2: `Agency Settings`,
|
||||||
|
text3: `Name: `,
|
||||||
|
text4: `Name`,
|
||||||
|
text5: `Background:`,
|
||||||
|
text6: `Delete`,
|
||||||
|
text7: `Save`,
|
||||||
|
text8: `Loaded`,
|
||||||
|
textConte1: `Save`,
|
||||||
|
textConte2: `Edit`,
|
||||||
|
textConte3: `Add`,
|
||||||
|
textConte4: `Payment Account`,
|
||||||
|
text55: `Agency Avatar`,
|
||||||
|
toastMsgText1: `GIF upload is not supported at the moment`,
|
||||||
|
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Find`,
|
||||||
|
text2: `Find MoliPartyID`,
|
||||||
|
text3: `Find`,
|
||||||
|
text4: `No content`,
|
||||||
|
text5: `Invite to agency?`,
|
||||||
|
text6: `Cancel`,
|
||||||
|
text7: `Confirm`,
|
||||||
|
text8: `Add`,
|
||||||
|
text9: `No data`,
|
||||||
|
text10: 'Sent invitation',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Income Statistics`,
|
||||||
|
text2: `Total Coins Income`,
|
||||||
|
text3: `Members Coins Income`,
|
||||||
|
text4: `Start time cannot be later than end time`,
|
||||||
|
text5: `Selected time period cannot exceed 90 days`,
|
||||||
|
text6: `Coins Income`,
|
||||||
|
text7: `Duration`,
|
||||||
|
text8: `Num of Givers`,
|
||||||
|
text9: `Me`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Salaries Statistics`,
|
||||||
|
text2: `Previous`,
|
||||||
|
text3: `Next`,
|
||||||
|
text4: `My Salary`,
|
||||||
|
text5: `Coin Salary`,
|
||||||
|
text6: `Commission`,
|
||||||
|
text7: `Remaining Diamonds`,
|
||||||
|
text8: `Member Salaries`,
|
||||||
|
text9: `Month`,
|
||||||
|
text10: `Member`,
|
||||||
|
text11: `Valid days`,
|
||||||
|
text12: `Coins Income`,
|
||||||
|
text13: `Coin Salary`,
|
||||||
|
text14: `Remaining Diamonds`,
|
||||||
|
text15: `View`,
|
||||||
|
text16: `Details`,
|
||||||
|
text17: `Current`,
|
||||||
|
textss: 'Total Coin Salary:'
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Member Salary`,
|
||||||
|
text2: `Previous`,
|
||||||
|
text3: `Next`,
|
||||||
|
text4: `Coin Salary`,
|
||||||
|
text5: `Coins Income`,
|
||||||
|
text6: `Valid Days`,
|
||||||
|
text7: `Remaining Diamonds`,
|
||||||
|
text8: `Daily Details`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Date`,
|
||||||
|
text11: `Duration`,
|
||||||
|
text12: `Daily Income`,
|
||||||
|
text13: `Monthly Income`,
|
||||||
|
text14: `Coin Salary`,
|
||||||
|
},
|
||||||
|
memberFlow222: {
|
||||||
|
text1: `Member Salary`,
|
||||||
|
text2: `Previous`,
|
||||||
|
text3: `Next`,
|
||||||
|
text4: `Coin Salary`,
|
||||||
|
text5: `Coins Income`,
|
||||||
|
text6: `Valid Days`,
|
||||||
|
text7: `Remaining Diamonds`,
|
||||||
|
text8: `Daily Details`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Date`,
|
||||||
|
text11: `Duration`,
|
||||||
|
text12: `Daily Income`,
|
||||||
|
text13: `Monthly Income`,
|
||||||
|
text14: `Coin Salary`,
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
text1: `Find`,
|
||||||
|
text2: `Find MoliPartyID`,
|
||||||
|
text3: `Find`,
|
||||||
|
text4: `No content`,
|
||||||
|
text5: `Apply to join?`,
|
||||||
|
text6: `Delete`,
|
||||||
|
text7: `Cancel`,
|
||||||
|
text8: 'Submitted',
|
||||||
|
},
|
||||||
|
lay: {
|
||||||
|
ok: 'Confirm',
|
||||||
|
close: 'Cancel',
|
||||||
|
departed: 'Departed',
|
||||||
|
},
|
||||||
|
personal: {
|
||||||
|
duration: `My duration:`,
|
||||||
|
text1: `Personal<span></span>`,
|
||||||
|
text2: `Agency<span></span>`,
|
||||||
|
text3: `My diamond:`,
|
||||||
|
text4: `Withdraw`,
|
||||||
|
text5: `Enter my salary account`,
|
||||||
|
text6: `This cycle income`,
|
||||||
|
text7: `(Total income generated by withdrawing diamonds to salary account during this cycle)`,
|
||||||
|
text8: `Total income`,
|
||||||
|
text9: `Settled income`,
|
||||||
|
text10: `Remaining income`,
|
||||||
|
text11: `Last cycle income`,
|
||||||
|
text12: `Total income`,
|
||||||
|
text13: `Settled income`,
|
||||||
|
text14: `Remaining income`,
|
||||||
|
text15: `Agent salary`,
|
||||||
|
text16: `Agent salary`,
|
||||||
|
text17: `Diamond income`,
|
||||||
|
text18: `Agent income rate`,
|
||||||
|
text19: `Anchor data`,
|
||||||
|
text20: `Diamond income`,
|
||||||
|
},
|
||||||
|
diamondWithdraw: {
|
||||||
|
text1: `Diamond Withdraw `,
|
||||||
|
text2: `Confirm`,
|
||||||
|
text3: `Withdraw successful`,
|
||||||
|
text4: `Enter salary account`,
|
||||||
|
text5: `Cancel`,
|
||||||
|
text6: `Diamonds`,
|
||||||
|
text7: `Successfully withdrawn <b>0</b>ÜS to salary account`,
|
||||||
|
text9: `My diamond:`
|
||||||
|
},
|
||||||
|
salary: {
|
||||||
|
text1: `Salary account`,
|
||||||
|
text2: `My salary:`,
|
||||||
|
text3: `Bill`,
|
||||||
|
text4: `Personal`,
|
||||||
|
text5: `Agent`,
|
||||||
|
text6: `Transfer method`,
|
||||||
|
text7: `Transfer dollars`,
|
||||||
|
text8: `Confirm`,
|
||||||
|
text9: `Recharge agent`,
|
||||||
|
text10: `No recharge agent in this area`,
|
||||||
|
text11: `Cancel`,
|
||||||
|
text12: `Confirm`,
|
||||||
|
text13: `Recharge agent`,
|
||||||
|
text14: `Are you sure you want to send <b></b> to the agent for settlement?`,
|
||||||
|
text15: `Custom amount`,
|
||||||
|
text16: `All`,
|
||||||
|
text17: `Can be exchanged for <b>0</b> gold coin`,
|
||||||
|
text18: `(Exchange at a ratio of 1:<b>7000</b>)`,
|
||||||
|
text19: `Exchange coins`,
|
||||||
|
text20: `Transfer to official`,
|
||||||
|
text21: `The withdrawal channel opens on the 1st and 2nd of every month.`,
|
||||||
|
text22: `Agent settlement`,
|
||||||
|
text23: `Transfer to coin agent`,
|
||||||
|
text24: `Please enter the amount to be redeemed`,
|
||||||
|
text25: `Coins`,
|
||||||
|
textnew1: `Withdrawal account`,
|
||||||
|
textnew2: `Unbound`,
|
||||||
|
textnew3: `Select Account`,
|
||||||
|
textnew4: `Withdrawal`,
|
||||||
|
textnew5: `Withdrawal amount `,
|
||||||
|
textnew6: `Handling Fee rate`,
|
||||||
|
textnew7: `Handling Fee`,
|
||||||
|
textnew8: `USD to EGP exchange rate: 1:`,
|
||||||
|
textnew8_TRY: `USD to TRY exchange rate: 1:`,
|
||||||
|
textnew9: `Estimated amount`,
|
||||||
|
textnew10: `Note: Estimated arrival amount may be affected by bank exchange rate, etc.`,
|
||||||
|
textnew11: `Withdraw`,
|
||||||
|
textnew12: `Cancel`,
|
||||||
|
textnew13: `Please select a withdrawal account`,
|
||||||
|
textnew14: `More than the maximum transferable amount.`,
|
||||||
|
textnew15: `Success`,
|
||||||
|
textnew16: `The processing time for withdrawal requests is from the 3rd to the 10th of every month.`,
|
||||||
|
textnew17: `OK`,
|
||||||
|
textnew18: `Star rating:`,
|
||||||
|
Reminder:'Reminder',
|
||||||
|
tip_txt1:function (num) {
|
||||||
|
return `Are you sure you want to transfer the salary (<span style="color:#313131;font-weight:500">ÜS:${num}</span>) to this user?`
|
||||||
|
},
|
||||||
|
tip_txt2:'The operation cannot be undone, please operate with caution!',
|
||||||
|
},
|
||||||
|
newENsalary:{
|
||||||
|
textnew16:'Submission successful! The system has accepted your application and will process it as soon as possible.',
|
||||||
|
text21:'The Agent can withdraw once a week.'
|
||||||
|
},
|
||||||
|
bill: {
|
||||||
|
text1: `Bill`,
|
||||||
|
text2: `Income`,
|
||||||
|
text3: `Expenses`,
|
||||||
|
text4: `Salary:`,
|
||||||
|
text5: `Diamond withdraw`,
|
||||||
|
text6: `Official withdraw`,
|
||||||
|
text7: `Salary exchange for coins`,
|
||||||
|
text8: `Salary transfer`,
|
||||||
|
text9: `Agent salary`,
|
||||||
|
text10: `In Review `,
|
||||||
|
text11: `Issued`,
|
||||||
|
text12: `Rejected`,
|
||||||
|
text13: ``,
|
||||||
|
OfficialIncrease:'Official salary increase',
|
||||||
|
OfficialDeduction:'Official salary deduction'
|
||||||
|
},
|
||||||
|
success: {
|
||||||
|
text1: `Settlement successful`,
|
||||||
|
text2: `Exchange successful`,
|
||||||
|
text3: `Salary`,
|
||||||
|
text4: `Current status`,
|
||||||
|
text5: `Exchange successful`,
|
||||||
|
text6: `Exchange account`,
|
||||||
|
text7: `Exchange coins`,
|
||||||
|
text8: `Exchange time`,
|
||||||
|
text9: `Order`,
|
||||||
|
text10: ``,
|
||||||
|
text11: `Current status`,
|
||||||
|
text12: `Successful`,
|
||||||
|
text13: `Account`,
|
||||||
|
text14: `Settlement account`,
|
||||||
|
text15: `Time`,
|
||||||
|
text16: `Order`,
|
||||||
|
},
|
||||||
|
payonner: {
|
||||||
|
text1: `Payonner `,
|
||||||
|
text2: `Confirm`,
|
||||||
|
text3: `Unbind `,
|
||||||
|
text4: `Country`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Currency Type:`,
|
||||||
|
text7: `Country`,
|
||||||
|
text8: `payeeAccountNo`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Mandatory fields cannot be blank`,
|
||||||
|
},
|
||||||
|
bank: {
|
||||||
|
text1: `Confirm`,
|
||||||
|
text2: `Unbind `,
|
||||||
|
text3: `Country`,
|
||||||
|
text4: `OK`,
|
||||||
|
text5: `Country`,
|
||||||
|
text6: `payeeAccountNo`,
|
||||||
|
text7: `Bank Name`,
|
||||||
|
text8: `SWIFT Code`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Address`,
|
||||||
|
},
|
||||||
|
pTitle: {
|
||||||
|
p1: `Country`,
|
||||||
|
p2: `payeeAccountNo`,
|
||||||
|
p3: `Bank Name(Only Enter English)`,
|
||||||
|
p4: `SWIFT Code(Only Enter English)`,
|
||||||
|
p5: `payeeName(Only Enter English)`,
|
||||||
|
p6: `Address(Only Enter English)`,
|
||||||
|
p7: `payeeAccount(E-mail fomat)`,
|
||||||
|
DocumentID:'DocumentID',
|
||||||
|
AccountType:'Account Type',
|
||||||
|
Email:'E:Email',
|
||||||
|
Phone:'P:Phone',
|
||||||
|
CPFCNPJ:'C:CPF/CNPJ',
|
||||||
|
EVP:'B:EVP',
|
||||||
|
p71: `payeeAccount(Phone number)`,
|
||||||
|
p72:'Format: 11 digits starting with 09',
|
||||||
|
p73:'Format: 11 digits starting with 84',
|
||||||
|
AccountNo:'Account No',
|
||||||
|
payeeAccount:'payeeAccount',
|
||||||
|
|
||||||
|
},
|
||||||
|
weeklyRewards: {
|
||||||
|
text1: `Host weekly rewards`,
|
||||||
|
text2: `You can get <b>2240000</b> coins totally.`,
|
||||||
|
text22: `You can get <b>3000000</b> coins totally.`,
|
||||||
|
text3: `Get`,
|
||||||
|
text4: `Host Lv`,
|
||||||
|
text5: `Got`,
|
||||||
|
},
|
||||||
|
weeklyRewardsRule: {
|
||||||
|
text1: `Rules`,
|
||||||
|
text2: `<p>1 Activity time: 0:00-23:59 (GMT+3) every week.</p>
|
||||||
|
<p>2 Coin rewards: Calculate the user's diamond income every week, and you can get corresponding coins when you
|
||||||
|
reach a certain level.</p>
|
||||||
|
<p>3 Coin reward gradient</p>`,
|
||||||
|
text3: `./images/weeklyRewardsRule2.png`,
|
||||||
|
text33: `./images/weeklyRewardsRule2-tren.png`,
|
||||||
|
text22: `<p>1 Activity time: 0:00-23:59 (GMT+8) every week.</p>
|
||||||
|
<p>2 Coin rewards: Calculate the user's diamond income every week, and you can get corresponding coins when you
|
||||||
|
reach a certain level.</p>
|
||||||
|
<p>3 Coin reward gradient</p>`,
|
||||||
|
text2New: `<p style="font-weight:500"> Activity Time:</p>
|
||||||
|
<p>Every Monday 00:00 to Sunday 23:59 (GMT+8)</p>
|
||||||
|
<p style="font-weight:500">Activity Tasks:</p>
|
||||||
|
<p>Complete the tasks below to earn diamond incentives for corresponding tiers!</p>
|
||||||
|
<p style="font-weight:500">Task 1: Contribution by Volume</p>
|
||||||
|
<p>Earn rewards based on the total diamonds received from consumption this week.</p>
|
||||||
|
<p style="font-weight:500">Task 2: Diligence Online</p>
|
||||||
|
<p>Duration requirement: Daily voice microphone duration ≥ 180 minutes.</p>`,
|
||||||
|
Important_Notes: `<p style="font-weight:500">Important Notes:</p>
|
||||||
|
<p>Weekly Reset: Your diamond income volume and valid days are automatically reset at the start of a new week.</p>
|
||||||
|
<p>The valid 3-hour on-microphone duration must be completed within one day. If the 3-hour duration is not reached on the same day, the on-microphone duration statistics will be reset the next day.</p>
|
||||||
|
<p>Reward Distribution: Rewards must be claimed manually.</p>
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
agencyDiamondIncome: {
|
||||||
|
text1: `Agency Diamond Income`,
|
||||||
|
text2: `Building a agency, you can search for diamond income at any time.`,
|
||||||
|
text3: `User exit agency may result in data changes.`,
|
||||||
|
text4: `To`,
|
||||||
|
text5: `Date selection`,
|
||||||
|
text6: `Confirm`,
|
||||||
|
text7: `Search`,
|
||||||
|
},
|
||||||
|
bankTransferLira: {
|
||||||
|
text1: `BankTransfer lira `,
|
||||||
|
text2: `Confirm`,
|
||||||
|
text3: `Unbind `,
|
||||||
|
text4: `Country`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Currency Type:`,
|
||||||
|
text7: `Country`,
|
||||||
|
text8: `TR+24Numbers`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Mandatory fields cannot be blank`,
|
||||||
|
text11: `payeeAccount(IBAN)`,
|
||||||
|
},
|
||||||
|
CARD_USD: {
|
||||||
|
text1: `Card usd`,
|
||||||
|
text2: `Confirm`,
|
||||||
|
text3: `Unbind `,
|
||||||
|
text4: `Country`,
|
||||||
|
text5: `OK`,
|
||||||
|
text6: `Currency Type:`,
|
||||||
|
text7: `Country`,
|
||||||
|
text8: `payeeAccount`,
|
||||||
|
text9: `payeeName`,
|
||||||
|
text10: `Mandatory fields cannot be blank`,
|
||||||
|
text11: `payeeAccount`,
|
||||||
|
},
|
||||||
|
}
|
@@ -131,5 +131,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/personal.js?v=1.1"></script>
|
<script src="./js/personal.js?v=1.1"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -46,8 +46,11 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/record.js"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="./js/record.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@@ -248,8 +248,11 @@
|
|||||||
<script src="./local/zh.js?v=2.0"></script>
|
<script src="./local/zh.js?v=2.0"></script>
|
||||||
<script src="./local/ar.js?v=2.0"></script>
|
<script src="./local/ar.js?v=2.0"></script>
|
||||||
<script src="./local/tr.js?v=2.0"></script>
|
<script src="./local/tr.js?v=2.0"></script>
|
||||||
<script src="./local/br.js?v=2.0"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/salary.js?v=2.1"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="./js/salary.js?v=2.1"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/search.js"></script>
|
<script src="./js/search.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -95,8 +95,11 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="../../common/js/jquery.copy.min.js"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="../../common/js/jquery.copy.min.js"></script>
|
||||||
<script src="./js/success.js"></script>
|
<script src="./js/success.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
@@ -134,5 +134,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/weeklyRewards.js?v=2"></script>
|
<script src="./js/weeklyRewards.js?v=2"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
|
@@ -32,5 +32,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/weeklyRewardsRule.js?v=2"></script>
|
<script src="./js/weeklyRewardsRule.js?v=2"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/adminSet.js"></script>
|
<script src="./js/adminSet.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/adminSet2.js"></script>
|
<script src="./js/adminSet2.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
File diff suppressed because it is too large
Load Diff
@@ -216,7 +216,7 @@ body {
|
|||||||
|
|
||||||
.weeklyRewards {
|
.weeklyRewards {
|
||||||
width: px2rem(750);
|
width: px2rem(750);
|
||||||
height: px2rem(360);
|
// height: px2rem(360);
|
||||||
margin: px2rem(26) auto px2rem(20);
|
margin: px2rem(26) auto px2rem(20);
|
||||||
|
|
||||||
.top {
|
.top {
|
||||||
@@ -943,3 +943,22 @@ body {
|
|||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.Spanish,.Uzbek,.Russian{
|
||||||
|
.weeklyRewards .top,.guildList .top{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.weeklyRewards .top a {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
.weeklyRewards .weeklyRewards_in{
|
||||||
|
margin-top: px2rem(50);
|
||||||
|
}
|
||||||
|
.guildList ul{
|
||||||
|
margin-top: px2rem(50);
|
||||||
|
}
|
||||||
|
.guildList .top input{
|
||||||
|
margin-left: auto;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@@ -89,4 +89,7 @@
|
|||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/guild.js"></script>
|
<script src="./js/guild.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -70,5 +70,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/guildInfoSet.js?v=1.0"></script>
|
<script src="./js/guildInfoSet.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -84,5 +84,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/incomeStatistics.js?v=1.1"></script>
|
<script src="./js/incomeStatistics.js?v=1.1"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -186,5 +186,8 @@
|
|||||||
<script src="./local/ar.js?v=1.0"></script>
|
<script src="./local/ar.js?v=1.0"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/index.js?v=1.11"></script>
|
<script src="./js/index.js?v=1.11"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/invitation.js?v=1.0"></script>
|
<script src="./js/invitation.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
202
view/moliparty/modules/guildAr/local/es.js
Normal file
202
view/moliparty/modules/guildAr/local/es.js
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Cargando...`,
|
||||||
|
layerIndex2: `Éxito`,
|
||||||
|
layerIndex3: `Error de red`,
|
||||||
|
text1: `Nombre de la Agencia`,
|
||||||
|
text2: `Nombre de la Agencia`,
|
||||||
|
text3: `Administrador`,
|
||||||
|
text4: `Configuración`,
|
||||||
|
text5: `Ingresos`,
|
||||||
|
text6: `Invitar`,
|
||||||
|
text7: `Detalles`,
|
||||||
|
text8: `Nombre de la Agencia`,
|
||||||
|
text9: `Cancelar`,
|
||||||
|
text10: `Confirmar`,
|
||||||
|
text11: 'Nombre de la Agencia:',
|
||||||
|
text12: `Maestro`,
|
||||||
|
text13: `Administrador`,
|
||||||
|
text14: `Eliminar`,
|
||||||
|
text15: `¿Estás seguro de que quieres eliminar a esta persona?`,
|
||||||
|
text16: `ID de MoliStar`,
|
||||||
|
texts1: "Estadísticas de Ingresos de Monedas",
|
||||||
|
texts2: "Estadísticas de Ingresos Salariales",
|
||||||
|
texts3: "Configuración de la Agencia",
|
||||||
|
texts4: "Configuración del Administrador",
|
||||||
|
texts5: "Mi Salario",
|
||||||
|
newText1: `Estadísticas de Ingresos de Monedas`,
|
||||||
|
newText2: `Agencia`,
|
||||||
|
newText3: `Administrador`,
|
||||||
|
audit:'En Auditoría',
|
||||||
|
weeklyRewardsText1: 'Recompensas semanales del anfitrión',
|
||||||
|
weeklyRewardsText2: 'Puedes obtener 664500 monedas en total.',
|
||||||
|
weeklyRewardsText3: 'Obtener',
|
||||||
|
weeklyRewardsText33: 'Obtenido',
|
||||||
|
weeklyRewardsText4: 'Nivel de Anfitrión',
|
||||||
|
weeklyRewardsText5: 'Tiempo de reinicio: Lunes 0:00 (GMT+8)',
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Administrador`,
|
||||||
|
text2: `Buscar`,
|
||||||
|
text3: `Sin datos`,
|
||||||
|
text4: `¿Nombrar Administrador?`,
|
||||||
|
text5: `Cancelar`,
|
||||||
|
text6: `Confirmar`,
|
||||||
|
text7: `Agregar`,
|
||||||
|
text8: `Agregado`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Administrador`,
|
||||||
|
text2: `Configuración`,
|
||||||
|
text3: `Agregar Administrador`,
|
||||||
|
text4: `Sin datos`,
|
||||||
|
text5: `¿Remover Administrador?`,
|
||||||
|
text6: `Cancelar`,
|
||||||
|
text7: `Confirmar`,
|
||||||
|
text8: `Maestro`,
|
||||||
|
text9: `Administrador`,
|
||||||
|
text10: `Eliminar`,
|
||||||
|
text11: 'Removido',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Todos`,
|
||||||
|
text2: `Todos`,
|
||||||
|
text3: `Agencia`,
|
||||||
|
text4: `¿Solicitar unirse?`,
|
||||||
|
text5: `Cancelar`,
|
||||||
|
text6: `Confirmar`,
|
||||||
|
text7: `Agregar`,
|
||||||
|
text8: 'Enviado',
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Configuración de la Agencia`,
|
||||||
|
text2: `Configuración de la Agencia`,
|
||||||
|
text3: `Nombre: `,
|
||||||
|
text4: `Nombre`,
|
||||||
|
text5: `Fondo:`,
|
||||||
|
text6: `Eliminar`,
|
||||||
|
text7: `Guardar`,
|
||||||
|
text8: `Cargado`,
|
||||||
|
textConte1: `Guardar`,
|
||||||
|
textConte2: `Editar`,
|
||||||
|
textConte3: `Agregar`,
|
||||||
|
textConte4: `Cuenta de Pago`,
|
||||||
|
text55: `Avatar de la Agencia`,
|
||||||
|
toastMsgText1: `La carga de GIF no es compatible actualmente`,
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Buscar`,
|
||||||
|
text2: `Buscar ID de MoliStar`,
|
||||||
|
text3: `Buscar`,
|
||||||
|
text4: `Sin contenido`,
|
||||||
|
text5: `¿Invitar a la Agencia?`,
|
||||||
|
text6: `Cancelar`,
|
||||||
|
text7: `Confirmar`,
|
||||||
|
text8: `Agregar`,
|
||||||
|
text9: `Sin datos`,
|
||||||
|
text10: 'Invitación enviada',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Estadísticas de Ingresos`,
|
||||||
|
text2: `Ingresos Totales de Monedas`,
|
||||||
|
text3: `Ingresos de Monedas de Miembros`,
|
||||||
|
text4: `La hora de inicio no puede ser posterior a la hora de finalización`,
|
||||||
|
text5: `El período de tiempo seleccionado no puede exceder 90 días`,
|
||||||
|
text6: `Ingresos de Monedas`,
|
||||||
|
text7: `Duración`,
|
||||||
|
text8: `Número de Donantes`,
|
||||||
|
text9: `Yo`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Estadísticas de Salarios`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Mi Salario`,
|
||||||
|
text5: `Salario en Monedas`,
|
||||||
|
text6: `Comisión`,
|
||||||
|
text7: `Diamantes Restantes`,
|
||||||
|
text8: `Salarios de Miembros`,
|
||||||
|
text9: `Mes`,
|
||||||
|
text10: `Miembro`,
|
||||||
|
text11: `Días válidos`,
|
||||||
|
text12: `Ingresos de Monedas`,
|
||||||
|
text13: `Salario en Monedas`,
|
||||||
|
text14: `Diamantes Restantes`,
|
||||||
|
text15: `Ver`,
|
||||||
|
text16: `Detalles`,
|
||||||
|
text17: `Actual`,
|
||||||
|
textss: 'Salario Total en Monedas:'
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Salario de Miembro`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Salario en Monedas`,
|
||||||
|
text5: `Ingresos de Monedas`,
|
||||||
|
text6: `Días Válidos`,
|
||||||
|
text7: `Diamantes Restantes`,
|
||||||
|
text8: `Detalles Diarios`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Fecha`,
|
||||||
|
text11: `Duración`,
|
||||||
|
text12: `Ingreso Diario`,
|
||||||
|
text13: `Ingreso Mensual`,
|
||||||
|
text14: `Salario en Monedas`,
|
||||||
|
},
|
||||||
|
memberFlow222: {
|
||||||
|
text1: `Salario de Miembro`,
|
||||||
|
text2: `Anterior`,
|
||||||
|
text3: `Siguiente`,
|
||||||
|
text4: `Salario en Monedas`,
|
||||||
|
text5: `Ingresos de Monedas`,
|
||||||
|
text6: `Días Válidos`,
|
||||||
|
text7: `Diamantes Restantes`,
|
||||||
|
text8: `Detalles Diarios`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Fecha`,
|
||||||
|
text11: `Duración`,
|
||||||
|
text12: `Ingreso Diario`,
|
||||||
|
text13: `Ingreso Mensual`,
|
||||||
|
text14: `Salario en Monedas`,
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
text1: `Buscar`,
|
||||||
|
text2: `Buscar ID de MoliStar`,
|
||||||
|
text3: `Buscar`,
|
||||||
|
text4: `Sin contenido`,
|
||||||
|
text5: `¿Solicitar unirse?`,
|
||||||
|
text6: `Eliminar`,
|
||||||
|
text7: `Cancelar`,
|
||||||
|
text8: 'Enviado',
|
||||||
|
},
|
||||||
|
lay: {
|
||||||
|
ok: 'Confirmar',
|
||||||
|
close: 'Cancelar',
|
||||||
|
departed: 'Salido',
|
||||||
|
},
|
||||||
|
incomeStatistics:{
|
||||||
|
text1:`Estadísticas de Ingresos`,
|
||||||
|
text2:`Ingresos Totales de Monedas`,
|
||||||
|
text22:`Ingresos de la Agencia`,
|
||||||
|
text222:`Ingresos Personales`,
|
||||||
|
text3:`Datos Personales`,
|
||||||
|
text4:`Datos de Miembros`,
|
||||||
|
text5:`Fecha`,
|
||||||
|
text6:`Ingresos de Monedas`,
|
||||||
|
text7:`Duración`,
|
||||||
|
text8:`Yo`,
|
||||||
|
text9:`Miembro`,
|
||||||
|
},
|
||||||
|
weeklyRewards: {
|
||||||
|
text1: `Recompensas semanales del anfitrión`,
|
||||||
|
text2: `Puedes obtener <b>664500</b> monedas en total.`,
|
||||||
|
text3: `Obtener`,
|
||||||
|
text4: `Nivel de Anfitrión`,
|
||||||
|
text5: `Obtenido`,
|
||||||
|
},
|
||||||
|
weeklyRewardsRule: {
|
||||||
|
text1: `Reglas`,
|
||||||
|
text2: `<p>1 Tiempo de actividad: 0:00-23:59 (GMT+8) cada semana.</p>
|
||||||
|
<p>2 Recompensas de monedas: Calcula los ingresos de monedas del usuario cada semana, y puedes obtener monedas correspondientes cuando alcanzas cierto nivel.</p>`
|
||||||
|
}
|
||||||
|
}
|
202
view/moliparty/modules/guildAr/local/ru.js
Normal file
202
view/moliparty/modules/guildAr/local/ru.js
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Загрузка...`,
|
||||||
|
layerIndex2: `Успех`,
|
||||||
|
layerIndex3: `Ошибка сети`,
|
||||||
|
text1: `Название агентства`,
|
||||||
|
text2: `Название агентства`,
|
||||||
|
text3: `Администратор`,
|
||||||
|
text4: `Настройки`,
|
||||||
|
text5: `Доход`,
|
||||||
|
text6: `Пригласить`,
|
||||||
|
text7: `Детали`,
|
||||||
|
text8: `Название агентства`,
|
||||||
|
text9: `Отмена`,
|
||||||
|
text10: `Подтвердить`,
|
||||||
|
text11: 'Название агентства:',
|
||||||
|
text12: `Мастер`,
|
||||||
|
text13: `Администратор`,
|
||||||
|
text14: `Удалить`,
|
||||||
|
text15: `Вы уверены, что хотите удалить этого человека?`,
|
||||||
|
text16: `ID MoliParty`,
|
||||||
|
texts1: "Статистика дохода в монетах",
|
||||||
|
texts2: "Статистика зарплатного дохода",
|
||||||
|
texts3: "Настройки агентства",
|
||||||
|
texts4: "Настройки администратора",
|
||||||
|
texts5: "Моя зарплата",
|
||||||
|
newText1: `Статистика дохода в монетах`,
|
||||||
|
newText2: `Агентство`,
|
||||||
|
newText3: `Администратор`,
|
||||||
|
audit:'На проверке',
|
||||||
|
weeklyRewardsText1: 'Еженедельные награды ведущего',
|
||||||
|
weeklyRewardsText2: 'Вы можете получить всего 664500 монет.',
|
||||||
|
weeklyRewardsText3: 'Получить',
|
||||||
|
weeklyRewardsText33: 'Получено',
|
||||||
|
weeklyRewardsText4: 'Уровень ведущего',
|
||||||
|
weeklyRewardsText5: 'Время сброса: Понедельник 0:00 (GMT+8)',
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Администратор`,
|
||||||
|
text2: `Найти`,
|
||||||
|
text3: `Нет данных`,
|
||||||
|
text4: `Назначить администратора?`,
|
||||||
|
text5: `Отмена`,
|
||||||
|
text6: `Подтвердить`,
|
||||||
|
text7: `Добавить`,
|
||||||
|
text8: `Добавлено`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Администратор`,
|
||||||
|
text2: `Настройки`,
|
||||||
|
text3: `Добавить администратора`,
|
||||||
|
text4: `Нет данных`,
|
||||||
|
text5: `Удалить администратора?`,
|
||||||
|
text6: `Отмена`,
|
||||||
|
text7: `Подтвердить`,
|
||||||
|
text8: `Мастер`,
|
||||||
|
text9: `Администратор`,
|
||||||
|
text10: `Удалить`,
|
||||||
|
text11: 'Удалено',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Все`,
|
||||||
|
text2: `Все`,
|
||||||
|
text3: `Агентство`,
|
||||||
|
text4: `Запрос на вступление?`,
|
||||||
|
text5: `Отмена`,
|
||||||
|
text6: `Подтвердить`,
|
||||||
|
text7: `Добавить`,
|
||||||
|
text8: 'Отправлено',
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Настройки агентства`,
|
||||||
|
text2: `Настройки агентства`,
|
||||||
|
text3: `Название: `,
|
||||||
|
text4: `Название`,
|
||||||
|
text5: `Фон:`,
|
||||||
|
text6: `Удалить`,
|
||||||
|
text7: `Сохранить`,
|
||||||
|
text8: `Загружено`,
|
||||||
|
textConte1: `Сохранить`,
|
||||||
|
textConte2: `Редактировать`,
|
||||||
|
textConte3: `Добавить`,
|
||||||
|
textConte4: `Платежный счет`,
|
||||||
|
text55: `Аватар агентства`,
|
||||||
|
toastMsgText1: `Загрузка GIF в настоящее время не поддерживается`,
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Найти`,
|
||||||
|
text2: `Найти ID MoliParty`,
|
||||||
|
text3: `Найти`,
|
||||||
|
text4: `Нет содержимого`,
|
||||||
|
text5: `Пригласить в агентство?`,
|
||||||
|
text6: `Отмена`,
|
||||||
|
text7: `Подтвердить`,
|
||||||
|
text8: `Добавить`,
|
||||||
|
text9: `Нет данных`,
|
||||||
|
text10: 'Приглашение отправлено',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Статистика дохода`,
|
||||||
|
text2: `Общий доход в монетах`,
|
||||||
|
text3: `Доход в монетах участников`,
|
||||||
|
text4: `Время начала не может быть позже времени окончания`,
|
||||||
|
text5: `Выбранный период времени не может превышать 90 дней`,
|
||||||
|
text6: `Доход в монетах`,
|
||||||
|
text7: `Продолжительность`,
|
||||||
|
text8: `Количество дарителей`,
|
||||||
|
text9: `Я`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Статистика зарплат`,
|
||||||
|
text2: `Предыдущий`,
|
||||||
|
text3: `Следующий`,
|
||||||
|
text4: `Моя зарплата`,
|
||||||
|
text5: `Зарплата в монетах`,
|
||||||
|
text6: `Комиссия`,
|
||||||
|
text7: `Оставшиеся алмазы`,
|
||||||
|
text8: `Зарплаты участников`,
|
||||||
|
text9: `Месяц`,
|
||||||
|
text10: `Участник`,
|
||||||
|
text11: `Действительные дни`,
|
||||||
|
text12: `Доход в монетах`,
|
||||||
|
text13: `Зарплата в монетах`,
|
||||||
|
text14: `Оставшиеся алмазы`,
|
||||||
|
text15: `Просмотр`,
|
||||||
|
text16: `Детали`,
|
||||||
|
text17: `Текущий`,
|
||||||
|
textss: 'Общая зарплата в монетах:'
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Зарплата участника`,
|
||||||
|
text2: `Предыдущий`,
|
||||||
|
text3: `Следующий`,
|
||||||
|
text4: `Зарплата в монетах`,
|
||||||
|
text5: `Доход в монетах`,
|
||||||
|
text6: `Действительные дни`,
|
||||||
|
text7: `Оставшиеся алмазы`,
|
||||||
|
text8: `Ежедневные детали`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Дата`,
|
||||||
|
text11: `Продолжительность`,
|
||||||
|
text12: `Ежедневный доход`,
|
||||||
|
text13: `Ежемесячный доход`,
|
||||||
|
text14: `Зарплата в монетах`,
|
||||||
|
},
|
||||||
|
memberFlow222: {
|
||||||
|
text1: `Зарплата участника`,
|
||||||
|
text2: `Предыдущий`,
|
||||||
|
text3: `Следующий`,
|
||||||
|
text4: `Зарплата в монетах`,
|
||||||
|
text5: `Доход в монетах`,
|
||||||
|
text6: `Действительные дни`,
|
||||||
|
text7: `Оставшиеся алмазы`,
|
||||||
|
text8: `Ежедневные детали`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Дата`,
|
||||||
|
text11: `Продолжительность`,
|
||||||
|
text12: `Ежедневный доход`,
|
||||||
|
text13: `Ежемесячный доход`,
|
||||||
|
text14: `Зарплата в монетах`,
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
text1: `Найти`,
|
||||||
|
text2: `Найти ID MoliParty`,
|
||||||
|
text3: `Найти`,
|
||||||
|
text4: `Нет содержимого`,
|
||||||
|
text5: `Запрос на вступление?`,
|
||||||
|
text6: `Удалить`,
|
||||||
|
text7: `Отмена`,
|
||||||
|
text8: 'Отправлено',
|
||||||
|
},
|
||||||
|
lay: {
|
||||||
|
ok: 'Подтвердить',
|
||||||
|
close: 'Отмена',
|
||||||
|
departed: 'Вышел',
|
||||||
|
},
|
||||||
|
incomeStatistics:{
|
||||||
|
text1:`Статистика дохода`,
|
||||||
|
text2:`Общий доход в монетах`,
|
||||||
|
text22:`Доход агентства`,
|
||||||
|
text222:`Личный доход`,
|
||||||
|
text3:`Личные данные`,
|
||||||
|
text4:`Данные участников`,
|
||||||
|
text5:`Дата`,
|
||||||
|
text6:`Доход в монетах`,
|
||||||
|
text7:`Продолжительность`,
|
||||||
|
text8:`Я`,
|
||||||
|
text9:`Участник`,
|
||||||
|
},
|
||||||
|
weeklyRewards: {
|
||||||
|
text1: `Еженедельные награды ведущего`,
|
||||||
|
text2: `Вы можете получить <b>664500</b> монет всего.`,
|
||||||
|
text3: `Получить`,
|
||||||
|
text4: `Уровень ведущего`,
|
||||||
|
text5: `Получено`,
|
||||||
|
},
|
||||||
|
weeklyRewardsRule: {
|
||||||
|
text1: `Правила`,
|
||||||
|
text2: `<p>1 Время активности: 0:00-23:59 (GMT+8) каждую неделю.</p>
|
||||||
|
<p>2 Награды монетами: Рассчитывайте доход пользователя в монетах каждую неделю, и вы можете получить соответствующие монеты, когда достигнете определенного уровня.</p>`
|
||||||
|
}
|
||||||
|
}
|
202
view/moliparty/modules/guildAr/local/uz.js
Normal file
202
view/moliparty/modules/guildAr/local/uz.js
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Yuklanmoqda...`,
|
||||||
|
layerIndex2: `Muvaffaqiyat`,
|
||||||
|
layerIndex3: `Tarmoq xatosi`,
|
||||||
|
text1: `Agentlik Nomi`,
|
||||||
|
text2: `Agentlik Nomi`,
|
||||||
|
text3: `Administrator`,
|
||||||
|
text4: `Sozlamalar`,
|
||||||
|
text5: `Daromad`,
|
||||||
|
text6: `Taklif qilish`,
|
||||||
|
text7: `Tafsilotlar`,
|
||||||
|
text8: `Agentlik Nomi`,
|
||||||
|
text9: `Bekor qilish`,
|
||||||
|
text10: `Tasdiqlash`,
|
||||||
|
text11: 'Agentlik Nomi:',
|
||||||
|
text12: `Usta`,
|
||||||
|
text13: `Administrator`,
|
||||||
|
text14: `O‘chirish`,
|
||||||
|
text15: `Bu odamni olib tashlashni xohlaysizmi?`,
|
||||||
|
text16: `MoliParty ID`,
|
||||||
|
texts1: "Tangalar Daromadi Statistikalari",
|
||||||
|
texts2: "Maosh Daromadi Statistikalari",
|
||||||
|
texts3: "Agentlik Sozlamalari",
|
||||||
|
texts4: "Administrator Sozlamalari",
|
||||||
|
texts5: "Mening Maoshim",
|
||||||
|
newText1: `Tangalar Daromadi Statistikalari`,
|
||||||
|
newText2: `Agentlik`,
|
||||||
|
newText3: `Administrator`,
|
||||||
|
audit:'Tekshiruvda',
|
||||||
|
weeklyRewardsText1: 'Boshlovchi haftalik mukofotlari',
|
||||||
|
weeklyRewardsText2: 'Jami 664500 tanga olishingiz mumkin.',
|
||||||
|
weeklyRewardsText3: 'Olish',
|
||||||
|
weeklyRewardsText33: 'Olingan',
|
||||||
|
weeklyRewardsText4: 'Boshlovchi Darajasi',
|
||||||
|
weeklyRewardsText5: 'Qayta o‘rnatish vaqti: Dushanba 0:00 (GMT+8)',
|
||||||
|
},
|
||||||
|
adminSet: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Qidirish`,
|
||||||
|
text3: `Maʼlumot yo‘q`,
|
||||||
|
text4: `Administrator tayinlash?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo‘shish`,
|
||||||
|
text8: `Qo‘shilgan`,
|
||||||
|
},
|
||||||
|
adminSet2: {
|
||||||
|
text1: `Administrator`,
|
||||||
|
text2: `Sozlamalar`,
|
||||||
|
text3: `Administrator qo‘shish`,
|
||||||
|
text4: `Maʼlumot yo‘q`,
|
||||||
|
text5: `Administratorni olib tashlash?`,
|
||||||
|
text6: `Bekor qilish`,
|
||||||
|
text7: `Tasdiqlash`,
|
||||||
|
text8: `Usta`,
|
||||||
|
text9: `Administrator`,
|
||||||
|
text10: `O‘chirish`,
|
||||||
|
text11: 'Olib tashlandi',
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
text1: `Hammasi`,
|
||||||
|
text2: `Hammasi`,
|
||||||
|
text3: `Agentlik`,
|
||||||
|
text4: `Qo‘shilish uchun ariza?`,
|
||||||
|
text5: `Bekor qilish`,
|
||||||
|
text6: `Tasdiqlash`,
|
||||||
|
text7: `Qo‘shish`,
|
||||||
|
text8: 'Yuborilgan',
|
||||||
|
},
|
||||||
|
guildInfoSet: {
|
||||||
|
text1: `Agentlik Sozlamalari`,
|
||||||
|
text2: `Agentlik Sozlamalari`,
|
||||||
|
text3: `Nomi: `,
|
||||||
|
text4: `Nomi`,
|
||||||
|
text5: `Fon:`,
|
||||||
|
text6: `O‘chirish`,
|
||||||
|
text7: `Saqlash`,
|
||||||
|
text8: `Yuklangan`,
|
||||||
|
textConte1: `Saqlash`,
|
||||||
|
textConte2: `Tahrirlash`,
|
||||||
|
textConte3: `Qo‘shish`,
|
||||||
|
textConte4: `To‘lov Hisobi`,
|
||||||
|
text55: `Agentlik Avatari`,
|
||||||
|
toastMsgText1: `GIF yuklash hozirda qo‘llab-quvvatlanmaydi`,
|
||||||
|
},
|
||||||
|
invitation: {
|
||||||
|
text1: `Qidirish`,
|
||||||
|
text2: `MoliParty ID ni topish`,
|
||||||
|
text3: `Qidirish`,
|
||||||
|
text4: `Tarkib yo‘q`,
|
||||||
|
text5: `Agentlikka taklif qilish?`,
|
||||||
|
text6: `Bekor qilish`,
|
||||||
|
text7: `Tasdiqlash`,
|
||||||
|
text8: `Qo‘shish`,
|
||||||
|
text9: `Maʼlumot yo‘q`,
|
||||||
|
text10: 'Taklif yuborildi',
|
||||||
|
},
|
||||||
|
memberFlow: {
|
||||||
|
text1: `Daromad Statistikalari`,
|
||||||
|
text2: `Umumiy Tangalar Daromadi`,
|
||||||
|
text3: `Aʼzolar Tangalar Daromadi`,
|
||||||
|
text4: `Boshlanish vaqti tugash vaqtidan keyin bo‘lishi mumkin emas`,
|
||||||
|
text5: `Tanlangan vaqt oralig‘i 90 kundan oshmasligi kerak`,
|
||||||
|
text6: `Tangalar Daromadi`,
|
||||||
|
text7: `Davomiylik`,
|
||||||
|
text8: `Hadholar Soni`,
|
||||||
|
text9: `Men`,
|
||||||
|
},
|
||||||
|
memberFlow2: {
|
||||||
|
text1: `Maosh Statistikalari`,
|
||||||
|
text2: `Oldingi`,
|
||||||
|
text3: `Keyingi`,
|
||||||
|
text4: `Mening Maoshim`,
|
||||||
|
text5: `Tanga Maoshi`,
|
||||||
|
text6: `Komissiya`,
|
||||||
|
text7: `Qolgan Olmoslar`,
|
||||||
|
text8: `Aʼzolar Maoshlari`,
|
||||||
|
text9: `Oy`,
|
||||||
|
text10: `Aʼzo`,
|
||||||
|
text11: `Amal qiladigan kunlar`,
|
||||||
|
text12: `Tangalar Daromadi`,
|
||||||
|
text13: `Tanga Maoshi`,
|
||||||
|
text14: `Qolgan Olmoslar`,
|
||||||
|
text15: `Ko‘rish`,
|
||||||
|
text16: `Tafsilotlar`,
|
||||||
|
text17: `Joriy`,
|
||||||
|
textss: 'Umumiy Tanga Maoshi:'
|
||||||
|
},
|
||||||
|
memberFlow22: {
|
||||||
|
text1: `Aʼzo Maoshi`,
|
||||||
|
text2: `Oldingi`,
|
||||||
|
text3: `Keyingi`,
|
||||||
|
text4: `Tanga Maoshi`,
|
||||||
|
text5: `Tangalar Daromadi`,
|
||||||
|
text6: `Amal qiladigan Kunlar`,
|
||||||
|
text7: `Qolgan Olmoslar`,
|
||||||
|
text8: `Kunlik Tafsilotlar`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Sana`,
|
||||||
|
text11: `Davomiylik`,
|
||||||
|
text12: `Kunlik Daromad`,
|
||||||
|
text13: `Oylik Daromad`,
|
||||||
|
text14: `Tanga Maoshi`,
|
||||||
|
},
|
||||||
|
memberFlow222: {
|
||||||
|
text1: `Aʼzo Maoshi`,
|
||||||
|
text2: `Oldingi`,
|
||||||
|
text3: `Keyingi`,
|
||||||
|
text4: `Tanga Maoshi`,
|
||||||
|
text5: `Tangalar Daromadi`,
|
||||||
|
text6: `Amal qiladigan Kunlar`,
|
||||||
|
text7: `Qolgan Olmoslar`,
|
||||||
|
text8: `Kunlik Tafsilotlar`,
|
||||||
|
text9: ``,
|
||||||
|
text10: `Sana`,
|
||||||
|
text11: `Davomiylik`,
|
||||||
|
text12: `Kunlik Daromad`,
|
||||||
|
text13: `Oylik Daromad`,
|
||||||
|
text14: `Tanga Maoshi`,
|
||||||
|
},
|
||||||
|
search: {
|
||||||
|
text1: `Qidirish`,
|
||||||
|
text2: `MoliParty ID ni topish`,
|
||||||
|
text3: `Qidirish`,
|
||||||
|
text4: `Tarkib yo‘q`,
|
||||||
|
text5: `Qo‘shilish uchun ariza?`,
|
||||||
|
text6: `O‘chirish`,
|
||||||
|
text7: `Bekor qilish`,
|
||||||
|
text8: 'Yuborilgan',
|
||||||
|
},
|
||||||
|
lay: {
|
||||||
|
ok: 'Tasdiqlash',
|
||||||
|
close: 'Bekor qilish',
|
||||||
|
departed: 'Ketgan',
|
||||||
|
},
|
||||||
|
incomeStatistics:{
|
||||||
|
text1:`Daromad Statistikalari`,
|
||||||
|
text2:`Umumiy Tangalar Daromadi`,
|
||||||
|
text22:`Agentlik Daromadi`,
|
||||||
|
text222:`Shaxsiy Daromad`,
|
||||||
|
text3:`Shaxsiy Maʼlumotlar`,
|
||||||
|
text4:`Aʼzolar Maʼlumotlari`,
|
||||||
|
text5:`Sana`,
|
||||||
|
text6:`Tangalar Daromadi`,
|
||||||
|
text7:`Davomiylik`,
|
||||||
|
text8:`Men`,
|
||||||
|
text9:`Aʼzo`,
|
||||||
|
},
|
||||||
|
weeklyRewards: {
|
||||||
|
text1: `Boshlovchi haftalik mukofotlari`,
|
||||||
|
text2: `Siz jami <b>664500</b> tanga olishingiz mumkin.`,
|
||||||
|
text3: `Olish`,
|
||||||
|
text4: `Boshlovchi Darajasi`,
|
||||||
|
text5: `Olingan`,
|
||||||
|
},
|
||||||
|
weeklyRewardsRule: {
|
||||||
|
text1: `Qoidalar`,
|
||||||
|
text2: `<p>1 Faoliyat vaqti: har hafta 0:00-23:59 (GMT+8).</p>
|
||||||
|
<p>2 Tanga mukofotlari: Har hafta foydalanuvchining tanga daromadini hisoblang va maʼlum darajaga etganingizda mos keladigan tangalarni olishingiz mumkin.</p>`
|
||||||
|
}
|
||||||
|
}
|
@@ -101,6 +101,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/mobileSelect.js"></script>
|
<script src="./js/mobileSelect.js"></script>
|
||||||
<script src="./js/selectDate.js"></script>
|
<script src="./js/selectDate.js"></script>
|
||||||
<script src="./js/lay-picker.min.js"></script>
|
<script src="./js/lay-picker.min.js"></script>
|
||||||
|
@@ -149,6 +149,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/mobileSelect.js"></script>
|
<script src="./js/mobileSelect.js"></script>
|
||||||
<script src="./js/selectDate.js"></script>
|
<script src="./js/selectDate.js"></script>
|
||||||
<script src="./js/lay-picker.min.js"></script>
|
<script src="./js/lay-picker.min.js"></script>
|
||||||
|
@@ -155,6 +155,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/mobileSelect.js"></script>
|
<script src="./js/mobileSelect.js"></script>
|
||||||
<script src="./js/selectDate.js"></script>
|
<script src="./js/selectDate.js"></script>
|
||||||
<script src="./js/lay-picker.min.js"></script>
|
<script src="./js/lay-picker.min.js"></script>
|
||||||
|
@@ -156,6 +156,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/mobileSelect.js"></script>
|
<script src="./js/mobileSelect.js"></script>
|
||||||
<script src="./js/selectDate.js"></script>
|
<script src="./js/selectDate.js"></script>
|
||||||
<script src="./js/lay-picker.min.js"></script>
|
<script src="./js/lay-picker.min.js"></script>
|
||||||
|
@@ -177,6 +177,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/mobileSelect.js"></script>
|
<script src="./js/mobileSelect.js"></script>
|
||||||
<script src="./js/selectDate.js"></script>
|
<script src="./js/selectDate.js"></script>
|
||||||
<script src="./js/lay-picker.min.js"></script>
|
<script src="./js/lay-picker.min.js"></script>
|
||||||
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/search.js"></script>
|
<script src="./js/search.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -60,5 +60,8 @@
|
|||||||
<script src="./local/ar.js?v=1.0"></script>
|
<script src="./local/ar.js?v=1.0"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/weeklyRewards.js?v=1.11"></script>
|
<script src="./js/weeklyRewards.js?v=1.11"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -36,5 +36,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/weeklyRewardsRule.js"></script>
|
<script src="./js/weeklyRewardsRule.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -55,6 +55,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
46
view/moliparty/modules/levelNew/local/es.js
Normal file
46
view/moliparty/modules/levelNew/local/es.js
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
// Español (Spanish)
|
||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Cargando...`,
|
||||||
|
layerIndex2: `Éxito`,
|
||||||
|
layerIndex3: `Error de red`,
|
||||||
|
text1: `Nivel`,
|
||||||
|
text2: `Nivel de Riqueza`,
|
||||||
|
text3: `Nivel de Encanto`,
|
||||||
|
text4: `Valor de Riqueza:`,
|
||||||
|
text5: `Valor de Riqueza Requerido para subir de nivel:`,
|
||||||
|
text6: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Cómo subir de nivel</div>
|
||||||
|
<p>Por cada regalo de 1 moneda de oro, puedes acumular 1 punto de experiencia. Cuantos más puntos de experiencia acumules, más alto será tu nivel.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Condiciones de Obtención</div>
|
||||||
|
<p>1. Los usuarios de nivel 1 y superior pueden recibir una insignia de nivel.</p>
|
||||||
|
<p>2. Los usuarios de nivel 30 y superior pueden desbloquear privilegios de nivel (efectos especiales deslumbrantes al entrar a la sala).</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Descripción del Icono de Nivel</div>
|
||||||
|
<p>El icono de nivel se mostrará en la pantalla de la sala, la página de perfil personal y otros lugares. Cuanto más alto sea el nivel, más genial será el icono.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Descripción de la Selección Especial de Nivel de Riqueza</div>
|
||||||
|
<p>El nivel de riqueza incluye mejorar los efectos especiales deslumbrantes al entrar a la sala. Cuanto más alto sea el nivel, más geniales serán los efectos especiales de entrada.</p>
|
||||||
|
<img src="./images/leve1.png" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Desbloquear privilegios de nivel de riqueza</div>
|
||||||
|
<p>Al alcanzar el nivel 30 y superior, cada entrada a la sala tendrá efectos especiales deslumbrantes.</p>
|
||||||
|
<img src="./images/leve2.png" alt="" class="img2">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
text7: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Descripción del Nivel de Riqueza</div>
|
||||||
|
<p>El nivel de encanto es el atributo de crecimiento de tu encanto personal en esta plataforma. Por cada regalo de monedas de oro recibido, acumulas un punto de encanto. ¡A medida que tu nivel aumenta, tu insignia de nivel cambiará de color en consecuencia!</p>
|
||||||
|
<img src="./images/img3.png" alt="">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
rewards: `recompensas`,
|
||||||
|
}
|
||||||
|
}
|
46
view/moliparty/modules/levelNew/local/ru.js
Normal file
46
view/moliparty/modules/levelNew/local/ru.js
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
// Русский (Russian)
|
||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Загрузка...`,
|
||||||
|
layerIndex2: `Успех`,
|
||||||
|
layerIndex3: `Ошибка сети`,
|
||||||
|
text1: `Уровень`,
|
||||||
|
text2: `Уровень Богатства`,
|
||||||
|
text3: `Уровень Обаяния`,
|
||||||
|
text4: `Значение Богатства:`,
|
||||||
|
text5: `Значение Богатства Требуется для повышения:`,
|
||||||
|
text6: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Как повысить уровень</div>
|
||||||
|
<p>За каждый подарок в 1 золотую монету вы можете накопить 1 очко опыта. Чем больше очков опыта вы накопите, тем выше будет ваш уровень.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Условия Получения</div>
|
||||||
|
<p>1. Пользователи уровня 1 и выше могут получить значок уровня.</p>
|
||||||
|
<p>2. Пользователи уровня 30 и выше могут разблокировать привилегии уровня (ослепительные спецэффекты при входе в комнату).</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Описание Значка Уровня</div>
|
||||||
|
<p>Значок уровня будет отображаться на экране комнаты, странице личного профиля и других местах. Чем выше уровень, тем круче значок.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Описание Специального Выбора Уровня Богатства</div>
|
||||||
|
<p>Уровень богатства включает улучшение ослепительных спецэффектов при входе в комнату. Чем выше уровень, тем круче спецэффекты входа.</p>
|
||||||
|
<img src="./images/leve1.png" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Разблокировать привилегии уровня богатства</div>
|
||||||
|
<p>При достижении уровня 30 и выше каждый вход в комнату будет иметь ослепительные спецэффекты.</p>
|
||||||
|
<img src="./images/leve2.png" alt="" class="img2">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
text7: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Описание Уровня Богатства</div>
|
||||||
|
<p>Уровень обаяния - это атрибут роста вашей личной привлекательности на этой платформе. За каждый полученный подарок в золотых монетах вы накапливаете одно очко обаяния. По мере повышения вашего уровня ваш значок уровня будет соответственно менять цвет!</p>
|
||||||
|
<img src="./images/img3.png" alt="">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
rewards: `награды`,
|
||||||
|
}
|
||||||
|
}
|
45
view/moliparty/modules/levelNew/local/uz.js
Normal file
45
view/moliparty/modules/levelNew/local/uz.js
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: `Yuklanmoqda...`,
|
||||||
|
layerIndex2: `Muvaffaqiyat`,
|
||||||
|
layerIndex3: `Tarmoq xatosi`,
|
||||||
|
text1: `Daraja`,
|
||||||
|
text2: `Boylik Darajasi`,
|
||||||
|
text3: `Joʻzibadorlik Darajasi`,
|
||||||
|
text4: `Boylik Qiymati:`,
|
||||||
|
text5: `Darajani oshirish uchun kerakli Boylik Qiymati:`,
|
||||||
|
text6: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Darajani qanday oshirish kerak</div>
|
||||||
|
<p>Har 1 oltin tanga sovgʻasi uchun siz 1 tajriba nuqtasini toʻplashingiz mumkin. Qancha koʻp tajriba nuqtalari toʻplasaniz, darajangiz shuncha yuqori boʻladi.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Olish Shartlari</div>
|
||||||
|
<p>1. 1-darajali va undan yuqori foydalanuvchilar daraja nishonini olishlari mumkin.</p>
|
||||||
|
<p>2. 30-darajali va undan yuqori foydalanuvchilar daraja imtiyozlarini ochishlari mumkin (xonaga kirishda koʻzni qamashtiradigan maxsus effektlar).</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Daraja Belgisi Tavsifi</div>
|
||||||
|
<p>Daraja belgisi xona ekranida, shaxsiy profil sahifasida va boshqa joylarda koʻrsatiladi. Daraja qanchalik yuqori boʻlsa, belgi shuncha ajoyib boʻladi.</p>
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Boylik Darajasi Maxsus Tanlovi Tavsifi</div>
|
||||||
|
<p>Boylik darajasi xonaga kirishdagi koʻzni qamashtiradigan maxsus effektlarni yaxshilashni oʻz ichiga oladi. Daraja qanchalik yuqori boʻlsa, kirish maxsus effektlari shuncha ajoyib boʻladi.</p>
|
||||||
|
<img src="./images/leve1.png" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Boylik darajasi imtiyozlarini ochish</div>
|
||||||
|
<p>30-darajaga va undan yuqoriga yetganingizda, har bir xonaga kirishda koʻzni qamashtiradigan maxsus effektlar boʻladi.</p>
|
||||||
|
<img src="./images/leve2.png" alt="" class="img2">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
text7: `
|
||||||
|
<div class="ruleText">
|
||||||
|
<div class="title">Boylik Darajasi Tavsifi</div>
|
||||||
|
<p>Joʻzibadorlik darajasi bu platformadagi shaxsiy joʻzibadorligingizning oʻsish atributidir. Har bir olingan oltin tanga sovgʻasi uchun siz bir joʻzibadorlik nuqtasini toʻplasiz. Darajangiz oshgani sayin, daraja nishoningiz mos ravishda rangini oʻzgartiradi!</p>
|
||||||
|
<img src="./images/img3.png" alt="">
|
||||||
|
</div>
|
||||||
|
`,
|
||||||
|
rewards: `mukofotlar`,
|
||||||
|
}
|
||||||
|
}
|
@@ -32,6 +32,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/rewards.js"></script>
|
<script src="./js/rewards.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -110,5 +110,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/index.js?v=1.5"></script>
|
<script src="./js/index.js?v=1.5"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
23
view/moliparty/modules/newRank/local/es.js
Normal file
23
view/moliparty/modules/newRank/local/es.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: 'Cargando...',
|
||||||
|
layerIndex2: 'Operación completada',
|
||||||
|
layerIndex3: 'Error de red, por favor salga y vuelva a entrar',
|
||||||
|
text1: "Riqueza ",
|
||||||
|
text2: "Encanto ",
|
||||||
|
text3: "Sala",
|
||||||
|
text4: "Familia",
|
||||||
|
text5: "Diario ",
|
||||||
|
text6: "Semanal ",
|
||||||
|
text7: "No listado",
|
||||||
|
newText1:`Ranking de Honor`,
|
||||||
|
newText11:`Ranking de Honor`,
|
||||||
|
newText2:`Recompensas Mensuales`,
|
||||||
|
newText22:`Recompensas Mensuales`,
|
||||||
|
newText3:`Detrás`,
|
||||||
|
newText4:`Mensual`,
|
||||||
|
newText5:`Recompensas`,
|
||||||
|
newText6:`TOP3 del Mes Pasado`,
|
||||||
|
newText7: 'Vacante',
|
||||||
|
}
|
||||||
|
}
|
23
view/moliparty/modules/newRank/local/ru.js
Normal file
23
view/moliparty/modules/newRank/local/ru.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: 'Загрузка...',
|
||||||
|
layerIndex2: 'Операция завершена',
|
||||||
|
layerIndex3: 'Ошибка сети, пожалуйста, выйдите и войдите снова',
|
||||||
|
text1: "Богатство ",
|
||||||
|
text2: "Очарование ",
|
||||||
|
text3: "Комната",
|
||||||
|
text4: "Семья",
|
||||||
|
text5: "Ежедневный ",
|
||||||
|
text6: "Еженедельный ",
|
||||||
|
text7: "Не в списке",
|
||||||
|
newText1:`Рейтинг Чести`,
|
||||||
|
newText11:`Рейтинг Чести`,
|
||||||
|
newText2:`Ежемесячные Награды`,
|
||||||
|
newText22:`Ежемесячные Награды`,
|
||||||
|
newText3:`Позади`,
|
||||||
|
newText4:`Ежемесячный`,
|
||||||
|
newText5:`Награды`,
|
||||||
|
newText6:`ТОП3 Прошлого Месяца`,
|
||||||
|
newText7: 'Вакантно',
|
||||||
|
}
|
||||||
|
}
|
23
view/moliparty/modules/newRank/local/uz.js
Normal file
23
view/moliparty/modules/newRank/local/uz.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
layerIndex1: 'Yuklanmoqda...',
|
||||||
|
layerIndex2: 'Operatsiya tugallandi',
|
||||||
|
layerIndex3: 'Tarmoq xatosi, iltimos chiqib qayta kiring',
|
||||||
|
text1: "Boylik ",
|
||||||
|
text2: "Jo\'zibadorlik ",
|
||||||
|
text3: "Xona",
|
||||||
|
text4: "Oila",
|
||||||
|
text5: "Kunlik ",
|
||||||
|
text6: "Haftalik ",
|
||||||
|
text7: "Ro\'yxatda emas",
|
||||||
|
newText1:`Shon-sharaf Reytingi`,
|
||||||
|
newText11:`Shon-sharaf Reytingi`,
|
||||||
|
newText2:`Oylik Mukofotlar`,
|
||||||
|
newText22:`Oylik Mukofotlar`,
|
||||||
|
newText3:`Orqada`,
|
||||||
|
newText4:`Oylik`,
|
||||||
|
newText5:`Mukofotlar`,
|
||||||
|
newText6:`O\'tgan Oy TOP3`,
|
||||||
|
newText7: 'Bo\'sh',
|
||||||
|
}
|
||||||
|
}
|
@@ -76,5 +76,8 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/monthlyRewards.js?v=1.0"></script>
|
<script src="./js/monthlyRewards.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -79,6 +79,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/givePack.js?v=1.0"></script>
|
<script src="./js/givePack.js?v=1.0"></script>
|
||||||
|
@@ -74,6 +74,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
|
29
view/moliparty/modules/packCenter/local/es.js
Normal file
29
view/moliparty/modules/packCenter/local/es.js
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
const langEs = {
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Centro de Paquetes de Regalo',
|
||||||
|
Newbie_Giftpack:'Paquete de Regalo para Principiantes',
|
||||||
|
Expiration_Countdown:'Cuenta Regresiva de Expiración',
|
||||||
|
Number_Giftpacks:'Número de Paquetes de Regalo:',
|
||||||
|
Number_Used:'Número Usado:',
|
||||||
|
Trial_btn:'Probar',
|
||||||
|
Give_btn:'Dar',
|
||||||
|
contents_backpack:'El contenido del paquete de regalo se colocará en tu mochila correspondiente, por favor revísalo~',
|
||||||
|
Cancel_btn:'Cancelar',
|
||||||
|
Use_btn:'Usar',
|
||||||
|
My_Record:'Mi Registro de Paquetes de Regalo',
|
||||||
|
used_package:'Has usado exitosamente el paquete de regalo, ve a tu bolsa para revisarlo~',
|
||||||
|
I_Received:'Recibí',
|
||||||
|
I_Gave:'Di',
|
||||||
|
I_Used:'Usé',
|
||||||
|
Giftpacks_System:'Paquetes de Regalo del Sistema',
|
||||||
|
Give_Giftpack:'Dar Paquete de Regalo',
|
||||||
|
Giftpack_Quantity:'Cantidad de Paquetes de Regalo:',
|
||||||
|
Giftpacks_caution:'Los paquetes de regalo no pueden ser retirados después de ser dados, por favor opera con precaución~',
|
||||||
|
sent_package:'Has enviado exitosamente el paquete de regalo, ¡ve y notifica a tus amigos!',
|
||||||
|
You_yet:'Aún no has recibido ningún paquete de regalo',
|
||||||
|
Contact_them:'Contacta al servicio al cliente para conocer las últimas formas de obtenerlos',
|
||||||
|
Please_search:'Por favor ingresa ID de usuario para buscar',
|
||||||
|
Rules:'Reglas',
|
||||||
|
Rules_txt:'1 Distribución de paquetes de regalo: La plataforma distribuirá recompensas de paquetes de regalo de vez en cuando según la actividad del usuario, comportamiento, etc. <br /> 2 Cómo distribuir: Por favor contacta al servicio al cliente para métodos de adquisición específicos. <br /> 3 Uso de paquetes de regalo: Después de recibir el paquete de regalo, puedes elegir usarlo tú mismo o darlo a otros. <br /> 4 Período de validez del paquete de regalo: Cada paquete de regalo está marcado con una fecha de expiración. Por favor úsalo antes de la fecha de expiración. Expirará automáticamente después de la fecha de expiración. <br /> 5 Manejo de violaciones: Si se encuentra que un usuario ha violado las reglas (como hacer trampa, barrido malicioso, etc.), la plataforma tiene el derecho de retirar el paquete de regalo. <br /> 6 Otras instrucciones: La plataforma tiene el derecho final de interpretación de esta actividad.',
|
||||||
|
}
|
||||||
|
}
|
29
view/moliparty/modules/packCenter/local/ru.js
Normal file
29
view/moliparty/modules/packCenter/local/ru.js
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Центр Подарочных Наборов',
|
||||||
|
Newbie_Giftpack:'Подарочный Набор для Новичков',
|
||||||
|
Expiration_Countdown:'Обратный Отсчет до Истечения',
|
||||||
|
Number_Giftpacks:'Количество Подарочных Наборов:',
|
||||||
|
Number_Used:'Количество Использовано:',
|
||||||
|
Trial_btn:'Попробовать',
|
||||||
|
Give_btn:'Дать',
|
||||||
|
contents_backpack:'Содержание подарочного набора будет помещено в вашу соответствующую сумку, пожалуйста, проверьте~',
|
||||||
|
Cancel_btn:'Отмена',
|
||||||
|
Use_btn:'Использовать',
|
||||||
|
My_Record:'Мой Регистр Подарочных Наборов',
|
||||||
|
used_package:'Вы успешно использовали подарочный набор, перейдите в свою сумку, чтобы проверить~',
|
||||||
|
I_Received:'Я Получил',
|
||||||
|
I_Gave:'Я Дал',
|
||||||
|
I_Used:'Я Использовал',
|
||||||
|
Giftpacks_System:'Подарочные Наборы от Системы',
|
||||||
|
Give_Giftpack:'Дать Подарочный Набор',
|
||||||
|
Giftpack_Quantity:'Количество Подарочных Наборов:',
|
||||||
|
Giftpacks_caution:'Подарочные наборы не могут быть отозваны после передачи, пожалуйста, действуйте осторожно~',
|
||||||
|
sent_package:'Вы успешно отправили подарочный набор, идите и уведомите своих друзей!',
|
||||||
|
You_yet:'Вы еще не получили никаких подарочных наборов',
|
||||||
|
Contact_them:'Свяжитесь со службой поддержки, чтобы узнать о последних способах их получения',
|
||||||
|
Please_search:'Пожалуйста, введите ID пользователя для поиска',
|
||||||
|
Rules:'Правила',
|
||||||
|
Rules_txt:'1 Распределение подарочных наборов: Платформа будет время от времени распределять награды подарочных наборов на основе активности пользователя, поведения и т.д. <br /> 2 Как распределять: Пожалуйста, свяжитесь со службой поддержки для получения конкретных методов приобретения. <br /> 3 Использование подарочных наборов: После получения подарочного набора вы можете выбрать использовать его самостоятельно или отдать другим. <br /> 4 Срок действия подарочного набора: Каждый подарочный набор помечен сроком годности. Пожалуйста, используйте его до истечения срока годности. Он автоматически истечет после истечения срока годности. <br /> 5 Обработка нарушений: Если пользователь будет признан нарушившим правила (например, мошенничество, злонамеренное сканирование и т.д.), платформа имеет право изъять подарочный набор. <br /> 6 Другие инструкции: Платформа имеет окончательное право толкования этой деятельности.',
|
||||||
|
}
|
||||||
|
}
|
29
view/moliparty/modules/packCenter/local/uz.js
Normal file
29
view/moliparty/modules/packCenter/local/uz.js
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Sovg\'a To\'plamlari Markazi',
|
||||||
|
Newbie_Giftpack:'Yangi Kelganlar uchun Sovg\'a To\'plami',
|
||||||
|
Expiration_Countdown:'Muddati Tugash Hisobi',
|
||||||
|
Number_Giftpacks:'Sovg\'a To\'plamlari Soni:',
|
||||||
|
Number_Used:'Ishlatilgan Soni:',
|
||||||
|
Trial_btn:'Sinab Ko\'rish',
|
||||||
|
Give_btn:'Bermoq',
|
||||||
|
contents_backpack:'Sovg\'a to\'plamining tarkibi sizning mos sumkangizga qo\'yiladi, iltimos tekshiring~',
|
||||||
|
Cancel_btn:'Bekor Qilish',
|
||||||
|
Use_btn:'Ishlatish',
|
||||||
|
My_Record:'Mening Sovg\'a To\'plami Yozuvim',
|
||||||
|
used_package:'Siz sovg\'a to\'plamini muvaffaqiyatli ishlatdingiz, tekshirish uchun sumkangizga o\'ting~',
|
||||||
|
I_Received:'Men Oldim',
|
||||||
|
I_Gave:'Men Berdim',
|
||||||
|
I_Used:'Men Ishlatdim',
|
||||||
|
Giftpacks_System:'Tizimdan Sovg\'a To\'plamlari',
|
||||||
|
Give_Giftpack:'Sovg\'a To\'plamini Bermoq',
|
||||||
|
Giftpack_Quantity:'Sovg\'a To\'plami Miqdori:',
|
||||||
|
Giftpacks_caution:'Sovg\'a to\'plamlari berilgandan keyin qaytarib olinmaydi, iltimos ehtiyotkorlik bilan ishlang~',
|
||||||
|
sent_package:'Siz sovg\'a to\'plamini muvaffaqiyatli yubordingiz, do\'stlaringizga xabar bering!',
|
||||||
|
You_yet:'Siz hali hech qanday sovg\'a to\'plami olmadingiz',
|
||||||
|
Contact_them:'Eng so\'nggi usullarni bilish uchun mijozlar xizmatiga murojaat qiling',
|
||||||
|
Please_search:'Iltimos, qidirish uchun foydalanuvchi ID sini kiriting',
|
||||||
|
Rules:'Qoidalar',
|
||||||
|
Rules_txt:'1 Sovg\'a to\'plami taqsimoti: Platforma foydalanuvchi faolligi, xulq-atvori va boshqalarga asosan vaqti-vaqti bilan sovg\'a to\'plami mukofotlarini taqsimlaydi. <br /> 2 Qanday taqsimlash: Iltimos, aniq olish usullari uchun mijozlar xizmatiga murojaat qiling. <br /> 3 Sovg\'a to\'plamidan foydalanish: Sovg\'a to\'plamini olgach, uni o\'zingiz ishlatish yoki boshqalarga berishni tanlashingiz mumkin. <br /> 4 Sovg\'a to\'plami muddati: Har bir sovg\'a to\'plami muddati bilan belgilanadi. Iltimos, muddat tugashidan oldin ishlating. Muddati tugagach avtomatik ravishda bekor bo\'ladi. <br /> 5 Qoidabuzarlikni qayta ishlash: Agar foydalanuvchi qoidalarni buzgani aniqlandi (masalan, firibgarlik, yomon niyatli skanerlash va boshqalar), platforma sovg\'a to\'plamini qaytarib olish huquqiga ega. <br /> 6 Boshqa ko\'rsatmalar: Platforma ushbu faoliyatni talqin qilish bo\'yicha yakuniy huquqqa ega.',
|
||||||
|
}
|
||||||
|
}
|
@@ -57,6 +57,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/myRecord.js?v=1.0"></script>
|
<script src="./js/myRecord.js?v=1.0"></script>
|
||||||
|
@@ -35,6 +35,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@@ -58,7 +58,10 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="./js/hourRank.js?v=1.0"></script>
|
<script src="./js/hourRank.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
@@ -60,6 +60,9 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/hourRankLicense.js?v=1.0"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="./js/hourRankLicense.js?v=1.0"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
@@ -112,6 +112,9 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="./js/index.js?v=1.2"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="./js/index.js?v=1.2"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
33
view/moliparty/modules/room_rank/local/es.js
Normal file
33
view/moliparty/modules/room_rank/local/es.js
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
ruleLicense_title: "Reglas de la Lista",
|
||||||
|
ruleLicense_text: `
|
||||||
|
<p>La lista por hora se clasifica según el valor de los regalos recibidos dentro de una sola hora en las salas de fiesta.</p>
|
||||||
|
<p>La lista se liquida cada hora, y el TOP1 será anunciado en todas las salas de fiesta del servidor.</p>
|
||||||
|
`,
|
||||||
|
img1: `./images/single/topthree-bg-en.png`,
|
||||||
|
hour_title: 'Lista por Hora',
|
||||||
|
hore_text1: 'Hasta la Fecha Límite de la Lista',
|
||||||
|
hour_text2: 'Clasificación',
|
||||||
|
hour_text3: 'Sala',
|
||||||
|
hour_text4: 'Valor de Regalos',
|
||||||
|
hour_text5: 'Cargando...',
|
||||||
|
hour_text6: 'Operación Completada',
|
||||||
|
hour_text7: 'Error de Red',
|
||||||
|
hour_text8: ' ',
|
||||||
|
hour_text9: 'Esperando Posición',
|
||||||
|
hour_text10: ' ',
|
||||||
|
hour_text11: 'No Listado',
|
||||||
|
roomImg1: './images/title-en.png',
|
||||||
|
room_title: 'Lista de Salas',
|
||||||
|
room_text1: 'Lista de Amor',
|
||||||
|
room_text2: 'Lista de Encanto',
|
||||||
|
room_text3: 'Lista Diaria',
|
||||||
|
room_text4: 'Lista Semanal',
|
||||||
|
room_text5: 'Lista Mensual',
|
||||||
|
room_text6: 'Error de red, por favor salga y vuelva a entrar',
|
||||||
|
text11: `<p>La Clasificación por Hora se basa en el valor de los regalos recibidos por transmisores individuales dentro de una sola hora.</p>
|
||||||
|
<p>Las clasificaciones se calculan cada hora, y el TOP1 será anunciado en todas las salas de transmisores.</p>`,
|
||||||
|
hour_text33: `Transmisor`,
|
||||||
|
}
|
||||||
|
}
|
33
view/moliparty/modules/room_rank/local/ru.js
Normal file
33
view/moliparty/modules/room_rank/local/ru.js
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
ruleLicense_title: "Правила Списка",
|
||||||
|
ruleLicense_text: `
|
||||||
|
<p>Часовой список ранжируется по стоимости подарков, полученных в течение одного часа в вечеринках.</p>
|
||||||
|
<p>Список обновляется каждый час, и TOP1 будет объявлен во всех вечеринках на сервере.</p>
|
||||||
|
`,
|
||||||
|
img1: `./images/single/topthree-bg-en.png`,
|
||||||
|
hour_title: 'Часовой Список',
|
||||||
|
hore_text1: 'До Крайнего Срока Списка',
|
||||||
|
hour_text2: 'Рейтинг',
|
||||||
|
hour_text3: 'Комната',
|
||||||
|
hour_text4: 'Стоимость Подарков',
|
||||||
|
hour_text5: 'Загрузка...',
|
||||||
|
hour_text6: 'Операция Завершена',
|
||||||
|
hour_text7: 'Ошибка Сети',
|
||||||
|
hour_text8: ' ',
|
||||||
|
hour_text9: 'Ожидание Позиции',
|
||||||
|
hour_text10: ' ',
|
||||||
|
hour_text11: 'Не в Списке',
|
||||||
|
roomImg1: './images/title-en.png',
|
||||||
|
room_title: 'Список Комнат',
|
||||||
|
room_text1: 'Список Любви',
|
||||||
|
room_text2: 'Список Очарования',
|
||||||
|
room_text3: 'Ежедневный Список',
|
||||||
|
room_text4: 'Еженедельный Список',
|
||||||
|
room_text5: 'Ежемесячный Список',
|
||||||
|
room_text6: 'Ошибка сети, пожалуйста, выйдите и войдите снова',
|
||||||
|
text11: `<p>Часовой Рейтинг основан на стоимости подарков, полученных отдельными трансляторами в течение одного часа.</p>
|
||||||
|
<p>Рейтинги рассчитываются каждый час, и TOP1 будет объявлен во всех комнатах трансляторов.</p>`,
|
||||||
|
hour_text33: `Транслятор`,
|
||||||
|
}
|
||||||
|
}
|
33
view/moliparty/modules/room_rank/local/uz.js
Normal file
33
view/moliparty/modules/room_rank/local/uz.js
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
ruleLicense_title: "Ro'yxat Qoidalari",
|
||||||
|
ruleLicense_text: `
|
||||||
|
<p>Soatlik ro'yxat ziyofat xonalarida bitta soat ichida olingan sovg'alar qiymatiga ko'ra tartiblanadi.</p>
|
||||||
|
<p>Ro'yxat har soatda hisoblanadi va TOP1 serverdagi barcha ziyofat xonalarida e'lon qilinadi.</p>
|
||||||
|
`,
|
||||||
|
img1: `./images/single/topthree-bg-en.png`,
|
||||||
|
hour_title: 'Soatlik Ro\'yxat',
|
||||||
|
hore_text1: 'Ro\'yxat Muddati Tugaguncha',
|
||||||
|
hour_text2: 'Reyting',
|
||||||
|
hour_text3: 'Xona',
|
||||||
|
hour_text4: 'Sovg\'a Qiymati',
|
||||||
|
hour_text5: 'Yuklanmoqda...',
|
||||||
|
hour_text6: 'Amal Bajarildi',
|
||||||
|
hour_text7: 'Tarmoq Xatosi',
|
||||||
|
hour_text8: ' ',
|
||||||
|
hour_text9: 'O\'rin Kutish',
|
||||||
|
hour_text10: ' ',
|
||||||
|
hour_text11: 'Ro\'yxatda Emas',
|
||||||
|
roomImg1: './images/title-en.png',
|
||||||
|
room_title: 'Xona Ro\'yxati',
|
||||||
|
room_text1: 'Sevgi Ro\'yxati',
|
||||||
|
room_text2: 'Joziba Ro\'yxati',
|
||||||
|
room_text3: 'Kunlik Ro\'yxat',
|
||||||
|
room_text4: 'Haftalik Ro\'yxat',
|
||||||
|
room_text5: 'Oylik Ro\'yxat',
|
||||||
|
room_text6: 'Tarmoq xatosi, iltimos chiqing va qayta kiring',
|
||||||
|
text11: `<p>Soatlik Reyting bitta soat ichida alohida translyatorlar tomonidan olingan sovg'alar qiymatiga asoslanadi.</p>
|
||||||
|
<p>Reytinglar har soatda hisoblanadi va TOP1 barcha translyator xonalarida e'lon qilinadi.</p>`,
|
||||||
|
hour_text33: `Translyator`,
|
||||||
|
}
|
||||||
|
}
|
@@ -36,8 +36,11 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script>
|
<script>
|
||||||
let browser = checkVersion()
|
let browser = checkVersion()
|
||||||
if (EnvCheck() === 'test') new VConsole
|
if (EnvCheck() === 'test') new VConsole
|
||||||
|
@@ -30,8 +30,11 @@
|
|||||||
<script src="./local/zh.js"></script>
|
<script src="./local/zh.js"></script>
|
||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$(function () {
|
$(function () {
|
||||||
let env = EnvCheck();
|
let env = EnvCheck();
|
||||||
|
@@ -174,6 +174,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
|
113
view/moliparty/modules/taskCenter/local/es.js
Normal file
113
view/moliparty/modules/taskCenter/local/es.js
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
langEs = {
|
||||||
|
// 模块
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Centro de tareas',
|
||||||
|
Mall:'Centro comercial',
|
||||||
|
Sign_gifts:'Inicia sesión para ganar regalos',
|
||||||
|
Sign_generous:'Inicia sesión durante 7 días para obtener regalos generosos',
|
||||||
|
Sign_now:'Inicia sesión ahora',
|
||||||
|
Day:'Día',
|
||||||
|
Signed_in:'Iniciado sesión',
|
||||||
|
Expired:'Expirado',
|
||||||
|
Daily_Tasks:'Tareas diarias',
|
||||||
|
DAILY_SIGN:'Inicia sesión diariamente',
|
||||||
|
UP_MIC:function(num,standardValue){
|
||||||
|
return `Chatear en el micrófono (${num}/${standardValue}min)`
|
||||||
|
},
|
||||||
|
UP_MIC_120:function(num,standardValue){
|
||||||
|
return `Chatear en el micrófono (${num}/${standardValue}min)`
|
||||||
|
},
|
||||||
|
PLAY_GAME:function(num,standardValue){
|
||||||
|
return `Jugar juegos (${num}/${standardValue})`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM:function(num,standardValue){
|
||||||
|
return `Recargar (${num}/${standardValue}) Monedas`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_5:function(num,standardValue){
|
||||||
|
return `Recargar (${num}/${standardValue}) Monedas`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_10:function(num,standardValue){
|
||||||
|
return `Recargar (${num}/${standardValue}) Monedas`
|
||||||
|
},
|
||||||
|
ROOM_SEND_GIFT:'Enviar regalos en la sala',
|
||||||
|
RECV_LUCKY_GIFT:'Recibió regalos Lucky/Bravo',
|
||||||
|
RECV_NOMAL_GIFT:'Recibió regalos normales',
|
||||||
|
RECV_NOMAL_GIFT_GOLD:'Recibir un solo regalo con un valor de monedas superior a 20.000 monedas (no incluye regalos Lucky/Bravo)',
|
||||||
|
Received_rewards:'Recompensas recibidas',
|
||||||
|
Receive:'Recibir',
|
||||||
|
Reward_out:'La recompensa ha sido recibida, échale un vistazo~',
|
||||||
|
Sign_arrived:'La hora de inicio de sesión no ha llegado',
|
||||||
|
Received:'Recibido',
|
||||||
|
Exchange:'Cambiar',
|
||||||
|
Exchange_successful:'Cambio exitoso',
|
||||||
|
Understand:'Entendido',
|
||||||
|
You_exchanged:function(name){
|
||||||
|
return `Has cambiado ${name}, se ha colocado con éxito en tu mochila`
|
||||||
|
},
|
||||||
|
pointsDetails:'Detalles de puntos',
|
||||||
|
Increase:'Aumento',
|
||||||
|
Consumption:'Consumo',
|
||||||
|
Insufficient_points:'Puntos insuficientes',
|
||||||
|
Your_rewards:'Tienes puntos insuficientes, ¡cambia por otras recompensas!',
|
||||||
|
Boom_reward:'Recompensa Boom',
|
||||||
|
Weekly_Tasks:'Tareas semanales',
|
||||||
|
Agent_Tasks:'Tareas de agente',
|
||||||
|
Room_income:'Ingreso de monedas por sala',
|
||||||
|
Daily_room_income:'Ingreso diario de monedas por sala',
|
||||||
|
Diamond_income:function(num,standardValue){
|
||||||
|
return `Ingreso de diamantes(${num}/${standardValue}💎)`;
|
||||||
|
},
|
||||||
|
Become_tasks:'¡Conviértete en miembro de la agencia para obtener más tareas!',
|
||||||
|
Stay_Tuned:'Misión de desbloqueo de identidad de agente',
|
||||||
|
ROOM_SEND_NOMAL_GIFT_GOLD:'Enviar un solo regalo con un valor de monedas superior a 20.000 monedas (no incluye regalos Lucky/Bravo)',
|
||||||
|
CHARGE_GOLD_NUM_50:function(num,standardValue){
|
||||||
|
return `Recargar (${num}/${standardValue}) Monedas`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_100:function(num,standardValue){
|
||||||
|
return `Recargar (${num}/${standardValue}) Monedas`
|
||||||
|
},
|
||||||
|
ROOM_SEND_LUCKY_NUM:function(num,standardValue){
|
||||||
|
return `Enviar (${num}/${standardValue}) regalos Lucky`;
|
||||||
|
},
|
||||||
|
ROOM_SEND_BRAVO_NUM:function(num,standardValue){
|
||||||
|
return `Enviar (${num}/${standardValue}) regalos Bravo`;
|
||||||
|
},
|
||||||
|
GM_UP_MIC:function(num,standardValue){
|
||||||
|
return `Recompensa para nuevo host(${num}/${standardValue}min)`;
|
||||||
|
},
|
||||||
|
GUILD_SALARY:'Proporción de salario en diamantes para agente',
|
||||||
|
Agency_cycle:'Ingreso de diamantes por ciclo de agencia',
|
||||||
|
Salary_ratio:'Proporción de salario:',
|
||||||
|
GUILD_CREATE:'Ceremonia de apertura de agencia',
|
||||||
|
GUILD_MIC:'Tarea semanal "Rey del streaming"',
|
||||||
|
GUILD_MIC_ONE:'Tarea semanal "Estrella brillante"',
|
||||||
|
Daily_income:'Ingreso diario de diamantes',
|
||||||
|
Number_hosts:'Número de hosts',
|
||||||
|
Hosts_time:function(time){
|
||||||
|
return `Los hosts alcanzan ${time} minutos de micrófono`
|
||||||
|
},
|
||||||
|
Number_Members:'Número de miembros de la agencia',
|
||||||
|
Day_name:function(day){
|
||||||
|
return `Día${day}`
|
||||||
|
},
|
||||||
|
Agency_income:`Ingreso diario de diamantes de la agencia`,
|
||||||
|
Countdown:'Cuenta regresiva:',
|
||||||
|
Day:'Día',
|
||||||
|
Host_Level:'Nivel de host:',
|
||||||
|
Reward_detail:'Detalles de recompensa',
|
||||||
|
Daily_Rewards:'Recompensas básicas',
|
||||||
|
Extra_Rewards:'Recompensas extras',
|
||||||
|
Complete_days:'Completar 5 días',
|
||||||
|
mic_chat:'2 horas diarias de chat en micrófono',
|
||||||
|
Unlock_time:'¡Completa 180 minutos de micrófono y recibe una recompensa de hasta 1.000.330 monedas!',
|
||||||
|
Days:'Tiempo de micrófono',
|
||||||
|
hours_time:'3 horas de micrófono',
|
||||||
|
The_wallet:'La recompensa se ha recibido con éxito y las monedas se han depositado en tu cartera.',
|
||||||
|
valid_day:'La duración válida de 3 horas en el micrófono debe completarse en un solo día. Si no se alcanza la duración de 3 horas el mismo día, las estadísticas de duración en el micrófono se restablecerán al día siguiente.',
|
||||||
|
Today:'Hoy',
|
||||||
|
Yesterday:'Ayer',
|
||||||
|
Available_tomorrow:'Disponible mañana',
|
||||||
|
Not_available_collection:'<img src="./images/suo.png" >'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
113
view/moliparty/modules/taskCenter/local/ru.js
Normal file
113
view/moliparty/modules/taskCenter/local/ru.js
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
langRu = {
|
||||||
|
// 模块
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Центр задач',
|
||||||
|
Mall:'ТЦ',
|
||||||
|
Sign_gifts:'Войдите, чтобы выиграть подарки',
|
||||||
|
Sign_generous:'Войдите 7 дней подряд, чтобы получить щедрые подарки',
|
||||||
|
Sign_now:'Войти сейчас',
|
||||||
|
Day:'День',
|
||||||
|
Signed_in:'Вход выполнен',
|
||||||
|
Expired:'Истекло',
|
||||||
|
Daily_Tasks:'Ежедневные задания',
|
||||||
|
DAILY_SIGN:'Ежедневный вход',
|
||||||
|
UP_MIC:function(num,standardValue){
|
||||||
|
return `Чат на микрофоне (${num}/${standardValue}мин)`
|
||||||
|
},
|
||||||
|
UP_MIC_120:function(num,standardValue){
|
||||||
|
return `Чат на микрофоне (${num}/${standardValue}мин)`
|
||||||
|
},
|
||||||
|
PLAY_GAME:function(num,standardValue){
|
||||||
|
return `Играть в игры (${num}/${standardValue})`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM:function(num,standardValue){
|
||||||
|
return `Пополнить счет (${num}/${standardValue}) Монет`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_5:function(num,standardValue){
|
||||||
|
return `Пополнить счет (${num}/${standardValue}) Монет`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_10:function(num,standardValue){
|
||||||
|
return `Пополнить счет (${num}/${standardValue}) Монет`
|
||||||
|
},
|
||||||
|
ROOM_SEND_GIFT:'Отправить подарки в комнате',
|
||||||
|
RECV_LUCKY_GIFT:'Получены подарки Lucky/Bravo',
|
||||||
|
RECV_NOMAL_GIFT:'Получены обычные подарки',
|
||||||
|
RECV_NOMAL_GIFT_GOLD:'Получить одиночный подарок со стоимостью более 20 000 монет (не включая подарки Lucky/Bravo)',
|
||||||
|
Received_rewards:'Полученные награды',
|
||||||
|
Receive:'Получить',
|
||||||
|
Reward_out:'Награда получена, проверьте~',
|
||||||
|
Sign_arrived:'Время входа еще не наступило',
|
||||||
|
Received:'Получено',
|
||||||
|
Exchange:'Обменять',
|
||||||
|
Exchange_successful:'Обмен завершен успешно',
|
||||||
|
Understand:'Понятно',
|
||||||
|
You_exchanged:function(name){
|
||||||
|
return `Вы обменяли ${name}, он был успешно помещен в ваш рюкзак`
|
||||||
|
},
|
||||||
|
pointsDetails:'Детали баллов',
|
||||||
|
Increase:'Увеличение',
|
||||||
|
Consumption:'Расход',
|
||||||
|
Insufficient_points:'Недостаточно баллов',
|
||||||
|
Your_rewards:'У вас недостаточно баллов, пожалуйста, обменяйтесь на другие награды~',
|
||||||
|
Boom_reward:'Boom награда',
|
||||||
|
Weekly_Tasks:'Недельные задания',
|
||||||
|
Agent_Tasks:'Задания агента',
|
||||||
|
Room_income:'Доход в монетах за комнату',
|
||||||
|
Daily_room_income:'Ежедневный доход в монетах за комнату',
|
||||||
|
Diamond_income:function(num,standardValue){
|
||||||
|
return `Доход в бриллиантах(${num}/${standardValue}💎)`;
|
||||||
|
},
|
||||||
|
Become_tasks:'Станьте членом агентства, чтобы получить больше заданий!',
|
||||||
|
Stay_Tuned:'Миссия разблокировки агентского статуса',
|
||||||
|
ROOM_SEND_NOMAL_GIFT_GOLD:'Отправить одиночный подарок со стоимостью более 20 000 монет (не включая подарки Lucky/Bravo)',
|
||||||
|
CHARGE_GOLD_NUM_50:function(num,standardValue){
|
||||||
|
return `Пополнить счет (${num}/${standardValue}) Монет`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_100:function(num,standardValue){
|
||||||
|
return `Пополнить счет (${num}/${standardValue}) Монет`
|
||||||
|
},
|
||||||
|
ROOM_SEND_LUCKY_NUM:function(num,standardValue){
|
||||||
|
return `Отправить (${num}/${standardValue}) подарков Lucky`;
|
||||||
|
},
|
||||||
|
ROOM_SEND_BRAVO_NUM:function(num,standardValue){
|
||||||
|
return `Отправить (${num}/${standardValue}) подарков Bravo`;
|
||||||
|
},
|
||||||
|
GM_UP_MIC:function(num,standardValue){
|
||||||
|
return `Новая награда ведущего(${num}/${standardValue}мин)`;
|
||||||
|
},
|
||||||
|
GUILD_SALARY:'Процент зарплаты в бриллиантах для агента',
|
||||||
|
Agency_cycle:'Доход агентства в бриллиантах за цикл',
|
||||||
|
Salary_ratio:'Процент зарплаты:',
|
||||||
|
GUILD_CREATE:'Церемония открытия агентства',
|
||||||
|
GUILD_MIC:'Недельное задание «Король прямого эфира»',
|
||||||
|
GUILD_MIC_ONE:'Недельное задание «Сверкающая звезда»',
|
||||||
|
Daily_income:'Ежедневный доход в бриллиантах',
|
||||||
|
Number_hosts:'Количество ведущих',
|
||||||
|
Hosts_time:function(time){
|
||||||
|
return `Ведущие достигли ${time} минут времени на микрофоне`
|
||||||
|
},
|
||||||
|
Number_Members:'Количество членов агентства',
|
||||||
|
Day_name:function(day){
|
||||||
|
return `День${day}`
|
||||||
|
},
|
||||||
|
Agency_income:`Ежедневный доход агентства в бриллиантах`,
|
||||||
|
Countdown:'Отсчет:',
|
||||||
|
Day:'День',
|
||||||
|
Host_Level:'Уровень ведущего:',
|
||||||
|
Reward_detail:'Детали награды',
|
||||||
|
Daily_Rewards:'Базовые награды',
|
||||||
|
Extra_Rewards:'Дополнительные награды',
|
||||||
|
Complete_days:'Завершить 5 дней',
|
||||||
|
mic_chat:'2 часа ежедневного чата на микрофоне',
|
||||||
|
Unlock_time:'Завершите 180 минут времени на микрофоне и получите награду до 1 000 330 монет!',
|
||||||
|
Days:'Время на микрофоне',
|
||||||
|
hours_time:'3 часа времени на микрофоне',
|
||||||
|
The_wallet:'Награда успешно получена, и монеты помещены в ваш кошелек.',
|
||||||
|
valid_day:'Действительное время на микрофоне в 3 часа должно быть завершено в течение одного дня. Если в тот же день не будет достигнуто 3 часов, статистика времени на микрофоне будет сброшена на следующий день.',
|
||||||
|
Today:'Сегодня',
|
||||||
|
Yesterday:'Вчера',
|
||||||
|
Available_tomorrow:'Доступно завтра',
|
||||||
|
Not_available_collection:'<img src="./images/suo.png" >'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
113
view/moliparty/modules/taskCenter/local/uz.js
Normal file
113
view/moliparty/modules/taskCenter/local/uz.js
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
langUz = {
|
||||||
|
// 模块
|
||||||
|
demoModule: {
|
||||||
|
page_title:'Vazifa markazi',
|
||||||
|
Mall:'Do\'kon',
|
||||||
|
Sign_gifts:'Tizimga kirish va sovg\'alarni yutish',
|
||||||
|
Sign_generous:'7 kun davomida tizimga kirish va katta sovg\'alar olish',
|
||||||
|
Sign_now:'Hozir tizimga kirish',
|
||||||
|
Day:'Kun',
|
||||||
|
Signed_in:'Tizimga kiritildi',
|
||||||
|
Expired:'Muddati tugagan',
|
||||||
|
Daily_Tasks:'Kunlik vazifalar',
|
||||||
|
DAILY_SIGN:'Har kuni tizimga kirish',
|
||||||
|
UP_MIC:function(num,standardValue){
|
||||||
|
return `Mikrofon orqali suhbatlashish (${num}/${standardValue}min)`
|
||||||
|
},
|
||||||
|
UP_MIC_120:function(num,standardValue){
|
||||||
|
return `Mikrofon orqali suhbatlashish (${num}/${standardValue}min)`
|
||||||
|
},
|
||||||
|
PLAY_GAME:function(num,standardValue){
|
||||||
|
return `O\'yin o\'ynash (${num}/${standardValue})`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM:function(num,standardValue){
|
||||||
|
return `To\'ldirish (${num}/${standardValue}) Tanga`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_5:function(num,standardValue){
|
||||||
|
return `To\'ldirish (${num}/${standardValue}) Tanga`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_10:function(num,standardValue){
|
||||||
|
return `To\'ldirish (${num}/${standardValue}) Tanga`
|
||||||
|
},
|
||||||
|
ROOM_SEND_GIFT:'Xonada sovg\'alar yuborish',
|
||||||
|
RECV_LUCKY_GIFT:'Lucky/Bravo sovg\'alarini oldingiz',
|
||||||
|
RECV_NOMAL_GIFT:'Oddiy sovg\'alarni oldingiz',
|
||||||
|
RECV_NOMAL_GIFT_GOLD:'20 000 tanga qiymatiga ega bo\'lgan yagona sovg\'ani oling (Lucky/Bravo sovg\'alari bundan mustasno)',
|
||||||
|
Received_rewards:'Olingan sovg\'alar',
|
||||||
|
Receive:'Olish',
|
||||||
|
Reward_out:'Sovg\'a olindi, tekshiring~',
|
||||||
|
Sign_arrived:'Tizimga kirish vaqti hali kelmagan',
|
||||||
|
Received:'Olingan',
|
||||||
|
Exchange:'Almashtirish',
|
||||||
|
Exchange_successful:'Almashtirish muvaffaqiyatli amalga oshirildi',
|
||||||
|
Understand:'Tushundim',
|
||||||
|
You_exchanged:function(name){
|
||||||
|
return `${name} ni almashtirdingiz, u muvaffaqiyatli sumkangizga qo\'yildi`
|
||||||
|
},
|
||||||
|
pointsDetails:'Ballar tafsiloti',
|
||||||
|
Increase:'Ko\'paytirish',
|
||||||
|
Consumption:'Sarflash',
|
||||||
|
Insufficient_points:'Ballar yetarli emas',
|
||||||
|
Your_rewards:'Sizda ballar yetarli emas, boshqa sovg\'alarni almashtiring~',
|
||||||
|
Boom_reward:'Boom sovg\'asi',
|
||||||
|
Weekly_Tasks:'Haftalik vazifalar',
|
||||||
|
Agent_Tasks:'Agent vazifalari',
|
||||||
|
Room_income:'Xonada tanga daromadi',
|
||||||
|
Daily_room_income:'Kunlik xona tanga daromadi',
|
||||||
|
Diamond_income:function(num,standardValue){
|
||||||
|
return `Olmos daromadi(${num}/${standardValue}💎)`;
|
||||||
|
},
|
||||||
|
Become_tasks:'Ko\'proq vazifa olish uchun agentlik a\'zosi bo\'ling!',
|
||||||
|
Stay_Tuned:'Agentlik shaxsiyati ni ochish missiyasi',
|
||||||
|
ROOM_SEND_NOMAL_GIFT_GOLD:'20 000 tanga qiymatiga ega bo\'lgan yagona sovg\'ani yuboring (Lucky/Bravo sovg\'alari bundan mustasno)',
|
||||||
|
CHARGE_GOLD_NUM_50:function(num,standardValue){
|
||||||
|
return `To\'ldirish (${num}/${standardValue}) Tanga`
|
||||||
|
},
|
||||||
|
CHARGE_GOLD_NUM_100:function(num,standardValue){
|
||||||
|
return `To\'ldirish (${num}/${standardValue}) Tanga`
|
||||||
|
},
|
||||||
|
ROOM_SEND_LUCKY_NUM:function(num,standardValue){
|
||||||
|
return `${num}/${standardValue} Lucky sovg\'asini yuboring`;
|
||||||
|
},
|
||||||
|
ROOM_SEND_BRAVO_NUM:function(num,standardValue){
|
||||||
|
return `${num}/${standardValue} Bravo sovg\'asini yuboring`;
|
||||||
|
},
|
||||||
|
GM_UP_MIC:function(num,standardValue){
|
||||||
|
return `Yangi host sovg\'asi(${num}/${standardValue}min)`;
|
||||||
|
},
|
||||||
|
GUILD_SALARY:'Agent olmos maosh ko\'rsatkichi',
|
||||||
|
Agency_cycle:'Har bir tsikl uchun agentlik olmos daromadi',
|
||||||
|
Salary_ratio:'Maosh ko\'rsatkichi:',
|
||||||
|
GUILD_CREATE:'Agentlik ochish marosimi',
|
||||||
|
GUILD_MIC:'Haftalik "Dirijorlik qirol" vazifasi',
|
||||||
|
GUILD_MIC_ONE:'Haftalik "Yangi yulduz" vazifasi',
|
||||||
|
Daily_income:'Kunlik olmos daromadi',
|
||||||
|
Number_hosts:'Hostlar soni',
|
||||||
|
Hosts_time:function(time){
|
||||||
|
return `Hostlar mikrofon vaqtida ${time} daqiqa yetdi`
|
||||||
|
},
|
||||||
|
Number_Members:'Agentlik a\'zolari soni',
|
||||||
|
Day_name:function(day){
|
||||||
|
return `Kun${day}`
|
||||||
|
},
|
||||||
|
Agency_income:`Agentlikning kunlik olmos daromadi`,
|
||||||
|
Countdown:'Teskari hisob:',
|
||||||
|
Day:'Kun',
|
||||||
|
Host_Level:'Host darajasi:',
|
||||||
|
Reward_detail:'Sovg\'a tafsiloti',
|
||||||
|
Daily_Rewards:'Asosiy sovg\'alar',
|
||||||
|
Extra_Rewards:'Qoshimcha sovg\'alar',
|
||||||
|
Complete_days:'5 kunni tugatish',
|
||||||
|
mic_chat:'Kunlik 2 so\'at mikrofon orqali suhbat',
|
||||||
|
Unlock_time:'180 daqiqa mikrofon vaqtini tugating va 1 000 330 tanga sovg\'asini oling!',
|
||||||
|
Days:'Mikrofon vaqti',
|
||||||
|
hours_time:'3 so\'at mikrofon vaqti',
|
||||||
|
The_wallet:'Sovg\'a muvaffaqiyatli olindi va tanga keshfoyingizga qo\'yildi.',
|
||||||
|
valid_day:'3 so\'atlik mikrofon vaqti bir kun ichida tugatilishi kerak. Agar bir kun ichida 3 so\'atga erishilmasa, mikrofon vaqtini hisoboti keyingi kun yangilanadi.',
|
||||||
|
Today:'Bugun',
|
||||||
|
Yesterday:'Kecha',
|
||||||
|
Available_tomorrow:'Ertaga mavjud',
|
||||||
|
Not_available_collection:'<img src="./images/suo.png" >'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@@ -80,6 +80,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/mall.js?v=1.0"></script>
|
<script src="./js/mall.js?v=1.0"></script>
|
||||||
|
@@ -53,6 +53,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/pointsDetails.js?v=1.0"></script>
|
<script src="./js/pointsDetails.js?v=1.0"></script>
|
||||||
|
@@ -125,6 +125,9 @@
|
|||||||
<script src="./local/ar.js"></script>
|
<script src="./local/ar.js"></script>
|
||||||
<script src="./local/tr.js"></script>
|
<script src="./local/tr.js"></script>
|
||||||
<script src="./local/br.js"></script>
|
<script src="./local/br.js"></script>
|
||||||
|
<script src="./local/es.js"></script>
|
||||||
|
<script src="./local/ru.js"></script>
|
||||||
|
<script src="./local/uz.js"></script>
|
||||||
<script src="../../common/local/langHandler.js"></script>
|
<script src="../../common/local/langHandler.js"></script>
|
||||||
<script src="../../common/js/svga.min.js"></script>
|
<script src="../../common/js/svga.min.js"></script>
|
||||||
<script src="./js/index.js?v=1.0"></script>
|
<script src="./js/index.js?v=1.0"></script>
|
||||||
|
26
view/moliparty/modules/vip_Center/local/es.js
Normal file
26
view/moliparty/modules/vip_Center/local/es.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
langEs = {
|
||||||
|
demoModule: {
|
||||||
|
Only_Headdress:'Solo Tocado',
|
||||||
|
Only_Nameplate:'Solo Placa de Nombre',
|
||||||
|
Room_Card:'Tarjeta de Sala',
|
||||||
|
Mic_Effect:'Efecto de Micrófono',
|
||||||
|
Bubble_Effect:'Efecto de Burbuja',
|
||||||
|
Entry_Animation:'Animación de Entrada',
|
||||||
|
Renew:'Renovar',
|
||||||
|
Pay:'Pagar',
|
||||||
|
Cancel:'Cancelar',
|
||||||
|
Confirm:'Confirmar',
|
||||||
|
Exclusive_Privileges:' Privilegios Exclusivos',
|
||||||
|
Identification:'Identificación',
|
||||||
|
Not_obtained:'No obtuvo VIP',
|
||||||
|
Due_on:'Vence el',
|
||||||
|
is_activity:'es solo a través de actividad',
|
||||||
|
You_currently:function(num1,num2){
|
||||||
|
return `Actualmente eres ${num1}, ¿estás seguro de que quieres comprar un nivel superior ${num2}?`
|
||||||
|
},
|
||||||
|
Confirm_Purchase:'Confirmar Compra',
|
||||||
|
VIP_Center:'Centro VIP',
|
||||||
|
Days:'Días',
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
26
view/moliparty/modules/vip_Center/local/ru.js
Normal file
26
view/moliparty/modules/vip_Center/local/ru.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
langRu = {
|
||||||
|
demoModule: {
|
||||||
|
Only_Headdress:'Только Головной Убор',
|
||||||
|
Only_Nameplate:'Только Табличка с Именем',
|
||||||
|
Room_Card:'Карта Комнаты',
|
||||||
|
Mic_Effect:'Эффект Микрофона',
|
||||||
|
Bubble_Effect:'Эффект Пузыря',
|
||||||
|
Entry_Animation:'Анимация Входа',
|
||||||
|
Renew:'Продлить',
|
||||||
|
Pay:'Оплатить',
|
||||||
|
Cancel:'Отмена',
|
||||||
|
Confirm:'Подтвердить',
|
||||||
|
Exclusive_Privileges:' Эксклюзивные Привилегии',
|
||||||
|
Identification:'Идентификация',
|
||||||
|
Not_obtained:'Не получен VIP',
|
||||||
|
Due_on:'Действует до',
|
||||||
|
is_activity:'только через активность',
|
||||||
|
You_currently:function(num1,num2){
|
||||||
|
return `Вы сейчас ${num1}, вы уверены, что хотите приобрести более высокий уровень ${num2}?`
|
||||||
|
},
|
||||||
|
Confirm_Purchase:'Подтвердить Покупку',
|
||||||
|
VIP_Center:'VIP Центр',
|
||||||
|
Days:'Дней',
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
26
view/moliparty/modules/vip_Center/local/uz.js
Normal file
26
view/moliparty/modules/vip_Center/local/uz.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
langUz = {
|
||||||
|
demoModule: {
|
||||||
|
Only_Headdress:'Faqat Bosh Kiyim',
|
||||||
|
Only_Nameplate:'Faqat Ism Plaketi',
|
||||||
|
Room_Card:'Xona Kartasi',
|
||||||
|
Mic_Effect:'Mikrofon Effekti',
|
||||||
|
Bubble_Effect:'Pufakcha Effekti',
|
||||||
|
Entry_Animation:'Kirish Animatsiyasi',
|
||||||
|
Renew:'Yangiartirish',
|
||||||
|
Pay:'To\'lash',
|
||||||
|
Cancel:'Bekor Qilish',
|
||||||
|
Confirm:'Tasdiqlash',
|
||||||
|
Exclusive_Privileges:' Eksklyuziv Imtiyozlar',
|
||||||
|
Identification:'Identifikatsiya',
|
||||||
|
Not_obtained:'VIP olinmagan',
|
||||||
|
Due_on:'Muddati',
|
||||||
|
is_activity:'faqat faoliyat orqali',
|
||||||
|
You_currently:function(num1,num2){
|
||||||
|
return `Siz hozir ${num1}, yuqori darajali ${num2} sotib olishni xohlaysizmi?`
|
||||||
|
},
|
||||||
|
Confirm_Purchase:'Xaridni Tasdiqlash',
|
||||||
|
VIP_Center:'VIP Markazi',
|
||||||
|
Days:'Kun',
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
Reference in New Issue
Block a user