Skip to content

Commit

Permalink
chore: fix locales (massCodeIO#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonreshetov authored Sep 30, 2023
1 parent 486e432 commit 305b01f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/electron-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
directories: {
output: path.resolve(__dirname, '../../dist')
},
afterSign: !isTestBuild ? 'build/scripts/notarize.js' : undefined,
// afterSign: !isTestBuild ? 'build/scripts/notarize.js' : undefined,
nsis: {
oneClick: false,
perMachine: false,
Expand Down
6 changes: 5 additions & 1 deletion src/main/services/i18n/locales/en/devtools.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"amount": "Amount",
"type": "Type",
"length": "Length",
"options": "Options"
"options": "Options",
"numbers": "Numbers",
"symbols": "Symbols",
"lowercase": "Lowercase",
"uppercase": "Uppercase"
},
"textTools": {
"label": "Text Tools",
Expand Down
6 changes: 5 additions & 1 deletion src/main/services/i18n/locales/ru/devtools.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"amount": "Количество",
"type": "Тип",
"length": "Длина",
"options": "Опции"
"options": "Опции",
"numbers": "Цифры",
"symbols": "Символы",
"lowercase": "Нижний регистр",
"uppercase": "Верхний регистр"
},
"textTools": {
"label": "Инструменты для текста",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/devtools/crypto/PassTool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<AppFormItem :label="i18n.t('devtools:form.options')">
<AppCheckbox
v-model="options.numbers"
:label="i18n.t('devtools:form.includeNumbers')"
:label="i18n.t('devtools:form.numbers')"
name="numbers"
/>
<AppCheckbox
Expand Down

0 comments on commit 305b01f

Please sign in to comment.