diff options
author | 2022-04-01 01:05:07 +0000 | |
---|---|---|
committer | 2022-04-01 01:25:24 +0000 | |
commit | 618694df599da5a2027a6f7bcd9b0bf58ead309d (patch) | |
tree | 439a90439947cdf189491285353c20b2091f6a83 /configs | |
parent | e5e5fde6d4c50bcecc61c67b2fd0f97d927f623d (diff) | |
download | my_apps-618694df599da5a2027a6f7bcd9b0bf58ead309d.tar.gz my_apps-618694df599da5a2027a6f7bcd9b0bf58ead309d.tar.bz2 my_apps-618694df599da5a2027a6f7bcd9b0bf58ead309d.zip |
Added Calculator app
Diffstat (limited to 'configs')
-rw-r--r-- | configs/appList.js | 3 | ||||
-rw-r--r-- | configs/translations.js | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/configs/appList.js b/configs/appList.js index b5f1eac..83535a3 100644 --- a/configs/appList.js +++ b/configs/appList.js @@ -1,6 +1,7 @@ -import { Notes, Player, Settings, Youtube } from 'apps' +import { Calculator, Notes, Player, Settings, Youtube } from 'apps' const appList = { + Calculator: { component: Calculator, icon: true, buttons: ['min', 'close'], height: '40em', width: '30em' }, Notes: { component: Notes, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, Player: { component: Player, icon: true, buttons: ['min', 'max', 'close'], height: '48em', width: '64em' }, Settings: { component: Settings, icon: false, buttons: ['min'], height: '23em', width: '16em' }, diff --git a/configs/translations.js b/configs/translations.js index 11a5988..79fcf7d 100644 --- a/configs/translations.js +++ b/configs/translations.js @@ -33,6 +33,7 @@ const translations = { created: 'Created', modified: 'Modified', open_apps: 'Open apps:', + Calculator: 'Calculator', Notes: 'Notes', Player: 'Player', Settings: 'Settings', @@ -120,6 +121,7 @@ const translations = { created: 'Utworzono', modified: 'Zmodyfikowano', open_apps: 'Otwarte aplikacje:', + Calculator: 'Kalkulator', Notes: 'Notatki', Player: 'Odtwarzacz', Settings: 'Ustawienia', @@ -207,6 +209,7 @@ const translations = { created: 'Creado', modified: 'Modificado', open_apps: 'Aplicaciones abiertas:', + Calculator: '????????????????????????????????????????????????????/', Notes: 'Notas', Player: 'Jugador', Settings: 'Ajustes', @@ -294,6 +297,7 @@ const translations = { created: 'Erstellt', modified: 'Geändert', open_apps: 'Anwendungen öffnen:', + Calculator: '????????????????????????????????????????????????????/', Notes: 'Anmerkungen', Player: 'Spieler', Settings: 'Einstellungen', |