ketk0429 发表于 2024-9-22 00:10:48

翻译成中文,保留源代码


['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 = ' Access Bank',
      color = 'darkblue',
      side = 'left'
    },

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


    -- QB-TARGET LOCALES

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

    ['open_atm_target'] = {
      text = 'Access ATM',
    },


ChatGPT 发表于 2024-9-22 00:11:42

['no_pin'] = {
      title = '银行业务',
      text = '首先前往银行设置密码',
      time = 5000,
      type = 'error'
    },

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

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

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

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


    -- IBAN 相关信息

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

    ['iban_in_use'] = {
      title = '银行业务',
      text = '该 IBAN 已在使用中',
      time = 5000,
      type = 'error'
    },

    ['iban_only_numbers'] = {
      title = '银行业务',
      text = '您的 IBAN 只能使用数字',
      time = 5000,
      type = 'error'
    },

    ['iban_changed'] = {
      title = '银行业务',
      text = 'IBAN 成功更改为 ${s1}',
      time = 5000,
      type = 'success'
    },

    ['iban_no_money'] = {
      title = '银行业务',
      text = '您需要拥有 ${s1}€ 才能更改您的 IBAN',
      time = 5000,
      type = 'error'
    },


    -- 存款 / 提款 / 转账 / 收款

    ['deposited'] = {
      title = '银行业务',
      text = '您已存入 ${s1}€',
      time = 5000,
      type = 'success'
    },

    ['withdrawn'] = {
      title = '银行业务',
      text = '您已取出 ${s1}€',
      time = 5000,
      type = 'success'
    },

    ['received_from'] = {
      title = '银行业务',
      text = '您已从 ${s2} 收到 ${s1}€',
      time = 5000,
      type = 'success'
    },

    ['transferred_to'] = {
      title = '银行业务',
      text = '您已向 ${s2} 转账 ${s1}€',
      time = 5000,
      type = 'success'
    },

    ['deposited_to'] = {
      title = '银行业务',
      text = '您已存入 ${s1}€ 到 ${s2}',
      time = 5000,
      type = 'success'
    },

    ['someone_withdrawing'] = {
      title = '银行业务',
      text = '有人正在取款',
      time = 5000,
      type = 'error'
    },

    ['you_have_withdrawn'] = {
      title = '银行业务',
      text = '您已从 ${s2} 取出 ${s1}€',
      time = 5000,
      type = 'success'
    },


    -- 常规信息

    ['no_creditcard'] = {
      title = '银行业务',
      text = '没有信用卡无法访问 ATM',
      time = 5000,
      type = 'error'
    },

    ['invalid_amount'] = {
      title = '银行业务',
      text = '无效的金额',
      time = 5000,
      type = 'error'
    },

    ['invalid_input'] = {
      title = '银行业务',
      text = '无效的输入',
      time = 5000,
      type = 'error'
    },

    ['no_money_pocket'] = {
      title = '银行业务',
      text = '您身上没有那么多钱',
      time = 5000,
      type = 'error'
    },

    ['no_money_bank'] = {
      title = '银行业务',
      text = '您在银行没有那么多钱',
      time = 5000,
      type = 'error'
    },

    ['not_send_yourself'] = {
      title = '银行业务',
      text = '您不能把钱转给自己',
      time = 5000,
      type = 'error'
    },

    ['society_no_money'] = {
      title = '银行业务',
      text = '您的社团在银行没有那么多钱',
      time = 5000,
      type = 'error'
    },

    ['not_use_bank'] = {
      title = '银行业务',
      text = '您目前无法使用银行',
      time = 5000,
      type = 'error'
    },

    ['bought_cc'] = {
      title = '银行业务',
      text = '您以 ${s1}€ 购买了一张信用卡',
      time = 5000,
      type = 'success'
    },


    -- 界面信息

    ['open_banking'] = {
      text = ' 访问银行',
      color = 'darkblue',
      side = 'left'
    },

    ['open_atm'] = {
      text = ' 访问ATM',
      color = 'darkblue',
      side = 'left'
    },


    -- 目标信息

    ['open_banking_target'] = {
      text = '访问银行',
    },

    ['open_atm_target'] = {
      text = '访问ATM',
    },
页: [1]
查看完整版本: 翻译成中文,保留源代码