Skip to content
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.

Commit

Permalink
finita traduzione in inglese
Browse files Browse the repository at this point in the history
  • Loading branch information
el3um4s committed Apr 5, 2018
1 parent 1c30c52 commit f52f7a3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-calc",
"version": "0.18.04.05",
"version": "0.18.04.06",
"author": "el3um4s <[email protected]>",
"description": "An electron-vue project",
"license": "MIT",
Expand Down Expand Up @@ -55,7 +55,7 @@
"icon": "build/icons/icon.ico"
},
"linux": {
"icon": "build/icons"
"icon": "build/icons/512x512.png"
}
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Impostazioni = require('electron-store')
const impostazioni = new Impostazioni({
defaults: {
windowBounds: { width: 340, height: 550 },
settings: { temaDark: 'Dark', formatNumber: 'it-IT', decimalPlaces: 5, linguaApp: 'Italiano' }
settings: { temaDark: true, formatNumber: 'it-IT', decimalPlaces: 5, linguaApp: 'Italiano' }
}
})

Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/InfosView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<br />
<span class="subheading">A Simple VueJS's Calculator</span>
<br /><br />
<span class="body-1">version <strong>{{ versionNumber }}</strong></span>
<span class="body-1">Version <strong>{{ versionNumber }}</strong></span>
<br />
<span class="body-1">license <strong>MIT</strong> &copy; 2017-{{ new Date().getFullYear() }} - Samuele de Tomasi</span>
<span class="body-1">License <strong>MIT</strong> &copy; 2017-{{ new Date().getFullYear() }} - Samuele de Tomasi</span>
</v-card-text>
</v-card>
<v-card>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/local/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default new Inter({
informazioni: 'Info'
},
impostazioni: {
formato: 'Formato',
formato: 'Format',
posizioniDecimali: 'Decimal Places',
tema: 'Theme',
lingua: 'Language'
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/store/modules/impostazioni.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const state = {
dark: false,
version: '0.18.04.05',
version: '0.18.04.06',
linguaApp: 'Italiano'
}

Expand Down

0 comments on commit f52f7a3

Please sign in to comment.