Merge remote-tracking branch 'upstream/master' into intel-extreme

This commit is contained in:
Alexander von Gluck IV 2016-02-19 10:17:42 -06:00
commit bab64f65bb
1091 changed files with 19459 additions and 26142 deletions

View File

@ -23,10 +23,6 @@
# - edit DRLIST below to include your own possible devroots
# (ie. where you have subfolders for your own projects)
# or export DEVROOT before sourcing dev-perso.
# - optionally edit PWLIST below to where you possibly have a
# PASSWDS/ folder with passwords stored as plain text.
# (not really a good idea though :) It's exported
# for use by project's .profile
# - optionally force EDITOR globally (for all projects)
# - for each project create a .profile in the subfolder,
# which might include commands like the following, but can remain empty.
@ -38,9 +34,6 @@
# # force CVSROOT for this project
# export CVSROOT='...'
#
# # shortcut to display password file for this svn
# alias pass="cat $PASSWDS/myself.developer.berlios.de.pass"
#
# # change to the source tree
# cd trunk
# # ease use of cd
@ -61,13 +54,6 @@ if [ -z "$DEVROOT" ]; then
fi
export DEVROOT
# automagically find password files
PWLIST="/Data /fat32 $HOME"
for d in $PWLIST; do
test -d "$d/PASSWDS" && PASSWDS="$d/PASSWDS" && break;
done
export PASSWDS
# svn sometimes forgets about vi and wants me to use nano...
#export EDITOR=vim
@ -145,19 +131,25 @@ dev() {
;;
esac
# check for a TODO list
for f in TODO TODO.org; do
test -e "$f" && grep '^* ' "$f" | grep --color=always ' TODO ' | head -5 && break
done
DEVUPCMD=""
# source the specific profile file
# (which will likely cd to the checkout directory)
test -f .profile && . .profile
# if no editor defined, set one
test -z "$EDITOR" -a -z "$SVN_EDITOR" && export EDITOR=vim
# make sure the update action is the first found in history.
test -z "$DEVUPCMD" -a -d .git && DEVUPCMD="git pull"
test -z "$DEVUPCMD" -a -d .svn && DEVUPCMD="svn up"
test -z "$DEVUPCMD" -a -d .bzr && DEVUPCMD="bzr update"
test -z "$DEVUPCMD" -a -d .hg && DEVUPCMD="hg pull"
test -z "$DEVUPCMD" -a -d .git && DEVUPCMD="git pull"
test -z "$DEVUPCMD" -a -d CVS && DEVUPCMD="cvs up -d"
test -z "$DEVUPCMD" -a \( -f _FOSSIL_ -o -f .fslckout \) && DEVUPCMD="fossil update"
test -z "$DEVUPCMD" -a -n "$P4PORT" && DEVUPCMD="p4 sync"

View File

@ -0,0 +1,16 @@
#!/bin/sh
which montage > /dev/null 2>&1 || pkgman install imagemagick
tmpf=/tmp/$$_icon_
for f in data/artwork/icons/*; do
[ -d "$f" ] && continue
bn="$(basename "$f")"
translate "$f" "${tmpf}${bn}.png" 'PNG '
echo "-label"
echo "${bn}"
echo "${tmpf}${bn}.png"
done | xargs -d '\n' sh -c 'montage -frame 5 -background "#336699" -geometry +4+4 -font /system/data/fonts/ttfonts/DejaVuSansCondensed.ttf -pointsize 8 "$@" haiku_icons.png' --
rm /tmp/$$_icon_*

View File

@ -198,6 +198,8 @@ rule ArchitectureSetup architecture
}
HAIKU_LIBRARY_NAME_MAP_$(architecture)_localestub
= <$(architecture)>liblocalestub.a ;
HAIKU_LIBRARY_NAME_MAP_$(architecture)_shared
= <$(architecture)>libshared.a ;
if $(architecture) = $(HAIKU_PACKAGING_ARCHS[1]) {
HAIKU_LIBRARY_NAME_MAP_$(architecture)_input_server
= <nogrist>input_server ;

View File

@ -527,7 +527,7 @@ if [ IsPackageAvailable libwebp_devel ] {
runtime: lib
file: devel libwebp_devel
depends: base
library: $(developLibDir)/libwebp.so.5
library: $(developLibDir)/libwebp.so.6
headers: $(developHeadersDir) $(developHeadersDir)/webp
;

View File

@ -13,7 +13,7 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
hd hey
ideinfo@ide idestatus@ide ifconfig iroster isvolume
kernel_debugger keymap keystore
launch_roster linkcatkeys listarea listattr listimage listdev
launch_roster linkcatkeys listarea listattr listimage listdev listfont
listport listres listsem listusb locale logger login lsindex
makebootable message mimeset mkfs mkindex
modifiers mount mountvolume
@ -134,7 +134,7 @@ SYSTEM_NETWORK_DATALINK_PROTOCOLS =
loopback_frame
;
#SYSTEM_NETWORK_PPP = ipcp modem pap pppoe ;
#SYSTEM_NETWORK_PPP = ipcp modem pap pppoe KPPPManager ;
SYSTEM_NETWORK_PROTOCOLS =
icmp icmp6 ipv4 ipv6

View File

@ -6,12 +6,14 @@ include [ FDirName $(HAIKU_BUILD_RULES_DIR) images definitions minimum ] ;
SYSTEM_BIN += [ FFilterByBuildFeatures
cddb_lookup
clipboard CortexAddOnHost
dpms
FirstBootPrompt fwcontrol@x86
installsound
mail2mbox mbox2mail mkdos mount_nfs
mail mail2mbox mbox2mail mkdos mount_nfs
play playfile playsound playwav
screenshot setdecor spamdbm
translate
WindowShade
] ;
SYSTEM_APPS += [ FFilterByBuildFeatures

View File

@ -250,7 +250,7 @@ AddFilesToPackage add-ons kernel network : dns_resolver ;
AddFilesToPackage add-ons kernel network devices : $(SYSTEM_NETWORK_DEVICES) ;
AddFilesToPackage add-ons kernel network datalink_protocols
: $(SYSTEM_NETWORK_DATALINK_PROTOCOLS) ;
AddFilesToPackage add-ons kernel network ppp: $(SYSTEM_NETWORK_PPP) ;
AddFilesToPackage add-ons kernel network ppp : $(SYSTEM_NETWORK_PPP) ;
AddFilesToPackage add-ons kernel network protocols
: $(SYSTEM_NETWORK_PROTOCOLS) ;

View File

@ -209,7 +209,7 @@ AddFilesToPackage add-ons kernel network : dns_resolver ;
AddFilesToPackage add-ons kernel network devices : $(SYSTEM_NETWORK_DEVICES) ;
AddFilesToPackage add-ons kernel network datalink_protocols
: $(SYSTEM_NETWORK_DATALINK_PROTOCOLS) ;
AddFilesToPackage add-ons kernel network ppp: $(SYSTEM_NETWORK_PPP) ;
AddFilesToPackage add-ons kernel network ppp : $(SYSTEM_NETWORK_PPP) ;
AddFilesToPackage add-ons kernel network protocols
: $(SYSTEM_NETWORK_PROTOCOLS) ;

View File

@ -39,7 +39,7 @@ for lib in [ HaikuImageGetSystemLibs ] $(developmentLibs) {
# static libraries
AddFilesToPackage develop lib : libcolumnlistview.a
<$(architecture)>liblocalestub.a libshared.a ;
<$(architecture)>liblocalestub.a <$(architecture)>libshared.a ;
# the POSIX error code mapper library
AddFilesToPackage develop lib : libposix_error_mapper.a ;

View File

@ -13,6 +13,7 @@ RemotePackageRepository HaikuPorts
unknown_horizons-2014.1-1
vl_gothic-20141206-1
wqy_microhei-0.2.0~beta-3
youtube_dl-2016.01.29-1
:
# repository architecture packages
# primary architecture (x86)
@ -60,11 +61,11 @@ RemotePackageRepository HaikuPorts
burnitnow-0.1.0-1
bzip2-1.0.6-5
bzip2_devel-1.0.6-5
cdrtools-3.01~a27-1
cdrtools_devel-3.01~a27-1
cdrtools-3.02~a06-1
cdrtools_devel-3.02~a06-1
clang-3.4-3
clang_analysis-3.4-3
clipdinger-0.4-1
clipdinger-0.5.2-1
cmake-3.3.1-1
coreutils-8.24-1
cpio-2.10-1
@ -100,13 +101,10 @@ RemotePackageRepository HaikuPorts
gcc-4.8.5_2015_07_11-2
gcc_syslibs-4.8.5_2015_07_11-2
gcc_syslibs_devel-4.8.5_2015_07_11-2
gcc5-5.3.0_2015_07_27-1
gcc5_syslibs-5.3.0_2015_07_27-1
gcc5_syslibs_devel-5.3.0_2015_07_27-1
gettext-0.19.4-1
gettext_libintl-0.19.4-1
giflib-5.1.1-1
giflib_devel-5.1.1-1
giflib-5.1.2-1
giflib_devel-5.1.2-1
giflib6-5.0.5-2
giflib6_devel-5.0.5-2
git-2.2.2-3
@ -128,17 +126,19 @@ RemotePackageRepository HaikuPorts
gperf-3.0.4-1
grep-2.21-1
groff-1.20.1-3
gutenprint-5.2.10-1
gutenprint_devel-5.2.10-1
gutenprint-5.2.11-1
gutenprint_devel-5.2.11-1
gzip-1.6-2
haikuwebkit-1.5.1-1
haikuwebkit_devel-1.5.1-1
help2man-1.46.6-1
htmldoc-1.8.27-3
icu-55.1-6
icu_devel-55.1-6
icu-56.1-1
icu_devel-56.1-1
icu54-54.1-1
icu54_devel-54.1-1
icu55-55.1-1
icu55_devel-55.1-1
intltool-0.40.6-4
jam-2.5_2012_10_12-2
jasper-1.900.1-4
@ -204,8 +204,10 @@ RemotePackageRepository HaikuPorts
libvorbis_devel-1.3.5-1
libvpx-1.0.0-2
libvpx_devel-1.0.0-2
libwebp-0.4.1-2
libwebp_devel-0.4.1-2
libwebp-0.5.0-1
libwebp_devel-0.5.0-1
libwebp5-0.4.4-1
libwebp5_devel-0.4.4-1
libxml2-2.9.3-2
libxml2_devel-2.9.3-2
libxml2_python-2.9.3-2
@ -244,7 +246,7 @@ RemotePackageRepository HaikuPorts
openal-1.13.0-2
openal_devel-1.13.0-2
openjdk-1.7_2013_11_08-2
openssh-7.1p1-3
openssh-7.1p1-4
openssl-1.0.2e-1
openssl_devel-1.0.2e-1
p7zip-9.20.1-4
@ -311,7 +313,7 @@ RemotePackageRepository HaikuPorts
unrar-5.3.2-1
unzip-6.0-2
vision-0.9.7.r949-3
vim-7.4-1
vim-7.4-5
wget-1.17.1-1
which-2.21-1
wpa_supplicant-2.0-4
@ -339,8 +341,8 @@ RemotePackageRepository HaikuPorts
gcc_x86_gcc2_syslibs_devel-2.95.3_2014_07_26-1
gettext_x86_gcc2-0.18.1.1-6
gettext_x86_gcc2_libintl-0.18.1.1-6
giflib_x86_gcc2-5.1.0-1
giflib_x86_gcc2_devel-5.1.0-1
giflib_x86_gcc2-5.1.2-1
giflib_x86_gcc2_devel-5.1.2-1
glew_x86_gcc2-1.11.0-1
glew_x86_gcc2_devel-1.11.0-1
glew_x86_gcc2_util-1.11.0-1
@ -348,10 +350,12 @@ RemotePackageRepository HaikuPorts
glib2_x86_gcc2_devel-2.38.1-4
glu_x86_gcc2-9.0.0-2
glu_x86_gcc2_devel-9.0.0-2
icu_x86_gcc2-55.1-6
icu_x86_gcc2_devel-55.1-6
icu_x86_gcc2-56.1-1
icu_x86_gcc2_devel-56.1-1
icu54_x86_gcc2-54.1-1
icu54_x86_gcc2_devel-54.1-1
icu55_x86_gcc2-55.1-1
icu55_x86_gcc2_devel-55.1-1
jasper_x86_gcc2-1.900.1-4
jasper_x86_gcc2_devel-1.900.1-4
jpeg_x86_gcc2-9-3
@ -376,8 +380,10 @@ RemotePackageRepository HaikuPorts
libvorbis_x86_gcc2_devel-1.3.5-1
libvpx_x86_gcc2-1.0.0-2
libvpx_x86_gcc2_devel-1.0.0-2
libwebp_x86_gcc2-0.4.1-2
libwebp_x86_gcc2_devel-0.4.1-2
libwebp_x86_gcc2-0.5.0-1
libwebp_x86_gcc2_devel-0.5.0-1
libwebp5_x86_gcc2-0.4.4-1
libwebp5_x86_gcc2_devel-0.4.4-1
libxml2_x86_gcc2-2.9.2-1
libxml2_x86_gcc2_devel-2.9.2-1
mesa_x86_gcc2-7.9.2-5
@ -449,7 +455,6 @@ RemotePackageRepository HaikuPorts
freetype
gawk
gcc
gcc5
gcc_x86_gcc2
gettext
giflib
@ -468,6 +473,7 @@ RemotePackageRepository HaikuPorts
htmldoc
icu
icu54
icu55
intltool
jam
jasper
@ -504,6 +510,7 @@ RemotePackageRepository HaikuPorts
libvorbis
libvpx
libwebp
libwebp5
libxml2
libxslt
llvm
@ -581,6 +588,7 @@ RemotePackageRepository HaikuPorts
yasm
xml_parser
xz_utils
youtube_dl
zip
zlib
:

View File

@ -15,7 +15,7 @@ RemotePackageRepository HaikuPorts
timgmsoundfont-fixed-5
unknown_horizons-2014.1-1
vl_gothic-20141206-1
youtube_dl-2015.06.15-1
youtube_dl-2016.01.29-1
wqy_microhei-0.2.0~beta-3
:
# repository architecture packages
@ -62,11 +62,11 @@ RemotePackageRepository HaikuPorts
buildbot_slave-0.8.8-2
bzip2-1.0.6-5
bzip2_devel-1.0.6-5
cdrtools-3.02~a04-1
cdrtools_devel-3.02~a04-1
cdrtools-3.02~a06-1
cdrtools_devel-3.02~a06-1
clang-3.5.1-1
clang_analysis-3.5.1-1
clipdinger-0.4-1
clipdinger-0.5.2-1
cmake-3.3.2-3
coreutils-8.24-1
cpio-2.12-1
@ -111,13 +111,10 @@ RemotePackageRepository HaikuPorts
gcc-4.8.5_2015_07_11-1
gcc_syslibs-4.8.5_2015_07_11-1
gcc_syslibs_devel-4.8.5_2015_07_11-1
gcc5-5.3.0_2015_07_27-1
gcc5_syslibs-5.3.0_2015_07_27-1
gcc5_syslibs_devel-5.3.0_2015_07_27-1
gettext-0.19.6-2
gettext_libintl-0.19.6-2
giflib-5.1.0-1
giflib_devel-5.1.0-1
giflib-5.1.2-1
giflib_devel-5.1.2-1
git-2.2.2-2
git_arch-2.2.2-2
git_cvs-2.2.2-2
@ -143,20 +140,22 @@ RemotePackageRepository HaikuPorts
grep_debuginfo-2.21-1
groff-1.20.1-3
gtk_doc-1.20-1
gutenprint-5.2.10-1
gutenprint_devel-5.2.10-1
gutenprint-5.2.11-1
gutenprint_devel-5.2.11-1
gzip-1.6-2
haikuwebkit-1.5.1-1
haikuwebkit_devel-1.5.1-1
haikuwebkit-1.5.2-1
haikuwebkit_devel-1.5.2-1
handbrake-0.10.1-1
harfbuzz-1.1.1-1
harfbuzz_devel-1.1.1-1
help2man-1.46.6-1
htmldoc-1.8.27-3
icu-55.1-6
icu_devel-55.1-6
icu-56.1-1
icu_devel-56.1-1
icu54-54.1-2
icu54_devel-54.1-2
icu55-55.1-1
icu55_devel-55.1-1
intltool-0.40.6-4
itstool-2.0.2-1
jam-2.5_2012_10_12-2
@ -216,8 +215,8 @@ RemotePackageRepository HaikuPorts
libmikmod_devel-3.3.7-1
libmkv-0.6.5.1-3
libmkv_devel-0.6.5.1-3
libmodplug-0.8.8.5-1
libmodplug_devel-0.8.8.5-1
libmodplug-0.8.8.5-2
libmodplug_devel-0.8.8.5-2
libmp4v2-2.0.0-2
libmp4v2_devel-2.0.0-2
libmpeg2-0.5.1-3
@ -265,8 +264,10 @@ RemotePackageRepository HaikuPorts
libvorbis_devel-1.3.5-2
libvpx-1.0.0-2
libvpx_devel-1.0.0-2
libwebp-0.4.1-2
libwebp_devel-0.4.1-2
libwebp-0.5.0-1
libwebp_devel-0.5.0-1
libwebp5-0.4.4-1
libwebp5_devel-0.4.4-1
libxml2-2.9.3-1
libxml2_devel-2.9.3-1
libxml2_python-2.9.3-1
@ -311,7 +312,7 @@ RemotePackageRepository HaikuPorts
nss_devel-3.20-1
openal-1.13.0-2
openal_devel-1.13.0-2
openssh-7.1p1-3
openssh-7.1p1-4
openssl-1.0.2e-1
openssl_devel-1.0.2e-1
p7zip-9.20.1-5
@ -380,7 +381,7 @@ RemotePackageRepository HaikuPorts
ubertuber-0.9.11-1
unrar-5.3.4-1
unzip-6.0-2
vim-7.4-3
vim-7.4-5
vision-0.9.7.r949-3
wget-1.17.1-1
which-2.21-1
@ -442,7 +443,6 @@ RemotePackageRepository HaikuPorts
fribidi
gawk
gcc
gcc5
gettext
giflib
git
@ -465,6 +465,7 @@ RemotePackageRepository HaikuPorts
htmldoc
icu
icu54
icu55
intltool
itstool
jam
@ -522,6 +523,7 @@ RemotePackageRepository HaikuPorts
libusb
libusb_compat
libwebp
libwebp5
libxml2
libxslt
llvm

View File

@ -25,7 +25,7 @@ RemotePackageRepository HaikuPorts
timgmsoundfont-fixed-5
vl_gothic-20141206-1
wqy_microhei-0.2.0~beta-3
youtube_dl-2015.06.15-1
youtube_dl-2016.01.29-1
:
# repository architecture packages
# primary architecture (x86_gcc2)
@ -74,10 +74,10 @@ RemotePackageRepository HaikuPorts
catkeyseditor-0.1.1-1
caya-0.0.3-3
ccache-3.1.9-1
cdrtools-3.02~a04-1
cdrtools_devel-3.02~a04-1
cdrtools-3.02~a06-1
cdrtools_devel-3.02~a06-1
chat-20100903-2
clipdinger-0.4-2
clipdinger-0.5.2-1
clockwerk-git-3
cpctools-0.3.0-2
criticalmass-2.2-1
@ -146,14 +146,16 @@ RemotePackageRepository HaikuPorts
gettext_libintl-0.18.1.1-6
gdb-6.3-1
giddy3-1.4-1
giflib-5.0.5-2
giflib_devel-5.0.5-2
git-2.2.2-2
git_arch-2.2.2-2
git_cvs-2.2.2-2
git_daemon-2.2.2-2
git_email-2.2.2-2
git_svn-2.2.2-2
giflib-5.1.2-1
giflib_devel-5.1.2-1
giflib6-5.0.5-2
giflib6_devel-5.0.5-2
git-2.7.0-2
git_arch-2.7.0-2
git_cvs-2.7.0-2
git_daemon-2.7.0-2
git_email-2.7.0-2
git_svn-2.7.0-2
glew-1.11.0-1
glew_devel-1.11.0-1
glew_util-1.11.0-1
@ -175,8 +177,8 @@ RemotePackageRepository HaikuPorts
gtk_doc-1.20-1
guilib-1.2.1-1
guilib_devel-1.2.1-1
gutenprint-5.2.10-1
gutenprint_devel-5.2.10-1
gutenprint-5.2.11-1
gutenprint_devel-5.2.11-1
gyp-r1948-2
gzip-1.6-2
hdialog-0.2-2
@ -185,8 +187,10 @@ RemotePackageRepository HaikuPorts
html_parser-3.71-1
hubbub-0.3.0-1
hubbub_devel-0.3.0-1
icu-55.1-1
icu_devel-55.1-1
icu-56.1-1
icu_devel-56.1-1
icu55-55.1-1
icu55_devel-55.1-1
imagemagick-6.8.9_8-1
imagemagick_devel-6.8.9_8-1
intltool-0.40.6-4
@ -204,7 +208,7 @@ RemotePackageRepository HaikuPorts
keymapswitcher-1.2.7.11-1
lame-3.99.5-3
lame_devel-3.99.5-3
lbreakout2-2.6.4-2
lbreakout2-2.6.4-3
lcms-2.5-1
lcms_devel-2.5-1
less-451-4
@ -303,8 +307,8 @@ RemotePackageRepository HaikuPorts
libunistring_devel-0.9.6-1
libusb-1.0.20-2
libusb_devel-1.0.20-2
libusb_compat-0.1.5-2
libusb_compat_devel-0.1.5-2
libusb_compat-0.1.5-3
libusb_compat_devel-0.1.5-3
libutf8proc-1.1.6-1
libutf8proc_devel-1.1.6-1
libuuid-1.0.3-2
@ -313,8 +317,10 @@ RemotePackageRepository HaikuPorts
libvorbis_devel-1.3.5-1
libvpx-1.0.0-2
libvpx_devel-1.0.0-2
libwebp-0.4.1-2
libwebp_devel-0.4.1-2
libwebp-0.5.0-1
libwebp_devel-0.5.0-1
libwebp5-0.4.4-1
libwebp5_devel-0.4.4-1
libxau-1.0.8-2
libxcb-1.6-2
libxml2-2.8.0-9
@ -379,7 +385,7 @@ RemotePackageRepository HaikuPorts
openjpeg-2.1.0-2
openjpeg_devel-2.1.0-2
opensound-4.2_git-2
openssh-7.1p1-1
openssh-7.1p1-4
openssl-1.0.2e-1
openssl_devel-1.0.2e-1
opus-1.1.1-1
@ -403,15 +409,16 @@ RemotePackageRepository HaikuPorts
physfs-2.0.3-2
physfs_devel-2.0.3-2
pipepanic-0.1.3-3
pkgconfig-0.27.1-1
pkgconfig-0.29-1
ponpokodiff-0.2.0-2
popt-1.16-1
popt_devel-1.16-1
postgresql-9.3.5-2
postgresql_devel-9.3.5-2
psiconv-0.9.8-1
psiconv_devel-0.9.8-1
psqlodbc-09.03.0400-1
psqlodbc_devel-09.03.0400-1
psqlodbc-09.03.0400-2
psqlodbc_devel-09.03.0400-2
python-2.7.11-1
python_dateutil-1.5-2
python_imaging-1.1.7-2
@ -433,8 +440,8 @@ RemotePackageRepository HaikuPorts
readline_devel-6.3.8-1
roadfighter-1.0.1269-1
rsync-3.1.0-1
sane_backends-1.0.25-1
sane_backends_devel-1.0.25-1
sane_backends-1.0.25-2
sane_backends_devel-1.0.25-2
sanity-0.5a-1
samba-3.6.25-1
samba_devel-3.6.25-1
@ -468,7 +475,7 @@ RemotePackageRepository HaikuPorts
slang-2.2.4-1
slang_devel-2.2.4-1
slayer-0.9-2
slimevolley-2.4.2-3
slimevolley-2.4.2-4
smjpeg-0.2.1-1
smjpeg_devel-0.2.1-1
smpeg-0.4.5-3
@ -509,7 +516,7 @@ RemotePackageRepository HaikuPorts
vasm-1.7c-1
vcdimager-0.7.24-2
vcdimager_devel-0.7.24-2
vim-7.4-3
vim-7.4-5
virtualbox_guest_additions-4.3.53_svn-7
vision-0.9.7.r949-2
vlc-0.8.6i-1
@ -527,8 +534,8 @@ RemotePackageRepository HaikuPorts
xml_parser-2.36-1
xproto-7.0.26-2
xrick-021212-2
yab-1.7.5-2
yab_ide-2.2.5-1
yab-1.7.5.2-1
yab_ide-2.2.5-3
yasm-1.3.0-1
zip-3.0-2
zlib-1.2.8-4
@ -597,7 +604,7 @@ RemotePackageRepository HaikuPorts
devil_x86_devel-1.7.8-2
djvulibre_x86-3.5.25-1
djvulibre_x86_devel-3.5.25-1
documentviewer_x86-0.3_git-7
documentviewer_x86-0.3_git-8
dosbox_x86-0.74-2
dtc_x86-1.4.1-1
enca_x86-1.15-1
@ -628,16 +635,13 @@ RemotePackageRepository HaikuPorts
gcc_x86-4.8.5_2015_07_11-2
gcc_x86_syslibs-4.8.5_2015_07_11-2
gcc_x86_syslibs_devel-4.8.5_2015_07_11-2
gcc5_x86-5.3.0_2015_07_27-1
gcc5_x86_syslibs-5.3.0_2015_07_27-1
gcc5_x86_syslibs_devel-5.3.0_2015_07_27-1
gcc6809_x86-4.6.1-2
gdk_pixbuf_x86-2.31.5-1
gdk_pixbuf_x86_devel-2.31.5-1
gettext_x86-0.18.1.1-6
gettext_x86_libintl-0.18.1.1-6
giflib_x86-5.1.0-1
giflib_x86_devel-5.1.0-1
giflib_x86-5.1.2-1
giflib_x86_devel-5.1.2-1
glew_x86-1.11.0-1
glew_x86_devel-1.11.0-1
glew_x86_util-1.11.0-1
@ -656,12 +660,14 @@ RemotePackageRepository HaikuPorts
graphite2_x86_devel-1.2.4-1
guilib_x86-1.2.1-1
guilib_x86_devel-1.2.1-1
haikuwebkit_x86-1.5.1-1
haikuwebkit_x86_devel-1.5.1-1
haikuwebkit_x86-1.5.2-1
haikuwebkit_x86_devel-1.5.2-1
harfbuzz_x86-0.9.39-1
harfbuzz_x86_devel-0.9.39-1
icu_x86-55.1-1
icu_x86_devel-55.1-1
icu_x86-56.1-1
icu_x86_devel-56.1-1
icu55_x86-55.1-1
icu55_x86_devel-55.1-1
ilmbase_x86-2.2.0-1
ilmbase_x86_devel-2.2.0-1
jasper_x86-1.900.1-4
@ -783,8 +789,10 @@ RemotePackageRepository HaikuPorts
libvorbis_x86_devel-1.3.5-2
libvpx_x86-1.0.0-2
libvpx_x86_devel-1.0.0-2
libwebp_x86-0.4.1-2
libwebp_x86_devel-0.4.1-2
libwebp_x86-0.5.0-1
libwebp_x86_devel-0.5.0-1
libwebp5_x86-0.4.4-1
libwebp5_x86_devel-0.4.4-1
libxml2_x86-2.9.2-1
libxml2_x86_devel-2.9.2-1
libxslt_x86-1.1.28-5
@ -1062,7 +1070,6 @@ RemotePackageRepository HaikuPorts
gcal
gcc
gcc_x86
gcc5_x86
gcc6809_x86
getconf
getopt
@ -1071,6 +1078,7 @@ RemotePackageRepository HaikuPorts
gdb
gdk_pixbuf_x86
giflib
giflib6
git
glew
glib2
@ -1104,6 +1112,7 @@ RemotePackageRepository HaikuPorts
html_parser
hubbub
icu
icu55
ilmbase_x86
imagemagick
intltool
@ -1212,6 +1221,7 @@ RemotePackageRepository HaikuPorts
libvorbis_x86
libvpx
libwebp
libwebp5
libxau
libxcb
libxml2
@ -1303,6 +1313,7 @@ RemotePackageRepository HaikuPorts
pipepanic
pixman_x86
pkgconfig
ponpokodiff
popt
popt_x86
postgresql

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<svg width="683" height="178" color-interpolation="linearRGB">
<svg xmlns="http://www.w3.org/2000/svg" width="683" height="178" color-interpolation="linearRGB">
<g>
<path style="fill:#010101"
d="M88.01 33.02v106.92h13.96v-106.92h-13.96v0z

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<svg width="605" height="179" color-interpolation="linearRGB">
<svg xmlns="http://www.w3.org/2000/svg" width="605" height="179" color-interpolation="linearRGB">
<g>
<path style="fill:#ffffff"
d="M44.02 33.02v106.92h13.95v-106.92h-13.95v0z"

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

BIN
data/artwork/icons/App_FLTK Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
data/artwork/icons/App_SDL Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,2 +1,2 @@
1 slovak x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Aktívna oblasť
1 slovak x-vnd.Haiku-IntelDiskAddOn 946918966
Active partition PrimaryPartitionEditor Aktívna oblasť

View File

@ -0,0 +1,2 @@
1 slovak x-vnd.Haiku-NTFSDiskAddOn 25755486
Name: NTFS_Initialize_Parameter Názov:

View File

@ -1,7 +1,7 @@
1 russian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
Kill application Team monitor Убить приложение
Quit application Team monitor Завершить приложение
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Чтобы закрыть приложение выберите его из списка и нажмите на кнопку 'Убить приложение' или 'Завершить приложение'.\n\nЗажмите CONTROL+ALT+DELETE на %ld секунд для перезагрузки.
Quit application Team monitor Выйти из приложения
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Чтобы закрыть приложение выберите его из списка и нажмите на кнопку 'Убить приложение' или 'Выйти из приложения'.\n\nЗажмите CONTROL+ALT+DELETE на %ld секунд для перезагрузки.
If the application will not quit you may have to kill it. Team monitor Если приложение не завершится, возможно вам понадобится убить его.
Force reboot Team monitor Перезагрузить принудительно
Team monitor Team monitor Монитор процессов

View File

@ -1,4 +1,4 @@
1 belarusian x-vnd.Haiku-MatchHeader 3677427558
1 belarusian x-vnd.Haiku-MatchHeader 1349121828
<Choose action> ConfigView <Абярыце аперацыю>
has ConfigView меў
Move to ConfigView Перасунуць у
@ -10,4 +10,3 @@ Set flags to ConfigView Меткі паведамлення ў
Set as read ConfigView Пазначыць як прагледжанае
Reply with ConfigView Адказаць з
If ConfigView Калі
header (e.g. Subject) ConfigView загаловак (Subject)

View File

@ -1,11 +1,12 @@
1 german x-vnd.Haiku-MatchHeader 3405428083
1 german x-vnd.Haiku-MatchHeader 548057976
<Choose action> ConfigView <Aktion wählen>
Header field (e.g. Subject, From, ...) ConfigView Kopfdaten (z.B. Betreff, Ansender, ...)
Account ConfigView Email-Konto
has ConfigView enthält
Move to ConfigView Verschieben nach
Then ConfigView Dann
this field is based on the action ConfigView dieses Feld ist abhängig von der Aktion
Delete message ConfigView Nachricht löschen
value (use REGEX: in front of regular expressions like *spam*) ConfigView Wert (REGEX nutzen: reguläre Ausdrücke wie *spam*)
<Choose account> ConfigView <Konto wählen>
Set flags to ConfigView Status setzen auf
Set as read ConfigView Als gelesen markieren
@ -13,4 +14,4 @@ Match header RuleFilter Kopfdaten filtern
Reply with ConfigView Antworten von Konto
If ConfigView Wenn
Match \"%attribute\" against \"%regex\" RuleFilter \"%attribute\" mit \"%regex\" vergleichen
header (e.g. Subject) ConfigView Kopfzeile (z. B. Subject)
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Platzhalter wie \"*spam*\".\nFür reguläre Audrücke \"REGEX:\" voranstellen.

View File

@ -1,11 +1,10 @@
1 spanish; castilian x-vnd.Haiku-MatchHeader 3405428083
1 spanish; castilian x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Elegir acción>
has ConfigView tiene
Move to ConfigView Mover a
Then ConfigView Luego
this field is based on the action ConfigView este campo está basado en la acción
Delete message ConfigView Borrar mensaje
value (use REGEX: in front of regular expressions like *spam*) ConfigView valor (use REGEX: frente a expresiones regulares como *spam*)
<Choose account> ConfigView <Elegir cuenta>
Set flags to ConfigView Seleccionar banderas a
Set as read ConfigView Marcar como leído
@ -13,4 +12,3 @@ Match header RuleFilter Cabecera concordante
Reply with ConfigView Responder con
If ConfigView Si
Match \"%attribute\" against \"%regex\" RuleFilter Concordar \"%attribute\" contra \"%regex\"
header (e.g. Subject) ConfigView Cabecera (p. ej. Tema)

View File

@ -1,11 +1,10 @@
1 finnish x-vnd.Haiku-MatchHeader 3405428083
1 finnish x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Valitse toiminto>
has ConfigView on
Move to ConfigView Siirrä kohtaan
Then ConfigView Sitten
this field is based on the action ConfigView tämä kenttä perustuu toimintoon
Delete message ConfigView Poista viesti
value (use REGEX: in front of regular expressions like *spam*) ConfigView arvo (käytä REGEX-ohjelmistoa: säännöllisten lausekkeiden edessä kuten *spam*)
<Choose account> ConfigView <Valitse tili>
Set flags to ConfigView Aseta lippujen arvoksi
Set as read ConfigView Aseta luetuksi
@ -13,4 +12,3 @@ Match header RuleFilter Täsmää otsikko
Reply with ConfigView Vastaa
If ConfigView Jos
Match \"%attribute\" against \"%regex\" RuleFilter Täsmää \"%attribute\" säännöllisen lausekkeen \"%regex\" varalta
header (e.g. Subject) ConfigView otsake (esim. Aihe)

View File

@ -1,11 +1,12 @@
1 french x-vnd.Haiku-MatchHeader 3405428083
1 french x-vnd.Haiku-MatchHeader 548057976
<Choose action> ConfigView <Choisir une action>
Header field (e.g. Subject, From, ...) ConfigView Champ dentête (ex. Sujet, De, …)
Account ConfigView Compte
has ConfigView a
Move to ConfigView Déplacer vers
Then ConfigView Alors
this field is based on the action ConfigView ce champ est basé sur laction
Delete message ConfigView Supprimer le message
value (use REGEX: in front of regular expressions like *spam*) ConfigView valeur (utilisez REGEX: devant les expressions régulières comme *spam*)
<Choose account> ConfigView <Choisir un compte>
Set flags to ConfigView Placez les drapeaux à
Set as read ConfigView Marquer comme lu
@ -13,4 +14,4 @@ Match header RuleFilter Entête de correspondance
Reply with ConfigView Répondre avec
If ConfigView Si
Match \"%attribute\" against \"%regex\" RuleFilter Faire correspondre « %attribute » à « %regex »
header (e.g. Subject) ConfigView entête (ex. Sujet)
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Expression générique comme « *spam* ».\nPréfixer avec « REGEX: » afin d'utiliser des expressions régulières.

View File

@ -1,11 +1,10 @@
1 hungarian x-vnd.Haiku-MatchHeader 3405428083
1 hungarian x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Válassza ki a műveletet>
has ConfigView tartalmaz
Move to ConfigView mozgatás ide:
Then ConfigView Akkor
this field is based on the action ConfigView ez a mező a műveleten alapszik
Delete message ConfigView az üzenet törlése
value (use REGEX: in front of regular expressions like *spam*) ConfigView érték (RegEx használatával, mint például *spam*)
<Choose account> ConfigView <Válassza ki a fiókot>
Set flags to ConfigView megjelölés:
Set as read ConfigView olvasottnak jelölés
@ -13,4 +12,3 @@ Match header RuleFilter Fejléc egyezése
Reply with ConfigView válaszolás:
If ConfigView Ha:
Match \"%attribute\" against \"%regex\" RuleFilter Egyező \"%attribute\" \"%regex\" helyett
header (e.g. Subject) ConfigView fejléc (pl. tárgy)

View File

@ -1,11 +1,12 @@
1 japanese x-vnd.Haiku-MatchHeader 3405428083
1 japanese x-vnd.Haiku-MatchHeader 548057976
<Choose action> ConfigView <動作を選択>
Header field (e.g. Subject, From, ...) ConfigView ヘッダーフィールド (例. 件名, 差出人 ...)
Account ConfigView アカウント
has ConfigView が
Move to ConfigView に移動する
Then ConfigView ならば
this field is based on the action ConfigView ここは動作によって意味が変わります
Delete message ConfigView メッセージを削除する
value (use REGEX: in front of regular expressions like *spam*) ConfigView 値 (REGEX の使用: *spam* のような正規表現の前に記述)
<Choose account> ConfigView <アカウントを選択>
Set flags to ConfigView フラグを指定する
Set as read ConfigView 既読にする
@ -13,4 +14,4 @@ Match header RuleFilter ヘッダー一致条件
Reply with ConfigView 返事を書く
If ConfigView 条件:
Match \"%attribute\" against \"%regex\" RuleFilter \"%regex\" と一致する \"%attribute\"
header (e.g. Subject) ConfigView ヘッダー (たとえば Subject)
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView ワイルドカード値は \"*spam*\" のようなものです。\n正規表現を使用するには、先頭に \"REGEX:\" をつけてください。

View File

@ -1,4 +1,4 @@
1 lithuanian x-vnd.Haiku-MatchHeader 3677427558
1 lithuanian x-vnd.Haiku-MatchHeader 1349121828
<Choose action> ConfigView <parinkite veiksmą>
has ConfigView turi
Move to ConfigView perkelti į
@ -10,4 +10,3 @@ Set flags to ConfigView nustatyti požymius į
Set as read ConfigView pažymėti kaip skaitytą
Reply with ConfigView atsakyti naudojant
If ConfigView Kai
header (e.g. Subject) ConfigView antraštė (pvz., Subject)

View File

@ -1,4 +1,4 @@
1 dutch; flemish x-vnd.Haiku-MatchHeader 3677427558
1 dutch; flemish x-vnd.Haiku-MatchHeader 1349121828
<Choose action> ConfigView <Kies actie>
has ConfigView Heeft
Move to ConfigView Verplaats naar
@ -10,4 +10,3 @@ Set flags to ConfigView Markeer als
Set as read ConfigView Als gelezen markeren
Reply with ConfigView Antwoord met
If ConfigView Als
header (e.g. Subject) ConfigView rubiek (m.a.w. onderwerp)

View File

@ -1,11 +1,12 @@
1 polish x-vnd.Haiku-MatchHeader 3405428083
1 polish x-vnd.Haiku-MatchHeader 548057976
<Choose action> ConfigView <Wybierz akcję>
Header field (e.g. Subject, From, ...) ConfigView Pole nagłówkowe (np. Temat, Od, ...)
Account ConfigView Konto
has ConfigView ma
Move to ConfigView Przenieś do
Then ConfigView To
this field is based on the action ConfigView to pole jest oparte na akcji
Delete message ConfigView Usuń wiadomość
value (use REGEX: in front of regular expressions like *spam*) ConfigView wartość (użyj wyrażeń regularnych, takich jak *spam*)
<Choose account> ConfigView <Wybierz konto>
Set flags to ConfigView Ustaw flagi na
Set as read ConfigView Oznacz jako przeczytane
@ -13,4 +14,4 @@ Match header RuleFilter Porównaj nagłówek
Reply with ConfigView Odpowiedz z
If ConfigView Jeśli
Match \"%attribute\" against \"%regex\" RuleFilter Porównaj „%attribute” z „%regex”
header (e.g. Subject) ConfigView nagłówek (np. Temat)
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Maska, np. „*spam*”.\nPoprzedź frazą „REGEX:” w celu użycia wyrażeń regularnych.

View File

@ -1,11 +1,10 @@
1 portuguese (brazil) x-vnd.Haiku-MatchHeader 3405428083
1 portuguese (brazil) x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Escolher ação>
has ConfigView tem
Move to ConfigView Mover para
Then ConfigView Então
this field is based on the action ConfigView este campo é baseado na ação
Delete message ConfigView Apagar mensagem
value (use REGEX: in front of regular expressions like *spam*) ConfigView valor (usar REGEX: na frente de expressões regulares como *spam*)
<Choose account> ConfigView <Escolher conta>
Set flags to ConfigView Definir bandeiras para
Set as read ConfigView Marcar como lida
@ -13,4 +12,3 @@ Match header RuleFilter Combinar cabeçalho
Reply with ConfigView Responder com
If ConfigView Se
Match \"%attribute\" against \"%regex\" RuleFilter Combinar \"%atributo\" com \"%regex\"
header (e.g. Subject) ConfigView cabeçalho (por ex., Assunto)

View File

@ -1,11 +1,10 @@
1 romanian x-vnd.Haiku-MatchHeader 3405428083
1 romanian x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Selectează acțiunea>
has ConfigView are
Move to ConfigView Mută la
Then ConfigView Atunci
this field is based on the action ConfigView acest câmp este bazat pe acțiunea
Delete message ConfigView Șterge mesajul
value (use REGEX: in front of regular expressions like *spam*) ConfigView valoare (folosește REGEX: înaintea expresiilor regulate precum *spam*)
<Choose account> ConfigView <Selectează contul>
Set flags to ConfigView Stabilește indicatorii la
Set as read ConfigView Marchează ca citit
@ -13,4 +12,3 @@ Match header RuleFilter Potrivește antet
Reply with ConfigView Răspunde cu
If ConfigView Dacă
Match \"%attribute\" against \"%regex\" RuleFilter Găsește \"%attribute\" în \"%regex\"
header (e.g. Subject) ConfigView antet (ex. Subiect)

View File

@ -1,15 +1,13 @@
1 russian x-vnd.Haiku-MatchHeader 1196375185
1 russian x-vnd.Haiku-MatchHeader 2053505383
<Choose action> ConfigView <Выберите действие>
has ConfigView содержит
Move to ConfigView Переместить в
Then ConfigView Тогда
this field is based on the action ConfigView это поле зависит от действия
Delete message ConfigView Удалить сообщение
value (use REGEX: in front of regular expressions like *spam*) ConfigView значение (используйте REGEX: перед регулярными выражениями, например *спам*)
<Choose account> ConfigView значение (используйте регулярные выражения, например *спам*)
Set flags to ConfigView Установить флаги в
Set as read ConfigView Отметить как прочитанное
Match header RuleFilter Совпадающий заголовок
Reply with ConfigView Ответить с
If ConfigView Если
header (e.g. Subject) ConfigView заголовок (Subject)

View File

@ -1,5 +1,7 @@
1 slovak x-vnd.Haiku-MatchHeader 3677427558
1 slovak x-vnd.Haiku-MatchHeader 548057976
<Choose action> ConfigView <Vyberte operáciu>
Header field (e.g. Subject, From, ...) ConfigView Pole hlavičky (napr. Predmet, Od, ...)
Account ConfigView Účet
has ConfigView má
Move to ConfigView Presunúť do
Then ConfigView potom
@ -8,6 +10,8 @@ Delete message ConfigView Zmazať správu
<Choose account> ConfigView <Vyberte účet>
Set flags to ConfigView Nastaviť príznaky na
Set as read ConfigView Nastaviť ako prečítané
Match header RuleFilter Zhoda hlavičky
Reply with ConfigView Odpovedať pomocou
If ConfigView ak
header (e.g. Subject) ConfigView hlavička (napr. Predmet)
Match \"%attribute\" against \"%regex\" RuleFilter Zhoda \"%attribute\" voči \"%regex\"
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Hodnota so zástupnými znakmi ako napr. „*spam*“.\nPoužite predponu „REGEX:“ ak chcete použiť regulárny výraz.

View File

@ -1,4 +1,4 @@
1 slovenian x-vnd.Haiku-MatchHeader 538909502
1 slovenian x-vnd.Haiku-MatchHeader 2505571068
has ConfigView ima
Move to ConfigView Premakni v
Then ConfigView potem
@ -7,4 +7,3 @@ Set flags to ConfigView Nastavi zastavice na
Set as read ConfigView Označi kot prebrano
Reply with ConfigView Odgovori z
If ConfigView Če
header (e.g. Subject) ConfigView glava (npr. Zadeva)

View File

@ -1,11 +1,10 @@
1 swedish x-vnd.Haiku-MatchHeader 3405428083
1 swedish x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <Välj åtgärd>
has ConfigView har
Move to ConfigView Flytta till
Then ConfigView Åtgärd
this field is based on the action ConfigView detta fält är baserat på åtgärden
Delete message ConfigView Radera meddelande
value (use REGEX: in front of regular expressions like *spam*) ConfigView värde (använd reguljära uttryck i format som *spam*)
<Choose account> ConfigView <Välj konto>
Set flags to ConfigView Markera som
Set as read ConfigView Markera som läst
@ -13,4 +12,3 @@ Match header RuleFilter Matcha rubrik
Reply with ConfigView Svara med
If ConfigView Om
Match \"%attribute\" against \"%regex\" RuleFilter Matcha \"%attribute\" mot \"%regex\"
header (e.g. Subject) ConfigView huvud (ex Rubrik)

View File

@ -1,4 +1,4 @@
1 ukrainian x-vnd.Haiku-MatchHeader 3677427558
1 ukrainian x-vnd.Haiku-MatchHeader 1349121828
<Choose action> ConfigView <Вибір дії>
has ConfigView має
Move to ConfigView Перемістити до
@ -10,4 +10,3 @@ Set flags to ConfigView Встановити флаги для
Set as read ConfigView Встановити як прочитані
Reply with ConfigView Відповісти з
If ConfigView Якщо
header (e.g. Subject) ConfigView заголовок (e.g. Subject)

View File

@ -1,11 +1,10 @@
1 english x-vnd.Haiku-MatchHeader 3405428083
1 english x-vnd.Haiku-MatchHeader 4262558281
<Choose action> ConfigView <选择动作>
has ConfigView 具有
Move to ConfigView 移动到
Then ConfigView 然后
this field is based on the action ConfigView 该域基于动作
Delete message ConfigView 删除消息
value (use REGEX: in front of regular expressions like *spam*) ConfigView 值 (使用 REGEX: 利用正则表达式,如 *spam*)
<Choose account> ConfigView <选择账户>
Set flags to ConfigView 设置标志为
Set as read ConfigView 设为读取
@ -13,4 +12,3 @@ Match header RuleFilter 头部匹配
Reply with ConfigView 回复为
If ConfigView 如果
Match \"%attribute\" against \"%regex\" RuleFilter 基于 \"%regex\" 进行 \"%attribute\" 匹配
header (e.g. Subject) ConfigView 邮件头(如 主题)

View File

@ -1,12 +1,14 @@
1 slovak x-vnd.Haiku-NewMailNotification 583443025
Keyboard LEDs ConfigView LED klávesnice
Log window ConfigView Okno záznamu
Central beep ConfigView Centrálne pípnutie
Beep ConfigView Pípnutie
Method: ConfigView Metóda:
Central alert ConfigView Centrálne upozornenie
Alert ConfigView Upozornenie
none ConfigView žiadne
New messages filter Nové správy
New mails notification ConfigView Upozornenie na nové správy
OK filter OK
1 slovak x-vnd.Haiku-NewMailNotification 73789504
You have {0, plural, one{One new message} other{# new messages}} for %account. NotifierFilter Máte {0, plural, one{Jednu novú správu} few{# nové správy} other{# nových správ}} pre %account.
none NotifierConfigView žiadne
Method: NotifierConfigView Metóda:
Beep NotifierConfigView Pípnutie
{0, plural, one{One new message} other{# new messages}} NotifierFilter {0, plural, one{Jedna nová správa} few{# nové správy} other{# nových správ}}
New mails notification NotifierFilter Upozornenie na nové správy
Central alert NotifierConfigView Centrálne upozornenie
OK NotifierFilter OK
New messages NotifierFilter Nové správy
Log window NotifierConfigView Okno záznamu
Keyboard LEDs NotifierConfigView LED klávesnice
Central beep NotifierConfigView Centrálne pípnutie
Alert NotifierConfigView Upozornenie

View File

@ -1,6 +1,7 @@
1 slovak x-vnd.Haiku-SpamFilter 160316705
1 slovak x-vnd.Haiku-SpamFilter 468104950
or empty e-mail SpamFilterConfig alebo prázdny email
Genuine below and uncertain above: SpamFilterConfig Originálny pod a neistý nad:
Spam above: SpamFilterConfig Spam nad:
Add spam rating to start of subject SpamFilterConfig Pridať ohodnotenie ako spam na začiatok predmetu
Bayesian Spam Filter SpamFilter Bayesovo filtrovanie spamu
Learn from all incoming e-mail SpamFilterConfig Učiť sa na základe všetkej prichádzajúcej pošty

View File

@ -1,7 +1,12 @@
1 slovak x-vnd.Haiku-IMAP 3950045582
1 slovak x-vnd.Haiku-IMAP 354143849
Destination: imap_config Cieľ:
Ok IMAPFolderConfig OK
status IMAPFolderConfig stav
Configure IMAP Folders imap_config Nastavenie priečinkov IMAP
Cancel IMAPFolderConfig Zrušiť
Apply IMAPFolderConfig Použiť
Fetching IMAP folders, have patience... IMAPFolderConfig Sťahujú sa priečinky IMAP, strpenie...
Could not connect to server \"%server%\":\n%error% IMAPFolderConfig Nepodarilo sa pripojiť k serveru „%server%“:\n%error%
IMAP Folders IMAPFolderConfig Priečinky IMAP
Update subcription of IMAP folders, have patience... IMAPFolderConfig Aktualizujú sa odbery priečinkov IMAP. Prosíme o strpenie...
Failed to fetch available storage. IMAPFolderConfig Nepodarilo sa zistiť dostupné úložné miesto.

View File

@ -1,4 +1,5 @@
1 slovak x-vnd.Haiku-Fortune 1292458430
1 slovak x-vnd.Haiku-Fortune 52757361
Fortune FortuneFilter Koláčiky šťastia
Fortune file: ConfigView Súbor s koláčikmi:
Fortune cookie says:\n\n ConfigView Koláčik šťastia hovorí:\n\n
Tag line: ConfigView Tag line:

View File

@ -6,7 +6,7 @@ Refuse output format changes AudioMixer Odmietnuť zmeny výstupného formátu
Output mapping AudioMixer Mapovanie výstupu
Allow input channel remapping AudioMixer Povoliť premapovanie vstupného kanála
Resampling algorithm AudioMixer Algoritmus prevzorkovania
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Utlmiť výstup zmiešavačao 3dB (ako BeOS R5)
Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Utlmiť výstup zmiešavača o 3dB (ako BeOS R5)
Display balance control for stereo connections AudioMixer Zobraziť ovládanie vyváženia pri stereo spojeniach
To output AudioMixer Na výstup
not connected AudioMixer nepripojené

View File

@ -0,0 +1,34 @@
1 slovak x-vnd.Haiku-hmulti_audio.media_addon 451057402
Master MultiAudio Hlavný
SPDIF MultiAudio SPDIF
Gain MultiAudio Zosilnenie
Output 3D center MultiAudio Výstup 3D stred
Extended Setup MultiAudio Rozšírené nastavenie
CD MultiAudio CD
Tone control MultiAudio Ovládanie tónu
Phone MultiAudio Telefón
Aux MultiAudio Aux
Output bass MultiAudio Basy na výstupe
Headphones MultiAudio Slúchadlá
Beep MultiAudio Pípnutie
Output mono mix MultiAudio Zmiešaný mono na výstupe
Output stereo mix MultiAudio Zmiešaný stereo na výstupe
Input MultiAudio Vstup
Output treble MultiAudio Výšky na výstupe
Mono mix MultiAudio Zmiešaný mono
General MultiAudio Všeobecné
Input & Output MultiAudio Vstup a výstup
Enhanced Setup MultiAudio Rozšírené nastavenie
Stereo mix MultiAudio Zmiešaný stereo
Output 3D depth MultiAudio Výstup 3D hĺbka
Volume MultiAudio Hlasitosť
Output MultiAudio Výstup
Video MultiAudio Video
Line MultiAudio Linka
Mic MultiAudio Mikrofón
frequency: MultiAudio frekvencia:
Enable MultiAudio Zapnúť
Mute MultiAudio Stlmiť
Wave MultiAudio Vlna
Setup MultiAudio Nastavenie
Level MultiAudio Úroveň

View File

@ -0,0 +1,10 @@
1 slovak x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn Nastavenie DNS
Move down DNSSettingsView Presunúť dolu
DNS settings DNSSettingsView Nastavenie DNS
Remove DNSSettingsView Odstrániť
Domain: DNSSettingsView Doména:
Add DNSSettingsView Pridať
Server: DNSSettingsView Server:
Move up DNSSettingsView Presunúť hore
Apply DNSSettingsView Použiť

View File

@ -0,0 +1,3 @@
1 slovak x-vnd.Haiku-FTPService 4086152171
FTP server FTPServiceAddOn Server FTP
The FTP server allows you to remotely access the files on your machine using the FTP protocol.\n\nPlease note that it is an insecure and unencrypted connection. FTPServiceAddOn Server FTP vám umožňuje vzdialený prístup k súborom na vašom počítači pomocou protokolu FTP.\n\nProsím, pamätajte, že to je nezabezpečené a nešifrované spojenie.

View File

@ -0,0 +1,2 @@
1 slovak x-vnd.Haiku-IPv4Interface 2854844856
IPv4 IPv4InterfaceAddOn IPv4

View File

@ -0,0 +1,2 @@
1 slovak x-vnd.Haiku-IPv6Interface 1391114020
IPv6 IPv6InterfaceAddOn IPv6

View File

@ -0,0 +1,3 @@
1 slovak x-vnd.Haiku-SSHService 770129055
The SSH server allows you to remotely access your machine with a terminal session, as well as file access using the SCP and SFTP protocols. SSHServiceAddOn Server SSH vám umožňuje vzdialený prístup k zariadeniu pomocou relácie terminálu a tiež prístup k súborom pomocou protokolov SCP a SFTP.
SSH server SSHServiceAddOn Server SSH

View File

@ -0,0 +1,3 @@
1 slovak x-vnd.Haiku-TelnetService 1209067113
Telnet server TelnetServiceAddOn Server telnet
The Telnet server allows you to remotely access your machine with a terminal session using the telnet protocol.\n\nPlease note that it is an insecure and unencrypted connection. TelnetServiceAddOn Telnet server umožňuje vzdialený prístup k zariadeniu pomocou relácie terminálu protokolom telnet.\n\nUpozorňujeme, že je to nezabezpečené a nešifrované spojenie.

View File

@ -1,2 +1,4 @@
1 slovak x-vnd.Haiku-DebugNowScreensaver 822203648
1 slovak x-vnd.Haiku-DebugNowScreensaver 3664380395
DEBUG Screensaver DebugNow keep it short and all uppercase, 5 characters or less LADENIE
by Ryan Leavengood Screensaver DebugNow vytvoril Ryan Leavengood
NOW Screensaver DebugNow keep it short and all uppercase, 5 characters or less TERAZ

View File

@ -1,15 +1,17 @@
1 slovak x-vnd.haiku.zip-o-matic 1573273374
1 slovak x-vnd.haiku.zip-o-matic 2032806096
Stop file:ZipOMaticWindow.cpp Zastaviť
Creating archive: %s file:ZipOMaticWindow.cpp Vytvára sa archív: %s
Continue file:ZipOMaticWindow.cpp Pokračovať
Preparing to archive file:ZipperThread.cpp Pripravuje sa na archiváciu
Drop files here. file:ZipOMaticWindow.cpp Sem pretiahnite súbory.
Filename: %s file:ZipOMaticWindow.cpp Názov súboru: %s
You have {0, plural, one{# Zip-O-Matic} other{# Zip-O-Matics}} running.\n\n file:ZipOMatic.cpp Už {0, plural, one{beží jedna ďalšia inštancia} few{bežia # ďalšie inštancie} other{beží # ďalších inštancií}} Zip-O-Matic.\n\n
Let them continue file:ZipOMatic.cpp Nechať ich pokračovať
Do you want to stop them? file:ZipOMatic.cpp Chcete ich zastaviť?
Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Ste si istý, že chcete zastaviť vytvorenie tohto archívu?
Stopped file:ZipOMaticWindow.cpp Zastavené
Archive file:ZipperThread.cpp Archív
Error creating archive file:ZipOMaticWindow.cpp Chyba pri vytváraní archívu
{0, plural, one{# file added.} other{# files added.}} file:ZipOMaticWindow.cpp {0, plural, one{# súbor pridaný} few{# súbory pridané} other{# súborov pridaných}}.
Archive created OK file:ZipOMaticWindow.cpp Archív úspešne vytvorený
Stop them file:ZipOMatic.cpp Zastaviť ich

View File

@ -1,12 +1,17 @@
1 slovak x-vnd.Haiku-GIFTranslator 2250422222
1 slovak x-vnd.Haiku-GIFTranslator 2201651797
Websafe GIFView Farby pre web
Write interlaced images GIFView Zapisovať obrázky s prekladanými riadkami
Optimal GIFView Optimálne
Greyscale GIFView Odtiene šedej
Colors: GIFView Farby:
GIF image translator GIFTranslator Prekladač obrázkov GIF
Be Bitmap Format (GIFTranslator) GIFTranslator Be Bitmap Format (GIFTranslator)
GIF image translator GIFView Prekladač obrázkov GIF
Palette: GIFView Paleta:
GIF image GIFTranslator Obrázok GIF
Write transparent images GIFView Zapisovať priesvitné obrázky
GIF images GIFTranslator Obrázky GIF
Version %d.%d.%d, %s GIFView Verzia %d.%d.%d, %s
Use RGB color GIFView Použiť farby RGB
Use dithering GIFView Použiť dithering
GIF Settings GIFTranslator Nastavenia GIF

View File

@ -0,0 +1,5 @@
1 slovak x-vnd.Haiku-ICNSTranslator 2416672857
Version %d.%d.%d, %s ICNSConfig Verzia %d.%d.%d, %s
Apple icons ICNSTranslator Ikony Apple
Apple icon translator ICNSTranslator Prekladač ikon Applie
Apple icon translator ICNSConfig Prekladač ikon Applie

View File

@ -1,4 +1,4 @@
1 slovak x-vnd.Haiku-JPEGTranslator 965709535
1 slovak x-vnd.Haiku-JPEGTranslator 3788699631
Output quality JPEGTranslator Kvalita výstupu
JPEG images JPEGTranslator Obrázky JPEG
Prevent colors 'washing out' JPEGTranslator Zabrániť „vyblednutiu“ farieb
@ -15,6 +15,7 @@ Output smoothing strength JPEGTranslator Sila vyhladzovania výstupu
High JPEGTranslator Vysoká
Write JPEGTranslator Zapísať
Write black-and-white images as RGB24 JPEGTranslator Zapísať čiernobiele obrázky ako RGB24
Version %d.%d.%d JPEGTranslator Verzia %d.%d.%d
Read greyscale images as RGB32 JPEGTranslator Čítať čiernobiele obrázky ako RGB32
Read JPEGTranslator Čítať
JPEG Library Warning: %s\n be_jerror Upozornenie knižnice JPEG: %s\n

View File

@ -1,6 +1,7 @@
1 slovak x-vnd.Haiku-JPEG2000Translator 547915409
1 slovak x-vnd.Haiku-JPEG2000Translator 3265915643
Write JPEG2000Translator Zapísať
JPEG2000 images JPEG2000Translator Obrázky JPEG2000
Version %d.%d.%d JPEG2000Translator Verzia %d.%d.%d
Output only codestream (.jpc) JPEG2000Translator Na výstup poslať iba kódový tok (.jpc)
Write black-and-white images as RGB24 JPEG2000Translator Zapísať čiernobiele obrázky ako RGB24
Output quality JPEG2000Translator Kvalita výstupu

View File

@ -1,4 +1,5 @@
1 slovak x-vnd.Haiku-PPMTranslator 797856484
1 slovak x-vnd.Haiku-PPMTranslator 2233502290
Version %d.%d.%d, %s PPMTranslator Verzia %d.%d.%d, %s
PPM Settings PPMMain Nastavenia PPM
Based on PPMTranslator sample code PPMTranslator Založené na vzorovom kóde PPMTranslator
OK PPMMain OK
@ -8,6 +9,7 @@ PPM image PPMTranslator Obrázok PPM
RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bitov
Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPMTranslator)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bitov
Input color space: PPMTranslator Vstupný farebný priestor:
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bitov
PPM image translator PPMTranslator Prekladač obrázkov PPM
bits/space PPMTranslator bitov/priestor

View File

@ -0,0 +1,22 @@
1 slovak x-vnd.Haiku-PSDTranslator 3654055550
Lab PSDLoader Laboratórium
Uncompressed PSDConfig Nekomprimovaný
Indexed PSDLoader Indexovaný
Grayscale PSDLoader Odtiene šedej
Photoshop image translator PSDConfig Prekladač obrázkov Photoshopu
Photoshop image translator PSDTranslator Prekladač obrázkov Photoshopu
Version %d.%d.%d, %s PSDConfig Verzia %d.%d.%d, %s
Photoshop Document (PSD file) PSDConfig Dokument Photoshop (súbor PSD)
Photoshop image PSDTranslator Obrázok Photoshop
RLE PSDConfig RLE
Photoshop Big Document (PSB file) PSDConfig Photoshop Big Document (súbor PSB)
RGBA PSDLoader RGBA
Photoshop image (%s) PSDTranslator Obrázok Photoshop (%s)
PSDTranslator Settings PSDConfig Nastavenia PSDTranslator
RGB PSDLoader RGB
Bitmap PSDLoader Bitová mapa
CMYK PSDLoader CMYK
Compression: PSDConfig Kompresia:
Format: PSDConfig Formát:
Multichannel PSDLoader Viackanálový
Duotone PSDLoader Dvojtónový

View File

@ -1,9 +1,11 @@
1 slovak x-vnd.Haiku-RTFTranslator 1620328626
1 slovak x-vnd.Haiku-RTFTranslator 334451110
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
RTF text files RTFTranslator Textové súbory RTF
RTF-Translator Settings ConfigView Nastavenia prekladača RTF
Rich Text Format (RTF) translator ConfigView Prekladač RTF (obohatený text)
RTF Settings main Nastavenia RTF
RichTextFormat file RTFTranslator Súbor RTF
Be style text file RTFTranslator Textový súbor v štýle Be
Plain text file RTFTranslator Obyčajný textový súbor
Rich Text Format translator RTFTranslator Prekladač RTF
Rich Text Format translator v%d.%d.%d %s RTFTranslator Prekladač RTF v%d.%d.%d %s

View File

@ -1,9 +1,11 @@
1 slovak x-vnd.Haiku-SGITranslator 4153400005
1 slovak x-vnd.Haiku-SGITranslator 129108011
Use compression: SGIView Použiť kompresiu:
SGITranslator Settings SGITranslator Nastavenia Prekladača SGI
None SGIView Žiadne
SGI images SGITranslator Obrázky SGI
SGI image translator SGITranslator Prekladač obrázkov SGI
\nbased on GIMP SGI plugin v1.5:\n SGIView \nzaložené na zásuvnom module GIMP SGI v1.5:\n
Version %d.%d.%d, %s SGIView Verzia %d.%d.%d, %s
SGI image SGITranslator Obrázok SGI
RLE SGIView RLE
SGI Settings SGIMain Nastavenia SGI

View File

@ -1,4 +1,5 @@
1 slovak x-vnd.Haiku-TGATranslator 77519970
1 slovak x-vnd.Haiku-TGATranslator 3075011211
Save with RLE compression TGAView Uložiť s kompresiou RLE
Targa image (%d bits truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor)
Ignore TGA alpha channel TGAView Ignorovať alfa kanál TGA
Targa image (%d bits colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa)
@ -8,6 +9,7 @@ Targa image (%d bits gray) TGATranslator Obrázok Targa (%d bitov šedej)
Written by the Haiku Translation Kit Team TGAView Napísal Haiku Translation Kit Team
Targa image (%d bits RLE truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor RLE)
TGA images TGATranslator Obrázky TGA
Version %d.%d.%d, %s TGAView Verzia %d.%d.%d, %s
TGATranslator Settings TGATranslator Nastavenia TGATranslator
TGA image translator TGATranslator Prekladač obrázkov TGA
Targa image (%d bits RLE gray) TGATranslator Obrázok Targa (%d-bitov šedej RLE)

View File

@ -1,5 +1,6 @@
1 slovak x-vnd.Haiku-TIFFTranslator 4029790542
1 slovak x-vnd.Haiku-TIFFTranslator 2234713102
LZW TIFFView LZW
Version %d.%d.%d, %s TIFFView Verzia %d.%d.%d, %s
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepodarilo sa nastaviť adresár\n
TIFF image TIFFTranslator Obrázok TIFF
TIFF Library: TIFFView Knižnica TIFF:
@ -10,5 +11,6 @@ TIFFTranslator Settings TIFFTranslator Nastavenia TIFFTranslator
TIFF image translator TIFFTranslator Prekladač obrázkov TIFF
RLE (Packbits) TIFFView RLE (Packbits)
TIFF Settings TIFFMain Nastavenia TIFF
Use compression: TIFFView Použiť kompresiu:
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: neplatný index dokumentu\n
ZIP (Deflate) TIFFView ZIP (Deflate)

View File

@ -1,4 +1,5 @@
1 slovak x-vnd.Haiku-WonderBrushTranslator 820358316
1 slovak x-vnd.Haiku-WonderBrushTranslator 1289038178
Version %d.%d.%d, %s WonderBrushView Verzia %d.%d.%d, %s
WonderBrush image translator WonderBrushTranslator Prekladač obrázkov WonderBrush
WBI Settings WonderBrushTranslator Nastavenia WBI
WBI Settings WonderBrushMain Nastavenia WBI

View File

@ -1,10 +1,14 @@
1 slovak x-vnd.Haiku-About 2724473542
1 slovak x-vnd.Haiku-About 3251436090
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 autori Gutenprint. Všetky práva vyhradené.
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm a Werner Lemberg.
Past website & marketing:\n AboutView Web a marketing v minulosti:\n
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (a jeho jadro NewOS)\n
Ralink (firmware) AboutWindow Ralink (firmvér)
Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Všetky práva vyhradené.
%d MiB total AboutView %d MiB celkom
Michael Phipps (project founder)\n\n AboutView Michael Phipps (zakladateľ projektu)\n\n
%d MiB used (%d%%) AboutView %d MiB využitých (%d%%)
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje softvér z projektu GNU uvoľnený za podmienok licencií GPL alebo LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
AboutSystem System name O systéme
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe a ďalší.
Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Všetky práva vyhradené.
@ -13,21 +17,32 @@ Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd
Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. a jeho tímu vývojárov za vytvorenie BeOS!\n\n
Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Všetky práva vyhradené.
Source Code: AboutView Zdrojový kód:
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesor} few{# procesory} other{# procesorov}}:
Kernel: AboutView Jadro:
BSD (4-clause) AboutWindow BSD (4-bodová)
The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Autorské práva ku kódu Haiku sú vlastníctvom Haiku, Inc. alebo príslušných autorov, kde sú výslovne uvedení v zdrojovom kóde. Haiku® a logo HAIKU® sú registrovanými ochrannými známkami Haiku, Inc.\n\n
Marvell (firmware) AboutWindow Marvell (firmvér)
Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nVšetky práva vyhradené.
GNU LGPL v2 AboutWindow GNU LGPL v2
The HaikuPorts team\n AboutView Tím Haiku-Ports\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB celkom, %inaccessible MiB neprístupných
Intel (2xxx firmware) AboutWindow Intel (2xxx firmvér)
Contributors:\n AboutView Prispievatelia:\n
Unknown AboutView Neznáme
Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 správci Expat.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Všetky práva vyhradené.
Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Všetky práva vyhradené.
Public Domain AboutWindow Voľné dielo
Intel (firmware) AboutWindow Intel (firmvér)
BSD (2-clause) AboutWindow BSD (2-bodová)
%.2f GHz AboutView %.2f GHz
Memory: AboutView Pamäť:
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všetky práva vyhradené.
Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro Fukuchi
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Tento softvér je sčasti zaločený na práci Independent JPEG Group.
Past maintainers:\n AboutView Minulí vývojári:\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje softvér z projektu FreeBSD, uvoľnený za podmienok licencie BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Všetky práva vyhradené.
GNU GPL v3 AboutWindow GNU GPL v3
\n\nSpecial thanks to:\n AboutView \n\nŠpecialne poďakovanie:\n
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n… a zrejme mnoho ďalších, ktorých sme zabudli uviesť (prepáčte!)\n\n
Licenses: AboutView Licencie:
@ -40,21 +55,25 @@ Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyri
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, ktorý je jedinečný pre Haiku, obzvlášť jadro a všetok kód, voči ktorému sa linkujú aplikácie je šírený za podmienok <MIT license>. Niektoré knižnice systému môžu obsahovať kód tretích strán, ktorý je šírený za podmienok<LGPL license>. Informácie o autorských právach ku kódu tretích strán si môžete prečítať nižšie.\n\n
Time running: AboutView Čas behu:
Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Obsahuje softvér, ktorý vyvinula NetBSD Foundation, Inc. a jej prispievatelia:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. Všetky práva vyhradené.
GNU GPL v2 AboutWindow GNU GPL v2
Google and their Google Summer of Code and Google Code In programs\n AboutView Google a ich programy Google Summer of Code a Google Code-in
The Haikuware team and their bounty program\n AboutView Tím Haikuware a ich program odmien\n
Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Všetky práva vyhradené.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všetky práva vyhradené.
Website & marketing:\n AboutView Web a marketing:\n
About this system AboutWindow O tomto systéme
Version: AboutView Verzia:
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Všetky práva vyhradené.
Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd a Clark Cooper.
Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Všetky práva vyhradené.
Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
Copyright © 2000-2014 Fabrice Bellard, et al. AboutView Copyright © 2000-2014 Fabrice Bellard, et al.
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Všetky práva vyhradené.
The BeGeistert team\n AboutView Tím BeGeistert\n
The University of Auckland and Christof Lutteroth\n\n AboutView University of Auckland a Christof Lutteroth\n\n
Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratory, University of Tokyo.
Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Všetky práva vyhradené.
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Všetky práva vyhradené.
%ld MHz AboutView %ld MHz
Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH a Thomas Merz. Všetky práva vyhradené.\nPDFlib a logo PDFlib sú registrované ochranné známky PDFlib GmbH.
@ -63,6 +82,7 @@ Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Co
MIT license. All rights reserved. AboutView Licencia MIT. Všetky práva vyhradené.
[Click a license name to read the respective license.]\n\n AboutView [Kliknite na názov licencie a prečítajte si príslušnú licenciu.]\n\n
Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Všetky práva vyhradené.
BSD (3-clause) AboutWindow BSD (3-bodová)
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Všetky práva vyhradené.
License: AboutView Licencia:
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Andy Ritger, založené na Zovšeobecnenom časovacom vzorci

View File

@ -1,10 +1,12 @@
1 slovak x-vnd.Haiku-ActivityMonitor 234995750
1 slovak x-vnd.Haiku-ActivityMonitor 2455521641
P-faults DataSource P-fault
Media nodes DataSource Mediálne uzly
Threads DataSource Vlákna
Always on top ActivityWindow Vždy na vrchu
Add graph ActivityWindow Pridať graf
Teams DataSource Tímy
Hide legend ActivityView Skryť legendu
MiB DataSource MiB
Network send DataSource Sieť - odoslané
CPU usage (combined) DataSource Využitie CPU (kombinované)
CPU DataSource CPU
@ -31,6 +33,7 @@ Remove graph ActivityView Odstrániť graf
CPU usage DataSource Využitie CPU
Raw clipboard DataSource Schránka bez formátu
Sems DataSource Semafory
%.1f MiB DataSource %.1f MiB
ActivityMonitor System name Monitor aktivity
Running applications DataSource Bežiace aplikácie
Semaphores DataSource Semafory

View File

@ -1,4 +1,4 @@
1 slovak x-vnd.Haiku-BootManager 3355843558
1 slovak x-vnd.Haiku-BootManager 3886671855
The boot manager has been successfully installed on your system. BootManagerController Správca zavádzania bol úspešne nainštalovaný na váš systém.
After two seconds DefaultPartitionPage Po dvoch sekundách
Uninstall Boot Manager UninstallPage Title Odinštalovať Správcu zavádzania
@ -8,10 +8,12 @@ Hard Drive DrivesPage Default disk name Pevný disk
USB Drive DrivesPage Default disk name Disk USB
The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController MBR zavádzacieho zariadenia:\n\t %s\nsa teraz uloží na disk. Prosím, zvoľte súbor, kam sa uloží MBR.\n\nAk sa niečo v inštalácii pokazí alebo jednoducho neskôr budete chcieť odstrániť menu zavádzača, jednoducho spustite program Správca zavádzania a zvoľte možnosť „Odinštalovať“.
About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Chystáte sa obnoviť MBR disku %disk zo súboru %file. Chcete pokračovať?
First partition starts too early BootManagerController Title Prvá disková oblasť začína príliš zavčasu
An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Vyskytla sa chyba počas zapisovania menu zavádzača. MBR môže byť zničený. Mali by ste ihneď obnoviť MBR!
Partitions PartitionsPage Title Oblasti
Timeout: %s DefaultPartitionPage Časový interval: %s
Select FileSelectionPage Button Vybrať
Incompatible format! DrivesPage Cannot install Nekompatibilný formát!
Cannot access! DrivesPage Cannot install Nie je možný prístup!
Uninstall boot manager BootManagerController Title Odinštalovať Správcu zavádzania
After four seconds DefaultPartitionPage Po štyroch sekundách
@ -24,7 +26,9 @@ Please specify a default partition and a timeout.\nThe boot menu will load the d
After one second DefaultPartitionPage Po jednej sekunde
The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Boli zistené nasledovné oblasti. Prosím, zaškrtnite pole vedľa oblastí, ktoré chcete zahrnúť do menu zavádzača. Môžete tiež nastaviť názvy oblastí, aké chcete aby sa zobrazovali v menu zavádzača.
After one minute DefaultPartitionPage Po jednej minúte
The old Master Boot Record could not be saved to %s. You can continue the installation but there will be no way to uninstall the boot menu. BootManagerController Starý Master Boot Record sa nepodarilo uložiť do %s. Môžete pokračovať v inštalácii, ale to nebude možné odinštalovať menu zavádzača systému.
The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController MBR zavádzacieho zariadenia (%DISK) bol úspešne obnovený zo súboru %FILE.
Quit WizardView Button Ukončiť
Write boot menu BootManagerController Button Zapísať menu zavádzača
The Master Boot Record could not be restored! BootManagerController MBR nebolo možné obnoviť!
Uninstall DrivesPage Button Odinštalovať
@ -35,6 +39,7 @@ Installation of boot menu completed BootManagerController Title Inštalácia men
Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Nepomenovaný %d
File: FileSelectionPage Text control label Súbor:
Previous WizardView Button Späť
The first partition on the disk starts too early and does not leave enough space free for a boot menu.\nBoot Manager needs 2 KiB available space before the first partition. BootManagerController Prvá oblasť na disku začína príliš zavčasu a nenecháva dostatok voľného miesta pre zavádzacie menu.\nSprávca zavádzania potrebuje 2 KiB voľného miesta pred prvou oblasťou.
Install DrivesPage Button Nainštalovať
About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Chystá sa zápis nasledovného menu zavádzača na zavádzací disk (%s). Prosím, overte nasledovné informácie predtým, než budete pokračovať.
Unknown LegacyBootMenu Text is shown for an unknown partition type Neznámy
@ -45,9 +50,11 @@ No space available! DrivesPage Cannot install Nie je voľné miesto!
Never DefaultPartitionPage Nikdy
Partition table not compatible BootManagerController Title Tabuľka oblastí nie je kompatibilná
Old Master Boot Record saved BootManagerController Title Starý MBR je uložený
Old Master Boot Record backup failure BootManagerController Title Zlyhalo zálohovanie starého MBR
Boot Manager is unable to read the partition table! BootManagerController Správca zavádzania nedokáže prečítať tabuľku oblastí!
Error reading partition table BootManagerController Title Chyba pri čítaní tabuľky oblastí
Installation of boot menu failed BootManagerController Title Inštalácia menu zavádzača zlyhala
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager only works with IBM PC MBR partitions. BootManagerController Tabuľka diskových oblastí prvého disku nie je kompatibilná so Správcom zavádzania.\nSprávca zavádzania dokáže pracovať len s oblasťami IBM PC MBR.
Backup Master Boot Record BootManagerController Title Zálohovať MBR
About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Chystá sa zápis menu zavádzača na disk. Ste si istý, že chcete pokračovať?
The old Master Boot Record was successfully saved to %s. BootManagerController Starý MBR bol úspešne uložený do %s.

View File

@ -1,4 +1,4 @@
1 slovak x-vnd.Haiku-CharacterMap 56063163
1 slovak x-vnd.Haiku-CharacterMap 1534181938
Enclosed alphanumerics UnicodeBlocks Uzavreté alfanumerické znaky
Basic Latin UnicodeBlocks Latinka - základné znaky
View CharacterWindow Zobraziť
@ -123,6 +123,7 @@ Vai UnicodeBlocks Vai
Yi Radicals UnicodeBlocks Yi - radikály
Cyrillic extended B UnicodeBlocks Cyrillika, rozšírená A
Quit CharacterWindow Ukončiť
Ancient symbols UnicodeBlocks Staré symboly
Braille patterns UnicodeBlocks Braillove vzory
New Tai Lue UnicodeBlocks New Tai Lue
Runic UnicodeBlocks Runy

View File

@ -1,4 +1,5 @@
1 slovak x-vnd.Haiku-CodyCam 183572276
1 slovak x-vnd.Haiku-CodyCam 2193838145
Upload… VideoConsumer.cpp Nahrať…
Capturing Image… VideoConsumer.cpp Zachytáva sa obrázok…
Every 30 seconds CodyCam Každých 30 sekúnd
File name: CodyCam Názov súboru:
@ -10,9 +11,9 @@ Format: CodyCam Formát:
Every 2 hours CodyCam Každé 2 hodiny
Closing the window\n VideoConsumer.cpp Zatvára sa okno\n
login ID expected CodyCam očakávalo sa prihlasovacie meno
Rate: CodyCam Rýchlosť:
Rate: CodyCam Interval:
JPEG image CodyCam Obrázok JPEG
Capture Rate Menu CodyCam Menu rýchlosti zachytávania
Capture Rate Menu CodyCam Menu intervalu zachytávania
File %s # unterminated quote at end of file\n SettingsHandler Súbor %s # neukončená úvodzovka na konci súboru\n
Password: CodyCam Heslo:
Passive FTP CodyCam Pasívne FTP
@ -61,12 +62,13 @@ upload client name expected CodyCam očakával sa názov nahrávacieho klienta
SFTP CodyCam SFTP
Connected… VideoConsumer.cpp Pripojené…
PASS <suppressed> (real password sent)\n FtpClient PASS <skryté> (skutočné odoslané heslo)\n
File upload failed VideoConsumer.cpp Nahranie súboru zlyhalo
Every 5 minutes CodyCam Každých 5 minút
read: %d\n SftpClient prečítané: %d\n
Capture controls CodyCam Ovládacie prvky zachytávania
Every hour CodyCam Každú hodinu
Cannot connect the video source to the video window CodyCam Nebolo možné spojiť zdroj videa s oknom s videom
capture rate expected CodyCam očakávaná rýchlosť zachytávania
capture rate expected CodyCam očakávaný interval zachytávania
Error getting initial latency for the capture node CodyCam Chyba pri zisťovaní úvodnej latencie uzla zachytávania
Send to… CodyCam Poslať kam…
on or off expected Settings Do not translate 'on' and 'off' očakávalo sa „on“ alebo „off“
@ -84,7 +86,7 @@ Every 4 hours CodyCam Každé 4 hodiny
FTP CodyCam FTP
Cannot seek time source! CodyCam Nie je možné posunúť sa na zdroj času!
File CodyCam Súbor
Image Format Menu CodyCam Menu formát obrázka
Image Format Menu CodyCam Menu formátu obrázka
Every 30 minutes CodyCam Každých 30 minút
reply: '%s'\n SftpClient odpoveď: „%s“\n
Start video CodyCam Spustiť video

View File

@ -1,4 +1,4 @@
1 belarusian x-vnd.Be-TSKB 2335730970
1 belarusian x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Выключыць
Sort applications by name PreferencesWindow Сартаваць прагамы па назвах
Suspend DeskbarMenu Прыпыніць
@ -27,7 +27,6 @@ Large PreferencesWindow Вялікі
Auto-raise PreferencesWindow Узнікаць аўтаматычна
Recent folders: PreferencesWindow Нядаўнія каталёгі:
Show application expander PreferencesWindow Паказваць кнопку спісу праграм
Restart Tracker DeskbarMenu Перазапусціць Tracker
Close all WindowMenu Закрыць усё
Deskbar preferences PreferencesWindow Наладкі Deskbar
Mount DeskbarMenu Прымацаваць

View File

@ -1,4 +1,4 @@
1 german x-vnd.Be-TSKB 2335730970
1 german x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Ausschalten
Sort applications by name PreferencesWindow Laufende Anwendungen sortieren
Suspend DeskbarMenu Ruhezustand
@ -27,7 +27,6 @@ Large PreferencesWindow Groß
Auto-raise PreferencesWindow Automatisch nach vorn holen
Recent folders: PreferencesWindow Letzte Ordner:
Show application expander PreferencesWindow Expander anzeigen
Restart Tracker DeskbarMenu Tracker neu starten
Close all WindowMenu Alle schließen
Deskbar preferences PreferencesWindow Deskbar-Einstellungen
Mount DeskbarMenu Einhängen

View File

@ -1,4 +1,4 @@
1 spanish; castilian x-vnd.Be-TSKB 2335730970
1 spanish; castilian x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Apagar
Sort applications by name PreferencesWindow Ordenar aplicaciones por nombre
Suspend DeskbarMenu Suspender
@ -27,7 +27,6 @@ Large PreferencesWindow Grande
Auto-raise PreferencesWindow Redimensionar automáticamente
Recent folders: PreferencesWindow Carpetas recientes:
Show application expander PreferencesWindow Mostar expansor de aplicación
Restart Tracker DeskbarMenu Reiniciar rastreador
Close all WindowMenu Cerrar todo
Deskbar preferences PreferencesWindow Preferencias de la barra de escritorio
Mount DeskbarMenu Montar

View File

@ -1,4 +1,4 @@
1 finnish x-vnd.Be-TSKB 2335730970
1 finnish x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Sammuta virta
Sort applications by name PreferencesWindow Lajittele sovellukset nimen perusteella
Suspend DeskbarMenu Keskeytystila
@ -27,7 +27,6 @@ Large PreferencesWindow Suuri
Auto-raise PreferencesWindow Nosta automaattisesti
Recent folders: PreferencesWindow Äskettäiset kansiot:
Show application expander PreferencesWindow Näytä sovelluslaajentaja
Restart Tracker DeskbarMenu Käynnistä Seuraaja uudelleen
Close all WindowMenu Sulje kaikki
Deskbar preferences PreferencesWindow Työpöytäpalkin asetukset
Mount DeskbarMenu Liitä

View File

@ -1,4 +1,4 @@
1 french x-vnd.Be-TSKB 2335730970
1 french x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Éteindre
Sort applications by name PreferencesWindow Trier les applications par nom
Suspend DeskbarMenu Mettre en veille
@ -27,7 +27,6 @@ Large PreferencesWindow Grande
Auto-raise PreferencesWindow Rehausser automatiquement
Recent folders: PreferencesWindow Dossiers récents :
Show application expander PreferencesWindow Montrer le dérouleur dapplication
Restart Tracker DeskbarMenu Redémarrer le Tracker
Close all WindowMenu Tout fermer
Deskbar preferences PreferencesWindow Réglages de la Deskbar
Mount DeskbarMenu Monter

View File

@ -1,4 +1,4 @@
1 croatian x-vnd.Be-TSKB 2471778709
1 croatian x-vnd.Be-TSKB 2792700964
Power off DeskbarMenu Isključi
Sort applications by name PreferencesWindow Sortiraj programe po imenu
Suspend DeskbarMenu Suspendiraj
@ -26,7 +26,6 @@ Large PreferencesWindow Veliko
Auto-raise PreferencesWindow Samopodizanje
Recent folders: PreferencesWindow Nedavne mape:
Show application expander PreferencesWindow Pokaži proširivač programa
Restart Tracker DeskbarMenu Ponovno pokreni Tracker
Close all WindowMenu Zatvori sve
Deskbar preferences PreferencesWindow Deskbar osobitosti
Mount DeskbarMenu Montiraj

View File

@ -1,4 +1,4 @@
1 hungarian x-vnd.Be-TSKB 2335730970
1 hungarian x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Kikapcsolás
Sort applications by name PreferencesWindow Rendezés a program neve szerint
Suspend DeskbarMenu Felfüggesztés
@ -27,7 +27,6 @@ Large PreferencesWindow Nagy
Auto-raise PreferencesWindow Automatikus előrehozás
Recent folders: PreferencesWindow Utolsó mappák:
Show application expander PreferencesWindow Programkibontó mutatása
Restart Tracker DeskbarMenu Nyomkövető újraindítása
Close all WindowMenu Összes bezárása
Deskbar preferences PreferencesWindow Asztalsáv-beállítások
Mount DeskbarMenu Csatolás

View File

@ -1,4 +1,4 @@
1 italian x-vnd.Be-TSKB 2335730970
1 italian x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Spegni
Sort applications by name PreferencesWindow Ordina per nome
Suspend DeskbarMenu Sospendi
@ -27,7 +27,6 @@ Large PreferencesWindow Grandi
Auto-raise PreferencesWindow Automaticamente in primo piano
Recent folders: PreferencesWindow Cartelle recenti:
Show application expander PreferencesWindow Mostra espansore applicazione
Restart Tracker DeskbarMenu Riavvia il Tracker
Close all WindowMenu Chiudi tutto
Deskbar preferences PreferencesWindow Preferenze di Deskbar
Mount DeskbarMenu Monta

View File

@ -1,4 +1,4 @@
1 japanese x-vnd.Be-TSKB 2335730970
1 japanese x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu 電源を切る
Sort applications by name PreferencesWindow アプリケーションを名前順に並び替える
Suspend DeskbarMenu サスペンド
@ -27,7 +27,6 @@ Large PreferencesWindow 大
Auto-raise PreferencesWindow マウスオーバーで手前に
Recent folders: PreferencesWindow 最近開いたフォルダー
Show application expander PreferencesWindow エキスパンダーを表示
Restart Tracker DeskbarMenu Tracker を再起動
Close all WindowMenu すべて閉じる
Deskbar preferences PreferencesWindow Deskbar の設定
Mount DeskbarMenu マウント

View File

@ -1,4 +1,4 @@
1 lithuanian x-vnd.Be-TSKB 2335730970
1 lithuanian x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Išjungti
Sort applications by name PreferencesWindow Rikiuoti programas pagal pavadinimą
Suspend DeskbarMenu Pristabdyti
@ -27,7 +27,6 @@ Large PreferencesWindow Didelės
Auto-raise PreferencesWindow Automatiškai iškilti
Recent folders: PreferencesWindow Paskiausi aplankai:
Show application expander PreferencesWindow Rodyti programų skleistuką
Restart Tracker DeskbarMenu Perleisti Pėdsekį
Close all WindowMenu Užverti visus
Deskbar preferences PreferencesWindow Užduočių juostos nuostatos
Mount DeskbarMenu Prijungti diską

View File

@ -1,4 +1,4 @@
1 dutch; flemish x-vnd.Be-TSKB 2632170999
1 dutch; flemish x-vnd.Be-TSKB 2953093254
Power off DeskbarMenu Uitzetten
Suspend DeskbarMenu Opschorten
Applications PreferencesWindow Toepassingen
@ -22,7 +22,6 @@ Large PreferencesWindow Groot
Auto-raise PreferencesWindow Automatisch naar boven
Recent folders: PreferencesWindow Recente mappen:
Show application expander PreferencesWindow Toon toepassing-expander
Restart Tracker DeskbarMenu Tracker herstarten
Close all WindowMenu Alles sluiten
Deskbar preferences PreferencesWindow Deskbar-voorkeuren
Mount DeskbarMenu Betrek

View File

@ -1,4 +1,4 @@
1 polish x-vnd.Be-TSKB 2335730970
1 polish x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Wyłącz
Sort applications by name PreferencesWindow Sortuj aplikacje po nazwie
Suspend DeskbarMenu Uśpij
@ -27,7 +27,6 @@ Large PreferencesWindow Duże
Auto-raise PreferencesWindow Autoaktywacja
Recent folders: PreferencesWindow Ostatnio przeglądane katalogi:
Show application expander PreferencesWindow Aplikacje jako lista rozwijalna
Restart Tracker DeskbarMenu Uruchom ponownie Trackera
Close all WindowMenu Zamknij wszystkie
Deskbar preferences PreferencesWindow Ustawienia Deskbara
Mount DeskbarMenu Zamontuj

View File

@ -1,4 +1,4 @@
1 portuguese (brazil) x-vnd.Be-TSKB 2335730970
1 portuguese (brazil) x-vnd.Be-TSKB 2656653225
Power off DeskbarMenu Desligar
Sort applications by name PreferencesWindow Ordenar aplicativos pelo nome
Suspend DeskbarMenu Suspender
@ -27,7 +27,6 @@ Large PreferencesWindow Grande
Auto-raise PreferencesWindow Auto-levantar
Recent folders: PreferencesWindow Pastas recentes:
Show application expander PreferencesWindow Mostrar expansor de aplicativo
Restart Tracker DeskbarMenu Reiniciar Rastreador
Close all WindowMenu Fechar tudo
Deskbar preferences PreferencesWindow Preferências da Deskbar
Mount DeskbarMenu Montar

Some files were not shown because too many files have changed in this diff Show More