Merge branch 'packages'
37
configure.in
@ -21,19 +21,33 @@ AC_ARG_WITH(sdl-gfx-prefix,
|
|||||||
|
|
||||||
AC_CHECK_LIB(SDL_gfx, rotozoomSurfaceXY,,check_sdl_gfx="no")
|
AC_CHECK_LIB(SDL_gfx, rotozoomSurfaceXY,,check_sdl_gfx="no")
|
||||||
|
|
||||||
|
AC_CHECK_LIB(SDL_ttf, TTF_OpenFont)
|
||||||
|
|
||||||
# Check for libpng
|
# Check for libpng
|
||||||
AC_CHECK_LIB(png, png_read_image,,check_png="no")
|
AC_CHECK_LIB(png, png_read_image,,check_png="no")
|
||||||
|
|
||||||
|
# Check for libopk
|
||||||
|
AC_CHECK_LIB(opk, opk_open,,INOTIFY=no)
|
||||||
|
|
||||||
|
# Check for libxdgmime
|
||||||
|
AC_CHECK_LIB(xdgmime, xdg_mime_get_extensions_from_mime_type)
|
||||||
|
|
||||||
AC_ARG_ENABLE(platform,
|
AC_ARG_ENABLE(platform,
|
||||||
[ --enable-platform=X specify the targeted platform],
|
[ --enable-platform=X specify the targeted platform],
|
||||||
[GMENU2X_PLATFORM="$enableval"], [GMENU2X_PLATFORM="default"])
|
[GMENU2X_PLATFORM="$enableval"], [GMENU2X_PLATFORM="default"])
|
||||||
|
|
||||||
case "$GMENU2X_PLATFORM" in
|
case "$GMENU2X_PLATFORM" in
|
||||||
dingux)
|
a320)
|
||||||
AC_DEFINE(PLATFORM_DINGUX)
|
AC_DEFINE(PLATFORM_A320)
|
||||||
PLATFORM="dingux"
|
PLATFORM="a320"
|
||||||
SCREEN_RES="320x240"
|
SCREEN_RES="320x240"
|
||||||
;;
|
;;
|
||||||
|
gcw0)
|
||||||
|
AC_DEFINE(PLATFORM_GCW0)
|
||||||
|
PLATFORM="gcw0"
|
||||||
|
SCREEN_RES="320x240"
|
||||||
|
CPUFREQ=no
|
||||||
|
;;
|
||||||
nanonote)
|
nanonote)
|
||||||
AC_DEFINE(PLATFORM_NANONOTE)
|
AC_DEFINE(PLATFORM_NANONOTE)
|
||||||
PLATFORM="nanonote"
|
PLATFORM="nanonote"
|
||||||
@ -60,8 +74,25 @@ case "$GMENU2X_PLATFORM" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(cpufreq,
|
||||||
|
[ --disable-cpufreq disable support for CPU frequency scaling],
|
||||||
|
[CPUFREQ=no],,)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(inotify,
|
||||||
|
[ --disable-inotify disable file monitoring],
|
||||||
|
[INOTIFY=no],,)
|
||||||
|
|
||||||
AC_SUBST(PLATFORM)
|
AC_SUBST(PLATFORM)
|
||||||
AC_SUBST(SCREEN_RES)
|
AC_SUBST(SCREEN_RES)
|
||||||
|
AC_DEFINE_UNQUOTED(PLATFORM, "${PLATFORM}")
|
||||||
|
|
||||||
|
if test "x$CPUFREQ" != xno ; then
|
||||||
|
AC_DEFINE(ENABLE_CPUFREQ)
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x$INOTIFY" != xno ; then
|
||||||
|
AC_DEFINE(ENABLE_INOTIFY)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
AC_OUTPUT(Makefile src/Makefile data/Makefile)
|
AC_OUTPUT(Makefile src/Makefile data/Makefile)
|
||||||
|
2
data/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/Makefile
|
||||||
|
/Makefile.in
|
@ -2,3 +2,4 @@ title=Power Off
|
|||||||
description=Shut down the system
|
description=Shut down the system
|
||||||
icon=skin:icons/poweroff.png
|
icon=skin:icons/poweroff.png
|
||||||
exec=/sbin/poweroff
|
exec=/sbin/poweroff
|
||||||
|
editable=false
|
@ -2,3 +2,4 @@ title=Reboot
|
|||||||
description=Reboot the dingoo
|
description=Reboot the dingoo
|
||||||
icon=skin:icons/reboot.png
|
icon=skin:icons/reboot.png
|
||||||
exec=/sbin/reboot
|
exec=/sbin/reboot
|
||||||
|
editable=false
|
@ -3,3 +3,4 @@ description=Suspend the dingoo
|
|||||||
icon=skin:icons/suspend.png
|
icon=skin:icons/suspend.png
|
||||||
exec=/usr/sbin/suspend
|
exec=/usr/sbin/suspend
|
||||||
dontleave=true
|
dontleave=true
|
||||||
|
editable=false
|
@ -3,3 +3,4 @@ description=Configure sound settings
|
|||||||
icon=skin:icons/alsamixer.png
|
icon=skin:icons/alsamixer.png
|
||||||
exec=/usr/bin/alsamixer
|
exec=/usr/bin/alsamixer
|
||||||
consoleapp=true
|
consoleapp=true
|
||||||
|
editable=false
|
@ -4,3 +4,4 @@ icon=skin:icons/about.png
|
|||||||
exec=/usr/bin/dialog
|
exec=/usr/bin/dialog
|
||||||
params=--ok-label "Press START to exit" --no-shadow --msgbox "`/usr/bin/system_info`" 240 320
|
params=--ok-label "Press START to exit" --no-shadow --msgbox "`/usr/bin/system_info`" 240 320
|
||||||
consoleapp=true
|
consoleapp=true
|
||||||
|
editable=false
|
@ -3,3 +3,4 @@ description=Enable/Disable TV output
|
|||||||
icon=skin:icons/tv.png
|
icon=skin:icons/tv.png
|
||||||
exec=/usr/sbin/tvout_config
|
exec=/usr/sbin/tvout_config
|
||||||
consoleapp=true
|
consoleapp=true
|
||||||
|
editable=false
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
19
data/platform/gcw0/about.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
GMenu2X has been created by Massimiliano "Ryo" Torromeo, and is released under the GPL-v2 license.
|
||||||
|
|
||||||
|
This version is maintained by the Qi-Hardware and OpenDingux crew. The credits, as well as the latest source code can be found here:
|
||||||
|
http://projects.qi-hardware.com/index.php/p/gmenu2x
|
||||||
|
|
||||||
|
Credits for the translations:
|
||||||
|
-----
|
||||||
|
English & Italian by Massimiliano Torromeo
|
||||||
|
French by Yodaz
|
||||||
|
Danish by claus
|
||||||
|
Dutch by superfly
|
||||||
|
Spanish by pedator
|
||||||
|
Portuguese (Portugal) by NightShadow
|
||||||
|
Slovak by Jozef
|
||||||
|
Swedish by Esslan and Micket
|
||||||
|
German by fusion_power, johnnysnet and Waldteufel
|
||||||
|
Finnish by Jontte and Atte
|
||||||
|
Norwegian by cowai
|
||||||
|
Russian by XaMMaX90
|
4
data/platform/gcw0/gmenu2x.conf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
videoBpp=32
|
||||||
|
menuClock=192
|
||||||
|
maxClock=1020
|
||||||
|
backlightTimeout=60
|
10
data/platform/gcw0/input.conf
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
accept=keyboard,306
|
||||||
|
cancel=keyboard,308
|
||||||
|
altleft=keyboard,9
|
||||||
|
altright=keyboard,8
|
||||||
|
menu=keyboard,27
|
||||||
|
settings=keyboard,13
|
||||||
|
up=keyboard,273
|
||||||
|
down=keyboard,274
|
||||||
|
left=keyboard,276
|
||||||
|
right=keyboard,275
|
6
data/platform/gcw0/sections/applications/30_terminal
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
title=Terminal
|
||||||
|
description=Disable graphic mode
|
||||||
|
icon=skin:icons/utilities-terminal.png
|
||||||
|
exec=/bin/busybox
|
||||||
|
params=sh -c 'clear; echo "The graphic mode is now disabled."; echo ""; echo "This is only useful for developers who want to test their graphical apps from telnet."; echo ""; echo "(Press START to exit to the launcher)"; read'
|
||||||
|
consoleapp=true
|
5
data/platform/gcw0/sections/settings/10_poweroff
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title=Power Off
|
||||||
|
description=Shut down the system
|
||||||
|
icon=skin:icons/poweroff.png
|
||||||
|
exec=/sbin/poweroff
|
||||||
|
editable=false
|
5
data/platform/gcw0/sections/settings/20_reboot
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title=Reboot
|
||||||
|
description=Reboot the system
|
||||||
|
icon=skin:icons/reboot.png
|
||||||
|
exec=/sbin/reboot
|
||||||
|
editable=false
|
6
data/platform/gcw0/sections/settings/40_alsamixer
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
title=Sound Mixer
|
||||||
|
description=Configure sound settings
|
||||||
|
icon=skin:icons/alsamixer.png
|
||||||
|
exec=/usr/bin/alsamixer
|
||||||
|
consoleapp=true
|
||||||
|
editable=false
|
7
data/platform/gcw0/sections/settings/50_system_info
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
title=System Info
|
||||||
|
description=Info about the system
|
||||||
|
icon=skin:icons/about.png
|
||||||
|
exec=/usr/bin/dialog
|
||||||
|
params=--ok-label "Press START to exit" --no-shadow --msgbox "`/usr/bin/system_info`" 240 320
|
||||||
|
consoleapp=true
|
||||||
|
editable=false
|
BIN
data/platform/gcw0/skins/Default/imgs/buttons/accept.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
data/platform/gcw0/skins/Default/imgs/buttons/cancel.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_BLUE.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_GREEN.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_GREY.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_LIGHTBLUE.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_ORANGE.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_A_RED.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_CONSOLE_DARK.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 30 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_GCW_DARK.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_GCW_LIGHT.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
data/platform/gcw0/skins/Default/wallpapers/320_GCW_WAVE2.png
Normal file
After Width: | Height: | Size: 44 KiB |
7
data/platform/gcw0/skins/Default/wallpapers/COPYING
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
320_* images:
|
||||||
|
Copyright 2013 Ivan Díaz Bardeci <hi-ban@hotmail.com>
|
||||||
|
Licensed under Attribution-ShareAlike CC BY-SA.
|
||||||
|
|
||||||
|
blue-zero.png:
|
||||||
|
Copyright 2013 Maarten ter Huurne <maarten@treewalker.org>
|
||||||
|
Licensed under Attribution-ShareAlike CC BY-SA.
|
BIN
data/platform/gcw0/skins/Default/wallpapers/blue-zero.png
Normal file
After Width: | Height: | Size: 46 KiB |
1
data/platform/gcw0/skins/Default/wallpapers/default.png
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
320_GCW_DARK.png
|
11
data/platform/gcw0/skins/OD/skin.conf
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
wallpaper="blue-zero.png"
|
||||||
|
linkHeight=50
|
||||||
|
topBarHeight=50
|
||||||
|
bottomBarHeight=21
|
||||||
|
linkWidth=80
|
||||||
|
topBarBg=#ffffff00
|
||||||
|
bottomBarBg=#ffffff00
|
||||||
|
selectionBg=#9b9bff80
|
||||||
|
messageBoxBg=#000014bc
|
||||||
|
messageBoxBorder=#9b9bff80
|
||||||
|
messageBoxSelection=#9b9bff80
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 398 B |
BIN
data/skins/320x240/Default/imgs/section-l.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
data/skins/320x240/Default/imgs/section-r.png
Normal file
After Width: | Height: | Size: 281 B |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 2.9 KiB |
@ -5,5 +5,6 @@ messageBoxBg=#00000080
|
|||||||
messageBoxSelection=#fffffff80
|
messageBoxSelection=#fffffff80
|
||||||
bottomBarBg=#ffffff80
|
bottomBarBg=#ffffff80
|
||||||
topBarHeight=50
|
topBarHeight=50
|
||||||
|
bottomBarHeight=21
|
||||||
linkHeight=50
|
linkHeight=50
|
||||||
linkWidth=80
|
linkWidth=80
|
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 281 B |
Before Width: | Height: | Size: 398 B |
Before Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 281 B |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 462 B |
@ -5,5 +5,6 @@ messageBoxBg=#00000080
|
|||||||
messageBoxSelection=#fffffff80
|
messageBoxSelection=#fffffff80
|
||||||
bottomBarBg=#ffffff80
|
bottomBarBg=#ffffff80
|
||||||
topBarHeight=50
|
topBarHeight=50
|
||||||
|
bottomBarHeight=21
|
||||||
linkHeight=50
|
linkHeight=50
|
||||||
linkWidth=80
|
linkWidth=80
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=eu
|
||||||
Settings=Aukerak
|
Settings=Aukerak
|
||||||
Configure GMenu2X's options=GMenu2X aukerak konfiguratu
|
Configure GMenu2X's options=GMenu2X aukerak konfiguratu
|
||||||
Activate Usb on SD=Sd-aren usb-a aktibatu
|
Activate Usb on SD=Sd-aren usb-a aktibatu
|
||||||
@ -50,11 +51,11 @@ Number of columns=Zutabe zenbakia
|
|||||||
Set the number of columns of links to display on a page=Orri bakoitzeko erakutsiko diren zutabeak
|
Set the number of columns of links to display on a page=Orri bakoitzeko erakutsiko diren zutabeak
|
||||||
Number of rows=Ilara zenbakia
|
Number of rows=Ilara zenbakia
|
||||||
Set the number of rows of links to display on a page=Orri bakoitzeko erakutsiko diren ilarak
|
Set the number of rows of links to display on a page=Orri bakoitzeko erakutsiko diren ilarak
|
||||||
Top Bar Color=Goiko barraren kolorea
|
Top Bar=Goiko barraren
|
||||||
Color of the top bar=Goian dagoen barraren kolorea
|
Color of the top bar=Goian dagoen barraren kolorea
|
||||||
Bottom Bar Color=Beheko barraren kolorea
|
Bottom Bar=Beheko barraren
|
||||||
Color of the bottom bar=Behean dagoen barraren kolorea
|
Color of the bottom bar=Behean dagoen barraren kolorea
|
||||||
Selection Color=aukeratutakoaren kolorea
|
Selection=Aukeratutakoaren
|
||||||
Color of the selection and other interface details=Aukeratutako testuaren kolorea eta interfacearen beste aukera batzuk
|
Color of the selection and other interface details=Aukeratutako testuaren kolorea eta interfacearen beste aukera batzuk
|
||||||
You should disable Usb Networking to do this.=Usb sarea desaktibatu beharko zenuke.
|
You should disable Usb Networking to do this.=Usb sarea desaktibatu beharko zenuke.
|
||||||
Operation not permitted.=Baimendu gabeko operazioa.
|
Operation not permitted.=Baimendu gabeko operazioa.
|
||||||
|
@ -1,137 +1,138 @@
|
|||||||
Settings=Preferències
|
Lng=ca
|
||||||
Configure GMenu2X's options=Configura les opcions del GMenu2X
|
Settings=Preferències
|
||||||
Activate Usb on SD=Activa USB per la SD
|
Configure GMenu2X's options=Configura les opcions del GMenu2X
|
||||||
Activate Usb on Nand=Activa USB per la Nand
|
Activate Usb on SD=Activa USB per la SD
|
||||||
Info about GMenu2X=Informació del GMenu2X
|
Activate Usb on Nand=Activa USB per la Nand
|
||||||
About=Informació
|
Info about GMenu2X=Informació del GMenu2X
|
||||||
Add section=Afegir secció
|
About=Informació
|
||||||
Rename section=Re anomenar secció
|
Add section=Afegir secció
|
||||||
Delete section=Eliminar secció
|
Rename section=Re anomenar secció
|
||||||
Scan for applications and games=Buscar aplicacions i jocs
|
Delete section=Eliminar secció
|
||||||
applications=Aplicacions
|
Scan for applications and games=Buscar aplicacions i jocs
|
||||||
Edit link=Editar enllaç
|
applications=Aplicacions
|
||||||
Title=Títol
|
Edit link=Editar enllaç
|
||||||
Link title=Títol de l'enllaç
|
Title=Títol
|
||||||
Description=Descripció
|
Link title=Títol de l'enllaç
|
||||||
Link description=Descripció de l'enllaç
|
Description=Descripció
|
||||||
Section=Secció
|
Link description=Descripció de l'enllaç
|
||||||
The section this link belongs to=Secció a la que pertany l'enllaç
|
Section=Secció
|
||||||
Icon=Icona
|
The section this link belongs to=Secció a la que pertany l'enllaç
|
||||||
Select an icon for the link: $1=Selecciona una icona per l'enllaç: $1
|
Icon=Icona
|
||||||
Manual=Manual
|
Select an icon for the link: $1=Selecciona una icona per l'enllaç: $1
|
||||||
Select a graphic/textual manual or a readme=Selecciona un manual gràfic/text o un "readme"
|
Manual=Manual
|
||||||
Cpu clock frequency to set when launching this link=Ajust del rellotge de la cpu per aquest enllaç
|
Select a graphic/textual manual or a readme=Selecciona un manual gràfic/text o un "readme"
|
||||||
Volume to set for this link=Ajust del volum de l'enllaç
|
Cpu clock frequency to set when launching this link=Ajust del rellotge de la cpu per aquest enllaç
|
||||||
Parameters=Paràmetres
|
Volume to set for this link=Ajust del volum de l'enllaç
|
||||||
Parameters to pass to the application=Paràmetres que s'envien a l'aplicació
|
Parameters=Paràmetres
|
||||||
Selector Directory=Directori del Selector
|
Parameters to pass to the application=Paràmetres que s'envien a l'aplicació
|
||||||
Directory to scan for the selector=Directori a explorar amb el selector
|
Selector Directory=Directori del Selector
|
||||||
Selector Browser=Explorador del selector
|
Directory to scan for the selector=Directori a explorar amb el selector
|
||||||
Allow the selector to change directory=Permetre al selector canviar de directori
|
Selector Browser=Explorador del selector
|
||||||
Selector Filter=Filtre del selector
|
Allow the selector to change directory=Permetre al selector canviar de directori
|
||||||
Filter for the selector (Separate values with a comma)=Filtre per el selector (Separar valors amb comes)
|
Selector Filter=Filtre del selector
|
||||||
Selector Screenshots=Captures de pantalla del selector
|
Filter for the selector (Separate values with a comma)=Filtre per el selector (Separar valors amb comes)
|
||||||
Directory of the screenshots for the selector=Directori de captures de pantalla per el selector
|
Selector Screenshots=Captures de pantalla del selector
|
||||||
Selector Aliases=Alias del selector
|
Directory of the screenshots for the selector=Directori de captures de pantalla per el selector
|
||||||
File containing a list of aliases for the selector=Fitxer que conté la llista d'alias per el selector
|
Selector Aliases=Alias del selector
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=Força recarregar el GMenu2X a l'acabar l'execució de l'enllaç
|
File containing a list of aliases for the selector=Fitxer que conté la llista d'alias per el selector
|
||||||
Don't Leave=No sortir
|
Explicitly relaunch GMenu2X after this link's execution ends=Força recarregar el GMenu2X a l'acabar l'execució de l'enllaç
|
||||||
Don't quit GMenu2X when launching this link=No tancar GMenu2X al carregar aquest enllaç
|
Don't Leave=No sortir
|
||||||
Save last selection=Recordar l'última selecció
|
Don't quit GMenu2X when launching this link=No tancar GMenu2X al carregar aquest enllaç
|
||||||
Save the last selected link and section on exit=Recordar l'última secció i enllaç seleccionat al sortir
|
Save last selection=Recordar l'última selecció
|
||||||
Clock for GMenu2X=Rellotge per al GMenu2X
|
Save the last selected link and section on exit=Recordar l'última secció i enllaç seleccionat al sortir
|
||||||
Set the cpu working frequency when running GMenu2X=Ajustar la freqüència de treball de la cpu a l'executar GMenu2X
|
Clock for GMenu2X=Rellotge per al GMenu2X
|
||||||
Maximum overclock=Overclock màxim
|
Set the cpu working frequency when running GMenu2X=Ajustar la freqüència de treball de la cpu a l'executar GMenu2X
|
||||||
Set the maximum overclock for launching links=Ajustar al màxim overclock per a carregar enllaços
|
Maximum overclock=Overclock màxim
|
||||||
Global Volume=Volum global
|
Set the maximum overclock for launching links=Ajustar al màxim overclock per a carregar enllaços
|
||||||
Set the default volume for the gp2x soundcard=Ajusta el volum per defecte del so a la gp2x
|
Global Volume=Volum global
|
||||||
Output logs=Fitxers de Log
|
Set the default volume for the gp2x soundcard=Ajusta el volum per defecte del so a la gp2x
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Enregistra els Logs dels enllaços. Usa el lector de registres per llegir-los.
|
Output logs=Fitxers de Log
|
||||||
Number of columns=Número de columnes
|
Logs the output of the links. Use the Log Viewer to read them.=Enregistra els Logs dels enllaços. Usa el lector de registres per llegir-los.
|
||||||
Set the number of columns of links to display on a page=Ajusta el número de columnes d'enllaços a mostrar per pàgina
|
Number of columns=Número de columnes
|
||||||
Number of rows=Número de línies
|
Set the number of columns of links to display on a page=Ajusta el número de columnes d'enllaços a mostrar per pàgina
|
||||||
Set the number of rows of links to display on a page=Ajusta el número de línies d'enllaços a mostrar per pàgina
|
Number of rows=Número de línies
|
||||||
Top Bar Color=Color de barra superior
|
Set the number of rows of links to display on a page=Ajusta el número de línies d'enllaços a mostrar per pàgina
|
||||||
Color of the top bar=Color de la barra superior
|
Top Bar=Barra superior
|
||||||
Bottom Bar Color=Color de barra inferior
|
Color of the top bar=Color de la barra superior
|
||||||
Color of the bottom bar=Color de la barra inferior
|
Bottom Bar=Barra inferior
|
||||||
Selection Color=Color selecció
|
Color of the bottom bar=Color de la barra inferior
|
||||||
Color of the selection and other interface details=Color de la selecció i altres detalls de la interfície
|
Selection=Selecció
|
||||||
You should disable Usb Networking to do this.=Ha de desactivar la Xarxa per USB per fer això.
|
Color of the selection and other interface details=Color de la selecció i altres detalls de la interfície
|
||||||
Operation not permitted.=Operació no permesa.
|
You should disable Usb Networking to do this.=Ha de desactivar la Xarxa per USB per fer això.
|
||||||
Language=Idioma
|
Operation not permitted.=Operació no permesa.
|
||||||
Set the language used by GMenu2X=Ajusta l'idioma utilitzat al GMenu2X
|
Language=Idioma
|
||||||
Increase=Augmentar
|
Set the language used by GMenu2X=Ajusta l'idioma utilitzat al GMenu2X
|
||||||
Decrease=Reduïr
|
Increase=Augmentar
|
||||||
Change color component=Canviar component cromàtic
|
Decrease=Reduïr
|
||||||
Increase value=Incrementar valor
|
Change color component=Canviar component cromàtic
|
||||||
Decrease value=Reduir valor
|
Increase value=Incrementar valor
|
||||||
Switch=Canviar
|
Decrease value=Reduir valor
|
||||||
Change value=Canviar valor
|
Switch=Canviar
|
||||||
Edit=Modificar
|
Change value=Canviar valor
|
||||||
Clear=Netejar
|
Edit=Modificar
|
||||||
Select a directory=Selecciona un directori
|
Clear=Netejar
|
||||||
Select a file=Selecciona un fitxer
|
Select a directory=Selecciona un directori
|
||||||
Clock (default: 200)=Freqüència (predeterminada: 200)
|
Select a file=Selecciona un fitxer
|
||||||
Volume (default: -1)=Volum (predeterminat: -1)
|
Clock (default: 200)=Freqüència (predeterminada: 200)
|
||||||
Enter folder=Entrar a la carpeta
|
Volume (default: -1)=Volum (predeterminat: -1)
|
||||||
Wrapper=Retornar
|
Enter folder=Entrar a la carpeta
|
||||||
Confirm=Confirmar
|
Wrapper=Retornar
|
||||||
Enter folder/Confirm=Entrar a la carpeta/Confirmar
|
Confirm=Confirmar
|
||||||
Up one folder=Pujar una carpeta
|
Enter folder/Confirm=Entrar a la carpeta/Confirmar
|
||||||
Select an application=Selecciona un programa
|
Up one folder=Pujar una carpeta
|
||||||
Space=Espai
|
Select an application=Selecciona un programa
|
||||||
Shift=Majúscules
|
Space=Espai
|
||||||
Cancel=Cancel·lar
|
Shift=Majúscules
|
||||||
OK=Acceptar
|
Cancel=Cancel·lar
|
||||||
Backspace=Retrocés
|
OK=Acceptar
|
||||||
Skin=Tema
|
Backspace=Retrocés
|
||||||
Set the skin used by GMenu2X=Selecciona el tema a utilitzar al GMenu2X
|
Skin=Tema
|
||||||
Add link in $1=Afegir enllaç a $1
|
Set the skin used by GMenu2X=Selecciona el tema a utilitzar al GMenu2X
|
||||||
Edit $1=Modificar $1
|
Add link in $1=Afegir enllaç a $1
|
||||||
Delete $1 link=Eliminar l'enllaç de $1
|
Edit $1=Modificar $1
|
||||||
Deleting $1=Eliminant $1
|
Delete $1 link=Eliminar l'enllaç de $1
|
||||||
Are you sure?=Estàs segur?
|
Deleting $1=Eliminant $1
|
||||||
Insert a name for the new section=Introduir nom per a la nova secció
|
Are you sure?=Estàs segur?
|
||||||
Insert a new name for this section=Introduir nou nom per a la secció
|
Insert a name for the new section=Introduir nom per a la nova secció
|
||||||
Yes=Si
|
Insert a new name for this section=Introduir nou nom per a la secció
|
||||||
No=No
|
Yes=Si
|
||||||
You will lose all the links in this section.=Es perdran tots els enllaços d'aquesta secció.
|
No=No
|
||||||
Exit=Sortir
|
You will lose all the links in this section.=Es perdran tots els enllaços d'aquesta secció.
|
||||||
Link Scanner=Buscador d'enllaços
|
Exit=Sortir
|
||||||
Scanning SD filesystem...=Explorant el sistema de fitxers de la SD...
|
Link Scanner=Buscador d'enllaços
|
||||||
Scanning NAND filesystem...=Explorant el sistema de fitxers de la NAND...
|
Scanning SD filesystem...=Explorant el sistema de fitxers de la SD...
|
||||||
$1 files found.=$1 Fitxer(s) trobat(s).
|
Scanning NAND filesystem...=Explorant el sistema de fitxers de la NAND...
|
||||||
Creating links...=Creant enllaços...
|
$1 files found.=$1 Fitxer(s) trobat(s).
|
||||||
$1 links created.=$1 enllaç(os) creat(s).
|
Creating links...=Creant enllaços...
|
||||||
Version $1 (Build date: $2)=Versió $1 (Compilació: $2)
|
$1 links created.=$1 enllaç(os) creat(s).
|
||||||
Log Viewer=Visor de Logs
|
Version $1 (Build date: $2)=Versió $1 (Compilació: $2)
|
||||||
Displays last launched program's output=Mostra la sortida de l'últim programa executat
|
Log Viewer=Visor de Logs
|
||||||
Do you want to delete the log file?=¿Desitja eliminar el fitxer de registre de successos?
|
Displays last launched program's output=Mostra la sortida de l'últim programa executat
|
||||||
USB Enabled (SD)=USB Activat (SD)
|
Do you want to delete the log file?=¿Desitja eliminar el fitxer de registre de successos?
|
||||||
USB Enabled (Nand)=USB Activat (Nand)
|
USB Enabled (SD)=USB Activat (SD)
|
||||||
Turn off=Desactivar
|
USB Enabled (Nand)=USB Activat (Nand)
|
||||||
Launching $1=Executant $1
|
Turn off=Desactivar
|
||||||
Change page=Canviar pàgina
|
Launching $1=Executant $1
|
||||||
Page=Pàgina
|
Change page=Canviar pàgina
|
||||||
Scroll=Desplaçament
|
Page=Pàgina
|
||||||
Untitled=Sense títol
|
Scroll=Desplaçament
|
||||||
Change GMenu2X wallpaper=Canvia el fons del GMenu2X
|
Untitled=Sense títol
|
||||||
Activate/deactivate tv-out=Activa/desactiva la sortida de TV
|
Change GMenu2X wallpaper=Canvia el fons del GMenu2X
|
||||||
Select wallpaper=Selecciona la imatge de fons
|
Activate/deactivate tv-out=Activa/desactiva la sortida de TV
|
||||||
Gamma=Gamma
|
Select wallpaper=Selecciona la imatge de fons
|
||||||
Set gp2x gamma value (default: 10)=Ajustar el valor gama de la gp2x (predeterminat: 10)
|
Gamma=Gamma
|
||||||
Tv-Out encoding=Codificació de sortida de TV
|
Set gp2x gamma value (default: 10)=Ajustar el valor gama de la gp2x (predeterminat: 10)
|
||||||
Encoding of the tv-out signal=Codificació de la senyal de sortida de TV
|
Tv-Out encoding=Codificació de sortida de TV
|
||||||
Tweak RAM Timings=Modifica la sincronització de RAM
|
Encoding of the tv-out signal=Codificació de la senyal de sortida de TV
|
||||||
This usually speeds up the application at the cost of stability=Normalment accelera l'aplicació a costa de l'estabilitat
|
Tweak RAM Timings=Modifica la sincronització de RAM
|
||||||
Gamma (default: 0)=Gamma (predeterminat: 0)
|
This usually speeds up the application at the cost of stability=Normalment accelera l'aplicació a costa de l'estabilitat
|
||||||
Gamma value to set when launching this link=Valor de gamma que utilitzarà a l'executar aquest enllaç
|
Gamma (default: 0)=Gamma (predeterminat: 0)
|
||||||
Wallpaper=Fons d'escriptori
|
Gamma value to set when launching this link=Valor de gamma que utilitzarà a l'executar aquest enllaç
|
||||||
Configure skin=Configura el Tema
|
Wallpaper=Fons d'escriptori
|
||||||
Message Box Color=Color de caixa de text
|
Configure skin=Configura el Tema
|
||||||
Message Box Border Color=Color de la vora de la caixa de text
|
Message Box=Caixa de text
|
||||||
Message Box Selection Color=Color de la selecció de la caixa de text
|
Message Box Border=Vora de la caixa de text
|
||||||
Background color of the message box=Color de fons de la caixa de text
|
Message Box Selection=Selecció de la caixa de text
|
||||||
Border color of the message box=Color de la vora de la caixa de text
|
Background color of the message box=Color de fons de la caixa de text
|
||||||
Color of the selection of the message box=Color de la selecció de la caixa de text
|
Border color of the message box=Color de la vora de la caixa de text
|
||||||
|
Color of the selection of the message box=Color de la selecció de la caixa de text
|
||||||
|
@ -1,129 +1,130 @@
|
|||||||
settings=Indstillinger
|
Lng=da
|
||||||
Configure GMenu2X's options=Konfigurer GMenu2X's Indstillinger
|
settings=Indstillinger
|
||||||
Activate Usb on SD=Aktiver Usb på SD
|
Configure GMenu2X's options=Konfigurer GMenu2X's Indstillinger
|
||||||
Activate Usb on Nand=Aktiver Usb på Nand
|
Activate Usb on SD=Aktiver Usb på SD
|
||||||
Info about GMenu2X=Information om GMenu2X
|
Activate Usb on Nand=Aktiver Usb på Nand
|
||||||
Activate/deactivate tv-out=Aktiver/deaktiver tv-udgang
|
Info about GMenu2X=Information om GMenu2X
|
||||||
Exit GMenu2X to the official frontend=Lukker GMenu2X
|
Activate/deactivate tv-out=Aktiver/deaktiver tv-udgang
|
||||||
Change GMenu2X wallpaper=Skift baggrund
|
Exit GMenu2X to the official frontend=Lukker GMenu2X
|
||||||
About=Om
|
Change GMenu2X wallpaper=Skift baggrund
|
||||||
Add section=Tilføj sektion
|
About=Om
|
||||||
Rename section=Ændre navn på sektion
|
Add section=Tilføj sektion
|
||||||
Delete section=Slet sektion
|
Rename section=Ændre navn på sektion
|
||||||
Scan for applications and games=Skan hukommelsen for applikationer og spil
|
Delete section=Slet sektion
|
||||||
applications=applikationer
|
Scan for applications and games=Skan hukommelsen for applikationer og spil
|
||||||
Edit link=Rediger genveje
|
applications=applikationer
|
||||||
Title=Titel
|
Edit link=Rediger genveje
|
||||||
Link title=Genvejs titel
|
Title=Titel
|
||||||
Description=Beskrivelse
|
Link title=Genvejs titel
|
||||||
Link description=Genvejs beskrivelse
|
Description=Beskrivelse
|
||||||
Section=Seektion
|
Link description=Genvejs beskrivelse
|
||||||
The section this link belongs to=Sektionen for denne genvej
|
Section=Seektion
|
||||||
Icon=Ikon
|
The section this link belongs to=Sektionen for denne genvej
|
||||||
Select an icon for the link=Vælg et ikon til denne genvej
|
Icon=Ikon
|
||||||
Manual=Manual
|
Select an icon for the link=Vælg et ikon til denne genvej
|
||||||
Select a graphic/textual manual or a readme=Vælg en grafisk/tekstbaseret manual eller en readme fil
|
Manual=Manual
|
||||||
Cpu clock frequency to set when launching this link=Cpu-clockfrekvens indstilling for denne genvej
|
Select a graphic/textual manual or a readme=Vælg en grafisk/tekstbaseret manual eller en readme fil
|
||||||
Volume to set for this link=Lydstyrke indstilling for denne genvej
|
Cpu clock frequency to set when launching this link=Cpu-clockfrekvens indstilling for denne genvej
|
||||||
Parameters=Parametre
|
Volume to set for this link=Lydstyrke indstilling for denne genvej
|
||||||
Parameters to pass to the application=Angiv parametre for applikationen
|
Parameters=Parametre
|
||||||
Selector Directory=Selector oversigt
|
Parameters to pass to the application=Angiv parametre for applikationen
|
||||||
Directory to scan for the selector=Angiv Mappe som selector skal skanne
|
Selector Directory=Selector oversigt
|
||||||
Selector Browser=Selector Browser
|
Directory to scan for the selector=Angiv Mappe som selector skal skanne
|
||||||
Allow the selector to change directory=Tillad selector at ændre mappe
|
Selector Browser=Selector Browser
|
||||||
Selector Filter=Selector filter
|
Allow the selector to change directory=Tillad selector at ændre mappe
|
||||||
Filter for the selector (Separate values with a comma)=Filter til selector (separer værdier med komma)
|
Selector Filter=Selector filter
|
||||||
Selector Screenshots= Selector Screenshots
|
Filter for the selector (Separate values with a comma)=Filter til selector (separer værdier med komma)
|
||||||
Directory of the screenshots for the selector=Mappe med Screenshots af selector
|
Selector Screenshots= Selector Screenshots
|
||||||
Selector Aliases=Selector alias
|
Directory of the screenshots for the selector=Mappe med Screenshots af selector
|
||||||
File containing a list of aliases for the selector=Fil som indeholder en liste over alias for selector
|
Selector Aliases=Selector alias
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=Tving GMenu2X til at genstarte når denne genvej køres
|
File containing a list of aliases for the selector=Fil som indeholder en liste over alias for selector
|
||||||
Don't Leave=Forlad ikke
|
Explicitly relaunch GMenu2X after this link's execution ends=Tving GMenu2X til at genstarte når denne genvej køres
|
||||||
Don't quit GMenu2X when launching this link=Afslut ikke GMenu2X når denne genvej startes
|
Don't Leave=Forlad ikke
|
||||||
Save last selection=Gem sidste ændring
|
Don't quit GMenu2X when launching this link=Afslut ikke GMenu2X når denne genvej startes
|
||||||
Save the last selected link and section on exit= Gem sidst valgte genvej og sektion ved afslutning
|
Save last selection=Gem sidste ændring
|
||||||
Clock for GMenu2X=Clockfrekvens for GMenu2X
|
Save the last selected link and section on exit= Gem sidst valgte genvej og sektion ved afslutning
|
||||||
Set the cpu working frequency when running GMenu2X=Indstil cpu-clockfrekvens for GMenu2X
|
Clock for GMenu2X=Clockfrekvens for GMenu2X
|
||||||
Maximum overclock=Maksimal clockfrekvens
|
Set the cpu working frequency when running GMenu2X=Indstil cpu-clockfrekvens for GMenu2X
|
||||||
Set the maximum overclock for launching links=Indstil maksimal clockfrekvens ved opstart af genvej
|
Maximum overclock=Maksimal clockfrekvens
|
||||||
Global Volume=Global lydstyrke
|
Set the maximum overclock for launching links=Indstil maksimal clockfrekvens ved opstart af genvej
|
||||||
Set the default volume for the gp2x soundcard=Indstil standard lydstyrke for gp2x lydkort
|
Global Volume=Global lydstyrke
|
||||||
Output logs=Vis logs
|
Set the default volume for the gp2x soundcard=Indstil standard lydstyrke for gp2x lydkort
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Danner logs for genvejene. Anvend Vis log for at åbne dem.
|
Output logs=Vis logs
|
||||||
Number of columns=Antal spalter
|
Logs the output of the links. Use the Log Viewer to read them.=Danner logs for genvejene. Anvend Vis log for at åbne dem.
|
||||||
Set the number of columns of links to display on a page=Angiv antallet af spalter for genveje per side
|
Number of columns=Antal spalter
|
||||||
Number of rows=Antal rækker
|
Set the number of columns of links to display on a page=Angiv antallet af spalter for genveje per side
|
||||||
Set the number of rows of links to display on a page= Angiv antallet af rækker for genveje per side
|
Number of rows=Antal rækker
|
||||||
Top Bar Color=Øverste bjælkes farve
|
Set the number of rows of links to display on a page= Angiv antallet af rækker for genveje per side
|
||||||
Color of the top bar= Øverste bjælkes farve
|
Top Bar=Øverste bjælke
|
||||||
Bottom Bar Color=Nederste bjælkes farve
|
Color of the top bar= Øverste bjælkes farve
|
||||||
Color of the bottom bar=Nederste bjælkes farve
|
Bottom Bar=Nederste bjælke
|
||||||
Selection Color=Markørens farve
|
Color of the bottom bar=Nederste bjælkes farve
|
||||||
Color of the selection and other interface details= Markøren og grænseflades farve
|
Selection=Markøren
|
||||||
You should disable Usb Networking to do this.=Du bør fravælge USB netværket nå du vælger dette
|
Color of the selection and other interface details= Markøren og grænseflades farve
|
||||||
Operation not permitted.=Dette er ikke tilladt.
|
You should disable Usb Networking to do this.=Du bør fravælge USB netværket nå du vælger dette
|
||||||
Language=Sprog
|
Operation not permitted.=Dette er ikke tilladt.
|
||||||
Set the language used by GMenu2X=Indstil sprog der anvendes i GMenu2X
|
Language=Sprog
|
||||||
Increase=Op
|
Set the language used by GMenu2X=Indstil sprog der anvendes i GMenu2X
|
||||||
Decrease=Ned
|
Increase=Op
|
||||||
Change color component=Ændre farven på komponent
|
Decrease=Ned
|
||||||
Increase value=Op
|
Change color component=Ændre farven på komponent
|
||||||
Decrease value=Ned
|
Increase value=Op
|
||||||
Switch=Ændre
|
Decrease value=Ned
|
||||||
Change value=Ændre værdi
|
Switch=Ændre
|
||||||
Edit=Rediger
|
Change value=Ændre værdi
|
||||||
Clear=Ryd
|
Edit=Rediger
|
||||||
Select a directory=Vælg en mappe
|
Clear=Ryd
|
||||||
Select a file=Vælg en fil
|
Select a directory=Vælg en mappe
|
||||||
Clock (default: 200)=Clockfrekvens (normal: 200)
|
Select a file=Vælg en fil
|
||||||
Volume (default: -1)=Lydstyrke (normal: -1)
|
Clock (default: 200)=Clockfrekvens (normal: 200)
|
||||||
Wrapper=Wrapper
|
Volume (default: -1)=Lydstyrke (normal: -1)
|
||||||
Enter folder=Åbn mappe
|
Wrapper=Wrapper
|
||||||
Confirm=Bekræft
|
Enter folder=Åbn mappe
|
||||||
Enter folder/Confirm=Åbn mappe/Bekræft
|
Confirm=Bekræft
|
||||||
Up one folder=Tilbage
|
Enter folder/Confirm=Åbn mappe/Bekræft
|
||||||
Select an application=Vælg en applikation
|
Up one folder=Tilbage
|
||||||
Space=Mellemrum
|
Select an application=Vælg en applikation
|
||||||
Shift=Skift
|
Space=Mellemrum
|
||||||
Cancel=Afbryd
|
Shift=Skift
|
||||||
OK=OK
|
Cancel=Afbryd
|
||||||
Backspace=Slet
|
OK=OK
|
||||||
Skin=Tema
|
Backspace=Slet
|
||||||
Set the skin used by GMenu2X =Angiv tema for GMenu2X
|
Skin=Tema
|
||||||
Add link in $1=Tilføj genvej i $1
|
Set the skin used by GMenu2X =Angiv tema for GMenu2X
|
||||||
Edit $1=Rediger $1
|
Add link in $1=Tilføj genvej i $1
|
||||||
Delete $1 link=Slet $1
|
Edit $1=Rediger $1
|
||||||
Deleting $1=Sletter $1
|
Delete $1 link=Slet $1
|
||||||
Are you sure?=Er du sikker?
|
Deleting $1=Sletter $1
|
||||||
Insert a name for the new section=Angiv navn for den nye sektion
|
Are you sure?=Er du sikker?
|
||||||
Insert a new name for this section=Angiv nyt navn for denne sektion
|
Insert a name for the new section=Angiv navn for den nye sektion
|
||||||
Yes=Ja
|
Insert a new name for this section=Angiv nyt navn for denne sektion
|
||||||
No=Nej
|
Yes=Ja
|
||||||
You will lose all the links in this section.=Du vil miste alle genveje i denne sektion.
|
No=Nej
|
||||||
Exit=Afslut
|
You will lose all the links in this section.=Du vil miste alle genveje i denne sektion.
|
||||||
Link Scanner=Skan genveje
|
Exit=Afslut
|
||||||
Scanning SD filesystem...=Skanner SD filsystem...
|
Link Scanner=Skan genveje
|
||||||
Scanning NAND filesystem...=Skanner NAND filsystem...
|
Scanning SD filesystem...=Skanner SD filsystem...
|
||||||
$1 files found.=$1 fil(er) fundet.
|
Scanning NAND filesystem...=Skanner NAND filsystem...
|
||||||
Creating links...=Opretter genveje...
|
$1 files found.=$1 fil(er) fundet.
|
||||||
$1 links created.=$1 genvej(e) oprettet.
|
Creating links...=Opretter genveje...
|
||||||
Version $1 (Build date: $2)=Version $1 (den: $2)
|
$1 links created.=$1 genvej(e) oprettet.
|
||||||
Log Viewer=Vis log
|
Version $1 (Build date: $2)=Version $1 (den: $2)
|
||||||
Displays last launched program's output=Vis log fra sidst kørte program
|
Log Viewer=Vis log
|
||||||
Do you want to delete the log file?=Vil du slette denne log fil?
|
Displays last launched program's output=Vis log fra sidst kørte program
|
||||||
USB Enabled (SD)=USB Aktiveret (SD)
|
Do you want to delete the log file?=Vil du slette denne log fil?
|
||||||
USB Enabled (Nand)=USB Aktiveret (Nand)
|
USB Enabled (SD)=USB Aktiveret (SD)
|
||||||
Turn off=Afbryd
|
USB Enabled (Nand)=USB Aktiveret (Nand)
|
||||||
Launching $1=Starter $1
|
Turn off=Afbryd
|
||||||
Change page=Skift side
|
Launching $1=Starter $1
|
||||||
Page=Side
|
Change page=Skift side
|
||||||
Scroll=Rulle
|
Page=Side
|
||||||
Untitled=Ikke navngivet
|
Scroll=Rulle
|
||||||
Wallpaper=Baggrund
|
Untitled=Ikke navngivet
|
||||||
Configure skin=Konfigurer tema
|
Wallpaper=Baggrund
|
||||||
Message Box Color=Farve på Konfigurations vinduet
|
Configure skin=Konfigurer tema
|
||||||
Message Box Border Color= Farve på Konfig vinduets kant
|
Message Box=Konfigurations vinduet
|
||||||
Message Box Selection Color=Konfig vinduets markør farve
|
Message Box Border=Konfig vinduets kant
|
||||||
Background color of the message box= Konfigurations vinduets baggrundsfarve
|
Message Box Selection=Konfig vinduets markør
|
||||||
Border color of the message box=Farve på Konfigurations vinduets kant
|
Background color of the message box= Konfigurations vinduets baggrundsfarve
|
||||||
Color of the selection of the message box=Farven på markøren i Konfigurations vinduet
|
Border color of the message box=Farve på Konfigurations vinduets kant
|
||||||
|
Color of the selection of the message box=Farven på markøren i Konfigurations vinduet
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=nl
|
||||||
Settings=Instellingen
|
Settings=Instellingen
|
||||||
Configure GMenu2X's options=Instellingen van GMenu2X
|
Configure GMenu2X's options=Instellingen van GMenu2X
|
||||||
Activate Usb on SD=Activeer USB op SD
|
Activate Usb on SD=Activeer USB op SD
|
||||||
@ -51,11 +52,11 @@ Number of columns=Aantal kolommen
|
|||||||
Set the number of columns of links to display on a page=Stel het aantal getoonde pictogrammen in (horizontaal)
|
Set the number of columns of links to display on a page=Stel het aantal getoonde pictogrammen in (horizontaal)
|
||||||
Number of rows=Aantal rijen
|
Number of rows=Aantal rijen
|
||||||
Set the number of rows of links to display on a page=Stel het aantal getoonde pictogrammen in (verticaal)
|
Set the number of rows of links to display on a page=Stel het aantal getoonde pictogrammen in (verticaal)
|
||||||
Top Bar Color=Kleur bovenste balk
|
Top Bar=Bovenste balk
|
||||||
Color of the top bar=Kleur van de bovenste balk
|
Color of the top bar=Kleur van de bovenste balk
|
||||||
Bottom Bar Color=Kleur onderste balk
|
Bottom Bar=Onderste balk
|
||||||
Color of the bottom bar=Kleur van de onderste balk
|
Color of the bottom bar=Kleur van de onderste balk
|
||||||
Selection Color=Kleur selectie
|
Selection=Selectie
|
||||||
Color of the selection and other interface details=Kleur van de selectie en andere interface details
|
Color of the selection and other interface details=Kleur van de selectie en andere interface details
|
||||||
You should disable Usb Networking to do this.=Zet USB Netwerk uit om dit te gebruiken.
|
You should disable Usb Networking to do this.=Zet USB Netwerk uit om dit te gebruiken.
|
||||||
Operation not permitted.=Handeling niet toegestaan.
|
Operation not permitted.=Handeling niet toegestaan.
|
||||||
|
@ -1,117 +1,119 @@
|
|||||||
Settings=Asetukset
|
Lng=fi
|
||||||
Configure GMenu2X's options=Muuta GMenu2X:n asetuksia
|
Settings=Asetukset
|
||||||
Activate Usb on SD=Aktivoi USB SD-kortille
|
Configure GMenu2X's options=Muuta GMenu2X:n asetuksia
|
||||||
Activate Usb on Nand=Aktivoi USB NAND-muistille
|
Activate Usb on SD=Aktivoi USB SD-kortille
|
||||||
Info about GMenu2X=Tietoa GMenu2X:st<73>
|
Activate Usb on Nand=Aktivoi USB NAND-muistille
|
||||||
About=Tietoa
|
Info about GMenu2X=Tietoa GMenu2X:st<73>
|
||||||
Add section=Lis<69><73> v<>lilehti
|
About=Tietoa
|
||||||
Rename section=Nime<6D> v<>lilehti uudelleen
|
Add section=Lis<69><73> v<>lilehti
|
||||||
Delete section=Poista v<>lilehti
|
Rename section=Nime<6D> v<>lilehti uudelleen
|
||||||
Scan for applications and games=Etsi ohjelmia ja pelej<65>
|
Delete section=Poista v<>lilehti
|
||||||
applications=ohjelmat
|
Scan for applications and games=Etsi ohjelmia ja pelej<65>
|
||||||
Edit link=Muokkaa linkki<6B>
|
applications=ohjelmat
|
||||||
Title=Otsikko
|
Edit link=Muokkaa linkki<6B>
|
||||||
Link title=Linkin otsikko
|
Title=Otsikko
|
||||||
Description=Kuvaus
|
Link title=Linkin otsikko
|
||||||
Link description=Linkin kuvaus
|
Description=Kuvaus
|
||||||
Section=V<>lilehti
|
Link description=Linkin kuvaus
|
||||||
The section this link belongs to=V<>lilehti johon t<>m<EFBFBD> linkki kuuluu
|
Section=V<>lilehti
|
||||||
Icon=Kuvake
|
The section this link belongs to=V<>lilehti johon t<>m<EFBFBD> linkki kuuluu
|
||||||
Select an icon for the link: $1=Valitse kuvake linkille: $1
|
Icon=Kuvake
|
||||||
Manual=Ohjetiedosto
|
Select an icon for the link: $1=Valitse kuvake linkille: $1
|
||||||
Select a graphic/textual manual or a readme=Valitse graafinen/tekstipohjainen ohjetiedosto
|
Manual=Ohjetiedosto
|
||||||
Cpu clock frequency to set when launching this link=CPU kellotaajuus t<>m<EFBFBD>n linkin k<>ynnistyksess<73>
|
Select a graphic/textual manual or a readme=Valitse graafinen/tekstipohjainen ohjetiedosto
|
||||||
Volume to set for this link=<3D><>nenvoimakkuus t<>lle linkille
|
Cpu clock frequency to set when launching this link=CPU kellotaajuus t<>m<EFBFBD>n linkin k<>ynnistyksess<73>
|
||||||
Parameters=Parametrit
|
Volume to set for this link=<3D><>nenvoimakkuus t<>lle linkille
|
||||||
Parameters to pass to the application=Ohjelmalle annettavat parametrit
|
Parameters=Parametrit
|
||||||
Selector Directory=Ohjelmanvalitsimen hakemisto
|
Parameters to pass to the application=Ohjelmalle annettavat parametrit
|
||||||
Directory to scan for the selector=Hakemisto joka skannataan ohjelmanvalitsimelle
|
Selector Directory=Ohjelmanvalitsimen hakemisto
|
||||||
Selector Browser=Ohjelmanvalitsimen selain
|
Directory to scan for the selector=Hakemisto joka skannataan ohjelmanvalitsimelle
|
||||||
Allow the selector to change directory=Anna ohjelmanvalitsimen vaihtaa hakemistoa
|
Selector Browser=Ohjelmanvalitsimen selain
|
||||||
Selector Filter=Ohjelmavalitsimen filtteri
|
Allow the selector to change directory=Anna ohjelmanvalitsimen vaihtaa hakemistoa
|
||||||
Filter for the selector (Separate values with a comma)=Filtteri ohjelmanvalitsimelle (Eroita arvot pilkulla)
|
Selector Filter=Ohjelmavalitsimen filtteri
|
||||||
Selector Screenshots=Kuvakaappaukset ohjelmanvalitsimesta
|
Filter for the selector (Separate values with a comma)=Filtteri ohjelmanvalitsimelle (Eroita arvot pilkulla)
|
||||||
Directory of the screenshots for the selector=Ohjelmanvalitsimen kuvakaappausten hakemisto
|
Selector Screenshots=Kuvakaappaukset ohjelmanvalitsimesta
|
||||||
Selector Aliases=Ohjelmanvalitsimen peitenimet
|
Directory of the screenshots for the selector=Ohjelmanvalitsimen kuvakaappausten hakemisto
|
||||||
File containing a list of aliases for the selector=Tiedosto, joka sis<69>lt<6C><74> listan peitenimist<73> ohjelmavalitsimelle
|
Selector Aliases=Ohjelmanvalitsimen peitenimet
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=K<>ynnist<73> GMenu2X uudelleen kun linkin ajo on suoritettu
|
File containing a list of aliases for the selector=Tiedosto, joka sis<69>lt<6C><74> listan peitenimist<73> ohjelmavalitsimelle
|
||||||
Don't Leave=<3D>l<EFBFBD> poistu
|
Explicitly relaunch GMenu2X after this link's execution ends=K<>ynnist<73> GMenu2X uudelleen kun linkin ajo on suoritettu
|
||||||
Don't quit GMenu2X when launching this link=<3D>l<EFBFBD> sulje GMenu2X:<3A><> kun linkki k<>ynnistet<65><74>n
|
Don't Leave=<3D>l<EFBFBD> poistu
|
||||||
Save last selection=Muista viimeisin valinta
|
Don't quit GMenu2X when launching this link=<3D>l<EFBFBD> sulje GMenu2X:<3A><> kun linkki k<>ynnistet<65><74>n
|
||||||
Save the last selected link and section on exit=Muista viimeisin valinta ja v<>lilehti poistuttaessa
|
Save last selection=Muista viimeisin valinta
|
||||||
Clock for GMenu2X=Kellotaajuus GMenu2X:lle
|
Save the last selected link and section on exit=Muista viimeisin valinta ja v<>lilehti poistuttaessa
|
||||||
Set the cpu working frequency when running GMenu2X=S<><53>d<EFBFBD> CPU kellotaajuutta GMenu2X:lle
|
Clock for GMenu2X=Kellotaajuus GMenu2X:lle
|
||||||
Maximum overclock=Ylikellotusrajoitus
|
Set the cpu working frequency when running GMenu2X=S<><53>d<EFBFBD> CPU kellotaajuutta GMenu2X:lle
|
||||||
Set the maximum overclock for launching links=S<><53>d<EFBFBD> suurin mahdollinen ylikellotus k<>ynnistett<74>ess<73> linkkej<65>
|
Maximum overclock=Ylikellotusrajoitus
|
||||||
Global Volume=Yleinen <20><>nenvoimakkuus
|
Set the maximum overclock for launching links=S<><53>d<EFBFBD> suurin mahdollinen ylikellotus k<>ynnistett<74>ess<73> linkkej<65>
|
||||||
Set the default volume fo the gp2x soundcard=S<><53>d<EFBFBD> perus<75><73>nenvoimakkuus gp2x:n <20><>nikortille
|
Global Volume=Yleinen <20><>nenvoimakkuus
|
||||||
Output logs=Tulosteloki
|
Set the default volume fo the gp2x soundcard=S<><53>d<EFBFBD> perus<75><73>nenvoimakkuus gp2x:n <20><>nikortille
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Kirjoita linkkien tuloste lokiin. K<>yt<79> lokilukijaa niiden lukemiseen.
|
Output logs=Tulosteloki
|
||||||
Number of columns=Sarakkeiden lukum<75><6D>r<EFBFBD>
|
Logs the output of the links. Use the Log Viewer to read them.=Kirjoita linkkien tuloste lokiin. K<>yt<79> lokilukijaa niiden lukemiseen.
|
||||||
Set the number of columns of links to display on a page=Aseta linkkisarakkeiden lukum<75><6D>r<EFBFBD> sivulla
|
Number of columns=Sarakkeiden lukum<75><6D>r<EFBFBD>
|
||||||
Number of rows=Rivien lukum<75><6D>r<EFBFBD>
|
Set the number of columns of links to display on a page=Aseta linkkisarakkeiden lukum<75><6D>r<EFBFBD> sivulla
|
||||||
Set the number of rows of links to display on a page=Aseta linkkirivien lukum<75><6D>r<EFBFBD> sivulla
|
Number of rows=Rivien lukum<75><6D>r<EFBFBD>
|
||||||
Top Bar Color=V<>ri yl<79>palkille
|
Set the number of rows of links to display on a page=Aseta linkkirivien lukum<75><6D>r<EFBFBD> sivulla
|
||||||
Color of the top bar=Yl<59>palkin v<>ri
|
Top Bar=Yl<59>palkille
|
||||||
Color of the bottom bar=Alapalkin v<>ri
|
Color of the top bar=Yl<59>palkin v<>ri
|
||||||
Selection Color=Valinnan v<>ri
|
Bottom Bar=Alapalkin
|
||||||
Color of the selection and other interface details=Valinnan ja muiden ykstiyiskohtien v<>ri
|
Color of the bottom bar=Alapalkin v<>ri
|
||||||
You should disable Usb Networking to do this.=Usb Networking:in pit<69><74> olla poissa k<>yt<79>st<73> jotta voit tehd<68> t<>m<EFBFBD>n.
|
Selection=Valinnan
|
||||||
Operation not permitted.=Toiminto ei ole sallittu.
|
Color of the selection and other interface details=Valinnan ja muiden ykstiyiskohtien v<>ri
|
||||||
Language=Kieli
|
You should disable Usb Networking to do this.=Usb Networking:in pit<69><74> olla poissa k<>yt<79>st<73> jotta voit tehd<68> t<>m<EFBFBD>n.
|
||||||
Set the language used by GMenu2X=Valitse GMenu2X:n k<>ytt<74>m<EFBFBD> kieli
|
Operation not permitted.=Toiminto ei ole sallittu.
|
||||||
Increase=Lis<69><73>
|
Language=Kieli
|
||||||
Decrease=V<>henn<6E>
|
Set the language used by GMenu2X=Valitse GMenu2X:n k<>ytt<74>m<EFBFBD> kieli
|
||||||
Change color component=Vaihda v<>rikomponenttia
|
Increase=Lis<69><73>
|
||||||
Increase value=Nosta arvoa
|
Decrease=V<>henn<6E>
|
||||||
Decrease value=Laske arvoa
|
Change color component=Vaihda v<>rikomponenttia
|
||||||
Switch=Vaihda
|
Increase value=Nosta arvoa
|
||||||
Change value=Vaihda arvoa
|
Decrease value=Laske arvoa
|
||||||
Edit=Muokkaa
|
Switch=Vaihda
|
||||||
Clear=Tyhjenn<6E>
|
Change value=Vaihda arvoa
|
||||||
Select a directory=Valitse hakemisto
|
Edit=Muokkaa
|
||||||
Select a file=Valitse tiedosto
|
Clear=Tyhjenn<6E>
|
||||||
Clock (default: 200)=Kellotaajuus (oletusarvo: 200)
|
Select a directory=Valitse hakemisto
|
||||||
Volume (default: -1)=<3D><>nenvoimakkuus (oletusarvo: -1)
|
Select a file=Valitse tiedosto
|
||||||
Wrapper=Wrapperi
|
Clock (default: 200)=Kellotaajuus (oletusarvo: 200)
|
||||||
Enter folder=Avaa kansio
|
Volume (default: -1)=<3D><>nenvoimakkuus (oletusarvo: -1)
|
||||||
Confirm=Vahvista
|
Wrapper=Wrapperi
|
||||||
Enter folder/Confirm=Avaa kansio/Vahvista
|
Enter folder=Avaa kansio
|
||||||
Up one folder=Yksi hakemisto yl<79>sp<73>in
|
Confirm=Vahvista
|
||||||
Select an application=Valitse ohjelma
|
Enter folder/Confirm=Avaa kansio/Vahvista
|
||||||
Space=V<>lily<6C>nti
|
Up one folder=Yksi hakemisto yl<79>sp<73>in
|
||||||
Shift=Vaihto
|
Select an application=Valitse ohjelma
|
||||||
Cancel=Peruuta
|
Space=V<>lily<6C>nti
|
||||||
OK=OK
|
Shift=Vaihto
|
||||||
Backspace=Askelpalautin
|
Cancel=Peruuta
|
||||||
Skin=Teema
|
OK=OK
|
||||||
Set the skin used by GMenu2X=Aseta GMenu2X:n k<>ytt<74>m<EFBFBD> teema
|
Backspace=Askelpalautin
|
||||||
Add link in $1=Lis<69><73> linkki v<>lilehteen $1
|
Skin=Teema
|
||||||
Edit $1=Muokkaa v<>lilehte<74> $1
|
Set the skin used by GMenu2X=Aseta GMenu2X:n k<>ytt<74>m<EFBFBD> teema
|
||||||
Delete $1 link=Poista v<>lilehti $1
|
Add link in $1=Lis<69><73> linkki v<>lilehteen $1
|
||||||
Deleting $1=Poistetaan v<>lilehte<74> $1
|
Edit $1=Muokkaa v<>lilehte<74> $1
|
||||||
Are you sure?=Oletko varma?
|
Delete $1 link=Poista v<>lilehti $1
|
||||||
Insert a name for the new section=Anna uuden v<>lilehden nimi
|
Deleting $1=Poistetaan v<>lilehte<74> $1
|
||||||
Insert a new name for this section=Anna uusi nimi t<>lle v<>lilehdelle
|
Are you sure?=Oletko varma?
|
||||||
Yes=Kyll<6C>
|
Insert a name for the new section=Anna uuden v<>lilehden nimi
|
||||||
No=Ei
|
Insert a new name for this section=Anna uusi nimi t<>lle v<>lilehdelle
|
||||||
You will lose all the links in this section.=Menet<65>t kaikki t<>ss<73> v<>lilehdess<73> olevat linkit.
|
Yes=Kyll<6C>
|
||||||
Exit=Poistu
|
No=Ei
|
||||||
Link Scanner=Linkkiskanneri
|
You will lose all the links in this section.=Menet<65>t kaikki t<>ss<73> v<>lilehdess<73> olevat linkit.
|
||||||
Scanning SD filesystem...=Skannataan SD-tiedostoj<6F>rjestelm<6C><6D>...
|
Exit=Poistu
|
||||||
Scanning NAND filesystem...=Skannataan NAND-tiedostoj<6F>rjestelm<6C><6D>...
|
Link Scanner=Linkkiskanneri
|
||||||
$1 files found.=$1 tiedosto(a) l<>ydetty.
|
Scanning SD filesystem...=Skannataan SD-tiedostoj<6F>rjestelm<6C><6D>...
|
||||||
Creating links...=Luodaan linkkej<65>...
|
Scanning NAND filesystem...=Skannataan NAND-tiedostoj<6F>rjestelm<6C><6D>...
|
||||||
$1 links created.=$1 linkki(<28>) luotu.
|
$1 files found.=$1 tiedosto(a) l<>ydetty.
|
||||||
Version $1 (Build date: $2)=Versio $1 (K<><4B>nt<6E>p<EFBFBD>iv<69>m<EFBFBD><6D>r<EFBFBD>: $2)
|
Creating links...=Luodaan linkkej<65>...
|
||||||
Log Viewer=Lokilukija
|
$1 links created.=$1 linkki(<28>) luotu.
|
||||||
Displays last launched program's output=N<>ytt<74><74> viimeksi k<>ynnistetyn ohjelman tulosteen
|
Version $1 (Build date: $2)=Versio $1 (K<><4B>nt<6E>p<EFBFBD>iv<69>m<EFBFBD><6D>r<EFBFBD>: $2)
|
||||||
Do you want to delete the log file?=Haluatko poistaa logitiedoston?
|
Log Viewer=Lokilukija
|
||||||
USB Enabled (SD)=USB Aktivoitu (SD)
|
Displays last launched program's output=N<>ytt<74><74> viimeksi k<>ynnistetyn ohjelman tulosteen
|
||||||
USB Enabled (Nand)=USB Aktivoitu (Nand)
|
Do you want to delete the log file?=Haluatko poistaa logitiedoston?
|
||||||
Turn off=Sammuta
|
USB Enabled (SD)=USB Aktivoitu (SD)
|
||||||
Launching $1=K<>ynnistet<65><74>n $1
|
USB Enabled (Nand)=USB Aktivoitu (Nand)
|
||||||
Change page=Vaihda sivua
|
Turn off=Sammuta
|
||||||
Page=Sivu
|
Launching $1=K<>ynnistet<65><74>n $1
|
||||||
Scroll=Vierit<69>
|
Change page=Vaihda sivua
|
||||||
Untitled=Nime<6D>m<EFBFBD>t<EFBFBD>n
|
Page=Sivu
|
||||||
|
Scroll=Vierit<69>
|
||||||
|
Untitled=Nime<6D>m<EFBFBD>t<EFBFBD>n
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=fr
|
||||||
Settings=Configurations
|
Settings=Configurations
|
||||||
Configure GMenu2X's options=Configurer les options de GMenu2X
|
Configure GMenu2X's options=Configurer les options de GMenu2X
|
||||||
Activate Usb on SD=Activer l'Usb sur la SD
|
Activate Usb on SD=Activer l'Usb sur la SD
|
||||||
@ -51,11 +52,11 @@ Number of columns=Nombre de colonnes
|
|||||||
Set the number of columns of links to display on a page=Définir le nombre de colonnes de liens à afficher sur une page
|
Set the number of columns of links to display on a page=Définir le nombre de colonnes de liens à afficher sur une page
|
||||||
Number of rows=Nombres de rangées
|
Number of rows=Nombres de rangées
|
||||||
Set the number of rows of links to display on a page=Définir le nombre de rangées de liens à afficher sur une page
|
Set the number of rows of links to display on a page=Définir le nombre de rangées de liens à afficher sur une page
|
||||||
Top Bar Color=Couleur de la bar supérieur
|
Top Bar=Bar supérieur
|
||||||
Color of the top bar=Couleur de la bar supérieur
|
Color of the top bar=Couleur de la bar supérieur
|
||||||
Bottom Bar Color=Couleur de la bar inférieur
|
Bottom Bar=Bar inférieur
|
||||||
Color of the bottom bar=Couleur de la bar inférieur
|
Color of the bottom bar=Couleur de la bar inférieur
|
||||||
Selection Color=Couleur de sélection
|
Selection=Sélection
|
||||||
Color of the selection and other interface details=Couleur de la sélection et des autres détails de l'interface
|
Color of the selection and other interface details=Couleur de la sélection et des autres détails de l'interface
|
||||||
You should disable Usb Networking to do this.=Vous devez désactiver le réseau Usb pour faire ceci.
|
You should disable Usb Networking to do this.=Vous devez désactiver le réseau Usb pour faire ceci.
|
||||||
Operation not permitted.=Opération non permise
|
Operation not permitted.=Opération non permise
|
||||||
@ -126,4 +127,4 @@ Encoding of the tv-out signal=Encodage du signal de la sortie TV
|
|||||||
Tweak RAM Timings=Modification des timings de la RAM
|
Tweak RAM Timings=Modification des timings de la RAM
|
||||||
This usually speeds up the application at the cost of stability=Ceci accélère, normalement, l'application mais en contre partie de la stabilité
|
This usually speeds up the application at the cost of stability=Ceci accélère, normalement, l'application mais en contre partie de la stabilité
|
||||||
Gamma (default: 0)=Gamma (par défaut: 0)
|
Gamma (default: 0)=Gamma (par défaut: 0)
|
||||||
Gamma value to set when launching this link=Valeur de gamma à définir lors du lancement de ce lien
|
Gamma value to set when launching this link=Valeur de gamma à définir lors du lancement de ce lien
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=de
|
||||||
Settings=Einstellungen
|
Settings=Einstellungen
|
||||||
Configure GMenu2X's options=Optionen des GMenu2X konfigurieren
|
Configure GMenu2X's options=Optionen des GMenu2X konfigurieren
|
||||||
Activate Usb on SD=Aktiviert USB für die SD-Karte
|
Activate Usb on SD=Aktiviert USB für die SD-Karte
|
||||||
@ -51,11 +52,11 @@ Number of columns=Anzahl der Spalten
|
|||||||
Set the number of columns of links to display on a page=Anzahl der Spalten mit Links, pro Seite
|
Set the number of columns of links to display on a page=Anzahl der Spalten mit Links, pro Seite
|
||||||
Number of rows=Anzahl der Zeilen
|
Number of rows=Anzahl der Zeilen
|
||||||
Set the number of rows of links to display on a page=Anzahl der Zeilen mit Links, pro Seite
|
Set the number of rows of links to display on a page=Anzahl der Zeilen mit Links, pro Seite
|
||||||
Top Bar Color=Farbe der Kopfleiste
|
Top Bar=Kopfleiste
|
||||||
Color of the top bar= Stellt Farbe und Transparenz der oberen Menüleiste ein
|
Color of the top bar= Stellt Farbe und Transparenz der oberen Menüleiste ein
|
||||||
Bottom Bar Color=Farbe der Fußleiste
|
Bottom Bar=Fußleiste
|
||||||
Color of the bottom bar=Stellt Farbe und Transparenz der unteren Menüleiste ein
|
Color of the bottom bar=Stellt Farbe und Transparenz der unteren Menüleiste ein
|
||||||
Selection Color=Farbe der Auswahl
|
Selection=Auswahl
|
||||||
Color of the selection and other interface details=Farbe der Auswahl-Hervorhebung und anderer Interface-Details
|
Color of the selection and other interface details=Farbe der Auswahl-Hervorhebung und anderer Interface-Details
|
||||||
You should disable Usb Networking to do this.=Du solltest USB Networking deaktivieren um dies zu tun.
|
You should disable Usb Networking to do this.=Du solltest USB Networking deaktivieren um dies zu tun.
|
||||||
Operation not permitted.=Operation nicht gestattet.
|
Operation not permitted.=Operation nicht gestattet.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=it
|
||||||
Settings=Impostazioni
|
Settings=Impostazioni
|
||||||
Configure GMenu2X's options=Configura le opzioni di GMenu2X
|
Configure GMenu2X's options=Configura le opzioni di GMenu2X
|
||||||
Activate Usb on SD=Attiva USB sulla SD
|
Activate Usb on SD=Attiva USB sulla SD
|
||||||
@ -51,11 +52,11 @@ Number of columns=Numero di colonne
|
|||||||
Set the number of columns of links to display on a page=Imposta il numero di colonne di collegamenti da visualizzare in una pagina
|
Set the number of columns of links to display on a page=Imposta il numero di colonne di collegamenti da visualizzare in una pagina
|
||||||
Number of rows=Numero di righe
|
Number of rows=Numero di righe
|
||||||
Set the number of rows of links to display on a page=Imposta il numero di righe di collegamenti da visualizzare in una pagina
|
Set the number of rows of links to display on a page=Imposta il numero di righe di collegamenti da visualizzare in una pagina
|
||||||
Top Bar Color=Colore barra superiore
|
Top Bar=Barra superiore
|
||||||
Color of the top bar=Colore della barra superiore
|
Color of the top bar=Colore della barra superiore
|
||||||
Bottom Bar Color=Colore barra inferiore
|
Bottom Bar=Barra inferiore
|
||||||
Color of the bottom bar=Colore della barra inferiore
|
Color of the bottom bar=Colore della barra inferiore
|
||||||
Selection Color=Colore selezione
|
Selection=Selezione
|
||||||
Color of the selection and other interface details=Colore della selezione e altri dettagli dell'interfaccia
|
Color of the selection and other interface details=Colore della selezione e altri dettagli dell'interfaccia
|
||||||
You should disable Usb Networking to do this.=Dovresti disattivare le impostazioni di rete per farlo.
|
You should disable Usb Networking to do this.=Dovresti disattivare le impostazioni di rete per farlo.
|
||||||
Operation not permitted.=Operazione non consentita.
|
Operation not permitted.=Operazione non consentita.
|
||||||
@ -129,9 +130,9 @@ Gamma (default: 0)=Gamma (predefinito: 0)
|
|||||||
Gamma value to set when launching this link=Valore di gamma da impostare quando si lancia questo collegamento
|
Gamma value to set when launching this link=Valore di gamma da impostare quando si lancia questo collegamento
|
||||||
Wallpaper=Sfondo
|
Wallpaper=Sfondo
|
||||||
Configure skin=Configura skin
|
Configure skin=Configura skin
|
||||||
Message Box Color=Colore Finestra Messaggi
|
Message Box=Finestra Messaggi
|
||||||
Message Box Border Color=Colore Bordo Finestra Messaggi
|
Message Box Border=Bordo Finestra Messaggi
|
||||||
Message Box Selection Color=Color Selezione Finestra Messaggi
|
Message Box Selection=Selezione Finestra Messaggi
|
||||||
Background color of the message box=Colore di sfondo della finestra dei messaggi
|
Background color of the message box=Colore di sfondo della finestra dei messaggi
|
||||||
Border color of the message box=Colore del bordo della finestra dei messaggi
|
Border color of the message box=Colore del bordo della finestra dei messaggi
|
||||||
Color of the selection of the message box=Colore della selezione della finestra dei messaggi
|
Color of the selection of the message box=Colore della selezione della finestra dei messaggi
|
||||||
@ -139,4 +140,4 @@ Color of the selection of the message box=Colore della selezione della finestra
|
|||||||
Show root=Mostra radice
|
Show root=Mostra radice
|
||||||
Show root folder in the file selection dialogs=Mostra la cartella radice nelle finestre di selezione di file
|
Show root folder in the file selection dialogs=Mostra la cartella radice nelle finestre di selezione di file
|
||||||
Change keys=Cambia tasti
|
Change keys=Cambia tasti
|
||||||
Launch an application=Esegue un'applicazione
|
Launch an application=Esegue un'applicazione
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=no
|
||||||
Settings=Instillinger
|
Settings=Instillinger
|
||||||
Configure GMenu2X's options=Konfigurer GMenu2X's innstillinger
|
Configure GMenu2X's options=Konfigurer GMenu2X's innstillinger
|
||||||
Activate Usb on SD=Aktiver USB på SD
|
Activate Usb on SD=Aktiver USB på SD
|
||||||
@ -51,14 +52,14 @@ Number of columns=Antall spalter
|
|||||||
Set the number of columns of links to display on a page=Velg antall spalter med linker som skal vises per side
|
Set the number of columns of links to display on a page=Velg antall spalter med linker som skal vises per side
|
||||||
Number of rows=Antall rader
|
Number of rows=Antall rader
|
||||||
Set the number of rows of links to display on a page=Velg antall rader med linker som skal vises per side
|
Set the number of rows of links to display on a page=Velg antall rader med linker som skal vises per side
|
||||||
Top Bar Color=Øverste felts farge
|
Top Bar=Øverste felt
|
||||||
Color of the top bar=Farge på det øverste feltet
|
Color of the top bar=Farge på det øverste feltet
|
||||||
Bottom Bar Color=Nederste felts farge
|
Bottom Bar=Nederste felt
|
||||||
Color of the bottom bar=Färge på det nederste feltet
|
Color of the bottom bar=Färge på det nederste feltet
|
||||||
Selection Color=Markørfarge
|
Selection=Markør
|
||||||
Color of the selection and other interface details=Farge på markøren og andre deler av grensesnittet
|
Color of the selection and other interface details=Farge på markøren og andre deler av grensesnittet
|
||||||
You should disable Usb Networking to do this.=Du bør slå av USB-nettverket når du gjør dette.
|
You should disable Usb Networking to do this.=Du bør slå av USB-nettverket når du gjør dette.
|
||||||
Operation not permitted.=Utillat operasjon.
|
Operation not permitted.=Utillat operasjon.
|
||||||
Language=Språk
|
Language=Språk
|
||||||
Set the language used by GMenu2X=Still inn språk for GMenu2X
|
Set the language used by GMenu2X=Still inn språk for GMenu2X
|
||||||
Increase=Øk
|
Increase=Øk
|
||||||
@ -115,4 +116,4 @@ Launching $1=Starter $1
|
|||||||
Change page=Bytt side
|
Change page=Bytt side
|
||||||
Page=Side
|
Page=Side
|
||||||
Scroll=Rull
|
Scroll=Rull
|
||||||
Untitled=Uten navn
|
Untitled=Uten navn
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=pt
|
||||||
Settings= Configurações
|
Settings= Configurações
|
||||||
Configure GMenu2X's options=Configurar opções do GMenu2X
|
Configure GMenu2X's options=Configurar opções do GMenu2X
|
||||||
Activate Usb on SD=Activar USB para SD
|
Activate Usb on SD=Activar USB para SD
|
||||||
@ -7,20 +8,20 @@ About=Sobre
|
|||||||
Add section=Adicionar Secção
|
Add section=Adicionar Secção
|
||||||
Rename section= Renomear Secção
|
Rename section= Renomear Secção
|
||||||
Delete section= Eliminar Secção
|
Delete section= Eliminar Secção
|
||||||
Scan for applications and games=Procurar aplicações e jogos
|
Scan for applications and games=Procurar aplicações e jogos
|
||||||
applications=aplicações
|
applications=aplicações
|
||||||
Edit link=Editar Link
|
Edit link=Editar Link
|
||||||
Title=Título
|
Title=Título
|
||||||
Link title=Título do Link
|
Link title=Título do Link
|
||||||
Description=Descrição
|
Description=Descrição
|
||||||
Link description=Descrição do Link
|
Link description=Descrição do Link
|
||||||
Section=Secção
|
Section=Secção
|
||||||
The section this link belongs to=A secção a que pertence este link
|
The section this link belongs to=A secção a que pertence este link
|
||||||
Icon=Ícone
|
Icon=Ícone
|
||||||
Select an icon for the link: $1=Seleccionar um ícone para o link: $1
|
Select an icon for the link: $1=Seleccionar um ícone para o link: $1
|
||||||
Manual=Manual
|
Manual=Manual
|
||||||
Select a graphic/textual manual or a readme=Seleccionar um manual gráfico e/ou de texto
|
Select a graphic/textual manual or a readme=Seleccionar um manual gráfico e/ou de texto
|
||||||
Cpu clock frequency to set when launching this link=Frequência de relógio do CPU ao lançar este link
|
Cpu clock frequency to set when launching this link=Frequência de relógio do CPU ao lançar este link
|
||||||
Volume to set for this link=Ajustar o volume para este link
|
Volume to set for this link=Ajustar o volume para este link
|
||||||
Parameters=Parâmetros
|
Parameters=Parâmetros
|
||||||
Parameters to pass to the application=Parâmetros a enviar para a aplicação
|
Parameters to pass to the application=Parâmetros a enviar para a aplicação
|
||||||
@ -33,34 +34,34 @@ Filter for the selector (Separate values with a comma)=Filtro do selector (Separ
|
|||||||
Selector Screenshots=Capturas de ecrã do selector
|
Selector Screenshots=Capturas de ecrã do selector
|
||||||
Directory of the screenshots for the selector=Directório das capturas de ecrã do selector
|
Directory of the screenshots for the selector=Directório das capturas de ecrã do selector
|
||||||
Selector Aliases=Alias do selector
|
Selector Aliases=Alias do selector
|
||||||
File containing a list of aliases for the selector=Arquivo que contém a lista de alias para o selector
|
File containing a list of aliases for the selector=Arquivo que contém a lista de alias para o selector
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=Forçar relançamento do GMenu2x após fim da execução deste link
|
Explicitly relaunch GMenu2X after this link's execution ends=Forçar relançamento do GMenu2x após fim da execução deste link
|
||||||
Don't Leave=Não Sair
|
Don't Leave=Não Sair
|
||||||
Don't quit GMenu2X when launching this link=Não sair do GMenu2X ao lançar este link
|
Don't quit GMenu2X when launching this link=Não sair do GMenu2X ao lançar este link
|
||||||
Save last selection=Gravar a última selecção
|
Save last selection=Gravar a última selecção
|
||||||
Save the last selected link and section on exit=Recordar link e secção seleccionadas ao sair
|
Save the last selected link and section on exit=Recordar link e secção seleccionadas ao sair
|
||||||
Clock for GMenu2X=Relógio no GMenu2X
|
Clock for GMenu2X=Relógio no GMenu2X
|
||||||
Set the cpu working frequency when running GMenu2X=Ajustar a frequência do CPU durante a execução do GMenu2X
|
Set the cpu working frequency when running GMenu2X=Ajustar a frequência do CPU durante a execução do GMenu2X
|
||||||
Maximum overclock=Overclock máximo
|
Maximum overclock=Overclock máximo
|
||||||
Set the maximum overclock for launching links=Ajustar o overclock máximo ao lançar um link
|
Set the maximum overclock for launching links=Ajustar o overclock máximo ao lançar um link
|
||||||
Global Volume=Volume global
|
Global Volume=Volume global
|
||||||
Set the default volume fo the gp2x soundcard=Ajustar o volume por defeito da gp2x
|
Set the default volume fo the gp2x soundcard=Ajustar o volume por defeito da gp2x
|
||||||
Output logs=Logs de Output
|
Output logs=Logs de Output
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Regista o output dos links. Usar o Leitor de Logs para consultar.
|
Logs the output of the links. Use the Log Viewer to read them.=Regista o output dos links. Usar o Leitor de Logs para consultar.
|
||||||
Number of columns=Número de colunas
|
Number of columns=Número de colunas
|
||||||
Set the number of columns of links to display on a page=Ajustar o número de colunas (de links) por página
|
Set the number of columns of links to display on a page=Ajustar o número de colunas (de links) por página
|
||||||
Number of rows=Número de filas
|
Number of rows=Número de filas
|
||||||
Set the number of rows of links to display on a page=Ajustar o número de filas (de links) por página
|
Set the number of rows of links to display on a page=Ajustar o número de filas (de links) por página
|
||||||
Top Bar Color=Cor da barra superior
|
Top Bar=Barra superior
|
||||||
Color of the top bar= Cor da barra superior
|
Color of the top bar= Cor da barra superior
|
||||||
Bottom Bar Color= Cor da barra inferior
|
Bottom Bar=Barra inferior
|
||||||
Color of the bottom bar= Cor da barra inferior
|
Color of the bottom bar= Cor da barra inferior
|
||||||
Selection Color=Cor da selecção
|
Selection=Selecção
|
||||||
Color of the selection and other interface details=Cor da selecção e outros detalhes do interface
|
Color of the selection and other interface details=Cor da selecção e outros detalhes do interface
|
||||||
You should disable Usb Networking to do this.=Deve desactivar a função Networking por USB para executar este comando.
|
You should disable Usb Networking to do this.=Deve desactivar a função Networking por USB para executar este comando.
|
||||||
Operation not permitted.=Operação não permitida.
|
Operation not permitted.=Operação não permitida.
|
||||||
Language=Idioma
|
Language=Idioma
|
||||||
Set the language used by GMenu2X=Ajustar o idioma usado no GMenu2X
|
Set the language used by GMenu2X=Ajustar o idioma usado no GMenu2X
|
||||||
Increase=Aumentar
|
Increase=Aumentar
|
||||||
Decrease=Reduzir
|
Decrease=Reduzir
|
||||||
Change color component=Alterar componente da cor
|
Change color component=Alterar componente da cor
|
||||||
@ -91,7 +92,7 @@ Add link in $1=Adicionar link em $1
|
|||||||
Edit $1=Modificar $1
|
Edit $1=Modificar $1
|
||||||
Delete $1 link=Eliminar o link $1
|
Delete $1 link=Eliminar o link $1
|
||||||
Deleting $1=Removendo $1
|
Deleting $1=Removendo $1
|
||||||
Are you sure?=Tem a certeza?
|
Are you sure?=Tem a certeza?
|
||||||
Insert a name for the new section=Insira o nome da nova secção
|
Insert a name for the new section=Insira o nome da nova secção
|
||||||
Insert a new name for this section=Insira um novo nome para esta secção
|
Insert a new name for this section=Insira um novo nome para esta secção
|
||||||
Yes=Sim
|
Yes=Sim
|
||||||
|
@ -1,132 +1,133 @@
|
|||||||
Settings=Настройки
|
Lng=ru
|
||||||
Configure GMenu2X's options=Изменить настройки GMenu2X
|
Settings=Настройки
|
||||||
Activate Usb on SD=Активировать SD через USB
|
Configure GMenu2X's options=Изменить настройки GMenu2X
|
||||||
Activate Usb on Nand=Активировать NAND через USB
|
Activate Usb on SD=Активировать SD через USB
|
||||||
Info about GMenu2X=Информация о GMenu2X
|
Activate Usb on Nand=Активировать NAND через USB
|
||||||
About=Информация
|
Info about GMenu2X=Информация о GMenu2X
|
||||||
Add section=Добавить секцию
|
About=Информация
|
||||||
Rename section=Переименовать секцию
|
Add section=Добавить секцию
|
||||||
Delete section=Удалить секцию
|
Rename section=Переименовать секцию
|
||||||
Scan for applications and games= Поиск игр и приложений
|
Delete section=Удалить секцию
|
||||||
applications=Приложения
|
Scan for applications and games= Поиск игр и приложений
|
||||||
Edit link=Изменить ссылку
|
applications=Приложения
|
||||||
Title=Заголовок
|
Edit link=Изменить ссылку
|
||||||
Link title=Имя ссылки
|
Title=Заголовок
|
||||||
Description=Описание
|
Link title=Имя ссылки
|
||||||
Link description=Описание ссылки
|
Description=Описание
|
||||||
Section=Секция
|
Link description=Описание ссылки
|
||||||
The section this link belongs to=Секция, которой принадлежит ссылка
|
Section=Секция
|
||||||
Icon=Иконка
|
The section this link belongs to=Секция, которой принадлежит ссылка
|
||||||
Select an icon for the link: $1=Выберите иконку к ссылке: $1
|
Icon=Иконка
|
||||||
Manual=Инструкция
|
Select an icon for the link: $1=Выберите иконку к ссылке: $1
|
||||||
Select a graphic/textual manual or a readme=Выберите текстовую инструкцию
|
Manual=Инструкция
|
||||||
Cpu clock frequency to set when launching this link=Частота CPU при запуске данной ссылки
|
Select a graphic/textual manual or a readme=Выберите текстовую инструкцию
|
||||||
Volume to set for this link=Громкость установленная для этой ссылки
|
Cpu clock frequency to set when launching this link=Частота CPU при запуске данной ссылки
|
||||||
Parameters=Параметры
|
Volume to set for this link=Громкость установленная для этой ссылки
|
||||||
Parameters to pass to the application=Параметры для передачи приложению
|
Parameters=Параметры
|
||||||
Selector Directory=Папка проводника
|
Parameters to pass to the application=Параметры для передачи приложению
|
||||||
Directory to scan for the selector=Папка для сканирования проводником
|
Selector Directory=Папка проводника
|
||||||
Selector Browser=Выбрать браузером
|
Directory to scan for the selector=Папка для сканирования проводником
|
||||||
Allow the selector to change directory=Разрешить проводнику выбирать папку
|
Selector Browser=Выбрать браузером
|
||||||
Selector Filter=Выбрать фильтр
|
Allow the selector to change directory=Разрешить проводнику выбирать папку
|
||||||
Filter for the selector (Separate values with a comma)=Фильтр для проводника
|
Selector Filter=Выбрать фильтр
|
||||||
Selector Screenshots=Обзор скриншотов
|
Filter for the selector (Separate values with a comma)=Фильтр для проводника
|
||||||
Directory of the screenshots for the selector=Папка с скриншотами для проводника
|
Selector Screenshots=Обзор скриншотов
|
||||||
Selector Aliases=Обзор списков с именами
|
Directory of the screenshots for the selector=Папка с скриншотами для проводника
|
||||||
File containing a list of aliases for the selector=Файл, содержащий список имён-псевдонимов
|
Selector Aliases=Обзор списков с именами
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=Перезапуск GMenu2X после завершения выполнения ссылки
|
File containing a list of aliases for the selector=Файл, содержащий список имён-псевдонимов
|
||||||
Don't Leave=Не покидать
|
Explicitly relaunch GMenu2X after this link's execution ends=Перезапуск GMenu2X после завершения выполнения ссылки
|
||||||
Don't quit GMenu2X when launching this link=Не выключать Gmenu2X когда запускается эта ссылка
|
Don't Leave=Не покидать
|
||||||
Save last selection=Сохранять последней выбор
|
Don't quit GMenu2X when launching this link=Не выключать Gmenu2X когда запускается эта ссылка
|
||||||
Save the last selected link and section on exit=Сохранение последней выбранной ссылки и секции при выключение
|
Save last selection=Сохранять последней выбор
|
||||||
Clock for GMenu2X=Частота CPU для Gmenu2X
|
Save the last selected link and section on exit=Сохранение последней выбранной ссылки и секции при выключение
|
||||||
Set the cpu working frequency when running GMenu2X=Устанавливает частоту CPU пока запущен Gmenu2X
|
Clock for GMenu2X=Частота CPU для Gmenu2X
|
||||||
Maximum overclock=Максимальная частота CPU
|
Set the cpu working frequency when running GMenu2X=Устанавливает частоту CPU пока запущен Gmenu2X
|
||||||
Set the maximum overclock for launching links=Максимальная частота CPU для запуска ссылок
|
Maximum overclock=Максимальная частота CPU
|
||||||
Global Volume=Громкость
|
Set the maximum overclock for launching links=Максимальная частота CPU для запуска ссылок
|
||||||
Set the default volume for the gp2x soundcard=Устанавливает громкость для звуковой карты GP2X
|
Global Volume=Громкость
|
||||||
Output logs=Отчёты
|
Set the default volume for the gp2x soundcard=Устанавливает громкость для звуковой карты GP2X
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Создавать отчёты ссылок
|
Output logs=Отчёты
|
||||||
Number of columns=Количество столбцов
|
Logs the output of the links. Use the Log Viewer to read them.=Создавать отчёты ссылок
|
||||||
Set the number of columns of links to display on a page=Установите количество столбцов для отображения на странице
|
Number of columns=Количество столбцов
|
||||||
Number of rows=Количество колонок
|
Set the number of columns of links to display on a page=Установите количество столбцов для отображения на странице
|
||||||
Set the number of rows of links to display on a page=Установите количество колонок для отображения на странице
|
Number of rows=Количество колонок
|
||||||
Top Bar Color=Цвет панели сверху
|
Set the number of rows of links to display on a page=Установите количество колонок для отображения на странице
|
||||||
Color of the top bar=Выберите цвет панели сверху
|
Top Bar=Сверху
|
||||||
Bottom Bar Color=Цвет панели внизу
|
Color of the top bar=Выберите цвет панели сверху
|
||||||
Color of the bottom bar= Выберите цвет панели внизу
|
Bottom Bar=Внизу
|
||||||
Selection Color=Цвет панели выбора
|
Color of the bottom bar= Выберите цвет панели внизу
|
||||||
Color of the selection and other interface details=Выберите цвет панели выбора
|
Selection=Выбора
|
||||||
You should disable Usb Networking to do this.=Вы должны выключить USB Networking чтобы сделать это.
|
Color of the selection and other interface details=Выберите цвет панели выбора
|
||||||
Operation not permitted.=Операция не разрешена.
|
You should disable Usb Networking to do this.=Вы должны выключить USB Networking чтобы сделать это.
|
||||||
Language=Язык
|
Operation not permitted.=Операция не разрешена.
|
||||||
Set the language used by GMenu2X=Выберите язык интерфейса
|
Language=Язык
|
||||||
Increase=Прибавить
|
Set the language used by GMenu2X=Выберите язык интерфейса
|
||||||
Decrease=Убавить
|
Increase=Прибавить
|
||||||
Change color component=Изменить компонент цвета
|
Decrease=Убавить
|
||||||
Increase value=Увеличить значение
|
Change color component=Изменить компонент цвета
|
||||||
Decrease value=Уменьшить значение
|
Increase value=Увеличить значение
|
||||||
Switch=Переключить
|
Decrease value=Уменьшить значение
|
||||||
Change value=Изменить значение
|
Switch=Переключить
|
||||||
Edit=Изменить
|
Change value=Изменить значение
|
||||||
Clear=Очистить
|
Edit=Изменить
|
||||||
Select a directory=Выбрать папку
|
Clear=Очистить
|
||||||
Select a file=Выбрать файл
|
Select a directory=Выбрать папку
|
||||||
Clock (default: 200)=Частота CPU (Стандарт: 200)
|
Select a file=Выбрать файл
|
||||||
Volume (default: -1)=Громкость (Стандарт: -1)
|
Clock (default: 200)=Частота CPU (Стандарт: 200)
|
||||||
Wrapper=Перезапуск
|
Volume (default: -1)=Громкость (Стандарт: -1)
|
||||||
Enter folder=Открыть папку
|
Wrapper=Перезапуск
|
||||||
Confirm=Подтвердить
|
Enter folder=Открыть папку
|
||||||
Enter folder/Confirm=Выбрать папку/подтвердить
|
Confirm=Подтвердить
|
||||||
Up one folder=Назад на одну папку
|
Enter folder/Confirm=Выбрать папку/подтвердить
|
||||||
Select an application=Выберите приложение
|
Up one folder=Назад на одну папку
|
||||||
Space=Пробел
|
Select an application=Выберите приложение
|
||||||
Shift=Shift
|
Space=Пробел
|
||||||
Cancel=Выход
|
Shift=Shift
|
||||||
OK=OK
|
Cancel=Выход
|
||||||
Backspace=Стереть
|
OK=OK
|
||||||
Skin=Скин
|
Backspace=Стереть
|
||||||
Set the skin used by GMenu2X=Выберите скин для GMenu2X
|
Skin=Скин
|
||||||
Add link in $1=Добавить ссылку в $1
|
Set the skin used by GMenu2X=Выберите скин для GMenu2X
|
||||||
Edit $1=Именить $1
|
Add link in $1=Добавить ссылку в $1
|
||||||
Delete $1 link=Удалить ссылку $1
|
Edit $1=Именить $1
|
||||||
Deleting $1=Удаление $1
|
Delete $1 link=Удалить ссылку $1
|
||||||
Are you sure?=Вы уверены?
|
Deleting $1=Удаление $1
|
||||||
Insert a name for the new section=Впишите имя для новой секции
|
Are you sure?=Вы уверены?
|
||||||
Insert a new name for this section=Впишите новое имя для этой секции
|
Insert a name for the new section=Впишите имя для новой секции
|
||||||
Yes=Да
|
Insert a new name for this section=Впишите новое имя для этой секции
|
||||||
No=Нет
|
Yes=Да
|
||||||
You will lose all the links in this section.=Вы потеряете все ссылки в этой секции
|
No=Нет
|
||||||
Exit=Выход
|
You will lose all the links in this section.=Вы потеряете все ссылки в этой секции
|
||||||
Link Scanner=Поиск ссылок
|
Exit=Выход
|
||||||
Scanning SD filesystem...=Сканирование SD...
|
Link Scanner=Поиск ссылок
|
||||||
Scanning NAND filesystem...=Сканирование NAND...
|
Scanning SD filesystem...=Сканирование SD...
|
||||||
$1 files found.=$1 Файлов найдено.
|
Scanning NAND filesystem...=Сканирование NAND...
|
||||||
Creating links...=Создание ссылок...
|
$1 files found.=$1 Файлов найдено.
|
||||||
$1 links created.=$1 ссылок создано.
|
Creating links...=Создание ссылок...
|
||||||
Version $1 (Build date: $2)=Версия $1 (Дата сборки: $2)
|
$1 links created.=$1 ссылок создано.
|
||||||
Log Viewer=Отчёты
|
Version $1 (Build date: $2)=Версия $1 (Дата сборки: $2)
|
||||||
Displays last launched program's output=Отображает последний запущенный отчёт программы
|
Log Viewer=Отчёты
|
||||||
Do you want to delete the log file?=Вы хотите удалить этот отчёт?
|
Displays last launched program's output=Отображает последний запущенный отчёт программы
|
||||||
USB Enabled (SD)=USB включен (SD)
|
Do you want to delete the log file?=Вы хотите удалить этот отчёт?
|
||||||
USB Enabled (Nand)=USB включен (Nand)
|
USB Enabled (SD)=USB включен (SD)
|
||||||
Turn off=Выключить
|
USB Enabled (Nand)=USB включен (Nand)
|
||||||
Launching $1=Запуск $1...
|
Turn off=Выключить
|
||||||
Change page=Изменить страницу
|
Launching $1=Запуск $1...
|
||||||
Page=Страница
|
Change page=Изменить страницу
|
||||||
Scroll=Прокрутка
|
Page=Страница
|
||||||
Untitled=Не названный
|
Scroll=Прокрутка
|
||||||
|
Untitled=Не названный
|
||||||
|
|
||||||
Change GMenu2X wallpaper=Изменить обои Gmenu2X
|
|
||||||
Activate/deactivate tv-out=Активировать/дезактивировать ТВ-выход
|
Change GMenu2X wallpaper=Изменить обои Gmenu2X
|
||||||
Select wallpaper=Выберите обои
|
Activate/deactivate tv-out=Активировать/дезактивировать ТВ-выход
|
||||||
Gamma=Гамма
|
Select wallpaper=Выберите обои
|
||||||
Set gp2x gamma value (default: 10)=Значение гаммы экрана GP2X (стандарт: 10)
|
Gamma=Гамма
|
||||||
Tv-Out encoding=Технология вывода на ТВ
|
Set gp2x gamma value (default: 10)=Значение гаммы экрана GP2X (стандарт: 10)
|
||||||
Encoding of the tv-out signal=Шифровка ТВ сигнала
|
Tv-Out encoding=Технология вывода на ТВ
|
||||||
Tweak RAM Timings=Изменение параметров RAM
|
Encoding of the tv-out signal=Шифровка ТВ сигнала
|
||||||
This usually speeds up the application at the cost of stability=Это обычно убыстряет приложение
|
Tweak RAM Timings=Изменение параметров RAM
|
||||||
Gamma (default: 0)=Гамма (стандарт: 0)
|
This usually speeds up the application at the cost of stability=Это обычно убыстряет приложение
|
||||||
Gamma value to set when launching this link=Значение гаммы при запуске этой ссылки
|
Gamma (default: 0)=Гамма (стандарт: 0)
|
||||||
|
Gamma value to set when launching this link=Значение гаммы при запуске этой ссылки
|
||||||
|
|
||||||
|
@ -1,137 +1,138 @@
|
|||||||
Settings=Nastavenia
|
Lng=sk
|
||||||
Configure GMenu2X's options=Nastaviť voľby pre GMenu2X
|
Settings=Nastavenia
|
||||||
Activate Usb on SD=Aktivovať USB pre SD kartu
|
Configure GMenu2X's options=Nastaviť voľby pre GMenu2X
|
||||||
Activate Usb on Nand=Aktivovať USB pre pamäť Nand
|
Activate Usb on SD=Aktivovať USB pre SD kartu
|
||||||
Info about GMenu2X=Informácie o GMenu2X
|
Activate Usb on Nand=Aktivovať USB pre pamäť Nand
|
||||||
About=O programe
|
Info about GMenu2X=Informácie o GMenu2X
|
||||||
Add section=Pridať sekciu
|
About=O programe
|
||||||
Rename section=Premenovať sekciu
|
Add section=Pridať sekciu
|
||||||
Delete section=Vymazať sekciu
|
Rename section=Premenovať sekciu
|
||||||
Scan for applications and games= Hľadať aplikácie a hry
|
Delete section=Vymazať sekciu
|
||||||
applications=aplikácie
|
Scan for applications and games= Hľadať aplikácie a hry
|
||||||
Edit link=Upraviť odkaz
|
applications=aplikácie
|
||||||
Title=Názov
|
Edit link=Upraviť odkaz
|
||||||
Link title=Názov odkazu
|
Title=Názov
|
||||||
Description=Popis
|
Link title=Názov odkazu
|
||||||
Link description=Popis pre odkaz
|
Description=Popis
|
||||||
Section=Sekcia
|
Link description=Popis pre odkaz
|
||||||
The section this link belongs to=Sekcia, do ktorej patrí tento odkaz
|
Section=Sekcia
|
||||||
Icon=Ikona
|
The section this link belongs to=Sekcia, do ktorej patrí tento odkaz
|
||||||
Select an icon for the link=Vyberte ikonu pre tento odkaz
|
Icon=Ikona
|
||||||
Manual=Návod
|
Select an icon for the link=Vyberte ikonu pre tento odkaz
|
||||||
Select a graphic/textual manual or a readme=Vyberte grafický/textový návod alebo readme
|
Manual=Návod
|
||||||
Cpu clock frequency to set when launching this link=Taktovacia frekvencia procesora, s ktorou bude spustený odkaz
|
Select a graphic/textual manual or a readme=Vyberte grafický/textový návod alebo readme
|
||||||
Volume to set for this link=Nastavenie hlasitosti pre tento odkaz
|
Cpu clock frequency to set when launching this link=Taktovacia frekvencia procesora, s ktorou bude spustený odkaz
|
||||||
Parameters=Parametre
|
Volume to set for this link=Nastavenie hlasitosti pre tento odkaz
|
||||||
Parameters to pass to the application=Parametre, ktoré majú byť predané aplikácii
|
Parameters=Parametre
|
||||||
Selector Directory=Adresár selektora
|
Parameters to pass to the application=Parametre, ktoré majú byť predané aplikácii
|
||||||
Directory to scan for the selector=Adresár, v ktorom má byť hľadaný selektor
|
Selector Directory=Adresár selektora
|
||||||
Selector Browser=Prehliadač selektora
|
Directory to scan for the selector=Adresár, v ktorom má byť hľadaný selektor
|
||||||
Allow the selector to change directory=Povolí selektorovi zmeniť adresár
|
Selector Browser=Prehliadač selektora
|
||||||
Selector Filter=Filter pre selektor
|
Allow the selector to change directory=Povolí selektorovi zmeniť adresár
|
||||||
Filter for the selector (Separate values with a comma)=Filter pre selektor (hodnoty oddeľujte čiarkou)
|
Selector Filter=Filter pre selektor
|
||||||
Selector Screenshots=Snímky obrazovky selektora
|
Filter for the selector (Separate values with a comma)=Filter pre selektor (hodnoty oddeľujte čiarkou)
|
||||||
Directory of the screenshots for the selector=Adresár so snímkami obrazovky selektora
|
Selector Screenshots=Snímky obrazovky selektora
|
||||||
Selector Aliases=Aliasy selektora
|
Directory of the screenshots for the selector=Adresár so snímkami obrazovky selektora
|
||||||
File containing a list of aliases for the selector=Súbor obsahujúci zoznam aliasov pre selektor
|
Selector Aliases=Aliasy selektora
|
||||||
Explicitly relaunch GMenu2X after this link's execution ends=Explicitne opätovne spustiť GMenu2X po ukončení spustenia tohto odkazu
|
File containing a list of aliases for the selector=Súbor obsahujúci zoznam aliasov pre selektor
|
||||||
Don't Leave=Neopúšťať
|
Explicitly relaunch GMenu2X after this link's execution ends=Explicitne opätovne spustiť GMenu2X po ukončení spustenia tohto odkazu
|
||||||
Don't quit GMenu2X when launching this link=Neukončovať GMenu2X pri spúšťaní tohto odkazu
|
Don't Leave=Neopúšťať
|
||||||
Save last selection=Ulož posledný výber
|
Don't quit GMenu2X when launching this link=Neukončovať GMenu2X pri spúšťaní tohto odkazu
|
||||||
Save the last selected link and section on exit=Ulož naposledy vybraný odkaz a sekciu pri ukončení
|
Save last selection=Ulož posledný výber
|
||||||
Clock for GMenu2X=Takt. frekvencia pre GMenu2X
|
Save the last selected link and section on exit=Ulož naposledy vybraný odkaz a sekciu pri ukončení
|
||||||
Set the cpu working frequency when running GMenu2X=Nastavte frekvenciu cpu počas behu GMenu2X
|
Clock for GMenu2X=Takt. frekvencia pre GMenu2X
|
||||||
Maximum overclock=Maximálne pretaktovanie
|
Set the cpu working frequency when running GMenu2X=Nastavte frekvenciu cpu počas behu GMenu2X
|
||||||
Set the maximum overclock for launching links=Nastavte maximálne pretaktovanie pre spúšťanie odkazov
|
Maximum overclock=Maximálne pretaktovanie
|
||||||
Global Volume=Globálna hlasitosť
|
Set the maximum overclock for launching links=Nastavte maximálne pretaktovanie pre spúšťanie odkazov
|
||||||
Set the default volume for the gp2x soundcard=Nastavte východziu hlasitosť pre zvukovú kartu gp2x
|
Global Volume=Globálna hlasitosť
|
||||||
Output logs=Výstupné logy
|
Set the default volume for the gp2x soundcard=Nastavte východziu hlasitosť pre zvukovú kartu gp2x
|
||||||
Logs the output of the links. Use the Log Viewer to read them.=Loguje výstup odkazov. Na prezretie použite Log Viewer.
|
Output logs=Výstupné logy
|
||||||
Number of columns=Počet stĺpcov
|
Logs the output of the links. Use the Log Viewer to read them.=Loguje výstup odkazov. Na prezretie použite Log Viewer.
|
||||||
Set the number of columns of links to display on a page=Nastavte počet stĺpcov pre odkazy zobrazené na stránke
|
Number of columns=Počet stĺpcov
|
||||||
Number of rows=Počet riadkov
|
Set the number of columns of links to display on a page=Nastavte počet stĺpcov pre odkazy zobrazené na stránke
|
||||||
Set the number of rows of links to display on a page=Počet riadkov odkazov zobrazených na stránke
|
Number of rows=Počet riadkov
|
||||||
Top Bar Color=Farba hornej lišty
|
Set the number of rows of links to display on a page=Počet riadkov odkazov zobrazených na stránke
|
||||||
Color of the top bar= Farba hornej lišty
|
Top Bar=Hornej lišty
|
||||||
Bottom Bar Color=Farba spodnej lišty
|
Color of the top bar= Farba hornej lišty
|
||||||
Color of the bottom bar=Farba spodnej lišty
|
Bottom Bar=Spodnej lišty
|
||||||
Selection Color=Farba výberu
|
Color of the bottom bar=Farba spodnej lišty
|
||||||
Color of the selection and other interface details=Farba výberu a iných detailov interfacu
|
Selection=Výberu
|
||||||
You should disable Usb Networking to do this.=Pre vykonanie tejto operácie by ste mali deaktivovať Usb sieťovanie.
|
Color of the selection and other interface details=Farba výberu a iných detailov interfacu
|
||||||
Operation not permitted.=Operácia nepovolená.
|
You should disable Usb Networking to do this.=Pre vykonanie tejto operácie by ste mali deaktivovať Usb sieťovanie.
|
||||||
Language=Jazyk
|
Operation not permitted.=Operácia nepovolená.
|
||||||
Set the language used by GMenu2X=Nastavte jazyk pre GMenu2X
|
Language=Jazyk
|
||||||
Increase=Zvýšiť
|
Set the language used by GMenu2X=Nastavte jazyk pre GMenu2X
|
||||||
Decrease=Znížiť
|
Increase=Zvýšiť
|
||||||
Change color component=Zmeniť farebnú zložku
|
Decrease=Znížiť
|
||||||
Increase value=Zvýšiť hodnotu
|
Change color component=Zmeniť farebnú zložku
|
||||||
Decrease value=Znížiť hodnotu
|
Increase value=Zvýšiť hodnotu
|
||||||
Switch=Prepnúť
|
Decrease value=Znížiť hodnotu
|
||||||
Change value=Zmeniť hodnotu
|
Switch=Prepnúť
|
||||||
Edit=Upraviť
|
Change value=Zmeniť hodnotu
|
||||||
Clear=Vyčistiť
|
Edit=Upraviť
|
||||||
Select a directory=Vyberte adresár
|
Clear=Vyčistiť
|
||||||
Select a file=Vyberte súbor
|
Select a directory=Vyberte adresár
|
||||||
Clock (default: 200)=Takt (štandardne: 200)
|
Select a file=Vyberte súbor
|
||||||
Volume (default: -1)=Hlasitosť (štandardne: -1)
|
Clock (default: 200)=Takt (štandardne: 200)
|
||||||
Wrapper=Obaľovač
|
Volume (default: -1)=Hlasitosť (štandardne: -1)
|
||||||
Enter folder=Zadajte priečinok
|
Wrapper=Obaľovač
|
||||||
Confirm=Potvrdiť
|
Enter folder=Zadajte priečinok
|
||||||
Enter folder/Confirm=Zadajte priečinok/Potvrdiť
|
Confirm=Potvrdiť
|
||||||
Up one folder=O jeden priečinok vyššie
|
Enter folder/Confirm=Zadajte priečinok/Potvrdiť
|
||||||
Select an application=Vyberte aplikáciu
|
Up one folder=O jeden priečinok vyššie
|
||||||
Space=Medzera
|
Select an application=Vyberte aplikáciu
|
||||||
Shift=Shift
|
Space=Medzera
|
||||||
Cancel=Zrušiť
|
Shift=Shift
|
||||||
OK=OK
|
Cancel=Zrušiť
|
||||||
Backspace=Backspace
|
OK=OK
|
||||||
Skin=Skin
|
Backspace=Backspace
|
||||||
Set the skin used by GMenu2X=Nastavte skin pre GMenu2X
|
Skin=Skin
|
||||||
Add link in $1=Pridať odkaz do $1
|
Set the skin used by GMenu2X=Nastavte skin pre GMenu2X
|
||||||
Edit $1=Upraviť $1
|
Add link in $1=Pridať odkaz do $1
|
||||||
Delete $1 link=Vymazať odkaz na $1
|
Edit $1=Upraviť $1
|
||||||
Deleting $1=Mažem $1
|
Delete $1 link=Vymazať odkaz na $1
|
||||||
Are you sure?=Ste si istý?
|
Deleting $1=Mažem $1
|
||||||
Insert a name for the new section=Zadajte názov novej sekcie
|
Are you sure?=Ste si istý?
|
||||||
Insert a new name for this section=Zadajte nový názov pre túto sekciu
|
Insert a name for the new section=Zadajte názov novej sekcie
|
||||||
Yes=Áno
|
Insert a new name for this section=Zadajte nový názov pre túto sekciu
|
||||||
No=Nie
|
Yes=Áno
|
||||||
You will lose all the links in this section.=Stratíte všetky odkazy v tejto sekcii.
|
No=Nie
|
||||||
Exit=Ukončiť
|
You will lose all the links in this section.=Stratíte všetky odkazy v tejto sekcii.
|
||||||
Link Scanner=Vyhľadávač odkazov
|
Exit=Ukončiť
|
||||||
Scanning SD filesystem...=Prehľadávam súborový systém na SD karte...
|
Link Scanner=Vyhľadávač odkazov
|
||||||
Scanning NAND filesystem...=Prehľadávam súborový systém na pamäti NAND...
|
Scanning SD filesystem...=Prehľadávam súborový systém na SD karte...
|
||||||
$1 files found.=$1 súbor(ov) nájdených.
|
Scanning NAND filesystem...=Prehľadávam súborový systém na pamäti NAND...
|
||||||
Creating links...=Vytváram odkazy...
|
$1 files found.=$1 súbor(ov) nájdených.
|
||||||
$1 links created.=$1 odkazov vytvorených.
|
Creating links...=Vytváram odkazy...
|
||||||
Version $1 (Build date: $2)=Verzia $1 (dátum zostavenia: $2)
|
$1 links created.=$1 odkazov vytvorených.
|
||||||
Log Viewer=Prehliadač log súborov
|
Version $1 (Build date: $2)=Verzia $1 (dátum zostavenia: $2)
|
||||||
Displays last launched program's output=Zobrazuje výstup naposledy spusteného súboru
|
Log Viewer=Prehliadač log súborov
|
||||||
Do you want to delete the log file?=Želáte si vymazať log súbor?
|
Displays last launched program's output=Zobrazuje výstup naposledy spusteného súboru
|
||||||
USB Enabled (SD)=USB aktivované (SD)
|
Do you want to delete the log file?=Želáte si vymazať log súbor?
|
||||||
USB Enabled (Nand)=USB aktivované (Nand)
|
USB Enabled (SD)=USB aktivované (SD)
|
||||||
Turn off=Vypnúť
|
USB Enabled (Nand)=USB aktivované (Nand)
|
||||||
Launching $1=Spúšťam $1
|
Turn off=Vypnúť
|
||||||
Change page=Zmeniť stránku
|
Launching $1=Spúšťam $1
|
||||||
Page=Stránka
|
Change page=Zmeniť stránku
|
||||||
Scroll=Skrolovať
|
Page=Stránka
|
||||||
Untitled=Bez mena
|
Scroll=Skrolovať
|
||||||
Change GMenu2X wallpaper=Zmeniť pozadie GMenu2X
|
Untitled=Bez mena
|
||||||
Activate/deactivate tv-out=Aktivovať/deaktivovať výstup na TV
|
Change GMenu2X wallpaper=Zmeniť pozadie GMenu2X
|
||||||
Select wallpaper=Vyberte pozadie
|
Activate/deactivate tv-out=Aktivovať/deaktivovať výstup na TV
|
||||||
Gamma=Gamma
|
Select wallpaper=Vyberte pozadie
|
||||||
Set gp2x gamma value (default: 10)=Nastavte hodnotu gamma (implic: 10)
|
Gamma=Gamma
|
||||||
Tv-Out encoding=Kódovanie výstupu na TV
|
Set gp2x gamma value (default: 10)=Nastavte hodnotu gamma (implic: 10)
|
||||||
Encoding of the tv-out signal=Kódovanie televízneho signálu
|
Tv-Out encoding=Kódovanie výstupu na TV
|
||||||
Tweak RAM Timings=Upraviť časovanie RAM
|
Encoding of the tv-out signal=Kódovanie televízneho signálu
|
||||||
This usually speeds up the application at the cost of stability=Toto nastavenie zvyčajne zrýchli aplikáciu na úkor stability
|
Tweak RAM Timings=Upraviť časovanie RAM
|
||||||
Gamma (default: 0)=Gamma (implic: 0)
|
This usually speeds up the application at the cost of stability=Toto nastavenie zvyčajne zrýchli aplikáciu na úkor stability
|
||||||
Gamma value to set when launching this link=Hodnota gamma pri spúšťaní tohto odkazu
|
Gamma (default: 0)=Gamma (implic: 0)
|
||||||
Wallpaper=Pozadie
|
Gamma value to set when launching this link=Hodnota gamma pri spúšťaní tohto odkazu
|
||||||
Configure skin=Nastaviť skin
|
Wallpaper=Pozadie
|
||||||
Message Box Color=Farba textového okna
|
Configure skin=Nastaviť skin
|
||||||
Message Box Border Color=Farba okraja textového okna
|
Message Box=Textového okna
|
||||||
Message Box Selection Color=Farba výberu textového okna
|
Message Box Border=Okraja textového okna
|
||||||
Background color of the message box=Farba pozadia textového okna
|
Message Box Selection=Výberu textového okna
|
||||||
Border color of the message box=Farba okraja textového okna
|
Background color of the message box=Farba pozadia textového okna
|
||||||
Color of the selection of the message box=Farba výberu textového okna
|
Border color of the message box=Farba okraja textového okna
|
||||||
|
Color of the selection of the message box=Farba výberu textového okna
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=es
|
||||||
Settings=Ajustes
|
Settings=Ajustes
|
||||||
Configure GMenu2X's options=Configura las opciones de GMenu2X
|
Configure GMenu2X's options=Configura las opciones de GMenu2X
|
||||||
Activate Usb on SD=Activa USB para SD
|
Activate Usb on SD=Activa USB para SD
|
||||||
@ -50,11 +51,11 @@ Number of columns=Número de columnas
|
|||||||
Set the number of columns of links to display on a page=Ajuste el número de columnas de enlaces que mostrar por página
|
Set the number of columns of links to display on a page=Ajuste el número de columnas de enlaces que mostrar por página
|
||||||
Number of rows=Número de líneas
|
Number of rows=Número de líneas
|
||||||
Set the number of rows of links to display on a page=Ajuste el número de líneas de enlaces que mostrar por página
|
Set the number of rows of links to display on a page=Ajuste el número de líneas de enlaces que mostrar por página
|
||||||
Top Bar Color=Color de barra superior
|
Top Bar=Barra superior
|
||||||
Color of the top bar=Color de la barra superior
|
Color of the top bar=Color de la barra superior
|
||||||
Bottom Bar Color=Color de barra inferior
|
Bottom Bar=Barra inferior
|
||||||
Color of the bottom bar=Color de la barra inferior
|
Color of the bottom bar=Color de la barra inferior
|
||||||
Selection Color=Color de selección
|
Selection=Selección
|
||||||
Color of the selection and other interface details=Color de la selección y otros detalles del interfaz
|
Color of the selection and other interface details=Color de la selección y otros detalles del interfaz
|
||||||
You should disable Usb Networking to do this.=Debe desactivar Red por USB para hacer esto.
|
You should disable Usb Networking to do this.=Debe desactivar Red por USB para hacer esto.
|
||||||
Operation not permitted.=Operación no permitida.
|
Operation not permitted.=Operación no permitida.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
Lng=sv
|
||||||
Settings=Inställningar
|
Settings=Inställningar
|
||||||
Configure GMenu2X's options=Konfigurera GMenu2X's inställningar
|
Configure GMenu2X's options=Konfigurera GMenu2X's inställningar
|
||||||
Activate Usb on SD=Aktivera Usb på SD
|
Activate Usb on SD=Aktivera Usb på SD
|
||||||
@ -51,14 +52,14 @@ Number of columns=Antal spalter
|
|||||||
Set the number of columns of links to display on a page=Välj antal spalter med länkar som skall visas per sida
|
Set the number of columns of links to display on a page=Välj antal spalter med länkar som skall visas per sida
|
||||||
Number of rows=Antal rader
|
Number of rows=Antal rader
|
||||||
Set the number of rows of links to display on a page=Välj antal rader med länkar som skall visas per sida
|
Set the number of rows of links to display on a page=Välj antal rader med länkar som skall visas per sida
|
||||||
Top Bar Color=Översta fältets färg
|
Top Bar=Översta fältet
|
||||||
Color of the top bar=Färg på det översta fältet
|
Color of the top bar=Färg på det översta fältet
|
||||||
Bottom Bar Color=Nedersta fältets färg
|
Bottom Bar=Nedersta fältet
|
||||||
Color of the bottom bar=Färg på det nedersta fältet
|
Color of the bottom bar=Färg på det nedersta fältet
|
||||||
Selection Color=Markörfärg
|
Selection=Markör
|
||||||
Color of the selection and other interface details=Färg på markören och andra delar av gränssnittet
|
Color of the selection and other interface details=Färg på markören och andra delar av gränssnittet
|
||||||
You should disable Usb Networking to do this.=Du bör slå av usb-nätverket när du gör detta.
|
You should disable Usb Networking to do this.=Du bör slå av usb-nätverket när du gör detta.
|
||||||
Operation not permitted.=Otillåten användning.
|
Operation not permitted.=Otillåten användning.
|
||||||
Language=Språk
|
Language=Språk
|
||||||
Set the language used by GMenu2X=Ställ in språk för GMenu2X
|
Set the language used by GMenu2X=Ställ in språk för GMenu2X
|
||||||
Increase=Öka
|
Increase=Öka
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
Settings=Ayarlar
|
Lng=tr
|
||||||
|
Settings=Ayarlar
|
||||||
Configure GMenu2X's options=GMenu2X'in ayarlarini degistir
|
Configure GMenu2X's options=GMenu2X'in ayarlarini degistir
|
||||||
Activate Usb on SD=SD Karti için USB baglantisini aktive et
|
Activate Usb on SD=SD Karti için USB baglantisini aktive et
|
||||||
Activate Usb on Nand=Nand Bellegi için USB baglantisini aktive et
|
Activate Usb on Nand=Nand Bellegi için USB baglantisini aktive et
|
||||||
@ -51,11 +52,11 @@ Number of columns=Sütun sayisi
|
|||||||
Set the number of columns of links to display on a page=Bir sayfada gösterilecek sütun sayisini belirleyin
|
Set the number of columns of links to display on a page=Bir sayfada gösterilecek sütun sayisini belirleyin
|
||||||
Number of rows=Satir sayisi
|
Number of rows=Satir sayisi
|
||||||
Set the number of rows of links to display on a page=Bir sayfada gösterilecek satir sayisini belirleyin
|
Set the number of rows of links to display on a page=Bir sayfada gösterilecek satir sayisini belirleyin
|
||||||
Top Bar Color=Baslik çubugunun rengi
|
Top Bar=Baslik çubugunun
|
||||||
Color of the top bar=Baslik çubugunun rengini ve saydamligini belirler
|
Color of the top bar=Baslik çubugunun rengini ve saydamligini belirler
|
||||||
Bottom Bar Color=Statü çubugunun rengi
|
Bottom Bar=Statü çubugunun
|
||||||
Color of the bottom bar=Statü çubugunun rengini ve saydamligini belirler
|
Color of the bottom bar=Statü çubugunun rengini ve saydamligini belirler
|
||||||
Selection Color=Seçim rengi
|
Selection=Seçim
|
||||||
Color of the selection and other interface details=Seçim rengi ve baska arabirim detaylarinin rengi
|
Color of the selection and other interface details=Seçim rengi ve baska arabirim detaylarinin rengi
|
||||||
You should disable Usb Networking to do this.=Bunu yapmadan önce USB-Ag destegini kapatmalisiniz.
|
You should disable Usb Networking to do this.=Bunu yapmadan önce USB-Ag destegini kapatmalisiniz.
|
||||||
Operation not permitted.=Isleme izin verilmedi.
|
Operation not permitted.=Isleme izin verilmedi.
|
||||||
|
2108
src/FastDelegate.h
@ -1,6 +1,6 @@
|
|||||||
bin_PROGRAMS = gmenu2x
|
bin_PROGRAMS = gmenu2x
|
||||||
|
|
||||||
gmenu2x_SOURCES = asfont.cpp button.cpp cpu.cpp dirdialog.cpp filedialog.cpp \
|
gmenu2x_SOURCES = font.cpp cpu.cpp dirdialog.cpp filedialog.cpp \
|
||||||
filelister.cpp gmenu2x.cpp iconbutton.cpp imagedialog.cpp inputdialog.cpp \
|
filelister.cpp gmenu2x.cpp iconbutton.cpp imagedialog.cpp inputdialog.cpp \
|
||||||
inputmanager.cpp linkapp.cpp link.cpp \
|
inputmanager.cpp linkapp.cpp link.cpp \
|
||||||
menu.cpp menusettingbool.cpp menusetting.cpp menusettingdir.cpp \
|
menu.cpp menusettingbool.cpp menusetting.cpp menusettingdir.cpp \
|
||||||
@ -12,9 +12,10 @@ gmenu2x_SOURCES = asfont.cpp button.cpp cpu.cpp dirdialog.cpp filedialog.cpp \
|
|||||||
textdialog.cpp textmanualdialog.cpp touchscreen.cpp translator.cpp \
|
textdialog.cpp textmanualdialog.cpp touchscreen.cpp translator.cpp \
|
||||||
utilities.cpp wallpaperdialog.cpp \
|
utilities.cpp wallpaperdialog.cpp \
|
||||||
browsedialog.cpp buttonbox.cpp dialog.cpp \
|
browsedialog.cpp buttonbox.cpp dialog.cpp \
|
||||||
imageio.cpp powersaver.cpp
|
imageio.cpp powersaver.cpp monitor.cpp mediamonitor.cpp clock.cpp \
|
||||||
|
helppopup.cpp contextmenu.cpp background.cpp battery.cpp
|
||||||
|
|
||||||
noinst_HEADERS = asfont.h button.h cpu.h dirdialog.h FastDelegate.h \
|
noinst_HEADERS = font.h cpu.h dirdialog.h \
|
||||||
filedialog.h filelister.h gmenu2x.h gp2x.h iconbutton.h imagedialog.h \
|
filedialog.h filelister.h gmenu2x.h gp2x.h iconbutton.h imagedialog.h \
|
||||||
inputdialog.h inputmanager.h linkapp.h link.h \
|
inputdialog.h inputmanager.h linkapp.h link.h \
|
||||||
menu.h menusettingbool.h menusettingdir.h \
|
menu.h menusettingbool.h menusettingdir.h \
|
||||||
@ -25,12 +26,13 @@ noinst_HEADERS = asfont.h button.h cpu.h dirdialog.h FastDelegate.h \
|
|||||||
surfacecollection.h surface.h textdialog.h textmanualdialog.h \
|
surfacecollection.h surface.h textdialog.h textmanualdialog.h \
|
||||||
touchscreen.h translator.h utilities.h wallpaperdialog.h \
|
touchscreen.h translator.h utilities.h wallpaperdialog.h \
|
||||||
browsedialog.h buttonbox.h dialog.h \
|
browsedialog.h buttonbox.h dialog.h \
|
||||||
imageio.h powersaver.h
|
imageio.h powersaver.h monitor.h mediamonitor.h clock.h \
|
||||||
|
layer.h helppopup.h contextmenu.h background.h battery.h
|
||||||
|
|
||||||
AM_CFLAGS= @CFLAGS@ @SDL_CFLAGS@
|
AM_CFLAGS= @CFLAGS@ @SDL_CFLAGS@
|
||||||
|
|
||||||
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@ \
|
AM_CXXFLAGS = @CXXFLAGS@ @SDL_CFLAGS@ \
|
||||||
-fno-exceptions \
|
-fno-exceptions \
|
||||||
-Wall -Wextra -Wundef -Wunused-macros
|
-Wall -Wextra -Wundef -Wunused-macros -std=c++11
|
||||||
|
|
||||||
gmenu2x_LDADD = @LIBS@ @SDL_LIBS@
|
gmenu2x_LDADD = @LIBS@ @SDL_LIBS@
|
||||||
|
200
src/asfont.cpp
@ -1,200 +0,0 @@
|
|||||||
#include "asfont.h"
|
|
||||||
#include "imageio.h"
|
|
||||||
#include "surface.h"
|
|
||||||
#include "utilities.h"
|
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cassert>
|
|
||||||
#include <cstring>
|
|
||||||
|
|
||||||
#define SFONTPLUS_CHARSET "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~¡¿ÀÁÈÉÌÍÒÓÙÚÝÄËÏÖÜŸÂÊÎÔÛÅÃÕÑÆÇČĎĚĽĹŇÔŘŔŠŤŮŽàáèéìíòóùúýäëïöüÿâêîôûåãõñæçčďěľĺňôřŕšťžůðßÐÞþАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюяØøąćęłńśżźĄĆĘŁŃŚŻŹ"
|
|
||||||
|
|
||||||
ASFont::ASFont(const std::string &fontImagePath)
|
|
||||||
: characters(SFONTPLUS_CHARSET)
|
|
||||||
{
|
|
||||||
surface = loadPNG(fontImagePath);
|
|
||||||
if (!surface) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
assert(surface->format->BytesPerPixel == 4);
|
|
||||||
|
|
||||||
SDL_LockSurface(surface);
|
|
||||||
|
|
||||||
// Determine character widths.
|
|
||||||
Uint32 pink = SDL_MapRGB(surface->format, 255, 0, 255);
|
|
||||||
Uint32 *topLine = static_cast<Uint32 *>(surface->pixels);
|
|
||||||
const unsigned width = surface->w;
|
|
||||||
unsigned x = 0;
|
|
||||||
unsigned c = 0;
|
|
||||||
while (c < characters.length()) {
|
|
||||||
while (x < width && topLine[x] != pink) x++;
|
|
||||||
unsigned startx = x;
|
|
||||||
x++;
|
|
||||||
while (x < width && topLine[x] == pink) x++;
|
|
||||||
|
|
||||||
charpos.push_back(startx);
|
|
||||||
charpos.push_back(x);
|
|
||||||
if (c > 0 && utf8Code(characters[c - 1])) {
|
|
||||||
// UTF8 character
|
|
||||||
charpos.push_back(startx);
|
|
||||||
charpos.push_back(x);
|
|
||||||
c++;
|
|
||||||
}
|
|
||||||
c++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Scan height of "0" glyph.
|
|
||||||
std::string::size_type pos = characters.find("0") * 2;
|
|
||||||
SDL_Rect srcrect = {
|
|
||||||
static_cast<Sint16>(charpos[pos]),
|
|
||||||
1,
|
|
||||||
static_cast<Uint16>(charpos[pos + 2] - charpos[pos]),
|
|
||||||
static_cast<Uint16>(surface->h - 1)
|
|
||||||
};
|
|
||||||
const unsigned alphaMask = surface->format->Amask;
|
|
||||||
unsigned y = srcrect.h;
|
|
||||||
bool nonTransparentFound = false;
|
|
||||||
while (!nonTransparentFound && y-- > 0) {
|
|
||||||
Uint32 *line = reinterpret_cast<Uint32 *>(
|
|
||||||
reinterpret_cast<Uint8 *>(surface->pixels)
|
|
||||||
+ (srcrect.y + y) * surface->pitch
|
|
||||||
);
|
|
||||||
for (unsigned x = 0; !nonTransparentFound && x < srcrect.w; x++) {
|
|
||||||
nonTransparentFound = (line[srcrect.x + x] & alphaMask) != 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
lineHeight = y + 1;
|
|
||||||
|
|
||||||
SDL_UnlockSurface(surface);
|
|
||||||
}
|
|
||||||
|
|
||||||
ASFont::~ASFont() {
|
|
||||||
if (surface) {
|
|
||||||
SDL_FreeSurface(surface);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ASFont::utf8Code(unsigned char c) {
|
|
||||||
return (c>=194 && c<=198) || c==208 || c==209;
|
|
||||||
//return c>=194;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ASFont::writeLine(Surface *s, const std::string &text, int x, int y) {
|
|
||||||
if (text.empty()) return;
|
|
||||||
|
|
||||||
std::string::size_type pos;
|
|
||||||
SDL_Rect srcrect, dstrect;
|
|
||||||
|
|
||||||
// these values won't change in the loop
|
|
||||||
srcrect.y = 1;
|
|
||||||
dstrect.y = y;
|
|
||||||
srcrect.h = dstrect.h = surface->h-1;
|
|
||||||
|
|
||||||
for(unsigned i=0; i<text.length() && x<surface->w; i++) {
|
|
||||||
//Utf8 characters
|
|
||||||
if (utf8Code(text[i]) && i+1<text.length()) {
|
|
||||||
pos = characters.find(text.substr(i,2));
|
|
||||||
i++;
|
|
||||||
} else
|
|
||||||
pos = characters.find(text[i]);
|
|
||||||
if (pos == std::string::npos) {
|
|
||||||
x += charpos[2]-charpos[1];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
pos *= 2;
|
|
||||||
|
|
||||||
srcrect.x = charpos[pos];
|
|
||||||
srcrect.w = charpos[pos+2] - charpos[pos];
|
|
||||||
dstrect.x = x - charpos[pos+1] + charpos[pos];
|
|
||||||
|
|
||||||
SDL_BlitSurface(surface, &srcrect, s->raw, &dstrect);
|
|
||||||
|
|
||||||
x += charpos[pos+2] - charpos[pos+1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int ASFont::getTextWidth(const char *text) {
|
|
||||||
int maxWidth = 0, width = 0;
|
|
||||||
while (char ch = *text++) {
|
|
||||||
if (ch == '\n') {
|
|
||||||
// New line.
|
|
||||||
maxWidth = std::max(width, maxWidth);
|
|
||||||
width = 0;
|
|
||||||
} else {
|
|
||||||
std::string::size_type pos;
|
|
||||||
if (utf8Code(ch) && *text) {
|
|
||||||
// 2-byte character.
|
|
||||||
pos = characters.find(std::string(&text[-1], 2));
|
|
||||||
text++;
|
|
||||||
} else {
|
|
||||||
// 1-byte character.
|
|
||||||
pos = characters.find(ch);
|
|
||||||
}
|
|
||||||
if (pos == std::string::npos) {
|
|
||||||
pos = 0;
|
|
||||||
}
|
|
||||||
width += charpos[pos * 2 + 2] - charpos[pos * 2 + 1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return std::max(width, maxWidth);
|
|
||||||
}
|
|
||||||
|
|
||||||
int ASFont::getTextWidth(const std::string& text) {
|
|
||||||
return getTextWidth(text.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
void ASFont::writeLine(Surface* surface, const std::string& text, int x, int y, HAlign halign) {
|
|
||||||
switch (halign) {
|
|
||||||
case HAlignLeft:
|
|
||||||
break;
|
|
||||||
case HAlignCenter:
|
|
||||||
x -= getTextWidth(text) / 2;
|
|
||||||
break;
|
|
||||||
case HAlignRight:
|
|
||||||
x -= getTextWidth(text);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
writeLine(surface, text, x, y);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ASFont::writeLine(Surface* surface, const std::string& text, int x, int y, HAlign halign, VAlign valign) {
|
|
||||||
switch (valign) {
|
|
||||||
case VAlignTop:
|
|
||||||
break;
|
|
||||||
case VAlignMiddle:
|
|
||||||
y -= getHeight() / 2;
|
|
||||||
break;
|
|
||||||
case VAlignBottom:
|
|
||||||
y -= getHeight();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
writeLine(surface, text, x, y, halign);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ASFont::writeLine(Surface* surface, const std::vector<std::string> &text, int x, int y, HAlign halign, VAlign valign) {
|
|
||||||
switch (valign) {
|
|
||||||
case VAlignTop:
|
|
||||||
break;
|
|
||||||
case VAlignMiddle:
|
|
||||||
y -= (getHeight() / 2) * text.size();
|
|
||||||
break;
|
|
||||||
case VAlignBottom:
|
|
||||||
y -= getHeight() * text.size();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (std::vector<std::string>::const_iterator it = text.begin(); it != text.end(); ++it) {
|
|
||||||
write(surface, *it, x, y, halign);
|
|
||||||
y += getHeight();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ASFont::write(Surface* surface, const std::string& text, int x, int y, HAlign halign, VAlign valign) {
|
|
||||||
if (text.find("\n", 0) != std::string::npos) {
|
|
||||||
std::vector<std::string> textArr;
|
|
||||||
split(textArr, text, "\n");
|
|
||||||
writeLine(surface, textArr, x, y, halign, valign);
|
|
||||||
} else
|
|
||||||
writeLine(surface, text, x, y, halign, valign);
|
|
||||||
}
|
|
49
src/asfont.h
@ -1,49 +0,0 @@
|
|||||||
// Based on SFont by Karl Bartel.
|
|
||||||
// Adapted to C++ by Massimiliano Torromeo.
|
|
||||||
// Refactored by Maarten ter Huurne and several others (see git log).
|
|
||||||
// License: GPL version 2 or later.
|
|
||||||
|
|
||||||
#ifndef ASFONT_H
|
|
||||||
#define ASFONT_H
|
|
||||||
|
|
||||||
#include <SDL.h>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
class Surface;
|
|
||||||
|
|
||||||
class ASFont {
|
|
||||||
public:
|
|
||||||
enum HAlign { HAlignLeft, HAlignRight, HAlignCenter };
|
|
||||||
enum VAlign { VAlignTop, VAlignBottom, VAlignMiddle };
|
|
||||||
|
|
||||||
ASFont(const std::string &font);
|
|
||||||
~ASFont();
|
|
||||||
|
|
||||||
bool utf8Code(unsigned char c);
|
|
||||||
|
|
||||||
int getTextWidth(const char *text);
|
|
||||||
int getTextWidth(const std::string& text);
|
|
||||||
|
|
||||||
int getHeight() {
|
|
||||||
return surface->h - 1;
|
|
||||||
}
|
|
||||||
int getLineHeight() {
|
|
||||||
return lineHeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
void write(Surface* surface, const std::string& text, int x, int y, HAlign halign = HAlignLeft, VAlign valign = VAlignTop);
|
|
||||||
|
|
||||||
private:
|
|
||||||
void writeLine(Surface *surface, const std::string &text, int x, int y);
|
|
||||||
void writeLine(Surface *surface, const std::string &text, int x, int y, HAlign halign);
|
|
||||||
void writeLine(Surface *surface, const std::string &text, int x, int y, HAlign halign, VAlign valign);
|
|
||||||
void writeLine(Surface *surface, const std::vector<std::string> &text, int x, int y, HAlign halign, VAlign valign);
|
|
||||||
|
|
||||||
SDL_Surface *surface;
|
|
||||||
std::vector<Uint16> charpos;
|
|
||||||
std::string characters;
|
|
||||||
int lineHeight;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* ASFONT_H */
|
|
43
src/background.cpp
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
// Various authors.
|
||||||
|
// License: GPL version 2 or later.
|
||||||
|
|
||||||
|
#include "background.h"
|
||||||
|
|
||||||
|
#include "gmenu2x.h"
|
||||||
|
|
||||||
|
|
||||||
|
Background::Background(GMenu2X &gmenu2x)
|
||||||
|
: gmenu2x(gmenu2x)
|
||||||
|
, battery(gmenu2x.sc)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void Background::paint(Surface &s) {
|
||||||
|
Font &font = *gmenu2x.font;
|
||||||
|
SurfaceCollection &sc = gmenu2x.sc;
|
||||||
|
|
||||||
|
sc["bgmain"]->blit(&s, 0, 0);
|
||||||
|
|
||||||
|
s.write(&font, clock.getTime(),
|
||||||
|
s.width() / 2, gmenu2x.bottomBarTextY,
|
||||||
|
Font::HAlignCenter, Font::VAlignMiddle);
|
||||||
|
|
||||||
|
battery.getIcon().blit(&s, s.width() - 19, gmenu2x.bottomBarIconY);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Background::handleButtonPress(InputManager::Button button) {
|
||||||
|
switch (button) {
|
||||||
|
case InputManager::CANCEL:
|
||||||
|
gmenu2x.showHelpPopup();
|
||||||
|
return true;
|
||||||
|
case InputManager::SETTINGS:
|
||||||
|
gmenu2x.showSettings();
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Background::handleTouchscreen(Touchscreen &/*ts*/) {
|
||||||
|
return false;
|
||||||
|
}
|
32
src/background.h
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
// Various authors.
|
||||||
|
// License: GPL version 2 or later.
|
||||||
|
|
||||||
|
#ifndef BACKGROUND_H
|
||||||
|
#define BACKGROUND_H
|
||||||
|
|
||||||
|
#include "battery.h"
|
||||||
|
#include "clock.h"
|
||||||
|
#include "layer.h"
|
||||||
|
|
||||||
|
class GMenu2X;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The backmost layer.
|
||||||
|
*/
|
||||||
|
class Background : public Layer {
|
||||||
|
public:
|
||||||
|
Background(GMenu2X &gmenu2x);
|
||||||
|
|
||||||
|
// Layer implementation:
|
||||||
|
virtual void paint(Surface &s);
|
||||||
|
virtual bool handleButtonPress(InputManager::Button button);
|
||||||
|
virtual bool handleTouchscreen(Touchscreen &ts);
|
||||||
|
|
||||||
|
private:
|
||||||
|
GMenu2X &gmenu2x;
|
||||||
|
Battery battery;
|
||||||
|
Clock clock;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BACKGROUND_H
|
78
src/battery.cpp
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
#include "battery.h"
|
||||||
|
|
||||||
|
#include "surfacecollection.h"
|
||||||
|
|
||||||
|
#include <SDL.h>
|
||||||
|
#include <cstdio>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads the current battery state and returns a number representing its level
|
||||||
|
* of charge.
|
||||||
|
* @return A number representing battery charge: 0 means fully discharged,
|
||||||
|
* 5 means fully charged, 6 represents running on external power.
|
||||||
|
*/
|
||||||
|
static unsigned short getBatteryLevel()
|
||||||
|
{
|
||||||
|
FILE *batteryHandle = NULL, *usbHandle = NULL;
|
||||||
|
|
||||||
|
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0) || defined(PLATFORM_NANONOTE)
|
||||||
|
usbHandle = fopen("/sys/class/power_supply/usb/online", "r");
|
||||||
|
#endif
|
||||||
|
if (usbHandle) {
|
||||||
|
int usbval = 0;
|
||||||
|
fscanf(usbHandle, "%d", &usbval);
|
||||||
|
fclose(usbHandle);
|
||||||
|
if (usbval == 1)
|
||||||
|
return 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(PLATFORM_A320) || defined(PLATFORM_GCW0) || defined(PLATFORM_NANONOTE)
|
||||||
|
batteryHandle = fopen("/sys/class/power_supply/battery/capacity", "r");
|
||||||
|
#endif
|
||||||
|
if (batteryHandle) {
|
||||||
|
int battval = 0;
|
||||||
|
fscanf(batteryHandle, "%d", &battval);
|
||||||
|
fclose(batteryHandle);
|
||||||
|
|
||||||
|
if (battval>90) return 5;
|
||||||
|
if (battval>70) return 4;
|
||||||
|
if (battval>50) return 3;
|
||||||
|
if (battval>30) return 2;
|
||||||
|
if (battval>10) return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Battery::Battery(SurfaceCollection &sc_)
|
||||||
|
: sc(sc_)
|
||||||
|
{
|
||||||
|
lastUpdate = SDL_GetTicks();
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
const Surface &Battery::getIcon()
|
||||||
|
{
|
||||||
|
// Check battery status every 60 seconds.
|
||||||
|
unsigned int now = SDL_GetTicks();
|
||||||
|
if (now - lastUpdate >= 60000) {
|
||||||
|
lastUpdate = now;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
return *sc.skinRes(iconPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Battery::update()
|
||||||
|
{
|
||||||
|
unsigned short battlevel = getBatteryLevel();
|
||||||
|
if (battlevel > 5) {
|
||||||
|
iconPath = "imgs/battery/ac.png";
|
||||||
|
} else {
|
||||||
|
std::stringstream ss;
|
||||||
|
ss << "imgs/battery/" << battlevel << ".png";
|
||||||
|
ss >> iconPath;
|
||||||
|
}
|
||||||
|
}
|
30
src/battery.h
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#ifndef __BATTERY_H__
|
||||||
|
#define __BATTERY_H__
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
class Surface;
|
||||||
|
class SurfaceCollection;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keeps track of the battery status.
|
||||||
|
*/
|
||||||
|
class Battery {
|
||||||
|
public:
|
||||||
|
Battery(SurfaceCollection &sc);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the icon that reflects the current battery status.
|
||||||
|
*/
|
||||||
|
const Surface &getIcon();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void update();
|
||||||
|
|
||||||
|
SurfaceCollection ≻
|
||||||
|
std::string iconPath;
|
||||||
|
unsigned int lastUpdate;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* __BATTERY_H__ */
|
@ -1,12 +1,11 @@
|
|||||||
#include "browsedialog.h"
|
#include "browsedialog.h"
|
||||||
|
|
||||||
#include "FastDelegate.h"
|
|
||||||
#include "filelister.h"
|
#include "filelister.h"
|
||||||
#include "gmenu2x.h"
|
#include "gmenu2x.h"
|
||||||
#include "iconbutton.h"
|
#include "iconbutton.h"
|
||||||
|
#include "surface.h"
|
||||||
#include "utilities.h"
|
#include "utilities.h"
|
||||||
|
|
||||||
using namespace fastdelegate;
|
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
BrowseDialog::BrowseDialog(
|
BrowseDialog::BrowseDialog(
|
||||||
@ -23,19 +22,19 @@ BrowseDialog::BrowseDialog(
|
|||||||
|
|
||||||
buttonBox.add(new IconButton(gmenu2x, ts, "skin:imgs/buttons/left.png"));
|
buttonBox.add(new IconButton(gmenu2x, ts, "skin:imgs/buttons/left.png"));
|
||||||
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/cancel.png", gmenu2x->tr["Up one folder"]);
|
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/cancel.png", gmenu2x->tr["Up one folder"]);
|
||||||
btn->setAction(MakeDelegate(this, &BrowseDialog::directoryUp));
|
btn->setAction(BIND(&BrowseDialog::directoryUp));
|
||||||
buttonBox.add(btn);
|
buttonBox.add(btn);
|
||||||
|
|
||||||
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/accept.png", gmenu2x->tr["Enter folder"]);
|
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/accept.png", gmenu2x->tr["Enter folder"]);
|
||||||
btn->setAction(MakeDelegate(this, &BrowseDialog::directoryEnter));
|
btn->setAction(BIND(&BrowseDialog::directoryEnter));
|
||||||
buttonBox.add(btn);
|
buttonBox.add(btn);
|
||||||
|
|
||||||
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/start.png", gmenu2x->tr["Confirm"]);
|
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/start.png", gmenu2x->tr["Confirm"]);
|
||||||
btn->setAction(MakeDelegate(this, &BrowseDialog::confirm));
|
btn->setAction(BIND(&BrowseDialog::confirm));
|
||||||
buttonBox.add(btn);
|
buttonBox.add(btn);
|
||||||
|
|
||||||
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/select.png", gmenu2x->tr["Exit"]);
|
btn = new IconButton(gmenu2x, ts, "skin:imgs/buttons/select.png", gmenu2x->tr["Exit"]);
|
||||||
btn->setAction(MakeDelegate(this, &BrowseDialog::quit));
|
btn->setAction(BIND(&BrowseDialog::quit));
|
||||||
buttonBox.add(btn);
|
buttonBox.add(btn);
|
||||||
|
|
||||||
iconGoUp = gmenu2x->sc.skinRes("imgs/go-up.png");
|
iconGoUp = gmenu2x->sc.skinRes("imgs/go-up.png");
|
||||||
@ -53,7 +52,8 @@ bool BrowseDialog::exec()
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
string path = fl->getPath();
|
string path = fl->getPath();
|
||||||
if (path.empty() || !fileExists(path) || path.compare(0, CARD_ROOT_LEN, CARD_ROOT) != 0)
|
if (path.empty() || !fileExists(path) || path.compare(0,
|
||||||
|
strlen(CARD_ROOT), CARD_ROOT) != 0)
|
||||||
setPath(CARD_ROOT);
|
setPath(CARD_ROOT);
|
||||||
|
|
||||||
fl->browse();
|
fl->browse();
|
||||||
@ -270,7 +270,7 @@ void BrowseDialog::paint()
|
|||||||
}
|
}
|
||||||
icon->blit(gmenu2x->s, 5, offsetY);
|
icon->blit(gmenu2x->s, 5, offsetY);
|
||||||
gmenu2x->s->write(gmenu2x->font, (*fl)[i], 24, offsetY + 8,
|
gmenu2x->s->write(gmenu2x->font, (*fl)[i], 24, offsetY + 8,
|
||||||
ASFont::HAlignLeft, ASFont::VAlignMiddle);
|
Font::HAlignLeft, Font::VAlignMiddle);
|
||||||
|
|
||||||
if (ts.available() && ts.pressed()
|
if (ts.available() && ts.pressed()
|
||||||
&& ts.inRect(touchRect.x, offsetY + 3, touchRect.w, rowHeight)) {
|
&& ts.inRect(touchRect.x, offsetY + 3, touchRect.w, rowHeight)) {
|
||||||
@ -282,7 +282,6 @@ void BrowseDialog::paint()
|
|||||||
}
|
}
|
||||||
gmenu2x->s->clearClipRect();
|
gmenu2x->s->clearClipRect();
|
||||||
|
|
||||||
gmenu2x->drawScrollBar(
|
gmenu2x->drawScrollBar(numRows,fl->size(), firstElement);
|
||||||
numRows,fl->size(), firstElement, clipRect.y, clipRect.h);
|
|
||||||
gmenu2x->s->flip();
|
gmenu2x->s->flip();
|
||||||
}
|
}
|
||||||
|
@ -1,69 +0,0 @@
|
|||||||
#include "button.h"
|
|
||||||
#include "gmenu2x.h"
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
using namespace fastdelegate;
|
|
||||||
|
|
||||||
Button::Button(Touchscreen &ts_, bool doubleClick_)
|
|
||||||
: ts(ts_)
|
|
||||||
, action(MakeDelegate(this, &Button::voidAction))
|
|
||||||
, rect((SDL_Rect) { 0, 0, 0, 0 })
|
|
||||||
, doubleClick(doubleClick_)
|
|
||||||
, lastTick(0)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void Button::paint() {
|
|
||||||
if (ts.inRect(rect))
|
|
||||||
if (!paintHover()) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Button::paintHover() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Button::isPressed() {
|
|
||||||
return ts.pressed() && ts.inRect(rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Button::isReleased() {
|
|
||||||
return ts.released() && ts.inRect(rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Button::handleTS() {
|
|
||||||
if (isReleased()) {
|
|
||||||
if (doubleClick) {
|
|
||||||
int tickNow = SDL_GetTicks();
|
|
||||||
if (tickNow - lastTick < 400)
|
|
||||||
exec();
|
|
||||||
lastTick = tickNow;
|
|
||||||
} else {
|
|
||||||
exec();
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Button::exec() {
|
|
||||||
ts.setHandled();
|
|
||||||
action();
|
|
||||||
}
|
|
||||||
|
|
||||||
SDL_Rect Button::getRect() {
|
|
||||||
return rect;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Button::setSize(int w, int h) {
|
|
||||||
rect.w = w;
|
|
||||||
rect.h = h;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Button::setPosition(int x, int y) {
|
|
||||||
rect.x = x;
|
|
||||||
rect.y = y;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Button::setAction(ButtonAction action) {
|
|
||||||
this->action = action;
|
|
||||||
}
|
|
59
src/button.h
@ -1,59 +0,0 @@
|
|||||||
/***************************************************************************
|
|
||||||
* Copyright (C) 2006 by Massimiliano Torromeo *
|
|
||||||
* massimiliano.torromeo@gmail.com *
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU General Public License as published by *
|
|
||||||
* the Free Software Foundation; either version 2 of the License, or *
|
|
||||||
* (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
* This program is distributed in the hope that it will be useful, *
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
||||||
* GNU General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU General Public License *
|
|
||||||
* along with this program; if not, write to the *
|
|
||||||
* Free Software Foundation, Inc., *
|
|
||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
#ifndef BUTTON_H
|
|
||||||
#define BUTTON_H
|
|
||||||
|
|
||||||
#include "FastDelegate.h"
|
|
||||||
|
|
||||||
#include <SDL.h>
|
|
||||||
|
|
||||||
typedef fastdelegate::FastDelegate0<> ButtonAction;
|
|
||||||
class Touchscreen;
|
|
||||||
|
|
||||||
class Button {
|
|
||||||
protected:
|
|
||||||
Touchscreen &ts;
|
|
||||||
ButtonAction action;
|
|
||||||
SDL_Rect rect;
|
|
||||||
bool doubleClick;
|
|
||||||
int lastTick;
|
|
||||||
|
|
||||||
public:
|
|
||||||
Button(Touchscreen &ts, bool doubleClick = false);
|
|
||||||
virtual ~Button() {};
|
|
||||||
|
|
||||||
SDL_Rect getRect();
|
|
||||||
void setSize(int w, int h);
|
|
||||||
virtual void setPosition(int x, int y);
|
|
||||||
|
|
||||||
virtual void paint();
|
|
||||||
virtual bool paintHover();
|
|
||||||
|
|
||||||
bool isPressed();
|
|
||||||
bool isReleased();
|
|
||||||
bool handleTS();
|
|
||||||
|
|
||||||
void exec();
|
|
||||||
void voidAction() {};
|
|
||||||
void setAction(ButtonAction action);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // BUTTON_H
|
|
@ -1,9 +1,8 @@
|
|||||||
|
|
||||||
#include "button.h"
|
|
||||||
#include "gmenu2x.h"
|
|
||||||
|
|
||||||
#include "buttonbox.h"
|
#include "buttonbox.h"
|
||||||
|
|
||||||
|
#include "gmenu2x.h"
|
||||||
|
#include "iconbutton.h"
|
||||||
|
|
||||||
ButtonBox::ButtonBox(GMenu2X *gmenu2x) : gmenu2x(gmenu2x)
|
ButtonBox::ButtonBox(GMenu2X *gmenu2x) : gmenu2x(gmenu2x)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -13,7 +12,7 @@ ButtonBox::~ButtonBox()
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ButtonBox::add(Button *button)
|
void ButtonBox::add(IconButton *button)
|
||||||
{
|
{
|
||||||
buttons.push_back(button);
|
buttons.push_back(button);
|
||||||
}
|
}
|
||||||
@ -25,12 +24,12 @@ void ButtonBox::clear()
|
|||||||
|
|
||||||
void ButtonBox::paint(unsigned int posX)
|
void ButtonBox::paint(unsigned int posX)
|
||||||
{
|
{
|
||||||
for (ButtonList::const_iterator it = buttons.begin(); it != buttons.end(); ++it)
|
for (auto button : buttons)
|
||||||
posX = gmenu2x->drawButton(*it, posX);
|
posX = gmenu2x->drawButton(button, posX);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ButtonBox::handleTS()
|
void ButtonBox::handleTS()
|
||||||
{
|
{
|
||||||
for (ButtonList::iterator it = buttons.begin(); it != buttons.end(); ++it)
|
for (auto button : buttons)
|
||||||
(*it)->handleTS();
|
button->handleTS();
|
||||||
}
|
}
|
||||||
|