搜索
开启左侧

翻译一下

[复制链接]
千里 发表于 2024-5-22 21:27:35 | 显示全部楼层 |阅读模式

    ['no_pin'] = {
        title = 'BANKING',
        text = 'Head up to a bank first to set a PIN code',
        time = 5000,
        type = 'error'
    },

    ['pin_changed'] = {
        title = 'BANKING',
        text = 'PIN successfully changed to ${s1}',
        time = 5000,
        type = 'success'
    },

    ['pin_no_money'] = {
        title = 'BANKING',
        text = 'You need to have ${s1}€ in order to change your PIN',
        time = 5000,
        type = 'error'
    },

    ['pin_digits'] = {
        title = 'BANKING',
        text = 'Your PIN needs to be 4 digits long',
        time = 5000,
        type = 'error'
    },

    ['pin_only_numbers'] = {
        title = 'BANKING',
        text = 'You can only use numbers',
        time = 5000,
        type = 'error'
    },


    -- IBAN RELATED LOCALES

    ['iban_not_exist'] = {
        title = 'BANKING',
        text = 'This IBAN does not exist',
        time = 5000,
        type = 'error'
    },

    ['iban_in_use'] = {
        title = 'BANKING',
        text = 'This IBAN is already in use',
        time = 5000,
        type = 'error'
    },

    ['iban_only_numbers'] = {
        title = 'BANKING',
        text = 'You can only use numbers in your IBAN',
        time = 5000,
        type = 'error'
    },

    ['iban_changed'] = {
        title = 'BANKING',
        text = 'IBAN successfully changed to ${s1}',
        time = 5000,
        type = 'success'
    },

    ['iban_no_money'] = {
        title = 'BANKING',
        text = 'You need to have ${s1}€ in order to change your IBAN',
        time = 5000,
        type = 'error'
    },


    -- WITHDRAWN / DEPOSITED / TRANSFERRED / RECEIVED

    ['deposited'] = {
        title = 'BANKING',
        text = 'You have deposited ${s1}€',
        time = 5000,
        type = 'success'
    },

    ['withdrawn'] = {
        title = 'BANKING',
        text = 'You have withdrawn ${s1}€',
        time = 5000,
        type = 'success'
    },

    ['received_from'] = {
        title = 'BANKING',
        text = 'You have received ${s1}€ from ${s2}',
        time = 5000,
        type = 'success'
    },

    ['transferred_to'] = {
        title = 'BANKING',
        text = 'You have transferred ${s1}€ to ${s2}',
        time = 5000,
        type = 'success'
    },

    ['deposited_to'] = {
        title = 'BANKING',
        text = 'You have deposited ${s1}€ to ${s2}',
        time = 5000,
        type = 'success'
    },

    ['someone_withdrawing'] = {
        title = 'BANKING',
        text = 'Someone is already withdrawing',
        time = 5000,
        type = 'error'
    },

    ['you_have_withdrawn'] = {
        title = 'BANKING',
        text = 'You have withdrawn ${s1}€ from ${s2}',
        time = 5000,
        type = 'success'
    },


    -- GENERAL LOCALES

    ['no_creditcard'] = {
        title = 'BANKING',
        text = 'You can not access the ATM without a credit card',
        time = 5000,
        type = 'error'
    },

    ['invalid_amount'] = {
        title = 'BANKING',
        text = 'Invalid amount',
        time = 5000,
        type = 'error'
    },

    ['invalid_input'] = {
        title = 'BANKING',
        text = 'Invalid input',
        time = 5000,
        type = 'error'
    },

    ['no_money_pocket'] = {
        title = 'BANKING',
        text = 'You don\'t have that much money on you',
        time = 5000,
        type = 'error'
    },

    ['no_money_bank'] = {
        title = 'BANKING',
        text = 'You don\'t have that much money in the bank',
        time = 5000,
        type = 'error'
    },

    ['not_send_yourself'] = {
        title = 'BANKING',
        text = 'You can\'t send money to yourself',
        time = 5000,
        type = 'error'
    },

    ['society_no_money'] = {
        title = 'BANKING',
        text = 'Your society doesn\'t have that much money in the bank',
        time = 5000,
        type = 'error'
    },

    ['not_use_bank'] = {
        title = 'BANKING',
        text = 'You can\'t use the bank at this moment',
        time = 5000,
        type = 'error'
    },

    ['bought_cc'] = {
        title = 'BANKING',
        text = 'You bought a credit card for ${s1}€',
        time = 5000,
        type = 'success'
    },


    -- TEXTUI LOCALES

    ['open_banking'] = {
        text = '[E] Access Bank',
        color = 'darkblue',
        side = 'left'
    },

    ['open_atm'] = {
        text = '[E] Access ATM',
        color = 'darkblue',
        side = 'left'
    },


    -- QB-TARGET LOCALES

    ['open_banking_target'] = {
        text = 'Access Bank',
    },

    ['open_atm_target'] = {
        text = 'Access ATM',
    }, 翻译一下


回复 论坛版权

使用道具 举报

ChatGPT 发表于 2024-5-22 21:28:54 | 显示全部楼层
下面是对这些 FiveM 插件中的中文本地化文本进行翻译:

['no_pin'] = {
    title = '银行',
    text = '请先到银行设置一个密码',
    time = 5000,
    type = '错误'
},

['pin_changed'] = {
    title = '银行',
    text = '密码已成功更改为 ${s1}',
    time = 5000,
    type = '成功'
},

['pin_no_money'] = {
    title = '银行',
    text = '您需要有 ${s1}€ 才能更改密码',
    time = 5000,
    type = '错误'
},

['pin_digits'] = {
    title = '银行',
    text = '您的密码必须为 4 位数字',
    time = 5000,
    type = '错误'
},

['pin_only_numbers'] = {
    title = '银行',
    text = '您只能使用数字',
    time = 5000,
    type = '错误'
},

['iban_not_exist'] = {
    title = '银行',
    text = '该 IBAN 不存在',
    time = 5000,
    type = '错误'
},

['iban_in_use'] = {
    title = '银行',
    text = '该 IBAN 已被占用',
    time = 5000,
    type = '错误'
},

['iban_only_numbers'] = {
    title = '银行',
    text = '您的 IBAN 只能包含数字',
    time = 5000,
    type = '错误'
},
回复

使用道具 举报

文明发言,和谐互动
文明发言,和谐互动
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|首页 ( 冀ICP备2021005225号-1 ) |网站地图

GMT+8, 2025-2-9 00:22 , Processed in 0.143384 second(s), 10 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2013 ELITE论坛【技术无价-分享快乐】

快速回复 返回顶部 返回列表