wineesd.drv: Remove unused WinMM driver.
This commit is contained in:
parent
2fae117e0c
commit
3b16f46794
|
@ -628,9 +628,6 @@ OSS4INCL
|
|||
ALSALIBS
|
||||
GSTREAMER_INCL
|
||||
GSTREAMER_LIBS
|
||||
ESDLIBS
|
||||
ESDINCL
|
||||
ESDCONFIG
|
||||
LIBGETTEXTPO
|
||||
ZLIB
|
||||
FREETYPEINCL
|
||||
|
@ -783,7 +780,6 @@ with_cms
|
|||
with_coreaudio
|
||||
with_cups
|
||||
with_curses
|
||||
with_esd
|
||||
with_fontconfig
|
||||
with_freetype
|
||||
with_gettextpo
|
||||
|
@ -1474,7 +1470,6 @@ Optional Packages:
|
|||
--without-coreaudio do not use the CoreAudio sound support
|
||||
--without-cups do not use CUPS
|
||||
--without-curses do not use (n)curses
|
||||
--without-esd do not use the EsounD sound support
|
||||
--without-fontconfig do not use fontconfig
|
||||
--without-freetype do not use the FreeType library
|
||||
--without-gettextpo do not use the GetTextPO library
|
||||
|
@ -2554,12 +2549,6 @@ if test "${with_curses+set}" = set; then :
|
|||
fi
|
||||
|
||||
|
||||
# Check whether --with-esd was given.
|
||||
if test "${with_esd+set}" = set; then :
|
||||
withval=$with_esd;
|
||||
fi
|
||||
|
||||
|
||||
# Check whether --with-fontconfig was given.
|
||||
if test "${with_fontconfig+set}" = set; then :
|
||||
withval=$with_fontconfig; if test "x$withval" = "xno"; then ac_cv_header_fontconfig_fontconfig_h=no; fi
|
||||
|
@ -10524,114 +10513,6 @@ esac
|
|||
fi
|
||||
fi
|
||||
|
||||
if test "x$with_esd" != xno
|
||||
then
|
||||
save_CFLAGS="$CFLAGS"
|
||||
# Extract the first word of "esd-config", so it can be a program name with args.
|
||||
set dummy esd-config; ac_word=$2
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||
$as_echo_n "checking for $ac_word... " >&6; }
|
||||
if ${ac_cv_path_ESDCONFIG+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
case $ESDCONFIG in
|
||||
[\\/]* | ?:[\\/]*)
|
||||
ac_cv_path_ESDCONFIG="$ESDCONFIG" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
||||
ac_cv_path_ESDCONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
test -z "$ac_cv_path_ESDCONFIG" && ac_cv_path_ESDCONFIG="no"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
ESDCONFIG=$ac_cv_path_ESDCONFIG
|
||||
if test -n "$ESDCONFIG"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ESDCONFIG" >&5
|
||||
$as_echo "$ESDCONFIG" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
if test "x$ESDCONFIG" != "xno"
|
||||
then
|
||||
ac_esd_incl=""
|
||||
for i in `$ESDCONFIG --cflags`
|
||||
do
|
||||
case "$i" in
|
||||
-I*) ac_esd_incl="$ac_esd_incl $i";;
|
||||
esac
|
||||
done
|
||||
ac_esd_libs=`$ESDCONFIG --libs`
|
||||
CFLAGS="$CFLAGS $ac_esd_incl"
|
||||
fi
|
||||
ac_esd_libs=${ac_esd_libs:-"-lesd"}
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "esd.h" "ac_cv_header_esd_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_esd_h" = xyes; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for esd_open_sound in -lesd" >&5
|
||||
$as_echo_n "checking for esd_open_sound in -lesd... " >&6; }
|
||||
if ${ac_cv_lib_esd_esd_open_sound+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
LIBS="-lesd $ac_esd_libs $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
/* Override any GCC internal prototype to avoid an error.
|
||||
Use char because int might match the return type of a GCC
|
||||
builtin and then its argument prototype would still apply. */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
char esd_open_sound ();
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return esd_open_sound ();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_link "$LINENO"; then :
|
||||
ac_cv_lib_esd_esd_open_sound=yes
|
||||
else
|
||||
ac_cv_lib_esd_esd_open_sound=no
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
LIBS=$ac_check_lib_save_LIBS
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_esd_esd_open_sound" >&5
|
||||
$as_echo "$ac_cv_lib_esd_esd_open_sound" >&6; }
|
||||
if test "x$ac_cv_lib_esd_esd_open_sound" = xyes; then :
|
||||
ESDINCL="$ac_esd_incl"
|
||||
|
||||
ESDLIBS="$ac_esd_libs"
|
||||
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
|
||||
CFLAGS="$save_CFLAGS"
|
||||
fi
|
||||
|
||||
if test "x$with_gstreamer" != "xno"
|
||||
then
|
||||
ac_save_CPPFLAGS="$CPPFLAGS"
|
||||
|
@ -11924,14 +11805,13 @@ fi
|
|||
|
||||
test -n "$ALSALIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
|
||||
test -n "$COREAUDIO" || enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
|
||||
test -n "$ESDLIBS" || enable_wineesd_drv=${enable_wineesd_drv:-no}
|
||||
test -n "$ac_cv_lib_soname_jack" || enable_winejack_drv=${enable_winejack_drv:-no}
|
||||
test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes || enable_wineoss_drv=${enable_wineoss_drv:-no}
|
||||
test "$ac_cv_header_linux_joystick_h" = "yes" || enable_winejoystick_drv=${enable_winejoystick_drv:-no}
|
||||
|
||||
if test "x$ALSALIBS$COREAUDIOLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \
|
||||
if test "x$ALSALIBS$COREAUDIOLIBS$ac_cv_lib_soname_jack" = "x" -a \
|
||||
"x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes -a \
|
||||
"x$with_alsa$with_coreaudio$with_esd$with_jack$with_oss" != xnonononono
|
||||
"x$with_alsa$with_coreaudio$with_jack$with_oss" != xnononono
|
||||
then
|
||||
as_fn_append wine_warnings "|No sound system was found. Windows applications will be silent."
|
||||
fi
|
||||
|
@ -15335,7 +15215,6 @@ wine_fn_config_dll winealsa.drv enable_winealsa_drv
|
|||
wine_fn_config_dll winecoreaudio.drv enable_winecoreaudio_drv
|
||||
wine_fn_config_lib winecrt0
|
||||
wine_fn_config_dll wined3d enable_wined3d implib
|
||||
wine_fn_config_dll wineesd.drv enable_wineesd_drv
|
||||
wine_fn_config_dll winegstreamer enable_winegstreamer
|
||||
wine_fn_config_dll winejack.drv enable_winejack_drv
|
||||
wine_fn_config_dll winejoystick.drv enable_winejoystick_drv
|
||||
|
|
33
configure.ac
33
configure.ac
|
@ -42,7 +42,6 @@ AC_ARG_WITH(coreaudio, AS_HELP_STRING([--without-coreaudio],[do not use the Core
|
|||
AC_ARG_WITH(cups, AS_HELP_STRING([--without-cups],[do not use CUPS]))
|
||||
AC_ARG_WITH(curses, AS_HELP_STRING([--without-curses],[do not use (n)curses]),
|
||||
[if test "x$withval" = "xno"; then ac_cv_header_ncurses_h=no; ac_cv_header_curses_h=no; fi])
|
||||
AC_ARG_WITH(esd, AS_HELP_STRING([--without-esd],[do not use the EsounD sound support]))
|
||||
AC_ARG_WITH(fontconfig,AS_HELP_STRING([--without-fontconfig],[do not use fontconfig]),
|
||||
[if test "x$withval" = "xno"; then ac_cv_header_fontconfig_fontconfig_h=no; fi])
|
||||
AC_ARG_WITH(freetype, AS_HELP_STRING([--without-freetype],[do not use the FreeType library]))
|
||||
|
@ -1439,32 +1438,6 @@ then
|
|||
WINE_WARNING_WITH(gettextpo,[test "x$LIBGETTEXTPO" = "x"],[GetText ${notice_platform}development files not found (or too old). Internationalization won't be fully supported.])
|
||||
fi
|
||||
|
||||
dnl **** Check for EsounD ****
|
||||
if test "x$with_esd" != xno
|
||||
then
|
||||
save_CFLAGS="$CFLAGS"
|
||||
AC_PATH_PROG(ESDCONFIG, esd-config, no)
|
||||
if test "x$ESDCONFIG" != "xno"
|
||||
then
|
||||
ac_esd_incl=""
|
||||
for i in `$ESDCONFIG --cflags`
|
||||
do
|
||||
case "$i" in
|
||||
-I*) ac_esd_incl="$ac_esd_incl $i";;
|
||||
esac
|
||||
done
|
||||
ac_esd_libs=`$ESDCONFIG --libs`
|
||||
CFLAGS="$CFLAGS $ac_esd_incl"
|
||||
fi
|
||||
ac_esd_libs=${ac_esd_libs:-"-lesd"}
|
||||
AC_CHECK_HEADER(esd.h,
|
||||
[AC_CHECK_LIB(esd,esd_open_sound,
|
||||
[AC_SUBST(ESDINCL, "$ac_esd_incl")
|
||||
AC_SUBST(ESDLIBS, "$ac_esd_libs")],,
|
||||
[$ac_esd_libs])])
|
||||
CFLAGS="$save_CFLAGS"
|
||||
fi
|
||||
|
||||
dnl **** Check for gstreamer ****
|
||||
if test "x$with_gstreamer" != "xno"
|
||||
then
|
||||
|
@ -1672,15 +1645,14 @@ WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.
|
|||
dnl **** Disable unsupported winmm drivers ****
|
||||
test -n "$ALSALIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
|
||||
test -n "$COREAUDIO" || enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
|
||||
test -n "$ESDLIBS" || enable_wineesd_drv=${enable_wineesd_drv:-no}
|
||||
test -n "$ac_cv_lib_soname_jack" || enable_winejack_drv=${enable_winejack_drv:-no}
|
||||
test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes || enable_wineoss_drv=${enable_wineoss_drv:-no}
|
||||
test "$ac_cv_header_linux_joystick_h" = "yes" || enable_winejoystick_drv=${enable_winejoystick_drv:-no}
|
||||
|
||||
dnl **** Check for any sound system ****
|
||||
if test "x$ALSALIBS$COREAUDIOLIBS$ESDLIBS$ac_cv_lib_soname_jack" = "x" -a \
|
||||
if test "x$ALSALIBS$COREAUDIOLIBS$ac_cv_lib_soname_jack" = "x" -a \
|
||||
"x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes -a \
|
||||
"x$with_alsa$with_coreaudio$with_esd$with_jack$with_oss" != xnonononono
|
||||
"x$with_alsa$with_coreaudio$with_jack$with_oss" != xnononono
|
||||
then
|
||||
WINE_WARNING([No sound system was found. Windows applications will be silent.])
|
||||
fi
|
||||
|
@ -2862,7 +2834,6 @@ WINE_CONFIG_DLL(winealsa.drv)
|
|||
WINE_CONFIG_DLL(winecoreaudio.drv)
|
||||
WINE_CONFIG_LIB(winecrt0)
|
||||
WINE_CONFIG_DLL(wined3d,,[implib])
|
||||
WINE_CONFIG_DLL(wineesd.drv)
|
||||
WINE_CONFIG_DLL(winegstreamer)
|
||||
WINE_CONFIG_DLL(winejack.drv)
|
||||
WINE_CONFIG_DLL(winejoystick.drv)
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
MODULE = wineesd.drv
|
||||
IMPORTS = dxguid uuid winmm user32
|
||||
EXTRAINCL = @ESDINCL@
|
||||
EXTRALIBS = @ESDLIBS@
|
||||
|
||||
C_SRCS = \
|
||||
audio.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
File diff suppressed because it is too large
Load Diff
|
@ -1,3 +0,0 @@
|
|||
@ stdcall -private DriverProc(long long long long long) ESD_DriverProc
|
||||
@ stdcall -private wodMessage(long long long long long) ESD_wodMessage
|
||||
@ stdcall -private widMessage(long long long long long) ESD_widMessage
|
|
@ -37,7 +37,7 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(winmm);
|
||||
|
||||
/* Default set of drivers to be loaded */
|
||||
#define WINE_DEFAULT_WINMM_DRIVER "alsa,oss,coreaudio,esd"
|
||||
#define WINE_DEFAULT_WINMM_DRIVER "alsa,oss,coreaudio"
|
||||
|
||||
/* each known type of driver has an instance of this structure */
|
||||
typedef struct tagWINE_LLTYPE {
|
||||
|
|
92
po/ar.po
92
po/ar.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -10117,192 +10117,188 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "احفظ &ك..."
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "الم&حتويات"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "احفظ &ك..."
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "احفظ &ك..."
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "اختر ال&كل\tCtrl+A"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "احفظ &ك..."
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "احفظ &ك..."
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/bg.po
92
po/bg.po
|
@ -168,7 +168,7 @@ msgstr "Отметки"
|
|||
msgid "System Path"
|
||||
msgstr "Системен път"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10350,54 +10350,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Couldn't open %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sound Drivers"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Devices"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Devices"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Devices"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Devices"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Devices"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Devices"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10407,142 +10403,142 @@ msgstr ""
|
|||
"\n"
|
||||
"Remove \"%s\" from registry?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "&Копирай фона"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "&Копирай фона"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "Превърти тук"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "Постави като &фон на работния плот"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Маркирай &всичко"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "&Копирай фона"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "&Копирай фона"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Приложения"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Control Panel"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/ca.po
92
po/ca.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -10007,187 +10007,183 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "Seleccionar &tot el text"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Seleccionar &tot el text"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/cs.po
92
po/cs.po
|
@ -181,7 +181,7 @@ msgstr "Oblíbené"
|
|||
msgid "System Path"
|
||||
msgstr "Systémový adresář"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10799,54 +10799,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Ovladač ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Ovladač EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Ovladač OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Ovladač JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Ovladač CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Nemohu otevřít %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Ovladače zvuku"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Zařízení Wave Výstup"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Zařízení Wave Vstup"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Zařízení MIDI Výstup"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Zařízení MIDI Vstup"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Zařízení Aux"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Zařízení Míchání"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10856,142 +10852,142 @@ msgstr ""
|
|||
"\n"
|
||||
"Odstranit “%s” z registru?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Varování"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Pozadí ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Písmo ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Pozadí menu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Písmo menu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Rolovací pruh"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Pozadí výběru"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Písmo výběru"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Pozadí tipu"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Písmo tipu"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Pozadí okna"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Písmo okna"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Pozadí titulku aktivního okna"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Písmo titulku aktivního okna"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Pozadí titulku neaktivného okna"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Písmo titulku neaktivního okna"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Programy"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "Písmo okna"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
#, fuzzy
|
||||
msgid "Active Border"
|
||||
msgstr "Pozadí titulku aktivního okna"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
#, fuzzy
|
||||
msgid "Inactive Border"
|
||||
msgstr "Pozadí titulku neaktivného okna"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Pozadí ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
#, fuzzy
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Písmo ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
#, fuzzy
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Pozadí ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Písmo ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
#, fuzzy
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Pozadí ovládacích prvků"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Pozadí titulku aktivního okna"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
#, fuzzy
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Pozadí titulku neaktivného okna"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
#, fuzzy
|
||||
msgid "Menu Bar"
|
||||
msgstr "Pozadí menu"
|
||||
|
|
92
po/da.po
92
po/da.po
|
@ -183,7 +183,7 @@ msgstr "Mine favoriter"
|
|||
msgid "System Path"
|
||||
msgstr "System sti"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10859,54 +10859,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA-driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD-driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS-driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK-driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio-driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Kunne ikke åbne %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "lyddrivere"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Lyd ud enheder"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Lyd ind enheder"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI ud enheder"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI ind enheder"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux enheder"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixerenheder"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10916,131 +10912,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Fjern %s fra registrering databasen?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Controls baggrund"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Controls tekst"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menubaggrund"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menutekst"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Scrollbar"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Markeret baggrund"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Markeret tekst"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Baggrund i værktøjstip"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Tekst i værktøjstip"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "vinduesbaggrund"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "vinduestekst"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktiv titellinie"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktiv titeltekst"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inaktiv titellinie"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inaktiv titeltekst"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Meldingsvinduestekst"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Arbejdsområde i program"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Vinduesramme"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktiv kant"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inaktiv kant"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controls skygge"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grå tekst"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Markeret controls"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls mørk skygge"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controls lys"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Baggrund for skiftende controls"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Markeret element"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient for aktiv titellinie"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient for Inaktiv titellinie"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Markeret menu"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menulinie"
|
||||
|
||||
|
|
92
po/de.po
92
po/de.po
|
@ -177,7 +177,7 @@ msgstr "Meine Favoriten"
|
|||
msgid "System Path"
|
||||
msgstr "System Ordner"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10817,54 +10817,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA-Treiber"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD-Treiber"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS-Treiber"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK-Treiber"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio-Treiber"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Konnte %s nicht öffnen!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sound_Treiber"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave-Ausgabe-Geräte"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave-Eingabe-Geräte"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI-Ausgabe-Geräte"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI-Eingabe-Geräte"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux-Geräte"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer-Geräte"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10874,131 +10870,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Soll „%s“ aus der Registry entfernt werden?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Steuerelementhintergrund"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Steuerelementtext"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menühintergrund"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menütext"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Bildlaufleiste"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Auswahlhintergrund"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Auswahltext"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip-Hintergrund"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip-Text"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fensterhintergrund"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Fenstertext"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktive Titelleiste"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktiver Titelleistentext"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inaktive Titelleiste"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inaktiver Titelleistentext"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Message Box Text"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Anwendungsarbeitsplatz"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Fensterrahmen"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktiver Rand"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inaktiver Rand"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Steuerelementschatten"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grauer Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Steuerelementhervorhebung"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Dunkler Steuerelementschatten"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Steuerelementerhellung"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Alternativer Steuerelementhintergrund"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Heiß verfolgtes Element"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient der aktiven Titelleiste"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient der inaktiven Titelleiste"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menühervorhebung"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menütitelleiste"
|
||||
|
||||
|
|
92
po/el.po
92
po/el.po
|
@ -163,7 +163,7 @@ msgstr "Τα Αγαπημένα μου"
|
|||
msgid "System Path"
|
||||
msgstr "System Path"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10145,187 +10145,183 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "&Περιεχόμενα"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Επιλογές"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/en.po
92
po/en.po
|
@ -163,7 +163,7 @@ msgstr "My Favourites"
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
@ -10358,185 +10358,181 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Couldn't open %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Devices"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Devices"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Controls Background"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Controls Text"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menu Background"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menu Text"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Scrollbar"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Selection Background"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Selection Text"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip Background"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip Text"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Window Background"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Window Text"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Active Title Bar"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Active Title Text"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inactive Title Bar"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inactive Title Text"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Message Box Text"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Application Workspace"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Window Frame"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Active Border"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inactive Border"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controls Shadow"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grey Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Controls Highlight"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls Dark Shadow"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controls Light"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Controls Alternate Background"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Active Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Inactive Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu Highlight"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menu Bar"
|
||||
|
||||
|
|
92
po/en_US.po
92
po/en_US.po
|
@ -167,7 +167,7 @@ msgstr "My Favorites"
|
|||
msgid "System Path"
|
||||
msgstr "System Path"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
@ -10506,54 +10506,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Couldn't open %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sound Drivers"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Devices"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Devices"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Devices"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Devices"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Devices"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Devices"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10563,131 +10559,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Controls Background"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Controls Text"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menu Background"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menu Text"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Scrollbar"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Selection Background"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Selection Text"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip Background"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip Text"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Window Background"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Window Text"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Active Title Bar"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Active Title Text"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inactive Title Bar"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inactive Title Text"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Message Box Text"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Application Workspace"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Window Frame"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Active Border"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inactive Border"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controls Shadow"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Gray Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Controls Highlight"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls Dark Shadow"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controls Light"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Controls Alternate Background"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Active Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Inactive Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu Highlight"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menu Bar"
|
||||
|
||||
|
|
92
po/eo.po
92
po/eo.po
|
@ -168,7 +168,7 @@ msgstr "Miaj Favoritaj"
|
|||
msgid "System Path"
|
||||
msgstr "Sistemvojo"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10318,194 +10318,190 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "Control Panel"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Control Panel"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "&Ruliøu"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Elektu"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
#, fuzzy
|
||||
msgid "Window Text"
|
||||
msgstr "&Aløustigu la fenestron"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Se&n titolstango"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Wine Programa Malinstalilo"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "&Aløustigu la fenestron"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Control Panel"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/es.po
92
po/es.po
|
@ -177,7 +177,7 @@ msgstr "Mis Favoritos"
|
|||
msgid "System Path"
|
||||
msgstr "Ruta del sistema"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -11043,54 +11043,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Controlador ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Controlador EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Controlador OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Controlador JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Controlador CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "¡No se ha podido abrir %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Controladores de sonido"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dispositivos de salida de onda"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dispositivos de entrada de onda"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Dispositivos de salida MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Dispositivos de entrada MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Dispositivos auxiliares"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Dispositivos mezcladores"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -11100,131 +11096,131 @@ msgstr ""
|
|||
"\n"
|
||||
"¿Eliminar \"%s\" del registro?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Advertencia"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Fondo del control"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Texto del control"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Fondo del menú"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Texto del menú"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Barra de desplazamiento"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Fondo de la selección"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Texto de la selección"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Fondo del consejo"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Texto del consejo"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fondo de la ventana"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Texto de la ventana"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Barra de título activa"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Texto de barra de título activa"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Barra de título inactiva"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Texto de barra de título inactiva"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Texto de cuadro de diálogo"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Entorno de trabajo de la aplicación"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Recuadro de la ventana"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Borde activo"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Borde inactivo"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Sombra del control"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Texto en gris"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Resaltado del control"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Sombra oscura del control"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Parte iluminada del control"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Fondo alternativo del control"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Elemento resaltado"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradiente barra título activa"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradiente barra título inactiva"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Resaltado del menú"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Barra de menú"
|
||||
|
||||
|
|
92
po/fa.po
92
po/fa.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -10120,192 +10120,188 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "ذخیره &به نام..."
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "&محتویات"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "ذخیره &به نام..."
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "ذخیره &به نام..."
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "انتخاب &همه\tCtrl+A"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ذخیره &به نام..."
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "ذخیره &به نام..."
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/fi.po
92
po/fi.po
|
@ -167,7 +167,7 @@ msgstr "Suosikit"
|
|||
msgid "System Path"
|
||||
msgstr "Järjestelmäkansio"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10433,54 +10433,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Couldn't open %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sound Drivers"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Devices"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Devices"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Devices"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Devices"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Devices"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Devices"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10490,143 +10486,143 @@ msgstr ""
|
|||
"\n"
|
||||
"Remove \"%s\" from registry?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "&Kopioi Tausta"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Hallinta"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "&Kopioi Tausta"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "Vieritä Tänne"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "&Aseta Taustaksi"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "&Valitse Kaikki"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "&Kopioi Tausta"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "&Kopioi Tausta"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "&Ilman otsikkopalkkia"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Valinnat"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Ohjauspaneeli"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Hallinta"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/fr.po
92
po/fr.po
|
@ -167,7 +167,7 @@ msgstr "Mes favoris"
|
|||
msgid "System Path"
|
||||
msgstr "Chemin système (path)"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10623,56 +10623,52 @@ msgid "ALSA Driver"
|
|||
msgstr "Pilote ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Pilote EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Pilote OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Pilote JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Pilote CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Impossible d'ouvrir %s !"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Pilotes audio"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
#, fuzzy
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Périphériques de sortie Wave"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
#, fuzzy
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Périphériques d'entrée Wave"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Périphériques de sortie MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Périphériques d'entrée MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Périphériques Aux"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Périphériques de mixage"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10682,131 +10678,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Souhaitez-vous supprimer « %s » de la base de registre ?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Attention"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Contrôle l'arrière-plan"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Contrôle le texte"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Arrière-plan du menu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Texte du menu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Barre de défilement"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Arrière-plan de la sélection"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Texte de la sélection"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Arrière-plan de l'infobulle"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Texte de l'infobulle"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Arrière-plan de la fenêtre"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Texte de la fenêtre"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Barre de titre active"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Texte de la barre de titre active"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Barre de titre inactive"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Texte de la barre de titre inactive"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Texte des boîtes à messages"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Espace de travail de l'application"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Cadre de la fenêtre"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Bordure active"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Bordure inactive"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Ombre des contrôles"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Texte gris"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Surbrillance des contrôles"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Ombre sombre des contrôles"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Lumière des contrôles"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Arrière-plan alternatif des contrôles"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Élément actif"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Dégradé de la barre de titre active"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Dégradé de la barre de titre inactive"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Surbrillance du menu"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Barre de menu"
|
||||
|
||||
|
|
93
po/he.po
93
po/he.po
|
@ -167,7 +167,7 @@ msgstr "המועדפים שלי"
|
|||
msgid "System Path"
|
||||
msgstr "נתיב המערכת"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10669,65 +10669,60 @@ msgstr "מנהל התקן ALSA"
|
|||
|
||||
#: winecfg.rc:101
|
||||
#, fuzzy
|
||||
msgid "EsounD Driver"
|
||||
msgstr "מנהל התקן EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
#, fuzzy
|
||||
msgid "OSS Driver"
|
||||
msgstr "מנהל התקן OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
#, fuzzy
|
||||
msgid "JACK Driver"
|
||||
msgstr "מנהל התקן JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
#, fuzzy
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "מנהל התקן CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
#, fuzzy
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "לא ניתן לפתוח את %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
#, fuzzy
|
||||
msgid "Sound Drivers"
|
||||
msgstr "מנהלי התקני שמע"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
#, fuzzy
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "התקני פלט Wave"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
#, fuzzy
|
||||
msgid "Wave In Devices"
|
||||
msgstr "התקני קלט Wave"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
#, fuzzy
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "התקני פלט MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
#, fuzzy
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "התקני קלט MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
#, fuzzy
|
||||
msgid "Aux Devices"
|
||||
msgstr "התקנים חיצוניים"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
#, fuzzy
|
||||
msgid "Mixer Devices"
|
||||
msgstr "התקני ערבול"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
|
@ -10738,162 +10733,162 @@ msgstr ""
|
|||
"\n"
|
||||
"האם למחוק את '%s' מרישום המערכת?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
#, fuzzy
|
||||
msgid "Warning"
|
||||
msgstr "אזהרה"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "רקע הפקדים"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "טקסט הפקדים"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "רקע התפריט"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
#, fuzzy
|
||||
msgid "Menu Text"
|
||||
msgstr "טקסט בתפריט"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "סרגל גלילה"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "רקע הבחירה"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "טקסט הבחירה"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "רקע חלונית העצה"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
#, fuzzy
|
||||
msgid "ToolTip Text"
|
||||
msgstr "טקסט חלונית עצה"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "רקע החלון"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
#, fuzzy
|
||||
msgid "Window Text"
|
||||
msgstr "טקסט בחלון"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "כותרת החלון הפעיל"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
#, fuzzy
|
||||
msgid "Active Title Text"
|
||||
msgstr "טקסט בכותרת של פעיל"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
#, fuzzy
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "סרגל כותרת של בלתי פעיל"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
#, fuzzy
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "טקסט כותרת של בלתי פעיל"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
#, fuzzy
|
||||
msgid "Message Box Text"
|
||||
msgstr "טקסט בתיבת הודעות"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "מרחב היישומים"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "מסגרת החלון"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
#, fuzzy
|
||||
msgid "Active Border"
|
||||
msgstr "מסגרת של פעיל"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
#, fuzzy
|
||||
msgid "Inactive Border"
|
||||
msgstr "מסגרת של בלתי פעיל"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "הצללת הפקדים"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
#, fuzzy
|
||||
msgid "Gray Text"
|
||||
msgstr "טקסט אפור"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
#, fuzzy
|
||||
msgid "Controls Highlight"
|
||||
msgstr "הדגשת פקדים"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
#, fuzzy
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "הפקדים בהצללה כהה"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "פקדים בהירים"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
#, fuzzy
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "צבע רקע הפקדים משתנה"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
#, fuzzy
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "פריט במעקב חם"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "מדרג שורת כותרת של חלון פעיל"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
#, fuzzy
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "מדרג שורת כותרת של חלון בלתי פעיל"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
#, fuzzy
|
||||
msgid "Menu Highlight"
|
||||
msgstr "הדגשה בתפריט"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
#, fuzzy
|
||||
msgid "Menu Bar"
|
||||
msgstr "סרגל תפריטים"
|
||||
|
|
92
po/hi.po
92
po/hi.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9990,186 +9990,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "बिना शीर्षकपट्टी के (&W)"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/hu.po
92
po/hu.po
|
@ -183,7 +183,7 @@ msgstr "Kedvencek"
|
|||
msgid "System Path"
|
||||
msgstr "Rendszer elérési útvonal"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10694,54 +10694,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Couldn't open %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sound Drivers"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Devices"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Devices"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Devices"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Devices"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Devices"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Devices"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10751,146 +10747,146 @@ msgstr ""
|
|||
"\n"
|
||||
"Remove \"%s\" from registry?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "Háttér &másolása"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "&Háttér"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "görgetősáv"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "Beállítás há&ttérként"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Kijelölés &információ"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Háttér &másolása"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "Háttér &másolása"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
#, fuzzy
|
||||
msgid "Window Text"
|
||||
msgstr "&Ablakok"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "címsor"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
#, fuzzy
|
||||
msgid "Message Box Text"
|
||||
msgstr "Üzenet összesítő"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Alkalmazás szabályok"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "&Ablakok"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Vezérlőpult"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
#, fuzzy
|
||||
msgid "Menu Bar"
|
||||
msgstr "menüsor"
|
||||
|
|
92
po/it.po
92
po/it.po
|
@ -175,7 +175,7 @@ msgstr "Preferiti"
|
|||
msgid "System Path"
|
||||
msgstr "Percorso di sistema"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10953,54 +10953,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Driver ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Driver Esound"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Driver OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Driver JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Driver CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Impossibile aprire %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Driver Audio"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dispositivo Wave Out"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dispositivo Wave In"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Dispositivo MIDI Out"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Dispositivo MIDI In"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Dispositivo Aux"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Dispositivo Mixer"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -11010,131 +11006,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Rimuovere '%s' dal registro?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Attenzione"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Controlli - Sfondo"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Controlli - Testo"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menu - Sfondo"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menu - Testo"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Barra di scorrimento"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Selezione - Sfondo"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Selezione - Testo"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip - Sfondo"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip - Testo"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Finestra - Sfondo"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Finestra - Testo"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Titolo attivo - Barra"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Titolo attivo - Testo"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Titolo inattivo - Barra"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Titolo inattivo - Testo"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Testo della casella di Messaggio"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Spazio di lavoro dell'applicazione"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Frame della finestra"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Bordo attivo"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Bordo inattivo"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controlli - Ombre"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Testo disabilitato"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Controlli - Selezione"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controlli - Ombre scure"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controlli - Luce"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Controlli - Sfondo alternativo"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Oggetto Hot Tracked"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Titolo attivo - Gradiente della barra"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Titolo inattivo - Gradiente della barra"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu - Selezione"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menu - Barra"
|
||||
|
||||
|
|
92
po/ja.po
92
po/ja.po
|
@ -167,7 +167,7 @@ msgstr "お気に入り"
|
|||
msgid "System Path"
|
||||
msgstr "システム パス"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr "デスクトップ"
|
||||
|
@ -10513,54 +10513,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA ドライバ"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD ドライバ"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS ドライバ"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK ドライバ"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio ドライバ"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "%sをオープンできません!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "サウンドドライバ"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave 出力デバイス"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave 入力デバイス"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI 出力デバイス"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI 入力デバイス"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "補助デバイス"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "ミキサーデバイス"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10570,131 +10566,131 @@ msgstr ""
|
|||
"\n"
|
||||
"レジストリから \"%s\" を削除しますか?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "コントロールの背景"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "コントロールのテキスト"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "メニューの背景"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "メニューのテキスト"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "スクロールバー"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "選択項目の背景"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "選択項目のテキスト"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ヒントの背景"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ヒントのテキスト"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "ウィンドウの背景"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "ウィンドウのテキスト"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "アクティブ タイトル バー"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "アクティブ タイトルのテキスト"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "非アクティブ タイトル バー"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "非アクティブ タイトルのテキスト"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "メッセージ ボックスのテキスト"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "アプリケーション作業域"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "ウィンドウの境界"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "アクティブ境界"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "非アクティブ境界"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controls Shadow"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Gray Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Controls Highlight"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls Dark Shadow"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controls Light"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Controls Alternate Background"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Active Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Inactive Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu Highlight"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "メニュー バー"
|
||||
|
||||
|
|
92
po/ko.po
92
po/ko.po
|
@ -167,7 +167,7 @@ msgstr "내 즐겨찾기"
|
|||
msgid "System Path"
|
||||
msgstr "시스템 경로"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10469,54 +10469,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA 드라이버"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD 드라이버"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS 드라이버"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK 드라이버"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio 드라이버"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "%s를 열 수 없습니다!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "사운드 드라이버"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave 출력 장치"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave 입력 장치"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI 출력 장치"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI 입력 장치"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux 장치"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer 장치"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10526,131 +10522,131 @@ msgstr ""
|
|||
"\n"
|
||||
" '%s'를 레지스트리에서 지우겠습니까?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "경고"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "컨트롤 배경"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "컨트롤 문자"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "메뉴 배경"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "메뉴 문자"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "목록바"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "선택된 배경"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "선택된 문자"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "도구팁 배경"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "도구팁 문자"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "창 배경"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "창 문자"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "활성된 제목 막대"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "활성된 제목 문자"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "비활성된 제목 막대"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "비활성된 제목 문자"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "메세지 상자 텍스트"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "어플리케이션 작업공간"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "창 프레임"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "활성화된 창틀"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "비 활성화된 창틀"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "컨트롤 그함지"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "회색 문자"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "컨트롤 하이라이트"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "컨트롤 어두운 그림자"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "컨트롤 밝음"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "컨트롤 바뀔때 배경"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "핫 트랙된 아이템"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "활성화된 제목 바 색깔 변화"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "비활성화된 제목바 색깔 변화"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "메뉴 하이라이트"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "메뉴바"
|
||||
|
||||
|
|
92
po/lt.po
92
po/lt.po
|
@ -170,7 +170,7 @@ msgstr "Adresynas"
|
|||
msgid "System Path"
|
||||
msgstr "Sistemos kelias"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10537,54 +10537,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA tvarkyklė"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD tvarkyklė"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS tvarkyklė"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK tvarkyklė"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio tvarkyklė"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Nepavyko atverti %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Garso tvarkyklės"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out įrenginiai"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In įrenginiai"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out įrenginiai"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In įrenginiai"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux įrenginiai"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer įrenginiai"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10594,131 +10590,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Pašalinti „%s“ iš registro?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Įspėjimas"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Valdiklių fonas"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Valdiklių tekstas"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Meniu fonas"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Meniu tekstas"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Slankjuostė"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Žymėjimo fonas"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Žymėjimo tekstas"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Patarimo fonas"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Patarimo tekstas"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Lango fonas"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Lango tekstas"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktyvi lango antraštės juosta"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktyvios lango antraštės tekstas"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Neaktyvi lango antraštės juosta"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Neaktyvios lango antraštės tekstas"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Pranešimo lango tekstas"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Programos erdvė"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Lango rėmelis"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktyvi kraštinė"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Neaktyvi kraštinė"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Valdiklių šešėlis"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Pilkas tekstas"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Valdiklių paryškinimas"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Valdiklių tamsus šešėlis"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Valdiklių šviesumas"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Valdiklių alternatyvus fonas"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Pažymėtas elementas"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Aktyvios lango antraštės gradientas"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Neaktyvios lango antraštės gradientas"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Meniu paryškinimas"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Meniu juosta"
|
||||
|
||||
|
|
92
po/ml.po
92
po/ml.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9990,186 +9990,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "റ്റൈറ്റില്ബാര് _ഇല്ലാതെ"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/nb_NO.po
92
po/nb_NO.po
|
@ -166,7 +166,7 @@ msgstr "Mine favoritter"
|
|||
msgid "System Path"
|
||||
msgstr "Systemsti"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10826,54 +10826,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA-driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD-driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS-driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK-driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio-driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Klarte ikke åpne %s."
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Lyddrivere"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Lyd ut-enheter"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Lyd inn-enheter"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI ut-enheter"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI inn-enheter"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux-enheter"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mikserenheter"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10883,131 +10879,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Fjerne «%s» fra registeret?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Kontrollerbakgrunn"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Kontrollertekst"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menybakgrunn"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menytekst"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Rullefelt"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Bakgrunn for merking"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Merket tekst"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Bakgrunn for verktøytips"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Tekst i verktøytips"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Vindubakgrunn"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Vinduteksts"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktiv tittellinje"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktiv titteltekst"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inaktiv tittellinje"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inaktiv titteltekst"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Meldingsvindutekst"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Arbeidsområde i program"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Visrusramme"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktiv kant"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inaktiv kant"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Kontrollerskygge"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grå tekst"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Merket kontroller"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Mørk skygge i kontroller"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Kontrollerlys"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Bakgrunn for skiftende kontroller"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Merket element"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient for aktiv tittellinje"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient for inaktiv tittellinje"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menymerking"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menylinje"
|
||||
|
||||
|
|
92
po/nl.po
92
po/nl.po
|
@ -170,7 +170,7 @@ msgstr "Mijn Favorieten"
|
|||
msgid "System Path"
|
||||
msgstr "Systeem Pad"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10706,54 +10706,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Stuurprogramma"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Stuurprogramma"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Stuurprogramma"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Stuurprogramma"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Stuurprogramma"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "%s kon niet worden geopend!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Stuurprogramma's voor geluid"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Apparaten"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Apparaten"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Apparaten"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Apparaten"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Apparaten"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Apparaten"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10763,131 +10759,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Verwijder \"%s\" uit het register?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Waarschuwing"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Instellingen Achtergrond"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Instellingen Tekst"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menu Achtergrond"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menu Tekst"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Scrollbalk"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Selectie Achtergrond"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Selectie Tekst"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip Achtergrond"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip Tekst"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Venster Achtergrond"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Venster Tekst"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Actieve Titelbalk"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Actieve Titeltekst"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inactieve Titelbalk"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inactieve Titeltekst"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Meldingsvenster Tekst"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Applicatie Werkruimte"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Vensterraamwerk"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Actieve Rand"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inactieve Rand"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Knopschaduw"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grijze Tekst"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Knoppen Gemarkeerd"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Knoppen Donkere Schaduw"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Knoppen Licht"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Knoppen Alternatieve Achtergrond"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot-Tracked Onderdeel"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Actieve Titelbalk Verloop"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Inactieve Titelbalk Verloop"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu Gemarkeerd"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menubalk"
|
||||
|
||||
|
|
92
po/or.po
92
po/or.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9990,186 +9990,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "ଶୀର୍ଷକ ପଟି ବିନା (&W)"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/pa.po
92
po/pa.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9990,186 +9990,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "ਟਾਈਟਲਬਾਰ ਤੋਂ ਬਿਨਾਂ(&W)"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/pl.po
92
po/pl.po
|
@ -167,7 +167,7 @@ msgstr "Moje Ulubione"
|
|||
msgid "System Path"
|
||||
msgstr "Ścieżka systemowa"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10545,54 +10545,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Sterownik ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Sterownik EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Sterownik OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Sterownik JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Sterownik CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Nie mogę otworzyć %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Sterowniki dźwiękowe"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Urządzenia Wave Out"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Urządzenia Wave In"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Wyjścia MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Wejścia MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Urządzenia Aux"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Miksery"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10602,131 +10598,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Usunąć wpis “%s” z rejestru?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Ostrzeżenie"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Kontrolki - tło"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Kontrolki - tekst"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Tło menu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Tekst menu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Pasek przewijania"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Tło zaznaczonego obszaru"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Zaznaczony tekst"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Tło podpowiedzi"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Tekst podpowiedzi"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Tło okna"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Tekst okna"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Tło nagłówka aktywnego okna"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Tytuł aktywnego okna"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Tło nagłówka nieaktywnego okna"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Tytuł nieaktywnego okna"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Tekst okien komunikatów"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Wnętrze okna aplikacji"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Ramka okna"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Obramowanie aktywnego okna"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Obramowanie nieaktywnego okna"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Kontrolki - cień"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Szary tekst"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Kontrolki - podświetlenie"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Kontrolki - głębszy cień"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Kontrolki - jaśniejszy cień"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Kontrolki - alternatywne tło"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Śledzony element"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient nagłówka aktywnego okna"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient nagłówka nieaktywnego okna"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Podświetlone menu"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Pasek menu"
|
||||
|
||||
|
|
92
po/pt_BR.po
92
po/pt_BR.po
|
@ -172,7 +172,7 @@ msgstr "Favoritos"
|
|||
msgid "System Path"
|
||||
msgstr "Caminho do Sistema"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10907,54 +10907,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Driver ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Driver EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Driver OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Driver JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Driver CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Não foi possível abrir %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Drivers de Som"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dispositivos de Saída Wave"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dispositivos de Entrada Wave"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Dispositivos de Saída MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Dispositivos de Entrada MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Dispositivos Auxiliares"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Dispositivos Misturadores"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10964,131 +10960,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Remover '%s' do registo?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Fundo do Botão"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Texto do Botão"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Fundo do Menu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Texto do Menu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Barra de Rolagem"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Fundo de Seleção"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Texto de Seleção"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Fundo da Dica"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Texto da Dica"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fundo da Janela"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Texto da Janela"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Barra de Título Ativa"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Texto de Título Ativo"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Barra de Título Inativa"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Texto de Título Inativo"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Texto da Caixa de Mensagens"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Área do Aplicativo"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Corpo da Janela"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Borda Ativa"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Borda Inativa"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Sombra dos Botões"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Texto Inativo"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Realce do Botão"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Sombra Escura do Botão"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Luz do Botão"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Fundo Alternativo do Botão"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradiente da Barra Ativa"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradiente da Barra Inativa"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Realce de Menu"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Barra de Menu"
|
||||
|
||||
|
|
92
po/pt_PT.po
92
po/pt_PT.po
|
@ -177,7 +177,7 @@ msgstr "Favoritos"
|
|||
msgid "System Path"
|
||||
msgstr "Localização do Sistema"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10967,54 +10967,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Controlador ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Controlador EsounD"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Controlador OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Controlador JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Controlador CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Não é possível abrir %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Controladores de Som"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dispositivos de Saída Wave"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dispositivos de Entrada Wave"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Dispositivos de Saída MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Dispositivos de Entrada MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Dispositivos Auxiliares"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Dispositivos Misturadores"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -11024,131 +11020,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Remover ?%s? do registo?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Fundo dos Controlos"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Texto dos Controlos"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Fundo do Menu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Texto do Menu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Barra de Rolagem"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Fundo de Selecção"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Texto de Selecção"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Fundo das Dicas"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Texto das Dicas"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fundo das Janelas"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Texto das Janelas"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Barra de Título Activa"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Texto de Título Activo"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Barra de Título Inactiva"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Texto de Título Inactivo"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Texto da Caixa de Mensagem"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Application Workspace"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Window Frame"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Active Border"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inactive Border"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Controls Shadow"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Gray Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Controls Highlight"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls Dark Shadow"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Controls Light"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Controls Alternate Background"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Active Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Inactive Title Bar Gradient"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menu Highlight"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menu Bar"
|
||||
|
||||
|
|
92
po/rm.po
92
po/rm.po
|
@ -163,7 +163,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -10067,186 +10067,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "&Options"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/ro.po
92
po/ro.po
|
@ -171,7 +171,7 @@ msgstr "Favoritele mele"
|
|||
msgid "System Path"
|
||||
msgstr "Calea de sistem"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -11196,54 +11196,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Driver ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "Driver Esound"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Driver OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Driver JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Driver CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Nu pot deschide %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Drivere de sunet"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dispozitive Wave Out"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dispozitive Wave In"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Dispozitive MIDI Out"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Dispozitive MIDI In"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Dispozitive Aux"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Dispozitive Mixer"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -11253,131 +11249,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Doriți să ștergeți driver-ul „%s” din registru?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Avertizare"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Fundal controale"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Text controale"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Fundal meniu"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Text meniu"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Bare de defilare"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Fundal selecție"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Text selecție"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Fundal baloane de ajutor"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Text baloane de ajutor"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fundal fereastră"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Text fereastră"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Bară de titlu activă"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Text bară de titlu activă"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Bară de titlu inactivă"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Text bară de titlu inactivă"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Text casetă de mesaje"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Spațiul de lucru al aplicației"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Cadru de fereastră"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Margini active"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Margini inactive"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Umbră pentru controale"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Text gri"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Evidențiere controale"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Umbră întunecată pentru controale"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Lumină pentru controale"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Fundal alternativ pentru controale"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Element cu urmărire fierbinte"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient bară de titlu activă"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient bară de titlu inactivă"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Evidențiere meniu"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Bară de meniu"
|
||||
|
||||
|
|
92
po/ru.po
92
po/ru.po
|
@ -167,7 +167,7 @@ msgstr "Избранное"
|
|||
msgid "System Path"
|
||||
msgstr "Системный путь"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10530,54 +10530,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA драйвер"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD драйвер"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS драйвер"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK драйвер"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio драйвер"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Невозможно открыть %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Аудио драйвера"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Устройство вывода звука"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Устройство ввода звука"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Устройство вывода MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Устройство ввода MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Дополнительное устройство"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Устройство микширования"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10587,131 +10583,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Удалить \"%s\" из реестра?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Внимание"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Элементы управления - фон"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Элементы управления - текст"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Меню - фон"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Меню - текст"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Полоса прокрутки"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Выделение - фон"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Выделение - текст"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Подсказка - фон"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Подсказка - текст"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Содержимое окна - фон"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Содержимое окна - текст"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Активное окно"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Активное окно - текст"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Пассивное окно"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Пассивное окно - текст"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Окно сообщения - текст"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Содержимое окна MDI - фон"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Окно - рамка"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Активное окно - рамка"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Пассивное окно - рамка"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Элементы управления - тень"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Недоступный элемент"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Элементы управления - светлая рамка"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Элементы управления - темная тень"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Элементы управления - свет"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Элементы управления - фон 2"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Ссылка, Подсветка"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Градиент активного окна"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Градиент пассивного окна"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Плоское меню - подсветка"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Плоское меню - фон"
|
||||
|
||||
|
|
92
po/sk.po
92
po/sk.po
|
@ -165,7 +165,7 @@ msgstr "Obľúbené položky"
|
|||
msgid "System Path"
|
||||
msgstr "Systémová cesta"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10314,191 +10314,187 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
#, fuzzy
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Nemôžem vytvoriť alebo použiť okno."
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "&Select"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "&Bez titulkového pruhu"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/sl.po
92
po/sl.po
|
@ -170,7 +170,7 @@ msgstr "Priljubljene"
|
|||
msgid "System Path"
|
||||
msgstr "Sistemska pot"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10582,54 +10582,50 @@ msgid "ALSA Driver"
|
|||
msgstr "Gonilnik ALSA"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD gonilnik"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "Gonilnik OSS"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "Gonilnik JACK"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "Gonilnik CoreAudio"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Gonilnika %s ni mogoče odpreti!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Zvočni gonilniki"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Izh naprave"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave Vh naprave"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Izh naprave"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI Vh naprave"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Pomožne naprave"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mešalne naprave"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10639,131 +10635,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Ali želite '%s' odstraniti iz registra?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Opozorilo"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Ozadje nadzornikov"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Besedilo nadzornikov"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Ozadje menija"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Besedilo menija"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Drsnik"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Ozadje izbire"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Besedilo izbire"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Ozadje orodnega namiga"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Besedilo orodnega namiga"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Ozadje okna"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Besedilo okna"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Dejavna nazivna vrstica"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Besedilo dejavnega naziva"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Nedejavna nazivna vrstica"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Besedilno nedejavnega naziva"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Sporočilo polja z besedilom"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Delovni prostor programa"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Okvir okna"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Dejaven rob"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Nedejaven rob"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Senca nadzornikov"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Sivo besedilo"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Poudarjanje nadzornikov"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Temna senca nadzornikov"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Svetlost nadzornikov"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Nadomestno ozadje nadzornikov"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Predmet s hitrim sledenjem"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Preliv naslova dejavna nazivne vrstice"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Preliv nedejavne nazivne vrstice"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Poudarjanje menija"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menijska vrstica"
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@ msgstr "Омиљено"
|
|||
msgid "System Path"
|
||||
msgstr "Системска путања"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10497,201 +10497,197 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
#, fuzzy
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Подразумевани WaveOut уређај"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
#, fuzzy
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Подразумевани WaveOut уређај"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "&Умножи позадину"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Контрола"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "&Умножи позадину"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "трака за померање"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "Постави као позадину"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Изабери &све"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "&Умножи позадину"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "&Умножи позадину"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
#, fuzzy
|
||||
msgid "Window Text"
|
||||
msgstr "&Прозор"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "насловна линија"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Програми"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "&Прозор"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Управљачки панел"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Контрола"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
#, fuzzy
|
||||
msgid "Menu Bar"
|
||||
msgstr "линија менија"
|
||||
|
|
|
@ -185,7 +185,7 @@ msgstr "Omiljeno"
|
|||
msgid "System Path"
|
||||
msgstr "Sistemska putanja"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10593,54 +10593,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Driver"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Driver"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Driver"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Driver"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Ne mogu da otvorim %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Drajveri za zvuk"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out Uređaj"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In Uređaj"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out Uređaj"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In Uređaj"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Uređaj"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Uređaj"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10650,131 +10646,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Ukloni '%s' iz registra?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Kontrole pozadine"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Kontrole teksta"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Pozadina menija"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Tekst menija"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Scrollbar"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Odabir pozadine"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Odabir teksta"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "ToolTip pozadina"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "ToolTip Text"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Pozadina prozora"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Text Prozora"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktivni nazivni Bar"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktivni nazivni Text"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Neaktivni nazivni Bar"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Neaktivni nazivni Text"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Poruka Box Text"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Radni prostor aplikacije"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Ram prozora"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktivna ivica"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Neaktivna ivica"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Kontrola senke"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Sivi Text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Kontrola odabranog"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Kontrola mracne senke"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Kontrola svetla"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Kontrola alternativne pozadine"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hot Tracked Item"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Aktivni nazivni bar Gradient"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Neaktivni nazivni bar Gradient"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Meni osvetljenog"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Meni Bar"
|
||||
|
||||
|
|
92
po/sv.po
92
po/sv.po
|
@ -169,7 +169,7 @@ msgstr "Mina Favoriter"
|
|||
msgid "System Path"
|
||||
msgstr "Systemsökväg"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10547,54 +10547,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA-drivrutin"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD-drivrutin"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS-drivrutin"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK-drivrutin"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Driver"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Kunde inte öppna %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Ljuddrivrutiner"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave Out-enheter"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave In-enheter"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Out-enheter"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI In-enheter"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux-enheter"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixerenheter"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10604,131 +10600,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Ta bort “%s” från registret?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Varning"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Bakgrund i kontroller"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Text i kontroller"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Menybakgrund"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Menytext"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Rullningslist"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Bakgrund för markering"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Text för markering"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Bakgrund för verktygstips"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Text för verktygstips"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Fönsterbakgrund"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Fönstertext"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Aktiv titellist"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Aktiv titeltext"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Inaktiv titellist"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Inaktiv titeltext"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Text i meddelandefönster"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Arbetsyta i program"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Fönsterram"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Aktiv kant"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Inaktiv kant"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Skugga i kontroller"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Grå text"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Markering i kontroller"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Mörk skugga i kontroller"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Ljus i kontroller"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Alternativ bakgrund i kontroller"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Hovrat föremål"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Gradient för aktiv titellist"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Gradient för inaktiv titellist"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Menymarkering"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Menyrad"
|
||||
|
||||
|
|
92
po/te.po
92
po/te.po
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9990,186 +9990,182 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "శీర్షికపట్టీ లేకుండా (&W)"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/th.po
92
po/th.po
|
@ -162,7 +162,7 @@ msgstr "ที่คั่นหนังสือ"
|
|||
msgid "System Path"
|
||||
msgstr "System Path"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10168,188 +10168,184 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "เนื้อหา"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "เลือกทั้งหมด\tCtrl+A"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "แสดงแทบเมนู"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/tr.po
92
po/tr.po
|
@ -174,7 +174,7 @@ msgstr "Sık Kullanılanlar"
|
|||
msgid "System Path"
|
||||
msgstr "Sistem Yolu"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10970,54 +10970,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA Sürücüsü"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD Sürücüsü"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS Sürücüsü"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK Sürücüsü"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio Sürücüsü"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "%s açılamadı!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Ses Sürücüleri"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Dalga Çıkış Aygıtları"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Dalga Giriş Aygıtları"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI Çıkış Aygıtları"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI Giriş Aygıtları"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux Aygıtları"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Mixer Aygıtları"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -11027,147 +11023,147 @@ msgstr ""
|
|||
"\n"
|
||||
"\"%s\" girişi sistem kaydından silinsin mi?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Uyarı"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "Arkaplanı Ko&pyala"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
#, fuzzy
|
||||
msgid "Menu Background"
|
||||
msgstr "&Arkaplan"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
#, fuzzy
|
||||
msgid "Scrollbar"
|
||||
msgstr "Buraya Kaydır"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
#, fuzzy
|
||||
msgid "Selection Background"
|
||||
msgstr "Arka&plan Yap"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "Seçim &bilgisi"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
#, fuzzy
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Arkaplanı Ko&pyala"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
#, fuzzy
|
||||
msgid "Window Background"
|
||||
msgstr "Arkaplanı Ko&pyala"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
#, fuzzy
|
||||
msgid "Window Text"
|
||||
msgstr "&Pencere"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "&Başlık Çubuğunu Kaldır"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr "Seçenekler"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "&Pencere"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Control Panel"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
#, fuzzy
|
||||
msgid "Gray Text"
|
||||
msgstr "Gri"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
#, fuzzy
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Controls Debug Channels"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "Control"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/uk.po
92
po/uk.po
|
@ -165,7 +165,7 @@ msgstr "Закладки"
|
|||
msgid "System Path"
|
||||
msgstr "Системний шлях"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10516,54 +10516,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA драйвер"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD драйвер"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS драйвер"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK драйвер"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio драйвер"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "Неможна відкрити %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "Звукові драйвери"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Пристрої виводу звуку"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Пристрої вводу звуку"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "Пристрої виводу MIDI"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "Пристрої вводу MIDI"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "Aux пристрої"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "Пристрої мікшування"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10573,131 +10569,131 @@ msgstr ""
|
|||
"\n"
|
||||
"Видалити '%s' з реєстру?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "Увага"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "Елементи керування - фон"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "Елементи керування - текст"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "Меню - фон"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "Меню - текст"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "Смуга прокручування"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "Виділення - фон"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "Виділення - текст"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "Підказка - фон"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "Підказка - текст"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "Вікно - фон"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "Вікно - текст"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Заголовок акт. вікна"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "Заголовок акт. - текст"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "Заголовок неак. вікна"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "Заголовок неак. вікна - текст"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "Вікно повідомлення - текст"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "Робоче поле програми"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "Вікно - рамка"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "Активна рамка"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "Неактивна рамка"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "Елементи керування - тінь"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "Недоступний елемент - текст"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "Ел-ти керув. - світла рамка"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "Ел-ти керув. - темна тінь"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "Елементи керування - світло"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "Ел-ти керув. - інший фон"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "Посилання, Підсвічування"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "Градієнт заголовка акт. вікна"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "Град. заголовка неакт. вікна"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "Меню - підсвічування"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "Рядок меню"
|
||||
|
||||
|
|
92
po/wa.po
92
po/wa.po
|
@ -162,7 +162,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -10143,190 +10143,186 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
#, fuzzy
|
||||
msgid "Controls Background"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
#, fuzzy
|
||||
msgid "Controls Text"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
#, fuzzy
|
||||
msgid "Selection Text"
|
||||
msgstr "&Select"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar"
|
||||
msgstr "Sin bår di &Tite"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "&About Control Panel..."
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/wine.pot
92
po/wine.pot
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
msgid "System Path"
|
||||
msgstr ""
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
@ -9963,185 +9963,181 @@ msgid "ALSA Driver"
|
|||
msgstr ""
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
"Remove '%s' from registry?"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr ""
|
||||
|
||||
|
|
92
po/zh_CN.po
92
po/zh_CN.po
|
@ -173,7 +173,7 @@ msgstr "收藏夹"
|
|||
msgid "System Path"
|
||||
msgstr "系统路径"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10484,54 +10484,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA 驱动"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD 驱动"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS 驱动"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK 驱动"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio 驱动"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "无法打开 %s!"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "音频驱动程序"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave 输出设备"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave 输入设备"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI 输出设备"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI 输入设备"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "辅助设备"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "混音设备"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10541,131 +10537,131 @@ msgstr ""
|
|||
"\n"
|
||||
"将 %s 从注册表中删除?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "控件背景"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "控件文字"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "菜单背景"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "菜单文字"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "滚动条"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "选中的文字背景"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "选中的文字"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "工具提示背景"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "工具提示文字"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "窗口背景"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "窗口文字"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "活动窗口标题栏"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "活动窗口标题栏文字"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "非活动窗口标题栏"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "非活动窗口标题栏"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr "消息框文字"
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
msgid "Application Workspace"
|
||||
msgstr "应用程序工作区"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
msgid "Window Frame"
|
||||
msgstr "焦点控件框架"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
msgid "Active Border"
|
||||
msgstr "活动窗口边界"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
msgid "Inactive Border"
|
||||
msgstr "非活动窗口边界"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
msgid "Controls Shadow"
|
||||
msgstr "控件阴影"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
msgid "Gray Text"
|
||||
msgstr "灰色文字"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
msgid "Controls Highlight"
|
||||
msgstr "控件高亮"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "控件灰暗"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
msgid "Controls Light"
|
||||
msgstr "控件光亮"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "控件切换背景"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr "鼠标拖选框"
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "活动窗口标题栏渐进目标色"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "非活动窗口标题栏渐进目标色"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr "菜单高亮"
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
msgid "Menu Bar"
|
||||
msgstr "菜单栏"
|
||||
|
||||
|
|
92
po/zh_TW.po
92
po/zh_TW.po
|
@ -173,7 +173,7 @@ msgstr "我的最愛"
|
|||
msgid "System Path"
|
||||
msgstr "系統路徑"
|
||||
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:121 winefile.rc:103
|
||||
#: comdlg32.rc:34 shell32.rc:153 winecfg.rc:120 winefile.rc:103
|
||||
#, fuzzy
|
||||
msgctxt "display name"
|
||||
msgid "Desktop"
|
||||
|
@ -10546,54 +10546,50 @@ msgid "ALSA Driver"
|
|||
msgstr "ALSA 驅動"
|
||||
|
||||
#: winecfg.rc:101
|
||||
msgid "EsounD Driver"
|
||||
msgstr "EsounD 驅動"
|
||||
|
||||
#: winecfg.rc:102
|
||||
msgid "OSS Driver"
|
||||
msgstr "OSS 驅動"
|
||||
|
||||
#: winecfg.rc:103
|
||||
#: winecfg.rc:102
|
||||
msgid "JACK Driver"
|
||||
msgstr "JACK 驅動"
|
||||
|
||||
#: winecfg.rc:104
|
||||
#: winecfg.rc:103
|
||||
msgid "CoreAudio Driver"
|
||||
msgstr "CoreAudio 驅動"
|
||||
|
||||
#: winecfg.rc:105
|
||||
#: winecfg.rc:104
|
||||
msgid "Couldn't open %s!"
|
||||
msgstr "無法開啟 %s !"
|
||||
|
||||
#: winecfg.rc:106
|
||||
#: winecfg.rc:105
|
||||
msgid "Sound Drivers"
|
||||
msgstr "音效驅動程式"
|
||||
|
||||
#: winecfg.rc:107
|
||||
#: winecfg.rc:106
|
||||
msgid "Wave Out Devices"
|
||||
msgstr "Wave 輸出裝置"
|
||||
|
||||
#: winecfg.rc:108
|
||||
#: winecfg.rc:107
|
||||
msgid "Wave In Devices"
|
||||
msgstr "Wave 輸入裝置"
|
||||
|
||||
#: winecfg.rc:109
|
||||
#: winecfg.rc:108
|
||||
msgid "MIDI Out Devices"
|
||||
msgstr "MIDI 輸出裝置"
|
||||
|
||||
#: winecfg.rc:110
|
||||
#: winecfg.rc:109
|
||||
msgid "MIDI In Devices"
|
||||
msgstr "MIDI 輸入裝置"
|
||||
|
||||
#: winecfg.rc:111
|
||||
#: winecfg.rc:110
|
||||
msgid "Aux Devices"
|
||||
msgstr "輔助裝置"
|
||||
|
||||
#: winecfg.rc:112
|
||||
#: winecfg.rc:111
|
||||
msgid "Mixer Devices"
|
||||
msgstr "混音器裝置"
|
||||
|
||||
#: winecfg.rc:113
|
||||
#: winecfg.rc:112
|
||||
msgid ""
|
||||
"Found driver in registry that is not available!\n"
|
||||
"\n"
|
||||
|
@ -10603,75 +10599,75 @@ msgstr ""
|
|||
"\n"
|
||||
"是否將 %s 從登錄資訊裡移除?"
|
||||
|
||||
#: winecfg.rc:114
|
||||
#: winecfg.rc:113
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#: winecfg.rc:119
|
||||
#: winecfg.rc:118
|
||||
msgid "Controls Background"
|
||||
msgstr "按鈕背景"
|
||||
|
||||
#: winecfg.rc:120
|
||||
#: winecfg.rc:119
|
||||
msgid "Controls Text"
|
||||
msgstr "按鈕文字"
|
||||
|
||||
#: winecfg.rc:122
|
||||
#: winecfg.rc:121
|
||||
msgid "Menu Background"
|
||||
msgstr "功能表背景"
|
||||
|
||||
#: winecfg.rc:123
|
||||
#: winecfg.rc:122
|
||||
msgid "Menu Text"
|
||||
msgstr "功能表文字"
|
||||
|
||||
#: winecfg.rc:124
|
||||
#: winecfg.rc:123
|
||||
msgid "Scrollbar"
|
||||
msgstr "捲軸"
|
||||
|
||||
#: winecfg.rc:125
|
||||
#: winecfg.rc:124
|
||||
msgid "Selection Background"
|
||||
msgstr "選择區背景"
|
||||
|
||||
#: winecfg.rc:126
|
||||
#: winecfg.rc:125
|
||||
msgid "Selection Text"
|
||||
msgstr "選择區文字"
|
||||
|
||||
#: winecfg.rc:127
|
||||
#: winecfg.rc:126
|
||||
msgid "ToolTip Background"
|
||||
msgstr "提示區背景"
|
||||
|
||||
#: winecfg.rc:128
|
||||
#: winecfg.rc:127
|
||||
msgid "ToolTip Text"
|
||||
msgstr "提示區文字"
|
||||
|
||||
#: winecfg.rc:129
|
||||
#: winecfg.rc:128
|
||||
msgid "Window Background"
|
||||
msgstr "視窗背景"
|
||||
|
||||
#: winecfg.rc:130
|
||||
#: winecfg.rc:129
|
||||
msgid "Window Text"
|
||||
msgstr "視窗文字"
|
||||
|
||||
#: winecfg.rc:131
|
||||
#: winecfg.rc:130
|
||||
msgid "Active Title Bar"
|
||||
msgstr "當前標題欄"
|
||||
|
||||
#: winecfg.rc:132
|
||||
#: winecfg.rc:131
|
||||
msgid "Active Title Text"
|
||||
msgstr "當前標題欄文字"
|
||||
|
||||
#: winecfg.rc:133
|
||||
#: winecfg.rc:132
|
||||
msgid "Inactive Title Bar"
|
||||
msgstr "非當前標題欄"
|
||||
|
||||
#: winecfg.rc:134
|
||||
#: winecfg.rc:133
|
||||
msgid "Inactive Title Text"
|
||||
msgstr "非當前標題欄文字"
|
||||
|
||||
#: winecfg.rc:135
|
||||
#: winecfg.rc:134
|
||||
msgid "Message Box Text"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:136
|
||||
#: winecfg.rc:135
|
||||
#, fuzzy
|
||||
msgid "Application Workspace"
|
||||
msgstr ""
|
||||
|
@ -10680,70 +10676,70 @@ msgstr ""
|
|||
"#-#-#-#-# zh_TW.po (Wine) #-#-#-#-#\n"
|
||||
"應用程式"
|
||||
|
||||
#: winecfg.rc:137
|
||||
#: winecfg.rc:136
|
||||
#, fuzzy
|
||||
msgid "Window Frame"
|
||||
msgstr "視窗文字"
|
||||
|
||||
#: winecfg.rc:138
|
||||
#: winecfg.rc:137
|
||||
#, fuzzy
|
||||
msgid "Active Border"
|
||||
msgstr "當前標題欄"
|
||||
|
||||
#: winecfg.rc:139
|
||||
#: winecfg.rc:138
|
||||
#, fuzzy
|
||||
msgid "Inactive Border"
|
||||
msgstr "非當前標題欄"
|
||||
|
||||
#: winecfg.rc:140
|
||||
#: winecfg.rc:139
|
||||
#, fuzzy
|
||||
msgid "Controls Shadow"
|
||||
msgstr "按鈕背景"
|
||||
|
||||
#: winecfg.rc:141
|
||||
#: winecfg.rc:140
|
||||
#, fuzzy
|
||||
msgid "Gray Text"
|
||||
msgstr "文本文字"
|
||||
|
||||
#: winecfg.rc:142
|
||||
#: winecfg.rc:141
|
||||
#, fuzzy
|
||||
msgid "Controls Highlight"
|
||||
msgstr "按鈕文字"
|
||||
|
||||
#: winecfg.rc:143
|
||||
#: winecfg.rc:142
|
||||
#, fuzzy
|
||||
msgid "Controls Dark Shadow"
|
||||
msgstr "按鈕背景"
|
||||
|
||||
#: winecfg.rc:144
|
||||
#: winecfg.rc:143
|
||||
#, fuzzy
|
||||
msgid "Controls Light"
|
||||
msgstr "按鈕文字"
|
||||
|
||||
#: winecfg.rc:145
|
||||
#: winecfg.rc:144
|
||||
#, fuzzy
|
||||
msgid "Controls Alternate Background"
|
||||
msgstr "按鈕背景"
|
||||
|
||||
#: winecfg.rc:146
|
||||
#: winecfg.rc:145
|
||||
msgid "Hot Tracked Item"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:147
|
||||
#: winecfg.rc:146
|
||||
#, fuzzy
|
||||
msgid "Active Title Bar Gradient"
|
||||
msgstr "當前標題欄"
|
||||
|
||||
#: winecfg.rc:148
|
||||
#: winecfg.rc:147
|
||||
#, fuzzy
|
||||
msgid "Inactive Title Bar Gradient"
|
||||
msgstr "非當前標題欄"
|
||||
|
||||
#: winecfg.rc:149
|
||||
#: winecfg.rc:148
|
||||
msgid "Menu Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: winecfg.rc:150
|
||||
#: winecfg.rc:149
|
||||
#, fuzzy
|
||||
msgid "Menu Bar"
|
||||
msgstr "功能表背景"
|
||||
|
|
|
@ -94,7 +94,6 @@ static AUDIO_DRIVER sAudioDrivers[] = {
|
|||
{IDS_DRIVER_OSS, "oss"},
|
||||
{IDS_DRIVER_COREAUDIO, "coreaudio"},
|
||||
{IDS_DRIVER_JACK, "jack"},
|
||||
{IDS_DRIVER_ESOUND, "esd"},
|
||||
{0, ""}
|
||||
};
|
||||
|
||||
|
|
|
@ -187,7 +187,6 @@
|
|||
#define IDS_ACCEL_EMULATION 8303
|
||||
#define IDS_DRIVER_ALSA 8304
|
||||
|
||||
#define IDS_DRIVER_ESOUND 8306
|
||||
#define IDS_DRIVER_OSS 8307
|
||||
#define IDS_DRIVER_JACK 8308
|
||||
|
||||
|
|
|
@ -98,7 +98,6 @@ BEGIN
|
|||
IDS_ACCEL_BASIC "Basic"
|
||||
IDS_ACCEL_EMULATION "Emulation"
|
||||
IDS_DRIVER_ALSA "ALSA Driver"
|
||||
IDS_DRIVER_ESOUND "EsounD Driver"
|
||||
IDS_DRIVER_OSS "OSS Driver"
|
||||
IDS_DRIVER_JACK "JACK Driver"
|
||||
IDS_DRIVER_COREAUDIO "CoreAudio Driver"
|
||||
|
|
Loading…
Reference in New Issue