diff --git a/build-files/conf/port-make.conf b/build-files/conf/port-make.conf index a4c500e38..3768b9384 100644 --- a/build-files/conf/port-make.conf +++ b/build-files/conf/port-make.conf @@ -59,9 +59,6 @@ w3m_SET=M17N # OptionsNG gpgme_SET=GPGSM -# Enable GVIM and other options -WITH_VIM_OPTIONS=YES - # OptionsNG hplip_SET=SNMP SCAN XSANE FAX @@ -130,3 +127,6 @@ postfix_SET=MYSQL TLS #Set some rxvt-unicode options rxvt-unicode_SET= 256_COLOR + +# Enable GUI for VIM +vim_SET=WITH_OPTIONS WITH_VIM_OPTIONS diff --git a/build-files/ports-overlay/databases/postgresql-libpqxx3/Makefile b/build-files/ports-overlay/databases/postgresql-libpqxx3/Makefile index 507fb8114..2aebcbe10 100644 --- a/build-files/ports-overlay/databases/postgresql-libpqxx3/Makefile +++ b/build-files/ports-overlay/databases/postgresql-libpqxx3/Makefile @@ -2,7 +2,7 @@ # $FreeBSD: databases/postgresql-libpqxx3/Makefile 327717 2013-09-20 16:13:47Z bapt $ PORTNAME= libpqxx -PORTVERSION= 3.1 +PORTVERSION= 3.1.1 CATEGORIES= databases MASTER_SITES= http://pqxx.org/download/software/${PORTNAME}/ PKGNAMEPREFIX= postgresql- @@ -21,10 +21,11 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GCC= yes PLIST_SUB= PORTVERSION=${PORTVERSION} +USE_PYTHON_BUILD= yes +USES=shebangfix +SHEBANG_FILES= tools/splitconfig -CONFIGURE_ARGS= --with-postgres=${LOCALBASE} \ - --enable-shared \ - --with-postgres-include=${LOCALBASE}/include/postgresql +CONFIGURE_ARGS= --enable-shared NO_STAGE= yes .include diff --git a/build-files/ports-overlay/databases/postgresql-libpqxx3/distinfo b/build-files/ports-overlay/databases/postgresql-libpqxx3/distinfo index 2246a393b..de5f8114b 100644 --- a/build-files/ports-overlay/databases/postgresql-libpqxx3/distinfo +++ b/build-files/ports-overlay/databases/postgresql-libpqxx3/distinfo @@ -1,2 +1,2 @@ -SHA256 (postgresql/libpqxx-3.1.tar.gz) = 8950433f193e118cfd36ab91391eb174ef48897bacc26197da596988e66796a0 -SIZE (postgresql/libpqxx-3.1.tar.gz) = 1771846 +SHA256 (postgresql/libpqxx-3.1.1.tar.gz) = ce443c7c515623b4a68de5f0657460344b6b6320982d8f8efc657c3746e1ee90 +SIZE (postgresql/libpqxx-3.1.1.tar.gz) = 1563338 diff --git a/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1665 b/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1665 deleted file mode 100644 index eb1ffab8d..000000000 --- a/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1665 +++ /dev/null @@ -1,22 +0,0 @@ -Index: /trunk/include/pqxx/util.hxx -=================================================================== ---- ./include/pqxx/util.hxx (revision 1638) -+++ ./include/pqxx/util.hxx (revision 1665) -@@ -33,4 +33,6 @@ - #include - #endif -+ -+#include "pqxx/strconv" - - -Index: /trunk/include/pqxx/cursor.hxx -=================================================================== ---- ./include/pqxx/cursor.hxx (revision 1559) -+++ ./include/pqxx/cursor.hxx (revision 1665) -@@ -308,5 +308,5 @@ - transaction_base &trans, - const PGSTD::string adopted_cursor) : -- m_cur(trans, adopted_cursor, up, op) -+ m_cur(trans, adopted_cursor, op) - { - // Put cursor in known position diff --git a/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1833 b/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1833 new file mode 100644 index 000000000..58c1bc3b3 --- /dev/null +++ b/build-files/ports-overlay/databases/postgresql-libpqxx3/files/patch-svn_1833 @@ -0,0 +1,42 @@ +--- include/pqxx/largeobject.hxx (revision 1706) ++++ include/pqxx/largeobject.hxx (revision 1833) +@@ -397,5 +397,5 @@ + size_type BufSize=512) : //[t48] + m_BufSize(BufSize), +- m_Obj(T, O), ++ m_Obj(T, O, mode), + m_G(0), + m_P(0) +@@ -407,5 +407,5 @@ + size_type BufSize=512) : //[t48] + m_BufSize(BufSize), +- m_Obj(T, O), ++ m_Obj(T, O, mode), + m_G(0), + m_P(0) +--- ChangeLog (revision 1825) ++++ ChangeLog (revision 1833) +@@ -1,2 +1,7 @@ ++2012-08-03 Jeroen T. Vermeulen ++ include/pqxx/largeobject.hxx: ++ - Backported fix for #252: clang++ 3.2 compile error. Thanks Amy Troschinetz. ++ src/strconv.cxx: ++ - Backported fix for #253: clang++ 3.2 compile error. Thanks Amy Troschinetz. + 2012-03-25 Jeroen T. Vermeulen + test/test002.cxx, test/test007.cxx, test/test011.cxx, test/test012.cxx, +--- src/strconv.cxx (revision 1724) ++++ src/strconv.cxx (revision 1833) +@@ -7,5 +7,5 @@ + * implementation of string conversions + * +- * Copyright (c) 2008, Jeroen T. Vermeulen ++ * Copyright (c) 2008-2012, Jeroen T. Vermeulen + * + * See COPYING for copyright license. If you did not receive a file called +@@ -193,5 +193,5 @@ + S.imbue(locale("C")); + #endif +- ok = (S >> result); ++ ok = static_cast(S >> result); + } + break; diff --git a/build-files/ports-overlay/databases/postgresql-libpqxx3/pkg-plist b/build-files/ports-overlay/databases/postgresql-libpqxx3/pkg-plist index 13a6e83d4..4af66c712 100644 --- a/build-files/ports-overlay/databases/postgresql-libpqxx3/pkg-plist +++ b/build-files/ports-overlay/databases/postgresql-libpqxx3/pkg-plist @@ -81,7 +81,7 @@ include/pqxx/util include/pqxx/util.hxx include/pqxx/version include/pqxx/version.hxx -lib/libpqxx-%%PORTVERSION%%.so +lib/libpqxx-3.1.so lib/libpqxx.a lib/libpqxx.la lib/libpqxx.so diff --git a/build-files/ports-overlay/editors/vim/Makefile b/build-files/ports-overlay/editors/vim/Makefile new file mode 100644 index 000000000..141575a1c --- /dev/null +++ b/build-files/ports-overlay/editors/vim/Makefile @@ -0,0 +1,307 @@ +# Created by: David O'Brien +# $FreeBSD: editors/vim/Makefile 328318 2013-09-25 21:16:43Z obrien $ + +PORTNAME?= vim +# ! _NEVER_ reduce or lower PATCHLEVEL, even if the PATCHLEVEL +# ! value # is added to BADPATCHES. Doing otherwise will cause +# ! PORTEPOCH to be needed, which we do NOT want. +# +# ! DO NOT increase PATCHLEVEL to a patch listed in BADPATCHES. +# ! Doing so is dis-genuine. It implies we're at a level we are +# ! not. The "PATCHLEVEL" patch needs to apply before bumping +# ! PATCHLEVEL to that level. +PATCHLEVEL= 052 +PORTVERSION= 7.4.${PATCHLEVEL} +RELEASE= vim-${PORTVERSION:C/\.[0-9a-z]*$//} +PORTREVISION?= 0 +CATEGORIES?= editors +MASTER_SITES= ${MASTER_SITE_VIM} +DISTFILES= ${RELEASE}${EXTRACT_SUFX} + +PATCH_SITES= ${MASTER_SITES:S|unix|patches/${PORTVERSION:C/\.[0-9a-z]*$//}|}\ + ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/obrien/:local +PATCHFILES!= /usr/bin/jot -s " " -w ${PORTVERSION:C/\.[0-9]*$//}.%03d \ + ${PATCHLEVEL} 1 ${PATCHLEVEL} +# bits to remove +BADPATCHES= +.for p in ${BADPATCHES} +PATCHFILES:= ${PATCHFILES:N7.3.${p}} +.endfor + +MAINTAINER?= obrien@FreeBSD.org +COMMENT?= Vi "workalike", with many additional features + +SLAVEDIRS= editors/vim-lite +NO_STAGE= yes + +.if !defined(LITE) +.if defined(WITH_OPTIONS) || defined(WITH_VIM_OPTIONS) +.include "${.CURDIR}/../vim/options" +OPTIONS_DEFAULT+= CSCOPE EXUBERANT_CTAGS PERL PYTHON RUBY \ + TCL LUA X11 GTK2 +.else +VIM_PORT_SCRIPT_LANGS?= LUA PERL PYTHON RUBY TCL +VIM_PORT_OPTIONS= CSCOPE DOCS EXAMPLES EXUBERANT_CTAGS \ + ${VIM_PORT_SCRIPT_LANGS} +PORT_OPTIONS?= ${VIM_PORT_OPTIONS} +.endif +.endif + +.include + +CONFLICTS= vim6* vim*-gnome +.if defined(LITE) +CONFLICTS+= vim* +.else +CONFLICTS+= vim*-lite +.endif + +MAKE_JOBS_UNSAFE= yes +USE_BZIP2= yes +DIST_SUBDIR= vim +WRKSRC= ${WRKDIR}/vim${PORTVERSION:C/\.[0-9]*$//:S/.//g}/src +PATCH_DIST_ARGS= -d ${WRKSRC:S/src$//} --batch --forward --quiet -E ${PATCH_DIST_STRIP} +# consider +#PATCH_DIST_ARGS= -t +REINPLACE_ARGS= -i "" +MAKE_ARGS+= CONF_ARGS="--prefix=${PREFIX} --with-tlib=termlib ${CSCOPE_ARG}" +ALL_TARGET= # +_DATADIR= ${RELEASE:S/-//g:S/.//g} +DATADIR= ${PREFIX}/share/vim/${_DATADIR} +PLIST_SUB= VIM_VER=${_DATADIR} +MAN1= evim.1 vim.1 vimdiff.1 vimtutor.1 xxd.1 +MLINKS= vim.1 rvim.1 vim.1 rview.1 +.if !defined(LITE) +MLINKS+= vim.1 gvim.1 vim.1 gview.1 vimdiff.1 gvimdiff.1 \ + vim.1 rgvim.1 vim.1 rgview.1 evim.1 eview.1 +.endif + +.if ${PORT_OPTIONS:MNLS} +MANLANG= "" ru.KOI8-R ru.UTF-8 pl.ISO8859-2 pl.UTF-8 pl fr.ISO8859-1 \ + fr.UTF-8 fr it.ISO8859-1 it.UTF-8 it +USES+= gettext +PLIST_SUB+= NLS="" +.else +MAKE_ARGS+= CONF_OPT_NLS="--disable-nls" +PLIST_SUB+= NLS="@comment " +.endif + +.if ${PORT_OPTIONS:MPYTHON} +USE_PYTHON= yes +MAKE_ARGS+= CONF_OPT_PYTHON="--enable-pythoninterp" +.endif + +.if ${PORT_OPTIONS:MRUBY} +USE_RUBY= yes +MAKE_ARGS+= CONF_OPT_RUBY="--enable-rubyinterp" +.endif + +.if ${PORT_OPTIONS:MTCL} +USE_TCL= 85+ +MAKE_ARGS+= CONF_OPT_TCL="--enable-tclinterp --with-tclsh="${TCLSH:S/${LOCALBASE}\/bin\///g}"" +.endif + +.if ${PORT_OPTIONS:MLUA} +USE_LUA= yes +MAKE_ARGS+= CONF_OPT_LUA="--enable-luainterp=dynamic" +MAKE_ARGS+= CONF_OPT_LUA_PREFIX="--with-lua-prefix=${LOCALBASE}" +.endif + +.if ${PORT_OPTIONS:MPERL} +USES= perl5 +MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp" +.endif + +WANT_GNOME= yes + +.if defined(LITE) +PKGNAMESUFFIX= -lite +CONF_OPT_GUI="--enable-gui=no --without-x --enable-multibyte" +MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable-tclinterp --disable-rubyinterp --disable-luainterp" +.else # !LITE +MAKE_ARGS+= CONF_OPT_FEAT="--with-features=big" +I18N= CONF_OPT_MULTIBYTE="--enable-multibyte --enable-fontset --enable-xim" +CONF_OPT_GUI="--enable-gui=no --without-x" +.endif + +.if ${PORT_OPTIONS:MCSCOPE} +RUN_DEPENDS+= cscope:${PORTSDIR}/devel/cscope +MAKE_ARGS+= CONF_OPT_CSCOPE="--enable-cscope" +.endif + +.if ${PORT_OPTIONS:MEXUBERANT_CTAGS} +RUN_DEPENDS+= exctags:${PORTSDIR}/devel/ctags +CTAGS_CMD= exctags -R . +.else +CTAGS_CMD= ${FIND} . -type f \\|${XARGS} ctags +.endif + +.if ${PORT_OPTIONS:MX11} +CONF_OPT_GUI="--enable-gui=no --with-x" + +. if ${PORT_OPTIONS:MATHENA} +CONF_OPT_GUI="--enable-gui=athena" +USE_XORG+= xaw +. endif + +. if ${PORT_OPTIONS:MGTK2} +USE_GNOME= gtk20 +CONF_OPT_GUI="--enable-gui=gtk2 --with-gtk-prefix=${LOCALBASE}" +MAKE_ARGS+= X_LIBS="$(X_LIBS) -lX11 -lXext -lXt" +USE_XORG+= xt x11 xext +. endif + +. if ${PORT_OPTIONS:MGNOME} +USE_GNOME= libgnomeui +PKGNAMESUFFIX= -gnome2 +CONF_OPT_GUI="--enable-gui=gnome2" +MAKE_ARGS+= X_LIBS="$(X_LIBS) -lX11 -lXext -lXt" +USE_XORG+= xt x11 xext glproto +. endif + +. if ${PORT_OPTIONS:MMOTIF} +USES+= motif +CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" +MAKE_ARGS+= MOTIFHOME=${LOCALBASE} +. endif + +.endif +MAKE_ARGS+= CONF_OPT_GUI=${CONF_OPT_GUI} ${I18N} + + +.if exists(${LOCALBASE}/lib/libiconv.so) +USES+= iconv +.endif + + +post-patch: + @(${FIND} ${WRKSRC}/../runtime/ -name menu\*.vim -print0 | ${XARGS} -0 \ + ${REINPLACE_CMD} -e 's,ctags -R \.,${CTAGS_CMD},g') +.if !defined(STRIP) || ${STRIP} == "" + ${REINPLACE_CMD} '/$$(STRIP)/d' ${WRKSRC}/Makefile +.endif + +pre-configure: + @${CP} -pv ${WRKSRC}/config.mk.dist ${WRKSRC}/auto/config.mk + @(cd ${WRKSRC} ; ${MAKE} distclean) + @${REINPLACE_CMD} -e ' \ + s|\$$gtk_config_prefix/bin/gtk-config|\$${GTK_CONFIG}|g; \ + s|\$$gtk_config_exec_prefix/bin/gtk-config|\$${GTK_CONFIG}|g; \ + s|/usr/local|${LOCALBASE}|g; \ + s|set dummy lua;|set dummy lua-${LUA_VER};|g' \ + ${WRKSRC}/auto/configure +.if ${PORT_OPTIONS:MXTERM_SAVE} + @${REINPLACE_CMD} -e ' \ + s|/\* #define FEAT_XTERM_SAVE \*/|#define FEAT_XTERM_SAVE|g' \ + ${WRKSRC}/feature.h +.endif + +post-configure: + @(cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} scratch config) + ${REINPLACE_CMD} -e 's@#define HAVE_SYSINFO 1@/* #undef HAVE_SYSINFO */@' ${WRKSRC}/auto/config.h + +# Clean up junk files to keep them from being installed. +pre-install: + @${FIND} ${WRKSRC:H} -type f -name '*.orig' -delete + +post-install: + [ -e ${PREFIX}/bin/gvim ] || (cd ${PREFIX}/bin ; ${LN} -sf vim gvim) + # below needed for `vim-lite' port + ${TEST} -e ${PREFIX}/bin/rgvim || (cd ${PREFIX}/bin ; ${LN} -sf vim rgvim) + ${TEST} -e ${PREFIX}/bin/gview || (cd ${PREFIX}/bin ; ${LN} -sf vim gview) + ${TEST} -e ${PREFIX}/bin/rgview || (cd ${PREFIX}/bin ; ${LN} -sf vim rgview) + ${TEST} -e ${PREFIX}/bin/evim || (cd ${PREFIX}/bin ; ${LN} -sf vim evim) + ${TEST} -e ${PREFIX}/bin/eview || (cd ${PREFIX}/bin ; ${LN} -sf vim eview) + ${TEST} -e ${PREFIX}/bin/gvimdiff \ + || (cd ${PREFIX}/bin ; ${LN} -sf vim gvimdiff) + ${TEST} -e ${PREFIX}/bin/gvimtutor \ + || (cd ${PREFIX}/bin ; ${LN} -sf vimtutor gvimtutor) + ${INSTALL_DATA} ${FILESDIR}/vietnamese_viscii.vim ${DATADIR}/keymap + cd ${PREFIX} ; \ + ${FIND} share/vim/${_DATADIR} -type f -o -type l \ + | ${SORT} \ + >${WRKDIR}/PLIST.share-vim + cd ${PREFIX} ; \ + ${FIND} share/vim/${_DATADIR} -type d \ + | ${SORT} -r | ${SED} -e 's/^/@dirrm /g' \ + >>${WRKDIR}/PLIST.share-vim + ${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script + ${ECHO_CMD} "/Insert PLIST.share-vim" >> ${WRKDIR}/ex.script + ${ECHO_CMD} "d" >> ${WRKDIR}/ex.script + ${ECHO_CMD} "r ${WRKDIR}/PLIST.share-vim" >> ${WRKDIR}/ex.script + ${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script + ${CP} -p ${TMPPLIST} ${TMPPLIST}.pre-share-vim + cd ${WRKDIR} ; ex < ex.script + +show-options: + @${MAKE} -DWITH_OPTIONS showconfig + @${ECHO_CMD} "" + @${ECHO_CMD} "Put \"WITH_OPTIONS=yes\" -or- \"WITH_VIM_OPTIONS=yes\"" + @${ECHO_CMD} "in your /etc/make.conf or /etc/ports.conf file to enable OPTIONS processing. + +.if defined(ONT_CHECKSUM) +checksum: +.endif + +cklatest: .PHONY + @${ECHO} -n "Currently at: " + @${MAKE} -V PATCHLEVEL + -(${SED} -i '' "s/^PATCHLEVEL=.*$$/PATCHLEVEL= `ncftpls \ + ftp://ftp.vim.org/pub/vim/patches/${PORTVERSION:C/\.[0-9a-z]*$//}/ \ + | grep "^${PORTVERSION:C/\.[0-9a-z]*$//}" \ + | ${SED} -n -E -e 's/${PORTVERSION:C/[0-9]*$//}([0-9]+)$$/\1/p' \ + | sort -n | ${TAIL} -1`/" Makefile) + @${ECHO} -n "Now at: " + @${MAKE} -V PATCHLEVEL + +find-bad-patches: + @cd ${DISTDIR} ; egrep -l \ + '(src/if_(ole|mzsch)|src/gui_(w32|w48|mac)|src/os_(riscos|cyg|os2|vms|amiga|win32|mswin))|src(/testdir)?/Make_(dos|cyg|vms|mvc|ming|os2|amiga|mms)'\ + vim/${PORTVERSION:C/\.[0-9a-z]*$//}* + +ckp: + /usr/bin/time -h ${MAKE} -DPATCH_DEBUG -DONT_CHECKSUM clean patch + +ckmtree: + ${MTREE_CMD} -f ${MTREE_FILE} -p ${PREFIX} + +do-patch: + @${ECHO_MSG} "===> Applying distribution patches for ${PKGNAME} from `pwd`" + @set -e ; \ + (cd ${_DISTDIR} ; \ + for i in ${_PATCHFILES}; do \ + if [ ${PATCH_DEBUG_TMP} = yes ]; then \ + ${ECHO_MSG} "===> Applying distribution patch $$i" ; \ + fi ; \ + ${PATCH} ${PATCH_DIST_ARGS} -i ${_DISTDIR}/$$i; \ + done ) + @set -e ;\ + if [ -d ${PATCHDIR} ]; then \ + if [ "`${ECHO_CMD} ${PATCHDIR}/patch-*`" != "${PATCHDIR}/patch-*" ]; then \ + ${ECHO_MSG} "===> Applying ${OPSYS} patches for ${PKGNAME}" ; \ + PATCHES_APPLIED="" ; \ + for i in ${PATCHDIR}/patch-*; do \ + case $$i in \ + *.orig|*.rej|*~|*,v) \ + ${ECHO_MSG} "===> Ignoring patchfile $$i" ; \ + ;; \ + *) \ + if [ ${PATCH_DEBUG_TMP} = yes ]; then \ + ${ECHO_MSG} "===> Applying ${OPSYS} patch $$i" ; \ + fi; \ + if ${PATCH} ${PATCH_ARGS} < $$i ; then \ + PATCHES_APPLIED="$$PATCHES_APPLIED $$i" ; \ + else \ + ${ECHO_MSG} `${ECHO_CMD} "=> Patch $$i failed to apply cleanly." | ${SED} "s|${PATCHDIR}/||"` ; \ + if [ x"$$PATCHES_APPLIED" != x"" ]; then \ + ${ECHO_MSG} `${ECHO_CMD} "=> Patch(es) $$PATCHES_APPLIED applied cleanly." | ${SED} "s|${PATCHDIR}/||g"` ; \ + fi; \ + ${FALSE} ; \ + fi; \ + ;; \ + esac; \ + done; \ + fi; \ + fi + +.include diff --git a/build-files/ports-overlay/editors/vim/add-bad.sh b/build-files/ports-overlay/editors/vim/add-bad.sh new file mode 100644 index 000000000..6669c7ebb --- /dev/null +++ b/build-files/ports-overlay/editors/vim/add-bad.sh @@ -0,0 +1,12 @@ +: +# $FreeBSD: editors/vim/add-bad.sh 302686 2012-08-17 16:08:14Z obrien $ + +usage() { + echo 'usage: ${0##*/} ' + exit 1 +} +if [ $# -lt 1 ]; then + usage +fi + +sed -i '' "s/^BADPATCHES=.*$/& $*/" Makefile diff --git a/build-files/ports-overlay/editors/vim/distinfo b/build-files/ports-overlay/editors/vim/distinfo new file mode 100644 index 000000000..35b8b0b9d --- /dev/null +++ b/build-files/ports-overlay/editors/vim/distinfo @@ -0,0 +1,106 @@ +SHA256 (vim/vim-7.4.tar.bz2) = d0f5a6d2c439f02d97fa21bd9121f4c5abb1f6cd8b5a79d3ca82867495734ade +SIZE (vim/vim-7.4.tar.bz2) = 9843297 +SHA256 (vim/7.4.001) = f3e3ebe2b36c666b0fd63e7972d8579e7ea2f75d94c107770fd632f73f765e7e +SIZE (vim/7.4.001) = 13179 +SHA256 (vim/7.4.002) = 915a96741381f0edb76edce2d183daadec01b0a1caf7602f842f884c934ece53 +SIZE (vim/7.4.002) = 2522 +SHA256 (vim/7.4.003) = 0f6fffc68cfee1c21cca213be35726c9b41e757e9bc580a83a540431426b1712 +SIZE (vim/7.4.003) = 2680 +SHA256 (vim/7.4.004) = 2d28987dec13c3ba800c07ce91c6ab617960b0e927746cbaa80044933acb6f49 +SIZE (vim/7.4.004) = 7145 +SHA256 (vim/7.4.005) = f8e97d8d874e5903e1ed673528f775ce7b452de94c946b87ab50a81cad12fceb +SIZE (vim/7.4.005) = 1391 +SHA256 (vim/7.4.006) = 8b0f25325267bd04b269d7b0f0db17b15311fdca22cbbe90e28673575c81b918 +SIZE (vim/7.4.006) = 1952 +SHA256 (vim/7.4.007) = 1e1738b37b717b1d1b777196d0e20fd2c4eb56579a8ae66c0dc79ed69288617c +SIZE (vim/7.4.007) = 2538 +SHA256 (vim/7.4.008) = 7507c26edf3c495d141b15deba2932cb88c7095d1b13cba9596dabee333e40f0 +SIZE (vim/7.4.008) = 2176 +SHA256 (vim/7.4.009) = d549513051b570e1ba6587e29ba89012f39f308a4014d713fe2dfc1c768293db +SIZE (vim/7.4.009) = 2051 +SHA256 (vim/7.4.010) = cad1ac9cbd0bcf3e39199b612816ae6fbeee720fe27ff6ba13ce7c5e3e400ae3 +SIZE (vim/7.4.010) = 2307 +SHA256 (vim/7.4.011) = 2dce9c330dd0b10623c7d06cbc213df54528e0230fae9c34cfaab2b2e009856c +SIZE (vim/7.4.011) = 2270 +SHA256 (vim/7.4.012) = d8accd300c7f3169aabca71fb197f872e1d41aad65ed6ebdacf1fdb9c27e45fb +SIZE (vim/7.4.012) = 6180 +SHA256 (vim/7.4.013) = 39d2cf3f43d53f4fbbc0571ea182c794b267c301a9d412859b9eb5aa778b5c77 +SIZE (vim/7.4.013) = 2986 +SHA256 (vim/7.4.014) = e10451a50a6351aacd850732da813b13fa1005b575de0b6fb1adc3dbfc740303 +SIZE (vim/7.4.014) = 2671 +SHA256 (vim/7.4.015) = 58c630589a9433b701b2dea05f5f51ca146f43bef97cf10e429a0cf0ffda79de +SIZE (vim/7.4.015) = 3135 +SHA256 (vim/7.4.016) = 7ce2e800b2ff8530ab1b9ef87d93269a5f3dc9cb47e280c048e2596597469445 +SIZE (vim/7.4.016) = 5999 +SHA256 (vim/7.4.017) = 2881431e5e63e0d7e94685e90f8901b5c797979ae2d33f06ff6a8484567dfc07 +SIZE (vim/7.4.017) = 2319 +SHA256 (vim/7.4.018) = 1886ccef372e23a5b40fd839de1e4cf18f78f09c6dae375dcaa9f254bd8e25e8 +SIZE (vim/7.4.018) = 1400 +SHA256 (vim/7.4.019) = 2cde3bc719d3464ff2cd7b56cae97a4276486b434e67ece0f349db2580e11bd0 +SIZE (vim/7.4.019) = 1948 +SHA256 (vim/7.4.020) = 548ded649af204ee3f62523129115c425a75a59f2498df3c4505dd696a5bd38d +SIZE (vim/7.4.020) = 2586 +SHA256 (vim/7.4.021) = e01d1e244133c3376f4f239dcbb47b305e9d8333fcf435cd246c613ef0204eac +SIZE (vim/7.4.021) = 2806 +SHA256 (vim/7.4.022) = 557693da4eced07569d40e12583cf6e15218b81cc2cb20057823db8a9ace7798 +SIZE (vim/7.4.022) = 4209 +SHA256 (vim/7.4.023) = 0df20d3138bf5f2482acf6a9e3343b3cc8f0200e6ed40c6c2cf4d0080c13ff22 +SIZE (vim/7.4.023) = 1704 +SHA256 (vim/7.4.024) = 16cee8091c299760988c3b9a7143fba549a205f5c411bb33931b4ccc39298ba0 +SIZE (vim/7.4.024) = 1992 +SHA256 (vim/7.4.025) = e38dd45664d777eeba6d4454d32557cbe931910f40ce18b76a85f1aa66fe7898 +SIZE (vim/7.4.025) = 2074 +SHA256 (vim/7.4.026) = 4e56726ad8f78da2575e61d1277a64d09b8c471a6244068b6c518f78de7dd928 +SIZE (vim/7.4.026) = 1710 +SHA256 (vim/7.4.027) = 3ff4fda38b01c9175b715640d047fc70bacce466f5acf5094dff87841d40f27c +SIZE (vim/7.4.027) = 2815 +SHA256 (vim/7.4.028) = 40a01305ef777d6d684c25aa9a41fb856d91649f4edf79bcdc09b9aed24db977 +SIZE (vim/7.4.028) = 27323 +SHA256 (vim/7.4.029) = fe67d633a3e094e1f16306d3132b74bbc96d52c19bd1c235f42fc06738d9ca7c +SIZE (vim/7.4.029) = 1837 +SHA256 (vim/7.4.030) = b5ba9bf5c27d8ad28afebea10321952d3bbab51b8d3d9c77af48fa48e3fdebac +SIZE (vim/7.4.030) = 2724 +SHA256 (vim/7.4.031) = ab6f48d6fd294190b93cb88e53b6d98da73f11e57c774691da3388c3dd2eff6d +SIZE (vim/7.4.031) = 1748 +SHA256 (vim/7.4.032) = c44239403a65e311fcfe9b3bc54c4d6e23dc59a1c9fd3274f54f46693042114f +SIZE (vim/7.4.032) = 2629 +SHA256 (vim/7.4.033) = 495c091154839d043057850527650febf8607cc98e73d89359cb9e625aaf7c4e +SIZE (vim/7.4.033) = 3610 +SHA256 (vim/7.4.034) = 7c179d18351785084fcaa595dc6a35926bce593d3479dcad9cb7dec4c1e9d5ab +SIZE (vim/7.4.034) = 5336 +SHA256 (vim/7.4.035) = e539198c088274656490955d9667ba5e8d6c88e3f20e451d78f6ede6d980edfb +SIZE (vim/7.4.035) = 1696 +SHA256 (vim/7.4.036) = d1fa20b9e01c49e63bab9100e32724e3307d59a3ddb0d7cc80d2925e5c1b5453 +SIZE (vim/7.4.036) = 7996 +SHA256 (vim/7.4.037) = 72c6f87f00b4f0e328b9b044019d6109f71c2d9e79e6f2f4dea27773be3018b7 +SIZE (vim/7.4.037) = 4274 +SHA256 (vim/7.4.038) = 21abfce59f6f31cf515b7fbbabe81e8d0f78cbe60eed24a5c2d7d066619dd876 +SIZE (vim/7.4.038) = 3579 +SHA256 (vim/7.4.039) = b4cc178c6cf76c58edbbf71d3e0066e1ae3f9a8c6b41dc22f20541e7c26199f5 +SIZE (vim/7.4.039) = 6108 +SHA256 (vim/7.4.040) = 8a4c59dc042c131c4d9490814d3565df66778bd336c6014a1bcd1e8aa2992a94 +SIZE (vim/7.4.040) = 2320 +SHA256 (vim/7.4.041) = 8369d64dd3939a91e01c1bc99ca074487c348575096ed2202454c99421fae6ef +SIZE (vim/7.4.041) = 1695 +SHA256 (vim/7.4.042) = 1d9097516400f544c8d18c1abcaad580dfd360ee29faf110fccc00b3dc06c8f3 +SIZE (vim/7.4.042) = 2104 +SHA256 (vim/7.4.043) = e304ac9425991d29c26ce11167e61d87d226f9514d1a6cf7c573fb4c6eb3e749 +SIZE (vim/7.4.043) = 2920 +SHA256 (vim/7.4.044) = b9ccf7303cb2d67d0606deb0d7c4018878a5ad77418a5dc343031a8a7996beeb +SIZE (vim/7.4.044) = 2134 +SHA256 (vim/7.4.045) = 49e69f82c9ab92f8c8663dd6234e6ead9fde922b718836fe9a3e30557e07a4b8 +SIZE (vim/7.4.045) = 3167 +SHA256 (vim/7.4.046) = b65977df93b1a3ea3e32baf385845b629196904d4189fa66590217262be207a0 +SIZE (vim/7.4.046) = 2147 +SHA256 (vim/7.4.047) = 58b09b332c5a1508d4907dcd930e8c23729a7955bbd38207d21d0169c820de61 +SIZE (vim/7.4.047) = 1685 +SHA256 (vim/7.4.048) = 3c2756c337123a81b66af0edff068cfa644df57f850ab3edc1cb24657ef6541f +SIZE (vim/7.4.048) = 4441 +SHA256 (vim/7.4.049) = c10e85ec23f2176116f829e47d7f694462a6081b995ac5b20b196702225c4c73 +SIZE (vim/7.4.049) = 2145 +SHA256 (vim/7.4.050) = d3ae14ccf109c0ac3a1f6a8bc48902d0b6f2bc64fe10c9171b0f27e47ef8bb11 +SIZE (vim/7.4.050) = 2605 +SHA256 (vim/7.4.051) = 3e83fac7f6e72db6243aec549330bfff9bc9f0e5e53800baa40e7d84831a8b7a +SIZE (vim/7.4.051) = 2068 +SHA256 (vim/7.4.052) = 2125ae5918e9ba0fea2945ad5c98fce532d09abda313d4251eb5df92ea4c432d +SIZE (vim/7.4.052) = 5890 diff --git a/build-files/ports-overlay/editors/vim/files/patch-01 b/build-files/ports-overlay/editors/vim/files/patch-01 new file mode 100644 index 000000000..546c96742 --- /dev/null +++ b/build-files/ports-overlay/editors/vim/files/patch-01 @@ -0,0 +1,77 @@ +--- Makefile.orig Sun Jun 1 06:18:29 2003 ++++ Makefile Sat Nov 1 15:39:09 2003 +@@ -256,7 +256,7 @@ + #DO NOT CHANGE the next line, we need it for configure to find the compiler + #instead of using the default from the "make" program. + #Use a line further down to change the value for CC. +-CC= ++#CC= + + # Change and use these defines if configure cannot find your Motif stuff. + # Unfortunately there is no "standard" location for Motif. {{{ +@@ -288,6 +288,7 @@ + # of make, will buid Vim. + + # CONFIGURE - configure arguments {{{1 ++CONF_ARGS = --prefix=$(PREFIX) + # You can give a lot of options to configure. + # Change this to your desire and do 'make config' afterwards + +@@ -1829,3 +1830,3 @@ install: $(GUI_INSTALL) + +-install_normal: installvim installtools $(INSTALL_LANGS) install-icons ++install_normal: installvim installtools $(INSTALL_LANGS) # install-icons + +@@ -1794,40 +1795,40 @@ + installgvimdiff: $(DEST_BIN)/$(GVIMDIFFTARGET) + + $(DEST_BIN)/$(EXTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(EXTARGET) ++ #cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EXTARGET) + + $(DEST_BIN)/$(VIEWTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIEWTARGET) ++ #cd $(DEST_BIN); ln -sf $(VIMTARGET) $(VIEWTARGET) + + $(DEST_BIN)/$(GVIMTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIMTARGET) + + $(DEST_BIN)/$(GVIEWTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIEWTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIEWTARGET) + + $(DEST_BIN)/$(RVIMTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIMTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RVIMTARGET) + + $(DEST_BIN)/$(RVIEWTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIEWTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RVIEWTARGET) + + $(DEST_BIN)/$(RGVIMTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIMTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RGVIMTARGET) + + $(DEST_BIN)/$(RGVIEWTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIEWTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(RGVIEWTARGET) + + $(DEST_BIN)/$(VIMDIFFTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIMDIFFTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(VIMDIFFTARGET) + + $(DEST_BIN)/$(GVIMDIFFTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMDIFFTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(GVIMDIFFTARGET) + + $(DEST_BIN)/$(EVIMTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EVIMTARGET) + + $(DEST_BIN)/$(EVIEWTARGET): +- cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET) ++ cd $(DEST_BIN); ln -sf $(VIMTARGET) $(EVIEWTARGET) + + # create links for the manual pages with various names to vim. This is only + # done when the links (or manpages with the same name) don't exist yet. diff --git a/build-files/ports-overlay/editors/vim/files/patch-configure b/build-files/ports-overlay/editors/vim/files/patch-configure new file mode 100644 index 000000000..af8686267 --- /dev/null +++ b/build-files/ports-overlay/editors/vim/files/patch-configure @@ -0,0 +1,57 @@ +--- auto/configure.orig 2013-10-17 12:11:54.000000000 +0200 ++++ auto/configure 2013-10-17 12:12:56.000000000 +0200 +@@ -858,7 +858,7 @@ + psdir='${docdir}' + libdir='${exec_prefix}/lib' + localedir='${datarootdir}/locale' +-mandir='${datarootdir}/man' ++mandir='${prefix}/man' + + ac_prev= + ac_dashdash= +@@ -4739,7 +4739,7 @@ + if test "${vi_cv_version_lua_luajit+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'` ++ vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //' | tr d '.'` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_lua_luajit" >&5 + $as_echo "$vi_cv_version_lua_luajit" >&6; } +@@ -4793,7 +4793,7 @@ + if test "${vi_cv_version_plain_lua+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +- vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //'` ++ vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //' | tr -d '.'` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_plain_lua" >&5 + $as_echo "$vi_cv_version_plain_lua" >&6; } +@@ -4884,7 +4884,7 @@ + LIBS=$libs_save + fi + if test "x$lua_ok" = "xyes"; then +- LUA_CFLAGS="-I${vi_cv_path_lua_pfx}/include${LUA_INC}" ++ LUA_CFLAGS="-I${LUA_INCDIR}" + LUA_SRC="if_lua.c" + LUA_OBJ="objects/if_lua.o" + LUA_PRO="if_lua.pro" +@@ -4941,7 +4941,8 @@ + $as_echo "#define DYNAMIC_LUA 1" >>confdefs.h + + LUA_LIBS="" +- LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"${vi_cv_dll_name_lua}\\\" $LUA_CFLAGS" ++ vi_cv_version_lua=${LUA_VER} ++ LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"liblua-${vi_cv_version_lua}\\\" $LUA_CFLAGS" + fi + if test "X$LUA_CFLAGS$LUA_LIBS" != "X" && \ + test "x$MACOSX" = "xyes" && test "x$vi_cv_with_luajit" != "xno" && \ +@@ -6610,7 +6611,7 @@ + $as_echo "$try/tclConfig.sh" >&6; } + . $try/tclConfig.sh + TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"` +- TCL_DEFS=`echo $TCL_DEFS | sed -e 's/\\\\ /\\\\X/g' | tr ' ' '\012' | sed -e '/^[^-]/d' -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\\\ /g'` ++ TCL_DEFS=`echo $TCL_DEFS | sed -e 's/\\ /\\\\X/g' | tr ' ' '\012' | sed -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\\\ /g'` + break + fi + done diff --git a/build-files/ports-overlay/editors/vim/files/patch-installml.sh b/build-files/ports-overlay/editors/vim/files/patch-installml.sh new file mode 100644 index 000000000..136015bce --- /dev/null +++ b/build-files/ports-overlay/editors/vim/files/patch-installml.sh @@ -0,0 +1,42 @@ +--- installml.sh.orig Sun Apr 30 08:48:53 2006 ++++ installml.sh Mon Jun 19 03:36:37 2006 +@@ -55,12 +55,12 @@ if test $what = "install" -a \( -f $dest + # ex +- if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then +- echo creating link $destdir/$exname.1 +- cd $destdir; ln -s $vimname.1 $exname.1 +- fi ++ #if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then ++ # echo creating link $destdir/$exname.1 ++ # cd $destdir; ln -s $vimname.1 $exname.1 ++ #fi + + # view +- if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then +- echo creating link $destdir/$viewname.1 +- cd $destdir; ln -s $vimname.1 $viewname.1 +- fi ++ #if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then ++ # echo creating link $destdir/$viewname.1 ++ # cd $destdir; ln -s $vimname.1 $viewname.1 ++ #fi + +@@ -121,10 +121,10 @@ if test $what = "uninstall"; then + +- if test -L $destdir/$exname.1; then +- echo deleting $destdir/$exname.1 +- rm -f $destdir/$exname.1 +- fi +- if test -L $destdir/$viewname.1; then +- echo deleting $destdir/$viewname.1 +- rm -f $destdir/$viewname.1 +- fi ++ #if test -L $destdir/$exname.1; then ++ # echo deleting $destdir/$exname.1 ++ # rm -f $destdir/$exname.1 ++ #fi ++ #if test -L $destdir/$viewname.1; then ++ # echo deleting $destdir/$viewname.1 ++ # rm -f $destdir/$viewname.1 ++ #fi + if test -L $destdir/$rvimname.1; then diff --git a/build-files/ports-overlay/editors/vim/files/vietnamese_viscii.vim b/build-files/ports-overlay/editors/vim/files/vietnamese_viscii.vim new file mode 100644 index 000000000..d46e36cb6 --- /dev/null +++ b/build-files/ports-overlay/editors/vim/files/vietnamese_viscii.vim @@ -0,0 +1,286 @@ +" $FreeBSD: editors/vim/files/vietnamese_viscii.vim 300896 2012-07-14 13:54:48Z beat $ +" vim:ts=8 +" +" VIQR input +" +" RFC 1456 Vietnamese Standardization Working Group, +" Conventions for Encoding the Vietnamese Language +" VISCII: VIetnamese Standard Code for Information Interchange +" VIQR: VIetnamese Quoted-Readable Specification Revision 1.1", +" May 1993. +" +set isprint=@,002,005-006,020,025,128-255 +" +"letter +imap A' 193 +"letter +imap A` 192 +"letter +imap A? 196 +"letter +imap A~ 195 +"letter +imap A. 128 +"letter +imap A( 197 +"letter +imap 197' 129 +"letter +imap 197` 130 +"letter  +imap 197? 002 +"letter  +imap 197~ 005 +"letter +imap 197. 131 +"letter +imap A^ 194 +"letter +imap 194' 132 +"letter +imap 194` 133 +"letter +imap 194? 134 +"letter  +imap 194~ 006 +"letter +imap 194. 135 +"letter +imap DD 208 +imap Dd 208 +"letter +imap E' 201 +"letter +imap E` 200 +"letter +imap E? 203 +"letter +imap E~ 136 +"letter +imap E. 137 +"letter +imap E^ 202 +"letter +imap 202' 138 +"letter +imap 202` 139 +"letter +imap 202? 140 +"letter +imap 202~ 141 +"letter +imap 202. 142 +"letter +imap I' 205 +"letter +imap I` 204 +"letter +imap I? 155 +"letter +imap I~ 206 +"letter +imap I. 152 +"letter +imap O' 211 +"letter +imap O` 210 +"letter +imap O? 153 +"letter +"imap O~ 213 -- bug in encoding 213 --> a. +imap O~ 160 +"letter +imap O. 154 +"letter +imap O^ 212 +"letter +imap 212' 143 +"letter +imap 212` 144 +"letter +imap 212? 145 +"letter +imap 212~ 146 +"letter +imap 212. 147 +"letter +imap O+ 180 +"letter +imap 180' 149 +"letter +imap 180` 150 +"letter +imap 180? 151 +"letter +imap 180~ 179 +"letter +imap 180. 148 +"letter +imap U' 218 +"letter +imap U` 217 +"letter +imap U? 156 +"letter +imap U~ 157 +"letter +imap U. 158 +"letter +imap U+ 191 +"letter +imap 191' 186 +"letter +imap 191` 187 +"letter +imap 191? 188 +"letter +imap 191~ 255 +"letter +imap 191. 185 +"letter +imap Y' 221 +"letter +imap Y` 159 +"letter  +imap Y? 020 +"letter  +imap Y~ 025 +"letter  +imap Y. 030 +"letter +imap a' 225 +"letter +imap a` 224 +"letter +imap a? 228 +"letter +imap a~ 227 +"letter +"imap a. 160 bug in encoding -- 160 --> O~ +imap a. 213 +"letter +imap a( 229 +"letter +imap 229' 161 +"letter +imap 229` 162 +"letter +imap 229? 198 +"letter +imap 229~ 199 +"letter +imap 229. 163 +"letter +imap a^ 226 +"letter +imap 226' 164 +"letter +imap 226` 165 +"letter +imap 226? 166 +"letter +imap 226~ 231 +"letter +imap 226. 167 +"letter +imap dd 240 +"letter +imap e' 233 +"letter +imap e` 232 +"letter +imap e? 235 +"letter +imap e~ 168 +"letter +imap e. 169 +"letter +imap e^ 234 +"letter +imap 234' 170 +"letter +imap 234` 171 +"letter +imap 234? 172 +"letter +imap 234~ 173 +"letter +imap 234. 174 +"letter +imap i' 237 +"letter +imap i` 236 +"letter +imap i? 239 +"letter +imap i~ 238 +"letter +imap i. 184 +"letter +imap o' 243 +"letter +imap o` 242 +"letter +imap o? 246 +"letter +imap o~ 245 +"letter +imap o. 247 +"letter +imap o^ 244 +"letter +imap 244' 175 +"letter +imap 244` 176 +"letter +imap 244? 177 +"letter +imap 244~ 178 +"letter +imap 244. 181 +"letter +imap o+ 189 +"letter +imap 189' 190 +"letter +imap 189` 182 +"letter +imap 189? 183 +"letter +imap 189~ 222 +"letter +imap 189. 254 +"letter +imap u' 250 +"letter +imap u` 249 +"letter +imap u? 252 +"letter +imap u~ 251 +"letter +imap u. 248 +"letter +imap u+ 223 +"letter +imap 223' 209 +"letter +imap 223` 215 +"letter +imap 223? 216 +"letter +imap 223~ 230 +"letter +imap 223. 241 +"letter +imap y' 253 +"letter +imap y` 207 +"letter +imap y? 214 +"letter +imap y~ 219 +"letter +imap y. 220 + " + " END OF VIQR input support diff --git a/build-files/ports-overlay/editors/vim/options b/build-files/ports-overlay/editors/vim/options new file mode 100644 index 000000000..f4797f234 --- /dev/null +++ b/build-files/ports-overlay/editors/vim/options @@ -0,0 +1,24 @@ +OPTIONS_DEFINE= \ + PERL \ + PYTHON \ + RUBY \ + TCL \ + LUA \ + CSCOPE \ + EXUBERANT_CTAGS \ + XTERM_SAVE \ + NLS \ + X11 +OPTIONS_RADIO= \ + UI +OPTIONS_RADIO_UI=\ + ATHENA \ + GTK2 \ + GNOME \ + MOTIF + +CSCOPE_DESC= cscope support +EXUBERANT_CTAGS_DESC= Use exctags instead of ctags +ATHENA_DESC= Athena GUI toolkit +XTERM_SAVE_DESC= Restore xterm screen after exit +UI_DESC= Graphical toolkit to use diff --git a/build-files/ports-overlay/editors/vim/pkg-descr b/build-files/ports-overlay/editors/vim/pkg-descr new file mode 100644 index 000000000..f2086eabe --- /dev/null +++ b/build-files/ports-overlay/editors/vim/pkg-descr @@ -0,0 +1,23 @@ +Vim is a virtually compatible, extremely enhanced, version of the UNIX +text editor vi. + +There are a lot of enhancements above Vi: multi level undo, multi-windows +and buffers, syntax highlighting, command line editing, filename completion, +on-line help, visual selection, etc.. + +Many features above standard vi's have been added: + multiple windows and buffers, multi level undo, command line history, + filename completion, selection highlighting, block operations (including + column/rectangular blocks), syntax highlighting, on-line help, etc. + Embeded Perl, Tcl, and Python support. + See ":help vi_diff" for a summary of the differences between Vim and Vi. + + An X-windows aware or a full X-windows GUI version can also be built + that allows full use of the mouse and pull-down menus + +See http://www.vim.org/why.html for a full explanation of Vim's features. + +Portability to all UNIX platforms, AmigaOS, Archimedes, Atari MiNT, BeOS, +M$-DOS, MacOS, OS/2, VMS, WinNT+Win95. + +WWW: http://www.vim.org/ diff --git a/build-files/ports-overlay/editors/vim/pkg-plist b/build-files/ports-overlay/editors/vim/pkg-plist new file mode 100644 index 000000000..091d4e1db --- /dev/null +++ b/build-files/ports-overlay/editors/vim/pkg-plist @@ -0,0 +1,43 @@ +@comment $FreeBSD: editors/vim/pkg-plist 314778 2013-03-20 23:56:59Z bapt $ +bin/vim +bin/vimtutor +bin/xxd +@comment bin/ex +@comment bin/gex +bin/eview +bin/evim +bin/gview +bin/gvim +bin/gvimtutor +bin/rgview +bin/rgvim +bin/rview +bin/rvim +bin/vimdiff +bin/gvimdiff +@comment bin/view +@exec mkdir -p %D/share/vim/%%VIM_VER%%/lang +@comment Insert PLIST.share-vim here +@comment -=[ begin PLIST.share-vim ]=- +@comment -=[ end PLIST.share-vim ]=- +%%NLS%%@dirrmtry man/fr/man1 +%%NLS%%@dirrmtry man/fr +%%NLS%%@dirrmtry man/fr.ISO8859-1/man1 +%%NLS%%@dirrmtry man/fr.ISO8859-1 +%%NLS%%@dirrmtry man/fr.UTF-8/man1 +%%NLS%%@dirrmtry man/fr.UTF-8 +%%NLS%%@dirrmtry man/it/man1 +%%NLS%%@dirrmtry man/it +%%NLS%%@dirrmtry man/it.ISO8859-1/man1 +%%NLS%%@dirrmtry man/it.ISO8859-1 +%%NLS%%@dirrmtry man/it.UTF-8/man1 +%%NLS%%@dirrmtry man/it.UTF-8 +%%NLS%%@dirrmtry man/pl/man1 +%%NLS%%@dirrmtry man/pl +%%NLS%%@dirrmtry man/pl.ISO8859-2/man1 +%%NLS%%@dirrmtry man/pl.ISO8859-2 +%%NLS%%@dirrmtry man/pl.UTF-8/man1 +%%NLS%%@dirrmtry man/pl.UTF-8 +%%NLS%%@dirrmtry man/ru.UTF-8/man1 +%%NLS%%@dirrmtry man/ru.UTF-8 +@dirrm share/vim diff --git a/build-files/ports-overlay/emulators/open-vm-tools/Makefile b/build-files/ports-overlay/emulators/open-vm-tools/Makefile index 11b0c732e..bde6cce99 100644 --- a/build-files/ports-overlay/emulators/open-vm-tools/Makefile +++ b/build-files/ports-overlay/emulators/open-vm-tools/Makefile @@ -6,7 +6,7 @@ PORTVERSION= ${BUILD_VER} PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= emulators kld -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/stable-8.6.x +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/stable-9.2.x DISTNAME= open-vm-tools-${RELEASE_VER}-${BUILD_VER} MAINTAINER= swills@FreeBSD.org @@ -15,14 +15,14 @@ COMMENT?= Open VMware tools for FreeBSD VMware guests LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -RELEASE_VER= 8.6.0 -BUILD_VER= 425873 +RELEASE_VER= 9.2.3 +BUILD_VER= 1031360 WRKSRC= ${WRKDIR}/open-vm-tools-${RELEASE_VER}-${BUILD_VER} GNU_CONFIGURE= yes USES= pkgconfig USE_LDCONFIG= yes -USE_GCC= yes +USE_GCC= 4.2 CPPFLAGS+= -Wno-deprecated-declarations SSP_UNSAFE= kernel module does not support ssp @@ -37,12 +37,6 @@ CONFLICTS= open-vm-tools-[0-9]* .if !defined(WITHOUT_LIBNOTIFY) LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify .endif -.if defined(WITH_UNITY) -CONFIGURE_ENV+= CUSTOM_URIPARSER_CPPFLAGS="-I${LOCALBASE}/include/uriparser" -LIB_DEPENDS+= uriparser.1:${PORTSDIR}/net/uriparser -.else -CONFIGURE_ARGS+= --disable-unity -.endif LIB_DEPENDS+= gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24 CONFIGURE_ARGS+= --with-x LDFLAGS+= -L${LOCALBASE}/lib diff --git a/build-files/ports-overlay/emulators/open-vm-tools/distinfo b/build-files/ports-overlay/emulators/open-vm-tools/distinfo index 0fa47bdb2..2100e576e 100644 --- a/build-files/ports-overlay/emulators/open-vm-tools/distinfo +++ b/build-files/ports-overlay/emulators/open-vm-tools/distinfo @@ -1,2 +1,2 @@ -SHA256 (open-vm-tools-8.6.0-425873.tar.gz) = 205768023fdf77962684f275f74c98644fba97961cb2afaa0a7d8aec5d074ebf -SIZE (open-vm-tools-8.6.0-425873.tar.gz) = 3648242 +SHA256 (open-vm-tools-9.2.3-1031360.tar.gz) = 1a004ea1675101fd44cddda299e2e9ac254388769b69f41b7ff5d1797549c8f1 +SIZE (open-vm-tools-9.2.3-1031360.tar.gz) = 3565935 diff --git a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-appUtilX11.c b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-appUtilX11.c deleted file mode 100644 index 2757fb6bd..000000000 --- a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-appUtilX11.c +++ /dev/null @@ -1,12 +0,0 @@ ---- ./lib/appUtil/appUtilX11.c.orig 2009-02-18 17:02:41.000000000 +0900 -+++ ./lib/appUtil/appUtilX11.c 2009-03-24 18:54:18.000000000 +0900 -@@ -26,6 +26,9 @@ - #include - #include - #include -+#if defined(__FreeBSD__) -+#include -+#endif - - #include "vmware.h" - #include "str.h" diff --git a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-freebsd-9 b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-freebsd-9 deleted file mode 100644 index e432bb7e2..000000000 --- a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-freebsd-9 +++ /dev/null @@ -1,38 +0,0 @@ ---- modules/freebsd/vmxnet/if_vxn.c.orig 2009-12-31 09:34:42.000000000 +0100 -+++ modules/freebsd/vmxnet/if_vxn.c 2009-12-31 09:36:56.000000000 +0100 -@@ -134,7 +134,9 @@ - static void vxn_init(void *); - static void vxn_start(struct ifnet *); - static int vxn_ioctl(struct ifnet *, u_long, caddr_t); -+#if __FreeBSD_version <= 900000 - static void vxn_watchdog(struct ifnet *); -+#endif - static void vxn_intr (void *); - - static void vxn_rx(vxn_softc_t *sc); -@@ -383,7 +385,9 @@ - ifp->if_ioctl = vxn_ioctl; - ifp->if_output = ether_output; - ifp->if_start = vxn_start; -+#if __FreeBSD_version <= 900000 - ifp->if_watchdog = vxn_watchdog; -+#endif - ifp->if_init = vxn_init; - ifp->if_baudrate = 1000000000; - ifp->if_snd.ifq_maxlen = sc->vxn_num_tx_bufs; -@@ -1018,6 +1022,7 @@ - return error; - } - -+#if __FreeBSD_version <= 900000 - /* - *----------------------------------------------------------------------------- - * vxn_watchdog -- -@@ -1035,6 +1040,7 @@ - { - printf("vxn%d: watchdog\n", VXN_IF_UNIT(ifp)); - } -+#endif - - /* - *----------------------------------------------------------------------------- diff --git a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-services-Makefile b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-services-Makefile deleted file mode 100644 index cd7731d6d..000000000 --- a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-services-Makefile +++ /dev/null @@ -1,22 +0,0 @@ ---- services/Makefile.am.orig 2009-02-28 20:48:46.000000000 +0100 -+++ services/Makefile.am 2009-02-28 20:49:28.000000000 +0100 -@@ -20,6 +20,5 @@ - SUBDIRS += plugins - - install-exec-local: -- mkdir -p $(DESTDIR)/etc/vmware-tools -- ln -sf `dirname $(VMSVC_PLUGIN_INSTALLDIR)` $(DESTDIR)/etc/vmware-tools/plugins -+ mkdir -p $(prefix)/etc/vmware-tools - ---- services/Makefile.in.orig 2009-02-28 20:48:52.000000000 +0100 -+++ services/Makefile.in 2009-02-28 20:49:46.000000000 +0100 -@@ -642,8 +642,7 @@ - - - install-exec-local: -- mkdir -p $(DESTDIR)/etc/vmware-tools -- ln -sf `dirname $(VMSVC_PLUGIN_INSTALLDIR)` $(DESTDIR)/etc/vmware-tools/plugins -+ mkdir -p $(prefix)/etc/vmware-tools - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-Makefile b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-Makefile index e5c592f4c..db78ec6b9 100644 --- a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-Makefile +++ b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-Makefile @@ -1,27 +1,51 @@ ---- ./modules/freebsd/vmhgfs/Makefile.orig 2010-10-20 05:19:54.000000000 +0900 -+++ ./modules/freebsd/vmhgfs/Makefile 2010-11-11 23:06:07.000000000 +0900 -@@ -90,22 +90,7 @@ - CFLAGS += -Ishared - .endif - --# --# FreeBSD's kernel module build system defines a bunch of additional warning --# flags for the compiler in addition to -Wall -Werror. However, some of these, --# like -Wredundant-decls, are overkill. To get around this, I copied their list --# of warning flags, but explicitly disabled a few. --# --CWARNFLAGS := -Wall --CWARNFLAGS += -Werror --CWARNFLAGS += -Wno-redundant-decls --CWARNFLAGS += -Wnested-externs --CWARNFLAGS += -Wstrict-prototypes --CWARNFLAGS += -Wno-missing-prototypes --CWARNFLAGS += -Wpointer-arith --CWARNFLAGS += -Winline --CWARNFLAGS += -Wcast-qual -- - EXPORT_SYMS = NO - -+.include - .include - +*** modules/freebsd/vmhgfs/Makefile.orig Wed Apr 17 17:12:22 2013 +--- modules/freebsd/vmhgfs/Makefile Thu Jul 11 01:14:46 2013 +*************** +*** 47,53 **** + .endif + + COMMON_HGFS_SRCS := debug.c +! COMMON_HGFS_SRCS := bdhandler.c + COMMON_HGFS_SRCS += request.c + COMMON_HGFS_SRCS += worker.c + COMMON_HGFS_SRCS += fsutil.c +--- 47,53 ---- + .endif + + COMMON_HGFS_SRCS := debug.c +! COMMON_HGFS_SRCS += bdhandler.c + COMMON_HGFS_SRCS += request.c + COMMON_HGFS_SRCS += worker.c + COMMON_HGFS_SRCS += fsutil.c +*************** +*** 93,114 **** + CFLAGS += -Ishared + .endif + +- # +- # FreeBSD's kernel module build system defines a bunch of additional warning +- # flags for the compiler in addition to -Wall -Werror. However, some of these, +- # like -Wredundant-decls, are overkill. To get around this, I copied their list +- # of warning flags, but explicitly disabled a few. +- # +- CWARNFLAGS := -Wall +- CWARNFLAGS += -Werror +- CWARNFLAGS += -Wno-redundant-decls +- CWARNFLAGS += -Wnested-externs +- CWARNFLAGS += -Wstrict-prototypes +- CWARNFLAGS += -Wno-missing-prototypes +- CWARNFLAGS += -Wpointer-arith +- CWARNFLAGS += -Winline +- CWARNFLAGS += -Wcast-qual +- + EXPORT_SYMS = NO + + .include +--- 93,99 ---- + CFLAGS += -Ishared + .endif + + EXPORT_SYMS = NO + ++ .include + .include diff --git a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-state.c b/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-state.c deleted file mode 100644 index b718e2b93..000000000 --- a/build-files/ports-overlay/emulators/open-vm-tools/files/patch-vmhgfs-state.c +++ /dev/null @@ -1,31 +0,0 @@ ---- modules/freebsd/vmhgfs/state.c.orig 2010-10-20 05:19:54.000000000 +0900 -+++ modules/freebsd/vmhgfs/state.c 2010-11-16 13:27:57.000000000 +0900 -@@ -770,6 +770,12 @@ - goto destroyVnode; - } - -+#if __FreeBSD_version >= 700034 -+ if ((ret = insmntque(vp, vfsp)) != 0) { -+ return ret; -+ } -+#endif -+ - /* - * Now we'll initialize the vnode. We need to set the file type, vnode - * operations, flags, filesystem pointer, reference count, and device. -@@ -1277,6 +1283,7 @@ - *---------------------------------------------------------------------------- - */ - -+#if 0 /* never used */ - void - HgfsMarkFileMmapped(struct vnode *vp, // vnode which state is being changed - Bool mmapped) // New mapping state -@@ -1286,6 +1293,7 @@ - fp = HGFS_VP_TO_FP(vp); - fp->mmapped = mmapped; - } -+#endif - - /* Adding/finding/removing file state from hash table */ - diff --git a/build-files/ports-overlay/emulators/open-vm-tools/pkg-plist b/build-files/ports-overlay/emulators/open-vm-tools/pkg-plist index c73f79066..606e244bd 100644 --- a/build-files/ports-overlay/emulators/open-vm-tools/pkg-plist +++ b/build-files/ports-overlay/emulators/open-vm-tools/pkg-plist @@ -14,7 +14,6 @@ lib/open-vm-tools/plugins/common/libhgfsServer.la lib/open-vm-tools/plugins/common/libvix.so lib/open-vm-tools/plugins/common/libvix.la %%X11%%lib/open-vm-tools/plugins/vmusr/libresolutionSet.so -%%X11%%lib/open-vm-tools/plugins/vmusr/libvixUser.so %%X11%%lib/open-vm-tools/plugins/vmusr/libdesktopEvents.so %%X11%%lib/open-vm-tools/plugins/vmusr/libdndcp.so lib/libhgfs.a @@ -41,16 +40,12 @@ include/vmGuestLib/vmSessionId.h include/vmGuestLib/vm_basic_types.h @exec mkdir -p %D/lib/vmware-tools/modules/input sbin/mount_vmhgfs -%%X11%%bin/vmware-toolbox %%X11%%bin/vmware-user-suid-wrapper share/vmware-tools/poweroff-vm-default share/vmware-tools/poweron-vm-default share/vmware-tools/resume-vm-default share/vmware-tools/suspend-vm-default share/vmware-tools/vm-support -share/open-vm-tools/messages/de/toolbox.vmsg -share/open-vm-tools/messages/ja/toolbox.vmsg -share/open-vm-tools/messages/zh_CN/toolbox.vmsg share/vmware-tools/statechange.subr share/vmware-tools/scripts/vmware/network @exec kldxref %D/lib/vmware-tools/modules/drivers 2>/dev/null || true diff --git a/build-files/ports-overlay/graphics/kcoloredit/Makefile b/build-files/ports-overlay/graphics/kcoloredit/Makefile deleted file mode 100644 index 2ba6d96bf..000000000 --- a/build-files/ports-overlay/graphics/kcoloredit/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# $FreeBSD: graphics/kcoloredit/Makefile 327733 2013-09-20 18:35:44Z bapt $ - -PORTNAME= kcoloredit -PORTVERSION= ${APP_VER}.${EXTRA_VER} -PORTREVISION= 2 -CATEGORIES= graphics kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/extragear -DISTNAME= ${PORTNAME}-${APP_VER}-kde${EXTRA_VER} -DIST_SUBDIR= KDE/extragear - -MAINTAINER= kde@FreeBSD.org -COMMENT= Palette files editor for KDE - -USE_GCC= yes -USE_BZIP2= yes -USE_KDE4= kdelibs kdeprefix kdehier automoc4 -USE_QT4= corelib qmake_build moc_build rcc_build uic_build -USES= cmake - -APP_VER= 2.0.0 -EXTRA_VER= 4.4.0 - -NO_STAGE= yes -.include diff --git a/build-files/ports-overlay/graphics/kcoloredit/distinfo b/build-files/ports-overlay/graphics/kcoloredit/distinfo deleted file mode 100644 index a654f1022..000000000 --- a/build-files/ports-overlay/graphics/kcoloredit/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (KDE/extragear/kcoloredit-2.0.0-kde4.4.0.tar.bz2) = 37712000c5c6990deb3a43e55b463704dc736a06450df9dafa1a030afcf79e6e -SIZE (KDE/extragear/kcoloredit-2.0.0-kde4.4.0.tar.bz2) = 156462 diff --git a/build-files/ports-overlay/graphics/kcoloredit/pkg-descr b/build-files/ports-overlay/graphics/kcoloredit/pkg-descr deleted file mode 100644 index 7173f2275..000000000 --- a/build-files/ports-overlay/graphics/kcoloredit/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -KColorEdit is a palette files editor. It can be used for editing -color palettes and for color choosing and naming. - -WWW: http://www.kde.org/ diff --git a/build-files/ports-overlay/graphics/kcoloredit/pkg-plist b/build-files/ports-overlay/graphics/kcoloredit/pkg-plist deleted file mode 100644 index 61ee5b0b5..000000000 --- a/build-files/ports-overlay/graphics/kcoloredit/pkg-plist +++ /dev/null @@ -1,120 +0,0 @@ -bin/kcoloredit -share/applications/kde4/kcoloredit.desktop -share/apps/kcoloredit/kcoloreditui.rc -share/apps/kcoloredit/pics/controls-input.png -share/apps/kcoloredit/pics/text-input.png -share/doc/HTML/da/kcoloredit/common -share/doc/HTML/da/kcoloredit/index.cache.bz2 -share/doc/HTML/da/kcoloredit/index.docbook -share/doc/HTML/de/kcoloredit/common -share/doc/HTML/de/kcoloredit/index.cache.bz2 -share/doc/HTML/de/kcoloredit/index.docbook -share/doc/HTML/en/kcoloredit/common -share/doc/HTML/en/kcoloredit/index.cache.bz2 -share/doc/HTML/en/kcoloredit/index.docbook -share/doc/HTML/es/kcoloredit/common -share/doc/HTML/es/kcoloredit/index.cache.bz2 -share/doc/HTML/es/kcoloredit/index.docbook -share/doc/HTML/et/kcoloredit/common -share/doc/HTML/et/kcoloredit/index.cache.bz2 -share/doc/HTML/et/kcoloredit/index.docbook -share/doc/HTML/fr/kcoloredit/common -share/doc/HTML/fr/kcoloredit/index.cache.bz2 -share/doc/HTML/fr/kcoloredit/index.docbook -share/doc/HTML/it/kcoloredit/common -share/doc/HTML/it/kcoloredit/index.cache.bz2 -share/doc/HTML/it/kcoloredit/index.docbook -share/doc/HTML/pt/kcoloredit/common -share/doc/HTML/pt/kcoloredit/index.cache.bz2 -share/doc/HTML/pt/kcoloredit/index.docbook -share/doc/HTML/pt_BR/kcoloredit/common -share/doc/HTML/pt_BR/kcoloredit/index.cache.bz2 -share/doc/HTML/pt_BR/kcoloredit/index.docbook -share/doc/HTML/ru/kcoloredit/common -share/doc/HTML/ru/kcoloredit/index.cache.bz2 -share/doc/HTML/ru/kcoloredit/index.docbook -share/doc/HTML/sv/kcoloredit/common -share/doc/HTML/sv/kcoloredit/index.cache.bz2 -share/doc/HTML/sv/kcoloredit/index.docbook -share/doc/HTML/uk/kcoloredit/common -share/doc/HTML/uk/kcoloredit/index.cache.bz2 -share/doc/HTML/uk/kcoloredit/index.docbook -share/icons/hicolor/16x16/apps/kcoloredit.png -share/icons/hicolor/32x32/apps/kcoloredit.png -share/locale/af/LC_MESSAGES/kcoloredit.mo -share/locale/ar/LC_MESSAGES/kcoloredit.mo -share/locale/be/LC_MESSAGES/kcoloredit.mo -share/locale/bg/LC_MESSAGES/kcoloredit.mo -share/locale/br/LC_MESSAGES/kcoloredit.mo -share/locale/ca/LC_MESSAGES/kcoloredit.mo -share/locale/ca@valencia/LC_MESSAGES/kcoloredit.mo -share/locale/cs/LC_MESSAGES/kcoloredit.mo -share/locale/cy/LC_MESSAGES/kcoloredit.mo -share/locale/da/LC_MESSAGES/kcoloredit.mo -share/locale/de/LC_MESSAGES/kcoloredit.mo -share/locale/el/LC_MESSAGES/kcoloredit.mo -share/locale/en_GB/LC_MESSAGES/kcoloredit.mo -share/locale/eo/LC_MESSAGES/kcoloredit.mo -share/locale/es/LC_MESSAGES/kcoloredit.mo -share/locale/et/LC_MESSAGES/kcoloredit.mo -share/locale/eu/LC_MESSAGES/kcoloredit.mo -share/locale/fa/LC_MESSAGES/kcoloredit.mo -share/locale/fi/LC_MESSAGES/kcoloredit.mo -share/locale/fr/LC_MESSAGES/kcoloredit.mo -share/locale/ga/LC_MESSAGES/kcoloredit.mo -share/locale/gl/LC_MESSAGES/kcoloredit.mo -share/locale/he/LC_MESSAGES/kcoloredit.mo -share/locale/hi/LC_MESSAGES/kcoloredit.mo -share/locale/hne/LC_MESSAGES/kcoloredit.mo -share/locale/hr/LC_MESSAGES/kcoloredit.mo -share/locale/hu/LC_MESSAGES/kcoloredit.mo -share/locale/is/LC_MESSAGES/kcoloredit.mo -share/locale/it/LC_MESSAGES/kcoloredit.mo -share/locale/ja/LC_MESSAGES/kcoloredit.mo -share/locale/km/LC_MESSAGES/kcoloredit.mo -share/locale/ku/LC_MESSAGES/kcoloredit.mo -share/locale/lt/LC_MESSAGES/kcoloredit.mo -share/locale/lv/LC_MESSAGES/kcoloredit.mo -share/locale/mai/LC_MESSAGES/kcoloredit.mo -share/locale/mk/LC_MESSAGES/kcoloredit.mo -share/locale/ms/LC_MESSAGES/kcoloredit.mo -share/locale/nb/LC_MESSAGES/kcoloredit.mo -share/locale/nds/LC_MESSAGES/kcoloredit.mo -share/locale/ne/LC_MESSAGES/kcoloredit.mo -share/locale/nl/LC_MESSAGES/kcoloredit.mo -share/locale/nn/LC_MESSAGES/kcoloredit.mo -share/locale/oc/LC_MESSAGES/kcoloredit.mo -share/locale/pa/LC_MESSAGES/kcoloredit.mo -share/locale/pl/LC_MESSAGES/kcoloredit.mo -share/locale/pt/LC_MESSAGES/kcoloredit.mo -share/locale/pt_BR/LC_MESSAGES/kcoloredit.mo -share/locale/ro/LC_MESSAGES/kcoloredit.mo -share/locale/ru/LC_MESSAGES/kcoloredit.mo -share/locale/se/LC_MESSAGES/kcoloredit.mo -share/locale/sk/LC_MESSAGES/kcoloredit.mo -share/locale/sl/LC_MESSAGES/kcoloredit.mo -share/locale/sv/LC_MESSAGES/kcoloredit.mo -share/locale/ta/LC_MESSAGES/kcoloredit.mo -share/locale/tg/LC_MESSAGES/kcoloredit.mo -share/locale/th/LC_MESSAGES/kcoloredit.mo -share/locale/tr/LC_MESSAGES/kcoloredit.mo -share/locale/uk/LC_MESSAGES/kcoloredit.mo -share/locale/vi/LC_MESSAGES/kcoloredit.mo -share/locale/xh/LC_MESSAGES/kcoloredit.mo -share/locale/zh_CN/LC_MESSAGES/kcoloredit.mo -share/locale/zh_HK/LC_MESSAGES/kcoloredit.mo -share/locale/zh_TW/LC_MESSAGES/kcoloredit.mo -@dirrm share/doc/HTML/uk/kcoloredit -@dirrm share/doc/HTML/sv/kcoloredit -@dirrm share/doc/HTML/ru/kcoloredit -@dirrm share/doc/HTML/pt_BR/kcoloredit -@dirrm share/doc/HTML/pt/kcoloredit -@dirrm share/doc/HTML/it/kcoloredit -@dirrm share/doc/HTML/fr/kcoloredit -@dirrm share/doc/HTML/et/kcoloredit -@dirrm share/doc/HTML/es/kcoloredit -@dirrm share/doc/HTML/en/kcoloredit -@dirrm share/doc/HTML/de/kcoloredit -@dirrm share/doc/HTML/da/kcoloredit -@dirrm share/apps/kcoloredit/pics -@dirrm share/apps/kcoloredit diff --git a/build-files/ports-overlay/misc/pcbsd-base/Makefile b/build-files/ports-overlay/misc/pcbsd-base/Makefile index 40ba0b346..67b96324b 100644 --- a/build-files/ports-overlay/misc/pcbsd-base/Makefile +++ b/build-files/ports-overlay/misc/pcbsd-base/Makefile @@ -35,7 +35,6 @@ RUN_DEPENDS= pc-updategui:${PORTSDIR}/sysutils/pcbsd-utils-qt4 \ linux-f10-cups-libs>=0:${PORTSDIR}/print/linux-f10-cups-libs \ fluxbox:${PORTSDIR}/x11-wm/fluxbox \ fluxbox-tenr-styles-pack>=0:${PORTSDIR}/x11-themes/fluxbox-tenr-styles-pack \ - ossec-hids-local>=0:${PORTSDIR}/security/ossec-hids-local \ ${LOCALBASE}/etc/rc.d/fail2ban:${PORTSDIR}/security/py-fail2ban \ vorbis-tools>=0:${PORTSDIR}/audio/vorbis-tools \ zip:${PORTSDIR}/archivers/zip \ @@ -44,7 +43,7 @@ RUN_DEPENDS= pc-updategui:${PORTSDIR}/sysutils/pcbsd-utils-qt4 \ cdrdao:${PORTSDIR}/sysutils/cdrdao \ growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \ ssh-askpass:${PORTSDIR}/security/openssh-askpass \ - vim:${PORTSDIR}/editors/vim-lite \ + vim:${PORTSDIR}/editors/vim \ cups-smb-backend>=0:${PORTSDIR}/print/cups-smb-backend \ cups-pdf>=0:${PORTSDIR}/print/cups-pdf \ cups-bjnp>=0:${PORTSDIR}/print/cups-bjnp \ @@ -71,7 +70,6 @@ RUN_DEPENDS= pc-updategui:${PORTSDIR}/sysutils/pcbsd-utils-qt4 \ numlockx:${PORTSDIR}/x11/numlockx \ swapexd:${PORTSDIR}/sysutils/swapexd \ epdfview:${PORTSDIR}/graphics/epdfview \ - uhidd:${PORTSDIR}/sysutils/uhidd \ pciutils>=0:${PORTSDIR}/sysutils/pciutils \ gpg:${PORTSDIR}/security/gnupg \ idesk:${PORTSDIR}/x11/idesk \ @@ -121,7 +119,6 @@ RUN_DEPENDS= pc-updategui:${PORTSDIR}/sysutils/pcbsd-utils-qt4 \ mosh:${PORTSDIR}/net/mosh \ virtualbox-ose>=0:${PORTSDIR}/emulators/virtualbox-ose \ virtualbox-ose-kmod>=0:${PORTSDIR}/emulators/virtualbox-ose-kmod \ - virtualbox-ose-additions>=0:${PORTSDIR}/emulators/virtualbox-ose-additions \ x11vnc>=0:${PORTSDIR}/net/x11vnc \ ataidle>=0:${PORTSDIR}/sysutils/ataidle \ tk84>=0:${PORTSDIR}/x11-toolkits/tk84 \ diff --git a/build-files/ports-overlay/misc/pcbsd-meta-kde-graphics/Makefile b/build-files/ports-overlay/misc/pcbsd-meta-kde-graphics/Makefile index bba0847ec..00953d775 100644 --- a/build-files/ports-overlay/misc/pcbsd-meta-kde-graphics/Makefile +++ b/build-files/ports-overlay/misc/pcbsd-meta-kde-graphics/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= kdegraphics>=0:${PORTSDIR}/graphics/kdegraphics4 \ digikam>=0:${PORTSDIR}/graphics/digikam-kde4 \ kphotoalbum>=0:${PORTSDIR}/graphics/kphotoalbum-kde4 \ kipi-plugins>=0:${PORTSDIR}/graphics/kipi-plugins-kde4 \ - kcoloredit>=0:${PORTSDIR}/graphics/kcoloredit \ kiconedit>=0:${PORTSDIR}/graphics/kiconedit \ skanlite>=0:${PORTSDIR}/graphics/skanlite diff --git a/build-files/ports-overlay/misc/trueos-base/Makefile b/build-files/ports-overlay/misc/trueos-base/Makefile index 9646545af..a078e3e68 100644 --- a/build-files/ports-overlay/misc/trueos-base/Makefile +++ b/build-files/ports-overlay/misc/trueos-base/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= pkg-static:${PORTSDIR}/ports-mgmt/pkg \ bash:${PORTSDIR}/shells/bash \ zsh:${PORTSDIR}/shells/zsh \ nano:${PORTSDIR}/editors/nano \ - vim:${PORTSDIR}/editors/vim-lite \ + vim:${PORTSDIR}/editors/vim \ rsync:${PORTSDIR}/net/rsync \ svn:${PORTSDIR}/devel/subversion \ mksquashfs:${PORTSDIR}/sysutils/squashfs-tools \ diff --git a/build-files/ports-overlay/multimedia/mythtv/Makefile b/build-files/ports-overlay/multimedia/mythtv/Makefile index 2fb513b4a..957df3e47 100644 --- a/build-files/ports-overlay/multimedia/mythtv/Makefile +++ b/build-files/ports-overlay/multimedia/mythtv/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= tv_check:${PORTSDIR}/textproc/p5-xmltv \ CONFLICTS= mythtv-frontend-[0-9]* ONLY_FOR_ARCHS= i386 amd64 -USE_GCC= 4.6+ +USE_GCC= 4.2 USES= gmake pkgconfig perl5 USE_BZIP2= yes USE_QT4= gui sql network script linguist_build l10n sql-mysql_run \ diff --git a/build-files/ports-overlay/sysutils/uhidd/Makefile b/build-files/ports-overlay/sysutils/uhidd/Makefile index c674727f7..d40f2d950 100644 --- a/build-files/ports-overlay/sysutils/uhidd/Makefile +++ b/build-files/ports-overlay/sysutils/uhidd/Makefile @@ -18,7 +18,7 @@ OPTIONS_DEFINE= DEVD OPTIONS_DEFAULT= DEVD USE_RC_SUBR= uhidd -USE_GCC= yes +USE_GCC= 4.2 SUB_FILES= pkg-message MAN5= uhidd.conf.5 diff --git a/overlays/install-overlay/boot/grub/grub.cfg b/overlays/install-overlay/boot/grub/grub.cfg index cfd111ce1..382646d1e 100644 --- a/overlays/install-overlay/boot/grub/grub.cfg +++ b/overlays/install-overlay/boot/grub/grub.cfg @@ -68,7 +68,7 @@ loadfont ($root)/boot/grub/themes/pcbsd/dejavu_bold_14.pf2 insmod png set theme=($root)/boot/grub/themes/pcbsd/theme.txt export theme -set timeout=10 +set timeout=15 menuentry "Graphical Install" { kfreebsd /boot/kernel/kernel @@ -77,7 +77,7 @@ menuentry "Graphical Install" { set kFreeBSD.kern.geom.eli.visible_passphrase=2 } -menuentry "Run X in VESA mode" { +menuentry "Graphical Install - (Failsafe VESA mode)" { kfreebsd /boot/kernel/kernel kfreebsd_loadenv /boot/device.hints set kFreeBSD.vfs.root.mountfrom=cd9660:/dev/iso9660/PCBSD_INSTALL @@ -85,7 +85,7 @@ menuentry "Run X in VESA mode" { set kFreeBSD.xvesa=YES } -menuentry "Emergency Console" { +menuentry "Text Install / Emergency Console" { kfreebsd /boot/kernel/kernel kfreebsd_loadenv /boot/device.hints set kFreeBSD.vfs.root.mountfrom=cd9660:/dev/iso9660/PCBSD_INSTALL diff --git a/overlays/install-overlay/boot/grub/themes/pcbsd/theme.txt b/overlays/install-overlay/boot/grub/themes/pcbsd/theme.txt index 7c86106e5..bb0afff0e 100644 --- a/overlays/install-overlay/boot/grub/themes/pcbsd/theme.txt +++ b/overlays/install-overlay/boot/grub/themes/pcbsd/theme.txt @@ -22,7 +22,7 @@ # THE SOFTWARE. #general settings -title-text: "PC-BSD Bootloader" +title-text: "PC-BSD / TrueOS Installation" title-font: "DejaVu Sans Bold 14" title-color: "#000" message-font: "DejaVu Sans Regular 12" diff --git a/overlays/install-overlay/root/PCBSDStart.sh b/overlays/install-overlay/root/PCBSDStart.sh index 531ad5f7a..cdd25268f 100755 --- a/overlays/install-overlay/root/PCBSDStart.sh +++ b/overlays/install-overlay/root/PCBSDStart.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright 2007 PC-BSD Software +# Copyright 2013 PC-BSD Software # http://www.pcbsd.com # Author: Kris Moore ########################################################################### diff --git a/overlays/install-overlay/root/PCBSDtext.sh b/overlays/install-overlay/root/PCBSDtext.sh index 2b0fe1bc4..b422b7981 100755 --- a/overlays/install-overlay/root/PCBSDtext.sh +++ b/overlays/install-overlay/root/PCBSDtext.sh @@ -1,22 +1,25 @@ #!/bin/sh # PC-BSD System Install Menu -# Copyright 2007 PC-BSD Software +# Copyright 2013 PC-BSD Software # http://www.pcbsd.com # Author: Kris Moore ########################################################################### +. /root/functions.sh + DRES="1024x768" while i="1" do -dialog --title "PC-BSD Installation Menu" --menu "Please select from the following options:" 20 55 15 install "Start graphical install" vesa "Start graphical install (VESA)" utility "System Utilities" reboot "Reboot the system" 2>/tmp/answer +dialog --title "PC-BSD Installation Menu" --menu "Please select from the following options:" 20 55 15 install "Start text install" xorg "Start graphical install" vesa "Start graphical install (VESA)" utility "System Utilities" reboot "Reboot the system" 2>/tmp/answer ANS="`cat /tmp/answer`" case $ANS in - install) echo "Starting PC-BSD System Installer.. Please wait.." + install) /usr/local/bin/pc-installdialog ;; + xinstall) echo "Starting PC-BSD System Installer.. Please wait.." startx 2>/tmp/Xerrors ;; vesa) echo "Starting PC-BSD System Installer.. Please wait.." cp /root/cardDetect/XF86Config.compat /etc/X11/xorg.conf diff --git a/overlays/install-overlay/root/functions.sh b/overlays/install-overlay/root/functions.sh index b7ce7e697..13f9bee37 100755 --- a/overlays/install-overlay/root/functions.sh +++ b/overlays/install-overlay/root/functions.sh @@ -67,3 +67,9 @@ start_xorg() fi } + +rtn() +{ + echo "Press ENTER to continue" + read tmp +} diff --git a/src-qt4/EasyPBI/EasyPBI.desktop b/src-qt4/EasyPBI/EasyPBI.desktop index 4c14844f1..f5302b097 100644 --- a/src-qt4/EasyPBI/EasyPBI.desktop +++ b/src-qt4/EasyPBI/EasyPBI.desktop @@ -28,6 +28,7 @@ Name[mn]=EasyPBI Name[nl]=EasyPBI Name[pl]=EasyPBI Name[pt_BR]=PBIFácil +Name[ro]=EasyPBI Name[ru]=Легкий PBI Name[sr]=EasyPBI Name[sv]=EasyPBI diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_de.ts b/src-qt4/EasyPBI/i18n/EasyPBI_de.ts index 57ecd6120..e63f745d4 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_de.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_de.ts @@ -273,7 +273,7 @@ Menu category for the item to be located. - Menükategorie in die der Eintrag eingeordnet werden soll + Menükategorie in die der Eintrag eingeordnet werden soll. Possible Menu categories @@ -773,18 +773,15 @@ This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + Dies erfordert eine aktive Internetverbindung und Administratorrechte. Die benötigte Zeit, um ein PBI zu erstellen, variiert je nach den Spezifikationen des Systems und den Ports, die dazu benötigt werden. The directory selected does not appear to be a valid FreeBSD port. - - + Das ausgewählte Verzeichnis scheint keinen gültigen FreeBSD-Port zu enthalten. Do you wish to continue using it anyway? - - + Möchten Sie dennoch fortfahren? @@ -839,7 +836,7 @@ Package a local directory as a PBI - Lokales Verzeichnis als ein PBI packen. + Lokales Verzeichnis als ein PBI packen Local Sources @@ -983,7 +980,7 @@ Select a local directory. - Lokales Verzeichnis auswählen + Lokales Verzeichnis auswählen. Default PNG icon to use for PBI modules. @@ -1111,8 +1108,7 @@ TextLabel - - + TextLabel Create Dir @@ -1172,7 +1168,7 @@ The FreeBSD ports tree has been successfully updated - Der FreeBSD-Portbaum wurde erfolgreich auf den neusten Stand gebracht. + Der FreeBSD-Portbaum wurde erfolgreich auf den neusten Stand gebracht Failure diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_es.ts b/src-qt4/EasyPBI/i18n/EasyPBI_es.ts index 2b041491f..fcf417710 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_es.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_es.ts @@ -5,7 +5,7 @@ MainGUI EasyPBI - EasyPBI + EasyPBI Module Editor @@ -65,7 +65,7 @@ Icon - Icono + Icono Build Information @@ -357,7 +357,7 @@ File - Archivo + Archivo Link To @@ -461,7 +461,7 @@ Save Build Log - Guardar registro de compilación + Guardar historial de compilación System @@ -617,8 +617,7 @@ The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + No se ha encontrado el árbol de ports FreeBSD en el sistema. Puede obtener el árbol de ports a través del menú de EasyPBI o indicar la ruta de acceso al árbol de ports en las preferencias de EasyPBI si está instalado en una ubicación no estándar. Select Port @@ -630,8 +629,7 @@ The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + El directorio elegido no es un puerto FreeBSD válido. Por favor, elija un directorio válido que contenga los ficheros correspondientes Makefile y distinfo. EasyPBI Error @@ -639,8 +637,7 @@ The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + No se ha podido guardar el fichero de configuración PBI. Por favor, compruebe los permisos del fichero antes de intentarlo de nuevo. Select Resources @@ -648,8 +645,7 @@ New Wrapper Script - - + Nuevo Wrapper Script Filename @@ -689,7 +685,7 @@ Are you sure you wish to start the PBI build? - ¿Está seguro que desea iniciar la construcción del PBI? + ¿Está seguro de que desea iniciar la construcción del PBI? PBI Builder (Working) @@ -717,7 +713,7 @@ The PBI failed to build. - El PBI se ha podido construir. + El PBI no se ha podido construir. Please check the build log to find the cause of the failure and adjust the module accordingly @@ -757,8 +753,7 @@ Application needs administrator privileges to run - - + La aplicación necesita privilegios de administrador para funcionar. Requires Root @@ -777,23 +772,19 @@ Start building a PBI from the current module (requires administrator privileges) - - + Construir un PBI a partir del módulo actual (requiere privilegios de administrador) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + Esto requiere una conexión a Internet en funcionamiento y privilegios de administrador. El tiempo necesario para construir un PBI varía dependiendo de las características del sistema y el número de ports a compilar. The directory selected does not appear to be a valid FreeBSD port. - - + El directorio elegido no para contener un puerto FreeBSD válido. Do you wish to continue using it anyway? - - + ¿Desea seguir usándolo de todas formas? @@ -860,8 +851,7 @@ The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + No se ha encontrado el árbol de ports FreeBSD en el sistema. Puede obtenerlo a través del menú de EasyPBI o indicar la ruta de acceso al mismo en las preferencias de EasyPBI si el árbol ha sido instalado en una ubicación diferente de la estándar. Select Port @@ -996,18 +986,15 @@ Default PNG icon to use for PBI modules. - - + Icono PNG por defecto para los módulos PBI. Browse local system for a default PNG icon. - - + Buscar en el sistema un icono PNG por defecto. Have EasyPBI re-scan the system for available utilities. - - + Hacer que EasyPBI busque de nuevo las utilidades disponibles en el sistema. Auto-Detect @@ -1035,13 +1022,11 @@ Switch User Utility - - + Utilidad de cambio de usuario. Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + Ruta de acceso a la utilidad gráfica para cambiar de usuario (pc-su, gksu, kdesu, qsu, etc..) Select PBI Output Directory @@ -1058,23 +1043,19 @@ Select the Package to Ignore - - + Escoja el paquete a ignorar Package Files (*.txz) - - + Ficheros de Paquetes (*.txz) Are you sure you wish to clear the PBI package cache? - - + ¿Está seguro de que quiere borrar el caché de paquetes PBI? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + Esto borrará todos los directorios y ficheros del caché. La próxima vez que construya un PBI, los paquetes necesarios tendrán que compilarse de nuevo. Select Default Module Directory @@ -1083,48 +1064,39 @@ Select Default Directory To Find Icon Files - - + Escoja el directorio por defecto donde encontrar ficheros de iconos. Select Default Icon FIle - - + Escoja el fichero de icono por defecto. PNG Images (*.png) - - + Imágenes PNG (*.png) Select Graphical Switch-User Utility - - + Seleccione gráficamente el cambio de usuario. Select 'pbi_create' File Location - - + Indique la ubicación del fichero 'pbi_create' Select 'pbi_makeport' File Location - - + Indique la ubicación del fichero 'pbi_makeport' Are you sure you wish to return to the automatically detected utility paths? - - + ¿Está seguro de que quiere volver a las rutas de acceso detectadas automáticamente? This will remove any customized path settings for the external utilities. - - + Se eliminarán todas las rutas personalizadas de las utilidades externas. Select FreeBSD Ports Directory - - + Indique el directorio del árbol de ports FreeBSD FreeBSD Ports @@ -1132,13 +1104,11 @@ Ports Tree - - + Árbol de ports Last Update - - + Última actualización TextLabel @@ -1152,13 +1122,11 @@ Update - - + Actualización Status - - + Estado PBI Builds @@ -1167,18 +1135,15 @@ External Utilities - - + Utilidades Externas Default Search Paths - - + Rutas donde buscar por defecto Modules - - + Módulos Resources @@ -1186,37 +1151,31 @@ Default Icon - - + Icono por defecto Current User (~/EasyPBI/ports) - - + Usuario actual (~/EasyPBI/ports) All Users (/usr/ports) - - + Todos los usuarios (/usr/ports) Other - - + Otro Nonexistent - - + Inexistente Success - éxito + Éxito The FreeBSD ports tree has been successfully updated - - + El árbol de ports FreeBSD ha sido actualizado. Failure @@ -1225,8 +1184,7 @@ The FreeBSD ports tree has failed to update. - - + La actualización del árbol de ports de FreeBSD ha fallado. Last Message: %1 @@ -1234,8 +1192,7 @@ Requesting Root Access - - + Petición de Acceso Root @@ -1246,8 +1203,7 @@ License - - + Licencia Development History @@ -1260,17 +1216,15 @@ Create PBI's quickly and easily. - Crear PBI de forma rápida y sencilla. + Crear PBI instantáneamente. Unable to open resource file: %1 - - + Imposible abrir el fichero de recursos: %1 Please check that your EasyPBI compilation was performed correctly - - + Por favor, compruebe que la compilación EasyPBI se ejecutó correctamente. diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_et.ts b/src-qt4/EasyPBI/i18n/EasyPBI_et.ts index 6acc90618..211353761 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_et.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_et.ts @@ -769,23 +769,19 @@ Start building a PBI from the current module (requires administrator privileges) - - + Alusta PBI ehitamist käesolevast moodulist (vajab administraatori õigusi) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + Nõutud on internetiühendus ja administraatori õigused. PBI ehitamise aeg sõltub süsteemi jõudlusest ja kompileeritavatest portidest. The directory selected does not appear to be a valid FreeBSD port. - - + Valitud kaust ei paista olevat sobiv FreeBSD port. Do you wish to continue using it anyway? - - + Kas kasutada sellegipoolest? @@ -1111,8 +1107,7 @@ TextLabel - - + TextLabel Create Dir diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_fr.ts b/src-qt4/EasyPBI/i18n/EasyPBI_fr.ts index d1ca70f6c..3ca4df18c 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_fr.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_fr.ts @@ -13,27 +13,27 @@ View and edit the current PBI module - Afficher et modifier le module PBI courant + Afficher et modifier le module PBI courant PBI Configuration - PBI Configuration + PBI Configuration Main settings for the PBI - Paramètres principaux pour le PBI + Paramètres principaux pour le PBI Program Information - Information sur le Programme + Information sur le programme Official name of the target program - Nom officiel du programme cible + Nom officiel du programme cible Name - Nom + Nom Version of the program to be packaged @@ -41,15 +41,15 @@ Version - Version + Version URL of the main website for the target program - URL du site Web principal du programme cible + URL du site Web principal du programme cible Website - Site Web + Site Web Author of the main program (or FreeBSD port maintainer instead) @@ -57,7 +57,7 @@ Author - Auteur + Auteur Icon that will be used for the program (PNG resources available) @@ -73,43 +73,43 @@ Local directory to be packaged into a PBI (must contain everything necessary for program to run) - Répertoire local à conditionner dans un PBI (doit contenir tout le nécessaire pour exécuter le programme) + Répertoire local à conditionner dans un PBI (doit contenir tout le nécessaire pour exécuter le programme) Package Directory - Répertoire de paquets + Répertoire de paquets Select a directory to be packaged into a PBI - Sélectionnez un répertoire à emballer dans un PBI + Sélectionnez un répertoire à emballer dans un PBI Select - Sélectionner + Sélectionner Main FreeBSD Port - Principal port FreeBSD + Port FreeBSD principal FreeBSD port to be packaged as a PBI - FreeBSD port à être présenté comme un PBI + FreeBSD port à être présenté comme un PBI Select a FreeBSD port - Sélectionnez un port FreeBSD + Sélectionnez un port FreeBSD Change Port - Changement de Port + Changement de Port Port Build Options - Port Option de compilation + Port Option de compilation Special configuration options for any ports that need to be built. - Option de configuration spéciale pour les ports qui doivent être construits. + Option de configuration spéciale pour les ports qui doivent être construits. Build options available for main FreeBSD port @@ -121,15 +121,15 @@ Additional FreeBSD ports to be built before the main program - D'autres ports de FreeBSD peuvent-être construit avant le programme principal + D'autres ports de FreeBSD à construire avant le programme principal Add additional FreeBSD port - Ajouter port FreeBSD supplémentaire + Ajouter port FreeBSD supplémentaire Remove additional FreeBSD port - Retirer port supplémentaire FreeBSD + Retirer port supplémentaire FreeBSD Make Port After @@ -137,11 +137,11 @@ Additional FreeBSD ports to be built after the main program - D'autres ports de FreeBSD peuvent-être construit après le programme principal + D'autres ports de FreeBSD à construire après le programme principal Require administrator permissions to install this PBI - Nécessitent des autorisations d'administrateur pour installer ce PBI + Des droits d'administrateur sont requis pour installer ce PBI Requires Root Permissions @@ -149,11 +149,11 @@ Save the current settings to the PBI configuration file - Enregistrer les paramètres actuels dans le fichier de configuration PBI + Enregistrer les paramètres actuels dans le fichier de configuration du PBI Save Configuration - Sauvegarder la Configuration + Sauvegarder la configuration Resources @@ -161,7 +161,7 @@ Additional files to be included in the PBI - Fichiers supplémentaires à inclure dans le PBI + Fichiers supplémentaires à inclure dans le PBI Current Resources diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_it.ts b/src-qt4/EasyPBI/i18n/EasyPBI_it.ts index 3a252aa38..f40cb96be 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_it.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_it.ts @@ -5,151 +5,123 @@ MainGUI EasyPBI - EasyPBI + EasyPBI Module Editor - - + Module Editor View and edit the current PBI module - - + Visualizza e modifica l'attuale modulo PBI PBI Configuration - - + Configurazione PBI Main settings for the PBI - - + Impostazioni principali per i PBI Program Information - - + Informazioni sul Programma Official name of the target program - - + Nome ufficiale del programma di destinazione Name - - + Nome Version of the program to be packaged - - + Versione del programma da inserire nel pacchetto Version - - + Versione URL of the main website for the target program - - + URL del sito web principale per il pacchetto di destinazione Website - - + Sito Web Author of the main program (or FreeBSD port maintainer instead) - - + Autore del programma principale (o mantenitore del port di FreeBSD) Author - - + Autore Icon that will be used for the program (PNG resources available) - - + Icona che verrà utilizzata per il programma (risorse PNG disponibili) Icon - Icona + Icona Build Information - - + Build Information Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + Directory locale da inserire nel pacchetto del PBI (deve contenere tutto il necessario per il programma da eseguire) Package Directory - - + Package Directory Select a directory to be packaged into a PBI - - + Seleziona una directory da inserire nel pacchetto del PBI Select - - + Seleziona Main FreeBSD Port - - + Port Principale di FreeBSD FreeBSD port to be packaged as a PBI - - + Port di FreeBSD da impacchettare come PBI Select a FreeBSD port - - + Seleziona un port di FreeBSD Change Port - - + Cambia Port Port Build Options - - + Port Build Options Special configuration options for any ports that need to be built. - - + Opzioni di configurazione speciali per tutti i port che necessitano di essere creati. Build options available for main FreeBSD port - - + Build Options disponibili per i port principali di FreeBSD Make Port Before - - + Make Port Before Additional FreeBSD ports to be built before the main program - - + Port aggiuntivi di FreeBSD da creare prima del programma principale Add additional FreeBSD port @@ -173,8 +145,7 @@ Require administrator permissions to install this PBI - - + Sono richiesti i permessi di Amministratore per installare questo PBI Requires Root Permissions @@ -188,8 +159,7 @@ Save Configuration - - + Salva la configurazione Resources @@ -213,23 +183,19 @@ Copy an additional file into the PBI module - - + Copia un altro file nel modulo PBI Add File - - + Aggiungi file Delete the selected file from the PBI module - - + Cancella il file selezionato dal modulo PBI Delete File - - + Cancella il file Create a custom wrapper script for a program binary @@ -248,8 +214,7 @@ Save Script - - + Salva lo Script Resource Icon @@ -278,8 +243,7 @@ Desktop - - + Desktop Create and edit menu entries @@ -288,8 +252,7 @@ Menu - - + Menu Refresh the current list (useful if files recently modified outside of EasyPBI) @@ -303,8 +266,7 @@ Remove - - + Rimuovi Entry Details @@ -348,13 +310,11 @@ Start the application in a terminal session - - + Avvia l'Applicazione in una sessione di Terminale Open in Terminal - - + Apri nel Terminale Flag this item to not be displayed at all @@ -363,8 +323,7 @@ Make Invisible - - + Rendi invisibile MIME Patterns @@ -383,8 +342,7 @@ Scripts - - + Scripts Additional installation/build scripts @@ -393,33 +351,27 @@ Choose a script that you wish to create or edit - - + Scegli uno script che desideri creare o modificare Create the selected script - - + Crea lo Script selezionato Create - - + Crea Delete the selected script from the PBI module - - + Cancella lo script selezionato dal modulo PBI Save the current text as the selected script - - + Salva il testo corrente come script selezionato Save - - + Salva Contents for the selected script @@ -428,8 +380,7 @@ External-Links - - + Link Esterni FIles to be linked into the local system @@ -443,8 +394,7 @@ File - - + File Link To @@ -498,13 +448,11 @@ Save this link to the PBI module - - + Salva il Link nel modulo PBI PBI Builder - - + PBI Builder Use the current module to build a PBI @@ -528,8 +476,7 @@ Output Directory - - + Directory di Output Location for the finished PBI to be located @@ -618,18 +565,15 @@ New - - + Nuovo Click to create a new PBI module - - + Click per creare un nuovo modulo PBI Load - - + Carica Click to load an existing module @@ -663,8 +607,7 @@ PBI Modules - - + Moduli PBI Open up the PC-BSD Wiki page for PBI developers @@ -673,8 +616,7 @@ Close EasyPBI - - + Chiudi EasyPBI Package Module @@ -698,8 +640,7 @@ No Module Loaded - - + Modulo non caricato FreeBSD Port @@ -713,8 +654,7 @@ Installation Scripts - - + Installazione degli Scripts Permissions Error @@ -728,13 +668,11 @@ Resources Unavailable - - + Risorse non disponibili Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + Alcune Risorse esterne non sono state trovate, i Servizi EasyPBI che usano queste risorse sono stati disattivati. Success @@ -758,8 +696,7 @@ Select Module - - + Seleziona Modulo EasyPBI: No FreeBSD Ports @@ -773,13 +710,11 @@ Select Port - - + Seleziona Port EasyPBI: Invalid Port - - + EasyPBI: Port non valido The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. @@ -798,8 +733,7 @@ Select Resources - - + Seleziona Risorse New Wrapper Script @@ -843,8 +777,7 @@ Error - - + Errore Invalid PBI Settings @@ -863,8 +796,7 @@ Save Log - - + Salva Log Log Files @@ -878,8 +810,7 @@ The PBI finished building successfully - - + La costruzione del PBI ha avuto successo PBI Build Failure @@ -938,8 +869,7 @@ Application needs administrator privileges to run - - + L'Applicazione richiede i privilegi di Amministratore Requires Root @@ -948,8 +878,7 @@ Refresh Module - - + Refresh del Modulo Please open up the EasyPBI settings to correct this deficiency. @@ -968,21 +897,18 @@ The directory selected does not appear to be a valid FreeBSD port. - - + La Directory selezionata non sembra essere un Port FreeBSD valido Do you wish to continue using it anyway? - - + Desideri continuare ad usarlo comunque? NewModuleDialog Create a new Module - - + Crea un Nuovo Modulo FreeBSD Port @@ -1001,8 +927,7 @@ Select - - + Seleziona Local directory to be packaged as a PBI @@ -1016,8 +941,7 @@ Local Directory - - + Directory Locale PNG icon file to use for the PBI (can be changed later) @@ -1061,8 +985,7 @@ Select Port - - + Seleziona Port Select Package Directory @@ -1076,8 +999,7 @@ PNG icon (*.png) - - + Icona PNG (*.png) @@ -1104,8 +1026,7 @@ Select - - + Seleziona Digitally sign any PBI's that are created for tamper-evident distribution @@ -1174,8 +1095,7 @@ Add - - + Aggiungi Remove the selected package from the ignore list. @@ -1184,8 +1104,7 @@ Remove - - + Rimuovi Delete all packages currently in the cache. @@ -1194,8 +1113,7 @@ Clear Cache - - + Cancella la Cache Local Paths @@ -1209,8 +1127,7 @@ Select a local directory for PBI modules. - - + Seleziona la directory locale per i Moduli PBI Default directory to open when adding icons/files to a module @@ -1219,8 +1136,7 @@ Select a local directory. - - + Seleziona una Directory Locale Default PNG icon to use for PBI modules. @@ -1314,8 +1230,7 @@ Select Default Module Directory - - + Seleziona la Directory di Default per il Modulo Select Default Directory To Find Icon Files @@ -1329,8 +1244,7 @@ PNG Images (*.png) - - + Immagini PNG (*.png) Select Graphical Switch-User Utility diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_ja.ts b/src-qt4/EasyPBI/i18n/EasyPBI_ja.ts index dbadf1765..2c00f4ab5 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_ja.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_ja.ts @@ -9,7 +9,7 @@ Module Editor - モジュールエディター + モジュールエディター View and edit the current PBI module @@ -21,7 +21,7 @@ Main settings for the PBI - PBIの主設定 + PBIの主設定 Program Information @@ -273,8 +273,7 @@ Menu category for the item to be located. - - + このアイテムが配置されるメニューのカテゴリー Possible Menu categories @@ -334,8 +333,7 @@ Save the current text as the selected script - - + 現在入力されているテキストを選択されたスクリプトに保存します Save @@ -363,8 +361,7 @@ Link To - - + リンク先 File Type @@ -384,27 +381,23 @@ PBI file to be sym-linked into the local system (relative to the PBI directory) - - + ローカルファイルシステムへリンクさせる PBI 内のファイル(PBI ディレクトリーへの相対パス) Auto-detected binaries for this PBI - - + 自動検出されたこの PBI ファイルのバイナリー Location for the link to be created (relative to the local base: normally /usr/local/) - - + リンクを作成する場所 (local base: 通常は /usr/local/ への相対パス) Flags to determine the file type - - + ファイルの種類を指定するフラグ Available flags for the new link - 新しいリンクに利用可能なフラグ + 新しいリンクで指定可能なフラグ Save this link to the PBI module @@ -416,11 +409,11 @@ Use the current module to build a PBI - 現在のモジュールをPBIビルドに利用する + 現在表示されたモジュールの PBI をビルドします Module Building - モジュールビルディング + ビルド対象モジュール Shows the module that is currently being used to build a PBI @@ -436,8 +429,7 @@ Location for the finished PBI to be located - - + ビルドが完了した PBI が置かれる場所 Displays any output from a PBI build process @@ -477,915 +469,752 @@ Options - - + オプション Information - - - - - toolBar - - + 情報 EasyPBI Settings - - + EasyPBI の設定 Open up the EasyPBI settings editor - - + EasyPBI の設定を編集します Get FreeBSD Ports - - + FreeBSD ports の取得 Fetch/update the FreeBSD ports tree - - - - - New - - + FreeBSD ports ツリーの取得/更新を行います Click to create a new PBI module - - + PBI モジュールを新規に作成します Load - - + 開く Click to load an existing module - - + 既存のモジュールを開きます Summary - - + サマリー License - - + ライセンス History - - + 履歴 FreeBSD Ports - - + FreeBSD ports Open up freshports.org for additional port information - - + さらに port の情報を得るために freshports.org を開く PBI Modules - - + PBI モジュール Open up the PC-BSD Wiki page for PBI developers - - + PC-BSD Wiki のPBI 開発者向けページを開く Close EasyPBI - - + EasyPBI を閉じる Package Module - モジュールのパッケージ化 + モジュールのパッケージ化 Compress the current module for distribution - - + 現在のモジュールを配布のために圧縮する About EasyPBI - EasyPBI について + EasyPBI について View additional information about EasyPBI - - + EasyPBI についての詳細情報を表示します No Module Loaded - - + モジュールがロードされていません FreeBSD Port - - + FreeBSD ports Local Sources - - + ローカルソース Installation Scripts - - + インストールスクリプト Permissions Error - - + パーミッションエラー There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + EasyPBI のディレクトリー構造の作成時にエラーが発生しました。あなたのホームディレクトリーのパーミッションを確認し、EasyPBI を再起動してください。 Resources Unavailable - - + リソースが利用できません Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + いくつかの外部リソースが見つからないため、EasyPBI はそれらのリソースを無効化します。 Success - - + 成功 A copy of the current module has been successfully packaged within the module directory. - - + モジュールディレクトリーにモジュールを作成しました。 EasyPBI: Permissions Error - - + EasyPBI: パーミッションエラー Could not create PBI module. Please check the directory permissions and try again. - - + PBI モジュールを作成できません。パーミッションを作成してからやり直してください。 Select Module - モジュールを選択 + モジュールを選択 EasyPBI: No FreeBSD Ports - - + EasyPBI: FreeBSD ports がありません The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + このシステム内に FreeBSD ports ツリーが存在しません。EasyPBI のメニューから ports ツリーを取得するか、ports ツリーが標準的ではない場所にある場合には、 EasyPBI の設定画面で ports ツリーのパスを手動で指定してください。 Select Port - port を選択 + port を選択 EasyPBI: Invalid Port - - + EasyPBI: 無効な ports The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + 選択されたディレクトリーは正しい FreeBSD port ではありません。Makefile と distinfo が含まれる適切な port ディレクトリーを選択してください。 EasyPBI Error - - + EasyPBI エラー The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + PBI 設定ファイルを保存できません。ファイルのパーミッションを確認してからやり直してください。 Select Resources - - + リソースの選択 New Wrapper Script - - + 新規ラッパースクリプト Filename - - + ファイル名 Could not remove the XDG entry. - - + XDG エントリーを削除できません。 Check the file permissions and try again - - + パーミッションをチェックしてからやり直してください Could not save the changes to the XDG entry. - - + XDG エントリーの変更を保存できません。 Error Saving File - - + ファイル保存エラー Could not save the script - - + スクリプトを保存できません Please check the file permissions and try again - - + ファイルのパーミッションをチェックしてからやり直してください Error - エラー + エラー Invalid PBI Settings - 無効な PBI 設定です + 無効な PBI 設定です Are you sure you wish to start the PBI build? - PBI のビルドを開始しますか? + PBI のビルドを開始しますか? PBI Builder (Working) - - + PBI ビルダー (作業中) Save Log - ログを保存 + ログを保存 Log Files - ログファイル + ログファイル PBI Build Success - PBI のビルドに成功しました + PBI のビルドに成功しました The PBI finished building successfully - PBI のビルドは無事完了しました + PBI のビルドは無事完了しました PBI Build Failure - PBI のビルドに失敗 + PBI のビルドに失敗 The PBI failed to build. - PBI のビルドに失敗しました。 + PBI のビルドに失敗しました。 Please check the build log to find the cause of the failure and adjust the module accordingly - ビルドログを確認して失敗の原因を確認し、モジュールを修正してください。 + ビルドログを確認して失敗の原因を確認し、モジュールを修正してください。 PBI Builder (Finished) - - + PBI ビルダー (完了) Begin creating a new XDG entry - - + XDG エントリーを作成を開始します Category - - + カテゴリー Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + スペースで区切られたファイル関連付けのリスト (例: *.junk *.JUNK *.test *.TEST) Add - - + 追加 Select Package Directory - - + パッケージディレクトリーの選択 FreeBSD Ports Missing - - + FreeBSD ports が存在しません The FreeBSD ports tree is missing from your system. - - + FreeBSD ports ツリーがシステム内にありません。 Application needs administrator privileges to run - - + 実行には管理者権限が必要 Requires Root - - + root が必要 Refresh Module - - + モジュールのリフレッシュ Please open up the EasyPBI settings to correct this deficiency. - - + EasyPBI の設定画面を開いて設定を修正してください。 Start building a PBI from the current module (requires administrator privileges) - - + 現在のモジュールの PBI のビルドを開始します (管理者権限が必要です) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + インターネット接続と管理者権限が必要です。PBI をビルドする時にはシステムが適切な条件下にあることと ports がコンパイルできることが必要です。 The directory selected does not appear to be a valid FreeBSD port. - - + 選択されたディレクトリーは適切な FreeBSD ports ではありません。 Do you wish to continue using it anyway? - - + このまま使用しますか? + + + toolBar + ツールバー + + + New + 新規 NewModuleDialog Create a new Module - - + 新しいモジュールを作成 FreeBSD Port - - + FreeBSD ports FreeBSD port that you wish to build as a PBI - - + PBI としてビルドする FreeBSD ports Select a port from the local FreeBSD ports tree - - + FreeBSD ports ツリーから port を選択 Select - - + 選択 Local directory to be packaged as a PBI - - + PBI としてパッケージ化するローカルディレクトリー Select a local directory to be packaged as a PBI - - + PBI としてパッケージ化するローカルディレクトリーを選択 Local Directory - - + ローカルディレクトリー PNG icon file to use for the PBI (can be changed later) - - + PBI の PNG アイコンファイル (後で変更できます) Select a local PNG file (64x64 pixel size recommended) - - + ローカルの PNG ファイルを選択 (64x64 ピクセルを推奨) Icon File - - + アイコンファイル Create a PBI from an existing FreeBSD port - - + 既存の FreeBSD port から PBI を作成します Package a local directory as a PBI - - + ローカルディレクトリーを PBI としてパッケージ化します Local Sources - - + ローカルソース EasyPBI: No FreeBSD Ports - - + EasyPBI: FreeBSD ports が存在しません The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + このシステム内に FreeBSD ports ツリーが存在しません。EasyPBI のメニューから ports ツリーを取得するか、ports ツリーが標準的ではない場所にある場合には、 EasyPBI の設定画面で ports ツリーのパスを手動で指定してください。 Select Port - port を選択 + port を選択 Select Package Directory - - + パッケージディレクトリーの選択 Select PNG Icon - - + PNG アイコンの選択 PNG icon (*.png) - - + PNG アイコン (*.png) PreferencesDialog EasyPBI Preferences - - + EasyPBI の設定 PBI Output Dir - - + PBI の出力先 Local directory for built PBI's to be placed. - - + ビルドされた PBI が置かれるローカルディレクトリー。 Browse local system to select a PBI output directory - - + PBI の出力先ディレクトリーを探す Select - - + 選択 Digitally sign any PBI's that are created for tamper-evident distribution - - + 配布時の改ざんの有無を確認するためにどの PBI にも電子署名を作成します Digitally Sign PBI - - + PBI の電子署名 Signature File - - + 署名ファイル Local file that contains the openssl key - - + OpenSSL の鍵を含むローカルファイル Browse for the openssl key file - - + OpenSSL 鍵ファイルを探す Use system memory to speed up PBI build processes. - - + PBI のビルド処理を高速化するためにシステムのメモリーを使用します Use TMPFS - TMPFS を使用する + TMPFS を使用する Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + PBI のビルド処理を大幅に加速するために前回ビルドした ports の再コンパイルを行わないようにします。 Use Package Caching - パッケージをキャッシュする + パッケージをキャッシュする Package Caching Options - - + パッケージキャッシュのオプション Packages to Ignore - - + 無視するパッケージ Listed packages will always be ignored during PBI builds. - - + PBI ビルド時に常に無視するキャッシュ済みパッケージのリストを作成します Add a currently cached package to be ignored. - - + 無視するキャッシュ済みパッケージを追加します。 Add - - + 追加 Remove the selected package from the ignore list. - - + 無視リストから削除するパッケージを追加します。 Remove - - + 削除 Delete all packages currently in the cache. - - + キャッシュされたパッケージを全て削除します。 Clear Cache - - + キャッシュをクリアー Local Paths - - + ローカルパス Default directory for all PBI modules to be created - - + PBI モジュールを作成する時のデフォルトディレクトリー Select a local directory for PBI modules. - - + PBI モジュールを置くローカルディレクトリーを選択 Default directory to open when adding icons/files to a module - - + モジュールのアイコンやファイルを開くときのデフォルトディレクトリー Select a local directory. - - + ローカルディレクトリーを選択 Default PNG icon to use for PBI modules. - - + PBI モジュールで使用するデフォルトの PNG アイコン。 Browse local system for a default PNG icon. - - + デフォルト PNG ファイルをローカルシステムから探す Have EasyPBI re-scan the system for available utilities. - - + EasyPBI が利用できるユーティリティーを再スキャンします。 Auto-Detect - - + 自動検出 pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + "pbi_makeport" のフルパス Browse system for the local binary. - - + バイナリーをシステムから探す。 pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + "pbi_create" のフルパス Switch User Utility - - + ユーザー切り替えユーティリティー Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + グラフィカルな "ユーザー切り替え" ユーティリティーのフルパス (pc-su, gksu, kdesu, qsu, etc...) Select PBI Output Directory - PBI 出力先ディレクトリーを選択 + PBI 出力先ディレクトリーを選択 Select Digital Signature File - デジタル署名ファイルを選択 + デジタル署名ファイルを選択 Signature Files (*) - - + 署名ファイル (*) Select the Package to Ignore - - + 無視するパッケージ Package Files (*.txz) - - + パッケージファイル (*.txz) Are you sure you wish to clear the PBI package cache? - - + PBI パッケージのキャッシュを消去しますか? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + キャッシュディレクトリー内の全ファイルとディレクトリーを削除します。次に PBI のビルドを行う時に、全てのパッケージをソースから再ビルドすることになります。 Select Default Module Directory - - + デフォルトのモジュールディレクトリーを選択 Select Default Directory To Find Icon Files - - + アイコンファイル探索を開始するデフォルトのディレクトリーを選択 Select Default Icon FIle - - + デフォルトのアイコンファイルを選択 PNG Images (*.png) - - + PNG 画像 (*.png) Select Graphical Switch-User Utility - - + グラフィカルなユーザー切り替えユーティリティーを選択 Select 'pbi_create' File Location - - + 'pbi_create' の場所を選択 Select 'pbi_makeport' File Location - - + 'pbi_makeport' の場所を選択 Are you sure you wish to return to the automatically detected utility paths? - - + 自動的に検出したユーティリティーのパスに変更しますか? This will remove any customized path settings for the external utilities. - - + あなたが設定したパスの設定が削除されます。 Select FreeBSD Ports Directory - - + FreeBSD ports のディレクトリーを選択 FreeBSD Ports - - + FreeBSD Ports Ports Tree - - + ports ツリー Last Update - - + 最終更新 TextLabel - - + TextLabel Create Dir - - + ディレクトリーの作成 Update - - + 更新 Status - - + ステータス PBI Builds - - + PBI のビルド External Utilities - - + 外部ユーティリティー Default Search Paths - - + デフォルトの検索パス Modules - - + モジュール Resources - リソース + リソース Default Icon - - + デフォルトのアイコン Current User (~/EasyPBI/ports) - - + 現在のユーザー (~/EasyPBI/ports) All Users (/usr/ports) - - + 全ユーザー (/usr/ports) Other - - + その他 Nonexistent - - + 存在しません Success - - + 成功 The FreeBSD ports tree has been successfully updated - - + FreeBSD ports ツリーの更新に成功しました Failure - - + 失敗 The FreeBSD ports tree has failed to update. - - + FreeBSD ports ツリーの更新に失敗しました Last Message: %1 - - + 最後のメッセージ: %1 Requesting Root Access - - + root 権限の要求 aboutDialog About EasyPBI - EasyPBI について + EasyPBI について License - - + ライセンス Development History - - + 開発履歴 EasyPBI version %1 - - + EasyPBI バージョン %1 Create PBI's quickly and easily. - PBI を迅速・簡単に作成します。 + PBI を迅速・簡単に作成します。 Unable to open resource file: %1 - - + リソースファイルを開くことができません: %1 Please check that your EasyPBI compilation was performed correctly - - + EasyPBI が正しくコンパイルされているか確認してください diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_nl.ts b/src-qt4/EasyPBI/i18n/EasyPBI_nl.ts index c9bfe826f..52a9eef09 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_nl.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_nl.ts @@ -5,1517 +5,1216 @@ MainGUI EasyPBI - - + EasyPBI Module Editor - - + Modulebewerker View and edit the current PBI module - - + Bekijk en bewerk de huidige PBI-module PBI Configuration - - + PBI-instellingen Main settings for the PBI - - + Hoofdinstellingen voor de PBI Program Information - - + Programmainformatie Official name of the target program - - + Officiële naam van het doelprogramma Name - - + Naam Version of the program to be packaged - - + Versie van het te verpakken programma Version - - + Versie URL of the main website for the target program - - + Webadres van de voornaamste webstek voor het doelprogramma Website - - + Webstek Author of the main program (or FreeBSD port maintainer instead) - - + Maker van het voornaamste programma (of in plaats daarvan degene die de FreeBSD-poort onderhoudt) Author - - + Maker Icon that will be used for the program (PNG resources available) - - + Pictogram dat zal worden gebruikt voor het programma (PNG-bronnen beschikbaar) Icon - - + Pictogram Build Information - - + Bouwselinformatie Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + Plaatselijke map die in een PBI moet worden verpakt (dient alles te bevatten wat nodig is voor het programma om te draaien) Package Directory - - + Pakketmap Select a directory to be packaged into a PBI - - + Kies een map om te verpakken in een PBI Select - - + Kiezen Main FreeBSD Port - - + Voornaamste FreeBSD-poort FreeBSD port to be packaged as a PBI - - + FreeBSD-poort die in een PBI moet worden verpakt Select a FreeBSD port - - + Kies een FreeBSD-poort Change Port - - + Poort veranderen Port Build Options - - + Bouwopties voor poort Special configuration options for any ports that need to be built. - - + Bijzondere instellingsopties voor te bouwen poorten. Build options available for main FreeBSD port - - + Bouwopties beschikbaar voor voornaamste FreeBSD-poort Make Port Before - - + Maak poort ervoor Additional FreeBSD ports to be built before the main program - - + Extra FreeBSD-poorten om gebouwd te worden voor het voornaamste programma Add additional FreeBSD port - - + Extra FreeBSD-poort toevoegen Remove additional FreeBSD port - - + Extra FreeBSD-poort verwijderen Make Port After - - + Maak poort erna Additional FreeBSD ports to be built after the main program - - + Extra FreeBSD-poorten die gebouwd moeten worden na het voornaamste programma Require administrator permissions to install this PBI - - + Vereis beheerdersrechten om deze PBI te installeren Requires Root Permissions - - + Vereist rootrechten Save the current settings to the PBI configuration file - - + Sla de huidige instellingen op in het PBI-instellingenbestand Save Configuration - - + Instellingen opslaan Resources - - + Hulpbronnen Additional files to be included in the PBI - - + Extra bestanden die opgenomen moeten worden in de PBI Current Resources - - + Huidige hulpbronnen Current files to be included in the PBI - - + Huidige bestanden die opgenomen moeten worden in de PBI Copy an additional file into the PBI module - - + Kopieer een extra bestand naar de PBI-module Add File - - + Bestand toevoegen Delete the selected file from the PBI module - - + Verwijder het gekozen bestand uit de PBI-module Delete File - - + Bestand verwijderen Create a custom wrapper script for a program binary - - + Maak een aangepast inpakscript voor een binair bestand van een programma Wrapper Script - - + Verpakkerscript Save the wrapper script - - + Sla het verpakkerscript op Save Script - - + Script opslaan Resource Icon - - + Pictogram van hulpbron Resource Description - - + Beschrijving van hulpbron XDG Entries - - + XDG-invoervelden Set any desktop/menu entries, and any MIME types - - + Stel invoervelden in voor bureaublad/menu, alsook MIME-types Create and edit desktop entries - - + Maak en bewerk bureaublad-invoervelden Desktop - - + Bureaublad Create and edit menu entries - - + Maak en bewerk menu-invoervelden Menu - - + Menu Refresh the current list (useful if files recently modified outside of EasyPBI) - - + Ververs de huidige lijst (nuttig indien bestanden recent aangepast zijn buiten EasyPBI) Delete the current item from the PBI module - - + Verwijder het huidige element uit de PBI-module Remove - - + Verwijderen Entry Details - - + Details van invoerveld Visible name for the item - - + Zichtbare naam voor het element Executable - - + Uitvoerbaar Binary to be run when the item is activated - - + Binair bestand om te draaien wanneer het element is geactiveerd Auto-detected binaries for the PBI - - + Automatisch bespeurde binaire bestanden voor de PBI Visible icon to use for the item - - + Zichtbaar pictogram te gebruiken voor het element Menu category for the item to be located. - - + Menucategorie voor het op te sporen element. Possible Menu categories - - + Mogelijke menucategorieën Start the application in a terminal session - - + Start de toepassing in een terminalsessie Open in Terminal - - + Openen in terminal Flag this item to not be displayed at all - - + Geef dit element een vlag waardoor het niet wordt getoond Make Invisible - - + Onzichtbaar maken MIME Patterns - - + MIME-patronen Save the item as currently shown - - + Sla het element op zoals het thans wordt getoond Create a new item with the current settings - - + Maak een nieuw element met de huidige instellingen Scripts - - + Scripts Additional installation/build scripts - - + Extra scripts voor installatie/bouwen Choose a script that you wish to create or edit - - + Kies een script dat u wil maken of bewerken Create the selected script - - + Maak het gekozen script Create - - + Maken Delete the selected script from the PBI module - - + Verwijder het gekozen script uit de PBI-module Save the current text as the selected script - - + Sla de huidige tekst op als het gekozen script Save - - + Opslaan Contents for the selected script - - + Inhoud van het gekozen script External-Links - - + Externe koppelingen FIles to be linked into the local system - - + Bestanden om in het lokale systeem te worden gekoppeld Current Entries - - + Huidige invoervelden File - - + Bestand Link To - - + Koppelen aan File Type - - + Bestandtype Remove currently selected link - - + Verwijder thans gekozen koppeling Remove Entry - - + Verwijder invoerveld Add Entry - - + Voeg invoerveld toe PBI file to be sym-linked into the local system (relative to the PBI directory) - - + PBI-bestand dat symbolisch gekoppeld moet worden in het lokale systeem (in relatie tot de PBI-map) Auto-detected binaries for this PBI - - + Automatisch bespeurde binaire bestanden voor deze PBI Location for the link to be created (relative to the local base: normally /usr/local/) - - + Locatie voor de te maken koppeling (in relatie tot de lokale basis: gewoonlijk /usr/local) Flags to determine the file type - - + Vlaggen om het bestandtype te bepalen Available flags for the new link - - + Beschikbare vlaggen voor de nieuwe koppeling Save this link to the PBI module - - + Sla deze koppeling op in de PBI-module PBI Builder - - + PBI-bouwer Use the current module to build a PBI - - + Gebruik de huidige module om een PBI te bouwen Module Building - - + Module bouwen Shows the module that is currently being used to build a PBI - - + Toont de module die thans gebruikt wordt om een PBI te bouwen No PBI currently being built - - + Thans wordt er geen PBI gebouwd Output Directory - - + Uitvoermap Location for the finished PBI to be located - - + Locatie voor de voltooide PBI Displays any output from a PBI build process - - + Toont uitvoer van een PBI-bouwproces Build PBI - - + PBI bouwen OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + Naar keuze: bouw een 32-bit-PBI in plaats van de standaard 64-bit. Build 32-bit - - + 32-bit bouwen Cancel the currently running build process - - + Annuleer het thans draaiende bouwproces Cancel Build - - + Bouwen annuleren Save the current build log to disk (very useful when requesting help with a failed build) - - + Sla het huidige bouwlogboek op de schijf op (zeer nuttig bij het inroepen van hulp voor een mislukt bouwsel) Save Build Log - - + Sla bouwlogboek op System - - + Systeem Options - - + Opties Information - - + Informatie toolBar - - + werkbalk EasyPBI Settings - - + Instellingen van EasyPBI Open up the EasyPBI settings editor - - + Open de instellingenbewerker voor EasyPBI Get FreeBSD Ports - - + Verkrijg FreeBSD-poorten Fetch/update the FreeBSD ports tree - - + Verkrijg de FreeBSD-poortenboom of werk deze bij New - - + Nieuw Click to create a new PBI module - - + Klik om een nieuwe PBI-module te maken Load - - + Laden Click to load an existing module - - + Klik om een bestaande module te laden Summary - - + Samenvatting License - - + Licentie History - - + Geschiedenis FreeBSD Ports - - + FreeBSD-poorten Open up freshports.org for additional port information - - + Open freshports.org voor extra poortinformatie PBI Modules - - + PBI-modules Open up the PC-BSD Wiki page for PBI developers - - + Open de PC-BSD-wikipagina voor PBI-ontwikkelaars Close EasyPBI - - + EasyPBI sluiten Package Module - - + Pakketmodule Compress the current module for distribution - - + Comprimeer de huidige module voor distributie About EasyPBI - - + Over EasyPBI View additional information about EasyPBI - - + Bekijk extra informatie over EasyPBI No Module Loaded - - + Geen module geladen FreeBSD Port - - + FreeBSD-poort Local Sources - - + Lokale bronnen Installation Scripts - - + Installatiescripts Permissions Error - - + Rechtenfout There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + Er is een fout opgetreden bij een poging om de lokale mapstructuur van EasyPBI te maken. Kijk a.u.b. de rechten na voor uw persoonlijke map en herstart EasyPBI. Resources Unavailable - - + Hulpbronnen niet beschikbaar Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + Sommige externe hulpbronnen konden niet worden gevonden, dus zijn de EasyPBI-diensten uitgeschakeld die deze hulpbronnen gebruiken. Success - - + Succes A copy of the current module has been successfully packaged within the module directory. - - + Een kopie van de huidige module is met succes verpakt binnen de modulemap. EasyPBI: Permissions Error - - + EasyPBI: rechtenfout Could not create PBI module. Please check the directory permissions and try again. - - + Kon de PBI-module niet maken. Kijk a.u.b. de maprechten na en probeer het opnieuw. Select Module - - + Module kiezen EasyPBI: No FreeBSD Ports - - + EasyPBI: geen FreeBSD-poorten The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + De FreeBSD-poortenboom kon niet in uw systeem worden aangetroffen. U kunt de porrtenboom ophalen via het EasyPBI-menu of het pad naar de poortenboomhandmatig instellen in de EasyPBI-voorkeuren, indien dit is geïnstalleerd op een niet-standaardlocatie. Select Port - - + Poort kiezen EasyPBI: Invalid Port - - + EasyPBI: ongeldige poort The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + De gekozen map is geen geldige FreeBSD-poort. Kies a.u.b. een poortmap die de van toepassing zijnde Makefile en distinfo bevat. EasyPBI Error - - + EasyPBI-fout The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + Het PBI-instellingenbestand kon niet worden opgeslagen. Kijk a.u.b. uw bestandrechten na alvorens het opnieuw te proberen. Select Resources - - + Hulpbronnen kiezen New Wrapper Script - - + Nieuw verpakkerscript Filename - - + Bestandnaam Could not remove the XDG entry. - - + Kon het XDG-invoerveld niet verwijderen. Check the file permissions and try again - - + Kijk de bestandrechten na en probeer opnieuw Could not save the changes to the XDG entry. - - + Kon de wijzigingen niet opslaan in het XDG-invoerveld. Error Saving File - - + Fout bij opslaan bestand Could not save the script - - + Kon het script niet opslaan Please check the file permissions and try again - - + Kijk a.u.b. de bestandrechten na en probeer opnieuw Error - - + Fout Invalid PBI Settings - - + Ongeldige PBI-instellingen Are you sure you wish to start the PBI build? - - + Weet u zeker dat u de PBI-bouw wil aanvangen? PBI Builder (Working) - - + PBI-bouwer (bezig) Save Log - - + Logboek opslaan Log Files - - + Logboekbestanden PBI Build Success - - + Succesvolle PBI-bouw The PBI finished building successfully - - + De PBI-bouw is met succes afgerond PBI Build Failure - - + Mislukte PBI-bouw The PBI failed to build. - - + De PBI kon niet worden gebouwd. Please check the build log to find the cause of the failure and adjust the module accordingly - - + Kijk a.u.b. het bouwlogboek na om de oorzaak van de mislukking te vinden en de module dienovereenkomstig aan te passen PBI Builder (Finished) - - + PBI-bouwer (gereed) Begin creating a new XDG entry - - + Begin een nieuw XDG-invoerveld te maken Category - - + Categorie Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + Spatiegescheiden lijst van automatische bestandassociaties (bijvoorbeeld: *.odt *.ODT) Add - - + Toevoegen Select Package Directory - - + Kies pakketmap FreeBSD Ports Missing - - + FreeBSD-poorten ontbreken The FreeBSD ports tree is missing from your system. - - + De FreeBSD-poortenboom ontbreekt in uw systeem. Application needs administrator privileges to run - - + Toepassing heeft beheerdersrechten nodig om te draaien Requires Root - - + Vereist root Refresh Module - - + Module verversen Please open up the EasyPBI settings to correct this deficiency. - - + Open a.u.b. de instellingen van EasyPBI om dit gebrek te verhelpen. Start building a PBI from the current module (requires administrator privileges) - - + Begin een PBI te bouwen vanuit de huidige module (vereist beheerdersrechten) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + Dit vereist een actieve internetverbinding en beheerdersrechten. De tijd die benodigd is om een PBI te bouwen verschilt, afhankelijk van systeemeigenschappen en te compileren poorten. The directory selected does not appear to be a valid FreeBSD port. - - + De gekozen map lijkt geen geldige FreeBSD-poort te zijn. Do you wish to continue using it anyway? - - + Wilt u hem toch gebruiken? NewModuleDialog Create a new Module - - + Maak een nieuwe module FreeBSD Port - - + FreeBSD-poort FreeBSD port that you wish to build as a PBI - - + FreeBSD-poort die u als een PBI wil bouwen Select a port from the local FreeBSD ports tree - - + Kies een poort vanuit de lokale FreeBSD-poortenboom Select - - + Kiezen Local directory to be packaged as a PBI - - + Lokale map die als een PBI verpakt moet worden Select a local directory to be packaged as a PBI - - + Kies een lokale map die als een PBI moet worden verpakt Local Directory - - + Lokale map PNG icon file to use for the PBI (can be changed later) - - + PNG-pictogrambestand dat gebruikt moet worden voor de PBI (kan later worden gewijzigd) Select a local PNG file (64x64 pixel size recommended) - - + Kies een lokaal PNG-bestand (pixelgrootte 64x64 wordt aangeraden) Icon File - - + Pictogrambestand Create a PBI from an existing FreeBSD port - - + Maak een PBI vanuit een bestaande FreeBSD-poort Package a local directory as a PBI - - + Verpak een lokale map als een PBI Local Sources - - + Lokale bronnen EasyPBI: No FreeBSD Ports - - + EasyPBI: geen FreeBSD-poorten The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + De FreeBSD-poortenboom kon niet in uw systeem worden aangetroffen. U kunt de poortenboom ophalen via het EasyPBI-menu of het pad naar de poortenboom handmatig instellen in de EasyPBI-voorkeuren, indien deze is geïnstalleerd op een niet-standaardlocatie. Select Port - - + Poort kiezen Select Package Directory - - + Pakketmap kiezen Select PNG Icon - - + PNG-pictogram kiezen PNG icon (*.png) - - + PNG-pictogram (*.png) PreferencesDialog EasyPBI Preferences - - + Voorkeuren van EasyPBI PBI Output Dir - - + PBI-uitvoermap Local directory for built PBI's to be placed. - - + Lokale map waar gebouwde PBI's moeten worden geplaatst. Browse local system to select a PBI output directory - - + Doorzoek lokale systeem om een PBI-uitvoermap te kiezen Select - - + Kiezen Digitally sign any PBI's that are created for tamper-evident distribution - - + Voorzie PBI's die worden gemaakt voor knoeibestendige distributie, van een digitale handtekening Digitally Sign PBI - - + Voorzie PBI van digitale handtekening Signature File - - + Handtekeningbestand Local file that contains the openssl key - - + Lokaal bestand dat de openssl-sleutel bevat Browse for the openssl key file - - + Zoek naar het openssl-sleutelbestand Use system memory to speed up PBI build processes. - - + Gebruik systeemgeheugen om PBI-bouwprocessen te versnellen. Use TMPFS - - + Gebruik TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + Versnelt het PBI-bouwproces aanzienlijk, door hercompilatie van eerder gebouwde poorten te voorkomen. Use Package Caching - - + Tijdelijke pakketopslag in geheugen gebruiken Package Caching Options - - + Opties voor tijdelijke pakketopslag in geheugen Packages to Ignore - - + Te negeren pakketten Listed packages will always be ignored during PBI builds. - - + Opgesomde pakketten zullen altijd worden genegeerd tijdens PBI-bouw. Add a currently cached package to be ignored. - - + Voeg een te negeren pakket toe dat thans in de tijdelijke geheugenopslag zit. Add - - + Toevoegen Remove the selected package from the ignore list. - - + Verwijder het gekozen pakket uit de negeerlijst. Remove - - + Verwijderen Delete all packages currently in the cache. - - + Verwijder alle pakketten die zich thans in de tijdelijke geheugenopslag bevinden. Clear Cache - - + Tijdelijke geheugenopslag leegmaken Local Paths - - + Lokale paden Default directory for all PBI modules to be created - - + Standaardmap voor alle te maken PBI-modules Select a local directory for PBI modules. - - + Kies een lokale map voor PBI-modules. Default directory to open when adding icons/files to a module - - + Te openen standaardmap voor het toevoegen van pictogrammen/bestanden aan een module Select a local directory. - - + Kies een lokale map. Default PNG icon to use for PBI modules. - - + Standaard-PNG-pictogram om te gebruiken voor PBI-modules. Browse local system for a default PNG icon. - - + Doorzoek lokaal systeem naar een standaard-PNG-pictogram. Have EasyPBI re-scan the system for available utilities. - - + Laat EasyPBI het systeem opnieuw doorzoeken naar beschikbare hulpmiddelen. Auto-Detect - - + Automatisch bespeuren pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + Volledig pad naar het binaire bestand 'pbi_makeport' Browse system for the local binary. - - + Doorzoek systeem naar het lokale binaire bestand. pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + Volledig pad naar het 'pbi_create'-binaire bestand Switch User Utility - - + Hulpmiddel voor gebruikerswissel Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + Volledig pad naar het grafische hulpmiddel voor gebruikerswissel (pc-su, gksu, kdesu, qsu, enz...) Select PBI Output Directory - - + Kies PBI-uitvoermap Select Digital Signature File - - + Kies digitaal handtekeningbestand Signature Files (*) - - + Handtekeningbestanden (*) Select the Package to Ignore - - + Kies het te negeren pakket Package Files (*.txz) - - + Pakketbestanden (*.txz) Are you sure you wish to clear the PBI package cache? - - + Weet u zeker dat u de tijdelijke geheugenopslag voor PBI-pakketten wil ledigen? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + Dit zal alle bestanden en mappen verwijderen in de map voor tijdelijke geheugenopslag. De volgende keer dat u een PBI-bouw aanvangt, zal die beginnen om alle pakketten vanuit de bron te herbouwen. Select Default Module Directory - - + Kies standaard-modulemap Select Default Directory To Find Icon Files - - + Kies standaardmap voor het zoeken naar pictogrambestanden Select Default Icon FIle - - + Kies standaard-pictogrambestand PNG Images (*.png) - - + PNG-afbeeldingen (*.png) Select Graphical Switch-User Utility - - + Kies grafisch hulpmiddel voor gebruikerswissel Select 'pbi_create' File Location - - + Kies locatie voor 'pbi_create'-bestand Select 'pbi_makeport' File Location - - + Kies locatie voor 'pbi_makeport'-bestand Are you sure you wish to return to the automatically detected utility paths? - - + Weet u zeker dat u wil terugkeren naar de automatisch bespeurde hulpmiddelpaden? This will remove any customized path settings for the external utilities. - - + Dit zal alle aangepaste padinstellingen verwijderen voor externe hulpmiddelen. Select FreeBSD Ports Directory - - + Kies FreeBSD-poortenmap FreeBSD Ports - - + FreeBSD-poorten Ports Tree - - + Poortenboom Last Update - - + Laatste keer bijgewerkt TextLabel - - + TextLabel Create Dir - - + Map maken Update - - + Bijwerken Status - - + Status PBI Builds - - + PBI-bouwsels External Utilities - - + Externe hulpmiddelen Default Search Paths - - + Standaard-zoekpaden Modules - - + Modules Resources - - + Hulpbronnen Default Icon - - + Standaardpictogram Current User (~/EasyPBI/ports) - - + Huidige gebruiker (~/EasyPBI/ports) All Users (/usr/ports) - - + Alle gebruikers (/usr/ports) Other - - + Overig Nonexistent - - + Niet-bestaand Success - - + Succes The FreeBSD ports tree has been successfully updated - - + De FreeBSD-poortenboom is met succes bijgewerkt Failure - - + Mislukt The FreeBSD ports tree has failed to update. - - + De FreeBSD-poortenboom kon niet worden bijgewerkt. Last Message: %1 - - + Laatste bericht: %1 Requesting Root Access - - + Root-toegang vereisen aboutDialog About EasyPBI - - + Over EasyPBI License - - + Licentie Development History - - + Ontwikkelingsgeschiedenis EasyPBI version %1 - - + EasyPBI-versie %1 Create PBI's quickly and easily. - - + Maak snel en makkelijk PBI's. Unable to open resource file: %1 - - + Kon hulpbronbestand niet openen: %1 Please check that your EasyPBI compilation was performed correctly - - + Kijk a.u.b. na of uw EasyPBI-compilatie juist werd uitgevoerd diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_pl.ts b/src-qt4/EasyPBI/i18n/EasyPBI_pl.ts index 0a64e312c..d169943de 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_pl.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_pl.ts @@ -141,7 +141,7 @@ Require administrator permissions to install this PBI - Wymaganie uprawnień administratora do instalacji tego PBI + Do zainstalowania tego PBI wymagane są uprawnienia administratora Requires Root Permissions @@ -293,7 +293,7 @@ Make Invisible - Uczyń widocznym + Uczyń niewidocznym MIME Patterns @@ -301,1119 +301,920 @@ Save the item as currently shown - Zapisz element jak jest obecnie widoczny + Zapisz element w obecnej formie Create a new item with the current settings - - + Stwórz nowy element z obecnymi ustawieniami Scripts - - + Skrypty Additional installation/build scripts - - + Dodatkowe skrypty instalacji/budowy Choose a script that you wish to create or edit - - + Wybierz sktypt który chcesz użyć lub edytować Create the selected script - - + Stwórz wybrany skrypt Create - - + Stwórz Delete the selected script from the PBI module - - + Usuń wybrany skrypt z modułu PBI Save the current text as the selected script - - + Zapisz aktualny tekst jako wybrany skrypt Save - - + Zapisz Contents for the selected script - - + Zawartość dla wybranego skryptu External-Links - Linki zewnętrzne + Linki zewnętrzne FIles to be linked into the local system - - + Pliki do zalinkowania w lokalny system Current Entries - - + Aktualne wpisy File - Plik + Plik Link To - - + Skrót do File Type - - + Typ pliku Remove currently selected link - - + Usuń aktualnie wybrany skrót Remove Entry - - + Usuń wpis Add Entry - - + Dodaj wpis PBI file to be sym-linked into the local system (relative to the PBI directory) - - + Plik PBI do zlinkowania symbolicznego w lokalny system (względnie do katalogu PBI) Auto-detected binaries for this PBI - - + Automatycznie wykryte binaria dla tego PBI Location for the link to be created (relative to the local base: normally /usr/local/) - - + Położenie gdzie link ma być stworzony (relatywnie do położenia lokalnego: normalnie /usr/local/) Flags to determine the file type - - + Flagi do określenia typu pliku Available flags for the new link - - + Dostępne flagi dla nowego skrótu Save this link to the PBI module - - + Zapisz ten link do modułu PBI PBI Builder - - + PBI Builder Use the current module to build a PBI - - + Użyj aktualnego modułu aby zbudować PBI Module Building - - + Budowanie Modułu Shows the module that is currently being used to build a PBI - - + Pokazanie modułu który jest aktualnie używany do budowania PBI No PBI currently being built - - + Aktualnie nie jest budowany żaden PBI Output Directory - Katalog wyjściowy + Katalog wyjściowy Location for the finished PBI to be located - - + Położenie gdzie będą umieszczane gotowe PBI Displays any output from a PBI build process - - + Wyświetla wszystkie komunikaty procesu budowania PBI Build PBI - Buduj PBI + Budowanie PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + Opcjonalnie: Buduj 32-bitowe PBI zamiast typowego 64-bitowego Build 32-bit - - + Budowanie 32-bity Cancel the currently running build process - - + Anuluj działający teraz proces budowania Cancel Build - - + Anuluj Budowanie Save the current build log to disk (very useful when requesting help with a failed build) - - + Zapisz log aktualnego budowania na dysku (bardzo przydatne gdy potrzebna jest pomoc z powodu niepowodzenia budowania) Save Build Log - Zapisz log budowania + Zapisz log budowania System - - + System Options - - + Opcje Information - - + Informacja toolBar - - + pasek narzędzi EasyPBI Settings - - + Ustawienia EasyPBI Open up the EasyPBI settings editor - - + Otwórz edytor ustawień EasyPBI Get FreeBSD Ports - - + Pobierz porty FreeBSD Fetch/update the FreeBSD ports tree - - + Pobierz/aktualizuj drzewo portów FreeBSD New - - + Nowy Click to create a new PBI module - - + Kliknij aby stworzyć nowy moduł PBI Load - - + Ładuj Click to load an existing module - - + Kliknij aby załadować istniejący moduł Summary - - + Podsumowanie License - - + LIcencja History - - + Historia FreeBSD Ports - - + Porty FreeBSD Open up freshports.org for additional port information - - + Otwórz freshports.org po dodatkowe informacje PBI Modules - - + Moduły PBI Open up the PC-BSD Wiki page for PBI developers - - + Otwórz stronę PC-BSD wiki dla deweloperów PBI Close EasyPBI - - + Zamknij EasyPBI Package Module - Pakiet modułu + Pakiet modułu Compress the current module for distribution - - + Kompresuj aktualny moduł dla rozpowszechniania About EasyPBI - O EasyPBI + O EasyPBI View additional information about EasyPBI - - + Przejrzyj dodatkowe informacje o EasyPBI No Module Loaded - - + Brak załadowanego Modułu FreeBSD Port - - + Port FreeBSD Local Sources - - + Lokalne źródła Installation Scripts - - + Skrypty instalacyjne Permissions Error - - + Błąd uprawnień There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + Wystąpił błąd w trakcje tworzenia lokalnej struktury katalogów EasyPBI. Proszę sprawdzić uprawnienia swojego katalogu domowego i restartować EasyPBI. Resources Unavailable - - + Zasoby niedostępne Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + Ponieważ niektóre zasoby zewnętrzne nie mogły być znalezione, usługi EasyPBI z nich korzystające zostały deaktywowane. Success - - + Sukces A copy of the current module has been successfully packaged within the module directory. - - + Kopia aktualnego modułu została z powodzeniem spakowana w katalogu modułu. EasyPBI: Permissions Error - - + EasyPBI: Błąd uprawnień Could not create PBI module. Please check the directory permissions and try again. - - + Nie można stworzyć modułu PBI. Proszę sprawdzić uprawnienia katalogów i spróbować ponownie. Select Module - Wybierz moduł + Wybierz moduł EasyPBI: No FreeBSD Ports - - + EasyPBI: brak portów FreeBSD The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + Drzewo portów FreeBSD nie zostało znalezione w twoim systemie.Możesz pobrać drzewo portów przez menu EasyPBI lub ręcznie określić ścieżkę do drzewa w ustawieniach EasyPBI jeśli zostało ono zainstalowane w niestandardowej lokalizacji. Select Port - Wybierz Port + Wybierz Port EasyPBI: Invalid Port - - + EasyPBI: niepoprawny Port The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + Wybrany katalog nie jest poprawnym portem FreeBSD. Proszę wybrać katalog portów który zawiera odpowiednie Makefile i distinfo. EasyPBI Error - - + Błąd EasyPBI The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + Konfiguracja PBI nie mogła zostać zapisana. Proszę sprawdzić uprawnienia plików przed ponowną próbą. Select Resources - - + Wybierz zasoby New Wrapper Script - - + Nowy skrypt Wrapper Filename - - + Nazwa pliku Could not remove the XDG entry. - - + Nie można usunąć wpisu XDG. Check the file permissions and try again - - + Sprawdź uprawnienia pliku i spróbuj ponownie Could not save the changes to the XDG entry. - - + Nie można zachować zmian we wpisie XDG. Error Saving File - - + Błąd zapisu pliku Could not save the script - - + Nie można zapisać skryptu Please check the file permissions and try again - - + Proszę sprawdzić uprawnienia pliku i spróbować ponownie. Error - Błąd + Błąd Invalid PBI Settings - Niepoprawne ustawienia PBI + Niepoprawne ustawienia PBI Are you sure you wish to start the PBI build? - Jesteś pewny że chcesz uruchomić tworzenie PBI? + Na pewno chcesz uruchomić budowanie PBI? PBI Builder (Working) - - + PBI Builder (działa) Save Log - Zapisz Log + Zapisz Log Log Files - Pliki logów + Pliki logów PBI Build Success - Tworzenie PBI zakończone powodzeniem. + Tworzenie PBI zakończone powodzeniem. The PBI finished building successfully - Budowanie PBI zakończone sukcesem + Budowanie PBI zakończone sukcesem PBI Build Failure - Niepowodzenie tworzenia PBI + Niepowodzenie tworzenia PBI The PBI failed to build. - Nie udało się zbudować PBI. + Nie udało się zbudować PBI. Please check the build log to find the cause of the failure and adjust the module accordingly - Proszę sprawdzić log budowy aby znaleźć przyczynę niepowodzenia i poprawić ustawienia modułu + Proszę sprawdzić log budowy aby znaleźć przyczynę niepowodzenia i poprawić ustawnienia modułu PBI Builder (Finished) - - + PBI Builder (zakończono) Begin creating a new XDG entry - - + Rozpoczęcie tworzenia nowego wpisu XDG Category - - + Kategoria Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + Oddzielona spacjali lista automatycznych powiązań plików (Przykład: *.junk *.JUNK *.test *.TEST) Add - - + Dodaj Select Package Directory - - + Wbierz Katalog Pakietu FreeBSD Ports Missing - - + Brak portów FreeBSD The FreeBSD ports tree is missing from your system. - - + Brak portów FreeBSD w twoim systemie. Application needs administrator privileges to run - - + Aplikacja wymaga do działania uprawnień administracyjnych Requires Root - - + Wymaga administratora Refresh Module - - + Odświerz Moduł Please open up the EasyPBI settings to correct this deficiency. - - + Proszę odworzyć ustawienia EasyPBI aby poprawić niekompletność Start building a PBI from the current module (requires administrator privileges) - - + Rozpoczęcie budowania aktualnego modułu PBI (wymaga uprawnień administracyjnych) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + To wymaga aktywnego połączenia sieciowego i uprawnień administracyjnych. Czas wymagany do budowy PBI zależy od specyfikacji systemu i portów do kompilowania. The directory selected does not appear to be a valid FreeBSD port. - - + Wybrany katalog wydaje się nie być poprawnym portem FreeBSD. Do you wish to continue using it anyway? - - + Na pewno chcesz kontynuować używając go? NewModuleDialog Create a new Module - - + Stwórz nowy Moduł FreeBSD Port - - + Port FreeBSD FreeBSD port that you wish to build as a PBI - - + Port FreeBSD który chcesz budować jako PBI Select a port from the local FreeBSD ports tree - - + Wybierz port z lokalnego drzewa portów FreeBSD Select - - + Wybierz Local directory to be packaged as a PBI - - + Lokalny katalog do pakowania jako PBI Select a local directory to be packaged as a PBI - - + Wybierz lokalny katalog do pakowania jako PBI Local Directory - - + Lokalny katalog PNG icon file to use for the PBI (can be changed later) - - + Plik ikony PNG do użycia przez PBI (może być zmieniony później) Select a local PNG file (64x64 pixel size recommended) - - + Wybierz lokalny plik PNG (sugerowany rozmiar to 64x64) Icon File - - + Plik ikony Create a PBI from an existing FreeBSD port - - + Stwórz PBI z lokalnego portu FreeBSD Package a local directory as a PBI - - + Spakuj lokalny katalog jako PBI Local Sources - - + Lokalne źródła EasyPBI: No FreeBSD Ports - - + EasyPBI: brak portów FreeBSD The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + Drzewo portów FreeBSD nie zostało znalezione w twoim systemie. Możesz pobrać drzewo portów przez menu EasyPBI lub ręcznie określić ścieżkę do drzewa portów w ustawieniach EasyPBI jeśli zostało ono zainstalowane w niestandardowej lokalizacji. Select Port - Wybierz Port + Wybierz Port Select Package Directory - - + Wybierz katalog pakietów Select PNG Icon - - + Wybierz ikonę PNG PNG icon (*.png) - - + Ikona PNG (*.png) PreferencesDialog EasyPBI Preferences - - + Preferencje EasyPBI PBI Output Dir - - + Katalog wyjściowy PBI Local directory for built PBI's to be placed. - - + Lokalny katalog w którym znajdą się zbudowane PBI Browse local system to select a PBI output directory - - + Przeglądaj lokalny system aby wybrać katalog wyściowy PBI. Select - - + Wybierz Digitally sign any PBI's that are created for tamper-evident distribution - - + Podpisz cyfrowo PBI które będą tworzone dla bezpiecznej dystrybucji Digitally Sign PBI - - + Cyfrowo podpisz PBI Signature File - - + Plik podpisu Local file that contains the openssl key - - + Plik lokalny który zawiera klucz openssl Browse for the openssl key file - - + Przeglądaj aby wybrać plik klucza openssl Use system memory to speed up PBI build processes. - - + Użyj pamięci systemowej aby przyśpieszyć proces budowania PBI. Use TMPFS - Użyj TMPFS + Użyj TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + Bardzo przyśpiesza proces budowania PBI poprzez zapobieganie ponownej kompilacji zbudowanych już portów Use Package Caching - Użyj keszowania pakietów + Użyj keszowania pakietów Package Caching Options - - + Opcje keszkowania pakietów Packages to Ignore - - + Pakiety do ignorowania Listed packages will always be ignored during PBI builds. - - + Wybrane pakiety będą zawsze ignorowanie w czasie budowania PBI. Add a currently cached package to be ignored. - - + Dodaj aktualnie keszowany pakiet do ignorowanych. Add - - + Dodaj Remove the selected package from the ignore list. - - + Usuń wybrany pakiet z listy ignorowanych. Remove - - + Usuń Delete all packages currently in the cache. - - + Usuń wszystkie katalogi które są aktualnie w Pamięci podręcznej Clear Cache - - + Wyczyść Pamięć Podręczną Local Paths - - + Lokalne ścieżki Default directory for all PBI modules to be created - - + Domyślny katalog do tworzenia wszystkich modułów PBI Select a local directory for PBI modules. - - + Wybierz lokalny katalog dla modułów PBI. Default directory to open when adding icons/files to a module - - + Domyślny katalog do otwarcia przy dodawaniu ikon/plików do modułu Select a local directory. - - + Wybierz lokalny katalog. Default PNG icon to use for PBI modules. - - + Domyślna ikona PNG do użycia w modułach PBI. Browse local system for a default PNG icon. - - + Przeglądaj lokalny system za domyślną ikoną PNG, Have EasyPBI re-scan the system for available utilities. - - + Poleć EasyPBI ponownie skanować system za dostępnymi narzędziami. Auto-Detect - - + Automatyczne wykrywanie pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + Pełna ścieżka do binaria "pbi_makeport" Browse system for the local binary. - - + Przeglądaj system za lokalnymi binariami. pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + Pełna ścieżka do binaria "pbi_create" Switch User Utility - - + Narzędzie przełączania użytkownika Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + Pełna ścieżka do graficznego narzędzia "przełącz użytkownika" (pc-su, gksu, kdesu, qsu, etc..) Select PBI Output Directory - Wybierz wyjściowy katalog PBI + Wybierz wyjściowy katalog PBI Select Digital Signature File - Wybierz plik podpisu cyfrowego + Wybierz plik podpisu cyfrowego Signature Files (*) - - + Pliki podpisu (*) Select the Package to Ignore - - + Wybierz pakieto do ignorowania. Package Files (*.txz) - - + Pliki pakietów (*.txz) Are you sure you wish to clear the PBI package cache? - - + Na pewno chesz wyczyścić pamieć podręczną pakietów PBI This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + To usunie wszystkie pliki i podkatalogi z katalogu pamięci podręcznej. Następnym razem gdy zaczniesz budowanie PBI, rozpocznie się ponowne budowanie wszystkich pakietów ze żródeł. Select Default Module Directory - - + Wybierz domyślny katalog modułu. Select Default Directory To Find Icon Files - - + Wybierz domyślny katalog do znalezienia plików ikon. Select Default Icon FIle - - + Wybierz domyślny plik ikony. PNG Images (*.png) - - + Obrazy PNG (*.png) Select Graphical Switch-User Utility - - + Wybierz graficzne narzędzie przełączania użytkownika Select 'pbi_create' File Location - - + Wybierz położenie narzędzia 'pbi_create' Select 'pbi_makeport' File Location - - + Wybierz położenie pliku 'pbi_makeport' Are you sure you wish to return to the automatically detected utility paths? - - + Na pewno chcesz powrócić do automatycznie wykrytych ścieżek narzędzi? This will remove any customized path settings for the external utilities. - - + To usunie wszystkie niestandardowe ustawienia ścieżek do zewnętrznych narzędzi. Select FreeBSD Ports Directory - - + Wybierz drzewo portów FreeBSD FreeBSD Ports - - + Porty FReeBSD Ports Tree - - + Drzewo Portów Last Update - - + Ostatnia aktualizacja TextLabel - - + TextLabel Create Dir - - + Stwórz katalog Update - - + Aktualizuj Status - - + Status PBI Builds - - + Budowania PBI External Utilities - - + Zewnętrzne narzędzia Default Search Paths - - + Domyślne ścieżki wyszukiwania Modules - - + Moduły Resources - Zasoby + Zasoby Default Icon - - + Domyślna Ikona Current User (~/EasyPBI/ports) - - + Aktualny użytkownik (~/EasyPBI/ports) All Users (/usr/ports) - - + Wszyscy użytkownicy (/usr/ports) Other - - + Inni Nonexistent - - + Nieistniejący Success - - + Sukces The FreeBSD ports tree has been successfully updated - - + Drzewo portów FreeBSD zostało zaktualizowane. Failure - - + Niepowodzenie The FreeBSD ports tree has failed to update. - - + Aktualizacja drzewa Portów nie powiodła się. Last Message: %1 - - + Ostatnia wiadomość: %1 Requesting Root Access - - + Wymaganie dostępu administratora aboutDialog About EasyPBI - O EasyPBI + O EasyPBI License - - + Licencja Development History - - + Historia rozwoju EasyPBI version %1 - - + Wersja EasyPBI %1 Create PBI's quickly and easily. - Stwórz PBI szybko i łatwo. + Stwórz PBI szybko i łatwo. Unable to open resource file: %1 - - + Nie udało się otworzyć pliku z zasobów: %1 Please check that your EasyPBI compilation was performed correctly - - + Proszę sprawdzić czy kompilacja EasyPBI została wykonana poprawnie diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_pt_BR.ts b/src-qt4/EasyPBI/i18n/EasyPBI_pt_BR.ts index 6e8dae052..e477121f7 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_pt_BR.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_pt_BR.ts @@ -21,7 +21,7 @@ Main settings for the PBI - Principais configurações para o PBI + Principais configurações para o PBI Program Information @@ -37,7 +37,7 @@ Version of the program to be packaged - Versão do programa a ser empacotado + Versão do programa a ser empacotado Version @@ -62,7 +62,7 @@ Icon that will be used for the program (PNG resources available) - Ícone que será usado para o programa (recursos PNG disponíveis) + Ícone que será usado para o programa (recursos PNG disponíveis) Icon @@ -75,17 +75,15 @@ Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + Diretório local a ser empacotado em um PBI (deve conter tudo o que for necessário para o programa funcionar) Package Directory - Diretório do pacote + Diretório do pacote Select a directory to be packaged into a PBI - - + Selecione um diretório a ser empacotado em um PBI Select @@ -184,12 +182,11 @@ Current files to be included in the PBI - Arquivos atuais a serem incluídos no PBI + Arquivos atuais a serem incluídos no PBI Copy an additional file into the PBI module - - + Copiar um arquivo adicional no módulo PBI Add File @@ -197,7 +194,7 @@ Delete the selected file from the PBI module - Apagar o arquivo selecionado do módulo PBI + Apagar o arquivo selecionado do módulo PBI Delete File @@ -220,40 +217,35 @@ Save Script - Salvar script + Salvar script Resource Icon - - + Ícone do recurso Resource Description - - + Descrição do recurso XDG Entries - - + Entradas XDG Set any desktop/menu entries, and any MIME types - - + Definir quaisquer entradas de área de trabalho/menu e quaiquer tipos MIME Create and edit desktop entries - - + Criar e editar entradas da área de trabalho Desktop - Área de trabalho + Área de trabalho Create and edit menu entries - Criar e editar entradas de menu + Criar e editar entradas de menu Menu @@ -261,12 +253,11 @@ Refresh the current list (useful if files recently modified outside of EasyPBI) - - + Atualizar a lista atual (útil se os arquivos foram modificados fora do EasyPBI recentemente) Delete the current item from the PBI module - Apagar o item atual do módulo PBI + Apagar o item atual do módulo PBI Remove @@ -274,12 +265,11 @@ Entry Details - - + Detalhes de entrada Visible name for the item - Nome visível para o item + Nome visível para o item Executable @@ -287,17 +277,15 @@ Binary to be run when the item is activated - Binário para ser executado quando o item for ativado + Binário a ser executado quando o item for ativado Auto-detected binaries for the PBI - - + Binários auto-detectáveis para o PBI Visible icon to use for the item - - + Ícone visível a ser usado pelo item Menu category for the item to be located. @@ -306,11 +294,11 @@ Possible Menu categories - Possíveis categorias de Menu + Possíveis categorias de Menu Start the application in a terminal session - Iniciar o aplicativo na sessão do terminal + Iniciar o aplicativo em uma sessão do terminal Open in Terminal @@ -322,7 +310,7 @@ Make Invisible - Tornar invisível + Tornar invisível MIME Patterns @@ -331,33 +319,27 @@ Save the item as currently shown - - + Salvar o item como mostrado Create a new item with the current settings - - + Criar um novo item com as configurações atuais Scripts - - + Scripts Additional installation/build scripts - - + Scripts adicionais de instalação/compilação Choose a script that you wish to create or edit - - + Escolha um script que você queira criar ou editar Create the selected script - - + Criar o script selecionado Create @@ -365,8 +347,7 @@ Delete the selected script from the PBI module - - + Apagar o script selecionado do módulo PBI Save the current text as the selected script @@ -379,8 +360,7 @@ Contents for the selected script - - + Conteúdo para o script selecionado External-Links @@ -407,7 +387,7 @@ File Type - Tipo de arquivo + Tipo de arquivo Remove currently selected link @@ -416,11 +396,11 @@ Remove Entry - Remover entrada + Remover entrada Add Entry - Adicionar entrada + Adicionar entrada PBI file to be sym-linked into the local system (relative to the PBI directory) @@ -429,8 +409,7 @@ Auto-detected binaries for this PBI - - + Binários auto-detectáveis para este PBI Location for the link to be created (relative to the local base: normally /usr/local/) @@ -459,8 +438,7 @@ Use the current module to build a PBI - - + Usar o módulo atual para criar um PBI Module Building @@ -469,13 +447,11 @@ Shows the module that is currently being used to build a PBI - - + Mostra o módulo que está sendo usado para criar um PBI No PBI currently being built - - + Nenhum PBI está sendo criado Output Directory @@ -488,32 +464,27 @@ Displays any output from a PBI build process - - + Exibe qualquer saída do processo de criação de um PBI Build PBI - Empacotar PBI + Criar PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + OPCIONAL: Criar um PBI de 32 bits em vez do habitual 64 bits Build 32-bit - - + Criar 32 bits Cancel the currently running build process - - + Cancela qualquer processo de criação que estiver em execução Cancel Build - - + Cancelar criação Save the current build log to disk (very useful when requesting help with a failed build) @@ -565,7 +536,7 @@ Click to create a new PBI module - Clique para criar um novo módulo PBI + Clique para criar um novo módulo PBI Load @@ -573,11 +544,11 @@ Click to load an existing module - Clique para carregar um módulo existente + Clique para carregar um módulo existente Summary - Sumário + Resumo License @@ -602,8 +573,7 @@ Open up the PC-BSD Wiki page for PBI developers - - + Abrir a página Wiki do PC-BSD para os desenvolvedores do PBI Close EasyPBI @@ -615,8 +585,7 @@ Compress the current module for distribution - - + Compactar o módulo atual para distribuição About EasyPBI @@ -624,11 +593,11 @@ View additional information about EasyPBI - Ver informação adicional sobre o EasyPBI + Ver informação adicional sobre o EasyPBI No Module Loaded - Nenhum módulo carregado + Nenhum módulo foi carregado FreeBSD Port @@ -636,13 +605,11 @@ Local Sources - - + Fontes locais Installation Scripts - - + Scripts de instalação Permissions Error @@ -664,7 +631,7 @@ Success - Sucesso + Sucesso A copy of the current module has been successfully packaged within the module directory. @@ -677,7 +644,7 @@ Could not create PBI module. Please check the directory permissions and try again. - Não foi possível criar módulo PBI. Por favor, verifique as permissões do diretório e tente novamente. + Não foi possível criar módulo PBI. Por favor, verifique as permissões do diretório e tente novamente. Select Module @@ -708,7 +675,7 @@ EasyPBI Error - Erro do EasyPBI + Erro do EasyPBI The PBI configuration file could not be saved. Please check your file permissions before trying again. @@ -743,7 +710,7 @@ Error Saving File - Erro ao salvar o arquivo + Erro ao salvar o arquivo Could not save the script @@ -764,7 +731,7 @@ Are you sure you wish to start the PBI build? - Tem certeza que deseja iniciar a compilação do PBI? + Tem certeza que deseja iniciar a criação do PBI? PBI Builder (Working) @@ -781,7 +748,7 @@ PBI Build Success - Suceeso na compilação do PBI + Sucesso na criação do PBI The PBI finished building successfully @@ -841,8 +808,7 @@ Requires Root - - + Requer Root Refresh Module @@ -910,11 +876,11 @@ Local Directory - Diretório local + Diretório local PNG icon file to use for the PBI (can be changed later) - Arquivo de ícone PNG a ser usado pelo PBI (pode ser modificado depois) + Arquivo de ícone PNG a ser usado para o PBI (pode ser mudado posteriormente) Select a local PNG file (64x64 pixel size recommended) @@ -936,8 +902,7 @@ Local Sources - - + Fontes locais EasyPBI: No FreeBSD Ports @@ -960,8 +925,7 @@ Select PNG Icon - - + Selecionar ícone PNG PNG icon (*.png) @@ -990,7 +954,7 @@ Select - Selecionar + Selecionar Digitally sign any PBI's that are created for tamper-evident distribution @@ -1024,7 +988,7 @@ Use TMPFS - Usar TMPFS (sistema de arquivo temporário) + Usar TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. @@ -1060,8 +1024,7 @@ Remove the selected package from the ignore list. - - + Remover o pacote selecionado da lista de ignorados. Remove @@ -1069,12 +1032,11 @@ Delete all packages currently in the cache. - - + Apagar todos os pacotes que estão no cache. Clear Cache - Limpar cache + Limpar cache Local Paths @@ -1117,11 +1079,11 @@ Auto-Detect - Detectar automaticamente + Detectar automaticamente pbi_makeport - pbi_makeport + pbi_makeport Full path to the "pbi_makeport" binary @@ -1135,7 +1097,7 @@ pbi_create - pbi_create + pbi_create Full path to the "pbi_create" binary @@ -1167,8 +1129,7 @@ Select the Package to Ignore - - + Selecione o pacote a ignorar Package Files (*.txz) diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_ro.ts b/src-qt4/EasyPBI/i18n/EasyPBI_ro.ts index c9bfe826f..0d8ed2602 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_ro.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_ro.ts @@ -5,1517 +5,1216 @@ MainGUI EasyPBI - - + EasyPBI Module Editor - - + Editor Modul View and edit the current PBI module - - + Vizualizare și editare modul PBI curent PBI Configuration - - + Configurare PBI Main settings for the PBI - - + Setări principale pentru PBI Program Information - - + Informații despre program Official name of the target program - - + Numele oficial al programului țintă Name - - + Nume Version of the program to be packaged - - + Versiune a programului care urmează să fie împachetat Version - - + Versiune URL of the main website for the target program - - + URL-ul sitului web principal pentru programul de țintă Website - - + Website Author of the main program (or FreeBSD port maintainer instead) - - + Autor al programului principal (sau în schimb întreținătorul portului FreeBSD portul) Author - - + Author Icon that will be used for the program (PNG resources available) - - + Pictograma care va fi utilizată pentru program (format disponibil PNG) Icon - - + Pictogramă Build Information - - + Informații despre construcția pachetului Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + Directorul local care va fi împachetat într-un PBI (trebuie să conțină tot ce este necesar pentru ca programul să poată rula) Package Directory - - + Directorul pachetului Select a directory to be packaged into a PBI - - + Selectați un director care să fie împachetat într-un PBI Select - - + Selectare Main FreeBSD Port - - + Portul FreeBSD principal FreeBSD port to be packaged as a PBI - - + Portul FreBSD care va fi împachetat ca un PBI Select a FreeBSD port - - + Selectați un port FreeBSD Change Port - - + Schimbă port Port Build Options - - + Opțiuni construcție port Special configuration options for any ports that need to be built. - - + Opțiuni de configurare speciale pentru toate porturi care trebuie să fie construite. Build options available for main FreeBSD port - - + Opțiuni disponobile pentru construirea portului principal FreeBSD Make Port Before - - + Construcție portul înainte Additional FreeBSD ports to be built before the main program - - + Porturi suplimentare FreeBSD care să fie construite înainte de programul principal Add additional FreeBSD port - - + Adăugare port suplimentar FreeBSD Remove additional FreeBSD port - - + Îndepărtare port suplimentar FreeBSD Make Port After - - + Construcție port după Additional FreeBSD ports to be built after the main program - - + Porturi suplimentare FreeBSD care să fie construite înainte de programul principal Require administrator permissions to install this PBI - - + Necesită permisiuni de administrator pentru a instala acest PBI Requires Root Permissions - - + Necesită permisiuni de root Save the current settings to the PBI configuration file - - + Salvare setări curente ale fișierului de configurare PBI Save Configuration - - + Salvare configurare Resources - - + Resurse Additional files to be included in the PBI - - + Fișiere suplimentare care să fie incluse în PBI Current Resources - - + Resurse curente Current files to be included in the PBI - - + Fișierele curente care vor fi incluse în PBI Copy an additional file into the PBI module - - + Copiere fișier suplimentar în modul PBI Add File - - + Adăugare fișier Delete the selected file from the PBI module - - + Ștergere fișier selectat din modul PBI Delete File - - + Șterge fișier Create a custom wrapper script for a program binary - - + Crearea unui script wrapper personalizat pentru un program binar Wrapper Script - - + Script wrapper Save the wrapper script - - + Salvare script wrapper Save Script - - + Salvare script Resource Icon - - + Resursă pictogramă Resource Description - - + Descriere resursă XDG Entries - - + Intrări XDE Set any desktop/menu entries, and any MIME types - - + Setați orice mediu grafic/intrări de meniu și orice tip MIME Create and edit desktop entries - - + Creare și editare intrări medii grafice Desktop - - + Mediu grafic Create and edit menu entries - - + Creare și editare intrări meniu Menu - - + Meniu Refresh the current list (useful if files recently modified outside of EasyPBI) - - + Actualizare listă curentă (utilă în cazul fișierele modificate recent în afara lui EasyPBI) Delete the current item from the PBI module - - + Ștergere element curent din modulul PBI Remove - - + Îndepărtare Entry Details - - + Detalii intrări Visible name for the item - - + Nume vizibil pentru element Executable - - + Executabil Binary to be run when the item is activated - - + Binar care să fi rulat atunci când elementul este activat Auto-detected binaries for the PBI - - + Binare detectate automat pentru modulul PBI Visible icon to use for the item - - + Pictogramă vizibilă pentru element Menu category for the item to be located. - - + Categoria de meniu pentru ca elementul să fie localizat. Possible Menu categories - - + Categorii de meniu posibile Start the application in a terminal session - - + Porniți aplicația într-o sesiune terminal Open in Terminal - - + Deschide în terminal Flag this item to not be displayed at all - - + Marchează acest element să nu fie afișat deloc Make Invisible - - + Fă-l invizibil MIME Patterns - - + Modele MIME Save the item as currently shown - - + Salvați elementul așa cum arată în prezent Create a new item with the current settings - - + Creați un element nou cu setările curente Scripts - - + Scripturi Additional installation/build scripts - - + Scripturi suplimentare instalare/construire Choose a script that you wish to create or edit - - + Alegeți un script pe care doriți să-l creați sau să-l editați Create the selected script - - + Creare script selectat Create - - + Creare Delete the selected script from the PBI module - - + Ștergere script selectat din modulul PBI Save the current text as the selected script - - + Salvați textul curent ca script selectat Save - - + Salvare Contents for the selected script - - + Conținutul scriptului selectat External-Links - - + Linkuri externe FIles to be linked into the local system - - + Fișiere care să fie conectate la sistemul local Current Entries - - + Intrării curente File - - + Fișier Link To - - + Legătură catre File Type - - + Tip fișier Remove currently selected link - - + Îndepărtați legătura selectată curent Remove Entry - - + Îndepărtare intrare Add Entry - - + Adăugare intrare PBI file to be sym-linked into the local system (relative to the PBI directory) - - + Fișierul PBI să fie simbolic legat în sistemul local (în raport cu directorul PBI) Auto-detected binaries for this PBI - - + Binare detectate automat pentru acest PBI Location for the link to be created (relative to the local base: normally /usr/local/) - - + Locația pentru legătură să fie creată (în raport cu baza locală: în mod normal /usr/local/) Flags to determine the file type - - + Marcaje pentru a determina tipul fișierului Available flags for the new link - - + Marcaje disponibile pentru legătura nouă Save this link to the PBI module - - + Salvați această legătură în modulul PBI PBI Builder - - + Constructor PBI Use the current module to build a PBI - - + Utilizați modulul curent pentru a construi un PBI Module Building - - + Construcția modulului Shows the module that is currently being used to build a PBI - - + Arată modulul care este în prezent folosit pentru a construi un PBI No PBI currently being built - - + În prezent nu se construiește nici un PBI Output Directory - - + Directorul de ieșire Location for the finished PBI to be located - - + Locație pentru ca PBI terminat să fie amplasat Displays any output from a PBI build process - - + Afișează toate ieșire unui proces de construcție PBI Build PBI - - + Construire PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + OPȚIONAL: Construiți un PBI pe 32 de biți în locul unuia pe 64-biți Build 32-bit - - + Construiți pe 32 de biți Cancel the currently running build process - - + Anulați procesul de construcție care rulează în prezent Cancel Build - - + Anulare construire Save the current build log to disk (very useful when requesting help with a failed build) - - + Salvați jurnalul construcției curente pe disc (foarte util atunci când solicitați ajutor pentru o construcție care a eșuat) Save Build Log - - + Salvare jurnal construcție System - - + Sistem Options - - + Opțiuni Information - - + Informații toolBar - - + Bară de instrumente EasyPBI Settings - - + Setări EasyPBI Open up the EasyPBI settings editor - - + Deschide setările editorului EasyPBI Get FreeBSD Ports - - + Obține porturi FreeBSD Fetch/update the FreeBSD ports tree - - + Aduce/actualizează copacul de porturi FreeBSD New - - + Nou Click to create a new PBI module - - + Click pentru a crea un nou modul PBI Load - - + Încărcare Click to load an existing module - - + Click pentru a încărca un modul existent Summary - - + Sumar License - - + Licență History - - + Istorie FreeBSD Ports - - + Porturi FreeBSD Open up freshports.org for additional port information - - + Deschide freshports.org pentru informații suplimentare despre port PBI Modules - - + Module PBI Open up the PC-BSD Wiki page for PBI developers - - + Deschide pagina wiki PC-BSD pentru dezvoltatori PBI Close EasyPBI - - + Închide EasyPBI Package Module - - + Modul pachet Compress the current module for distribution - - + Comprimă modulul curent pentru distribuire About EasyPBI - - + Despre EasyPBI View additional information about EasyPBI - - + Vizualiza informații suplimentare despre EasyPBI No Module Loaded - - + Nici un modulul încărcat FreeBSD Port - - + Porturi FreeBSD Local Sources - - + Surse locale Installation Scripts - - + Instalare scripturi Permissions Error - - + Eroare permisiuni There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + A existat o eroare la încercarea de a crea structura locală a directorul EasyPBI. Vă rugăm să verificați permisiunile pentru directorul acasă și să reporniți EasyPBI. Resources Unavailable - - + Resurse indisponibile Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + Câteva resurse externe nu au putut fi găsite, astfel încât serviciile EasyPBI care folosesc aceste resurse au fost dezactivate. Success - - + Succes A copy of the current module has been successfully packaged within the module directory. - - + O copie a modulul curent a fost împachetată cu succes în directorul modulul. EasyPBI: Permissions Error - - + EasyPBI: Eroare Permisiuni Could not create PBI module. Please check the directory permissions and try again. - - + Nu am putut crea modulul PBI. Vă rugăm să verificați permisiunile directorului și încercați din nou. Select Module - - + Selectați module EasyPBI: No FreeBSD Ports - - + EasyPBI: Niciun port FreeBSD The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + Copacul de porturi FreeBSD nu a putut fi găsit pe sistemul dumneavoastră.Puteți descărca copacul de porturi prin intermediul meniul EasyPBI sau să setați manual calea către copaculul de portul din preferințele EasyPBI dacă nu este instalat într-o locație standard. Select Port - - + Selectare port EasyPBI: Invalid Port - - + EasyPBI: Port invalid The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + Directorul selectat nu este un port FreeBSD valabil. Vă rugăm să selectați directorul portului care conține fișierele Makefile și distinfo corespunzătoare. EasyPBI Error - - + Eroare EasyPBI The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + Fișierul de configurare PBI nu a putut fi salvat. Vă rugăm să verificați permisiunile fișierul dvs. înainte de a încerca din nou. Select Resources - - + Selectați resursele New Wrapper Script - - + Script weapper nou Filename - - + Nume fișier Could not remove the XDG entry. - - + Nu a putut elimina intrarea XDG. Check the file permissions and try again - - + Verificați permisiunile fișierului și încercați din nou Could not save the changes to the XDG entry. - - + Nu a putut salva modificările pentru intrarea XDG. Error Saving File - - + Eroare la salvarea fișierului Could not save the script - - + Nu a putut salva scriptul Please check the file permissions and try again - - + Vă rugăm să verificați permisiunile fișierului și încercați din nou Error - - + Eroare Invalid PBI Settings - - + Setări PBI invalide Are you sure you wish to start the PBI build? - - + Sunteți sigur că doriți să porniți construirea PBI? PBI Builder (Working) - - + Constructor PBI (lucrează) Save Log - - + Slavare fișier jurnal Log Files - - + Fișiere jurnal PBI Build Success - - + PBI construit cu succes The PBI finished building successfully - - + PBI a terminat de construit cu succes PBI Build Failure - - + Construcția PBI a eșuat The PBI failed to build. - - + PBI nu a reușit să construiască. Please check the build log to find the cause of the failure and adjust the module accordingly - - + Vă rugăm să verificați jurnalul de construcție pentru a găsi cauza eșecului și a ajusta modulul corespunzător PBI Builder (Finished) - - + Constructorul PBI (A terminat) Begin creating a new XDG entry - - + Începeți crearea unei noi intrării XDG Category - - + Categorie Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + Lista de spații separate asociate automat fișierelor (Exemplu:*.junk*.JUNK*.test*.TEST) Add - - + Adăugare Select Package Directory - - + Selectați directorul pachetelor FreeBSD Ports Missing - - + Porturile FreeBSD lipsesc The FreeBSD ports tree is missing from your system. - - + Copacul de porturi FreeBSD lipsește de pe sistemul dumneavoastră. Application needs administrator privileges to run - - + Aplicația are nevoie de drepturi de administrator pentru pentru a rula Requires Root - - + Necesită Root Refresh Module - - + Reîmprospătează modulul Please open up the EasyPBI settings to correct this deficiency. - - + Vă rugăm să deschideți setările EasyPBI pentru a corecta această deficiență. Start building a PBI from the current module (requires administrator privileges) - - + Începe construirea unui PBI din modulul curent (necesită privilegii de administrator) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + Acest lucru necesită o conexiune activă la Internet și drepturi de administrator. Timpul necesar pentru a construi un PBI variază în funcție de specificațiile de sistem și de porturi pentru a fie compilate. The directory selected does not appear to be a valid FreeBSD port. - - + Directorul selectat nu pare să fie un port FreeBSD valid. Do you wish to continue using it anyway? - - + Doriți să continuați să utilizați-l oricum? NewModuleDialog Create a new Module - - + Creați un nou modul FreeBSD Port - - + Port FreeBSD FreeBSD port that you wish to build as a PBI - - + Portul FreeBSD pe care doriți să-l construiți ca un PBI Select a port from the local FreeBSD ports tree - - + Selectați un port din copac de porturile locale FreeBSD Select - - + Selectare Local directory to be packaged as a PBI - - + Directorul local să fie împachetat ca un PBI Select a local directory to be packaged as a PBI - - + Selectați un director local să fie împachetate ca un PBI Local Directory - - + Director local PNG icon file to use for the PBI (can be changed later) - - + Pictograma fișierului PNG utilizată pentru PBI (poate fi shimbată ulterior) Select a local PNG file (64x64 pixel size recommended) - - + Selectați un fișier PNG local (dimensiunea 64x64 pixeli recomandată) Icon File - - + Pictograma fișierului Create a PBI from an existing FreeBSD port - - + Creați un PBI dintr-un port FreeBSD existent Package a local directory as a PBI - - + Împachetați un director local ca PBI Local Sources - - + Surse locale EasyPBI: No FreeBSD Ports - - + EasyPBI: Niciun port FreeBSD The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + Copacul de porturi FreeBSD nu a putut fi găsit pe sistemul dumneavoastră.Puteți descărca copacul de porturi prin intermediul meniul EasyPBI sau să setați manual calea către copaculul de portul din preferințele EasyPBI dacă nu este instalat într-o locație standard. Select Port - - + Selectare port Select Package Directory - - + Selectați directorul pachetului Select PNG Icon - - + Selectați pictograma PNG PNG icon (*.png) - - + Pictogramă PNG (*.png) PreferencesDialog EasyPBI Preferences - - + Preferințe EasyPBI PBI Output Dir - - + Directorul de ieșire PBI Local directory for built PBI's to be placed. - - + Directorul local pentru ca PBI-urile construite să fie puse. Browse local system to select a PBI output directory - - + Răsfoiți sistemul local pentru a selecta un director de ieșire PBI Select - - + Selectare Digitally sign any PBI's that are created for tamper-evident distribution - - + Semnați digital orice PBI-uri care sunt create pentru distribuire cu sigiliu Digitally Sign PBI - - + PBI semant digital Signature File - - + Fișier de semnătură Local file that contains the openssl key - - + Fișier local care conține cheia openssl Browse for the openssl key file - - + Răsfoiți pentru fișierul cheie openssl Use system memory to speed up PBI build processes. - - + Utilizați memoria de sistem pentru a accelera procesul de construcție a PBI-ului. Use TMPFS - - + Utilizați TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + Foarte mult se accelerează procesul construcției PBI prin prevenirea recompilări porturilor construite anterior. Use Package Caching - - + Folosiți caching-ul pachetului Package Caching Options - - + Opțiuni caching pachet Packages to Ignore - - + Pachete de ignorat Listed packages will always be ignored during PBI builds. - - + Pachetele listate vor fi întotdeauna ignorate în timpul construcției PBI-ului. Add a currently cached package to be ignored. - - + Adăugați un pachet stocat în memoria cache pentru a fi ignorat. Add - - + Adăugare Remove the selected package from the ignore list. - - + Înlăturați pachetul selectat din lista de ignorare. Remove - - + Îndepărtare Delete all packages currently in the cache. - - + Sterge toate pachetele prezente în memoria cache. Clear Cache - - + Glorire memorie cache Local Paths - - + Căi locale Default directory for all PBI modules to be created - - + Directorul implicit pentru toate module PBI să fie creat Select a local directory for PBI modules. - - + Selectați un director local pentru modulele PBI. Default directory to open when adding icons/files to a module - - + Directorul implicit deschis atunci când se adaugă pictograme/fișiere la un modul Select a local directory. - - + Selectați un director local. Default PNG icon to use for PBI modules. - - + Pictogramă PNG implicită utilizată pentru modulele PBI. Browse local system for a default PNG icon. - - + Căutați în sistemul local pentru o pictogramă implicită PNG. Have EasyPBI re-scan the system for available utilities. - - + Trebuie ca EasyPBI să rescaneze sistemul pentru utilități disponibile. Auto-Detect - - + Detectare automată pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + Calea completă către binarul "pbi_makeport" Browse system for the local binary. - - + Răsfoiți sistemul pentru binare locale. pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + Calea completă către binarul "pbi_create" Switch User Utility - - + Utilitar comutare user Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + Calea completă către utilitarul grafic "comutare utilizator" (pc-su, gksu, kdesu, qsu, etc..) Select PBI Output Directory - - + Selectați directorul de ieșire PBI Select Digital Signature File - - + Selectați semnătura digitală a fișierului Signature Files (*) - - + Semnătură fișiere (*) Select the Package to Ignore - - + Selectați pachetul pentru ignorare Package Files (*.txz) - - + Pachet de fișiere (*.txz) Are you sure you wish to clear the PBI package cache? - - + Sunteți sigur că doriți să ștergeți cache-ul pachetului PBI? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + Această operație va șterge toate fișierele și directoarele din directorul memorie cache. Data viitoare când veți începeți să construiți un PBI, acesta va începe să reconstruiască toate pachetele din surse. Select Default Module Directory - - + Selectați directorul implicit al modulelor Select Default Directory To Find Icon Files - - + Selectați directorul implicit pentru a găsi fișierele pictogramă Select Default Icon FIle - - + Selectați fișierul pictogramă implicit PNG Images (*.png) - - + Pictograme PNG (*.png) Select Graphical Switch-User Utility - - + Selectați utilitatea grafică comutare-utilizator Select 'pbi_create' File Location - - + Selectați locația fișierului 'pbi_create' Select 'pbi_makeport' File Location - - + Selectați locația fișierului 'pbi_makeport' Are you sure you wish to return to the automatically detected utility paths? - - + Sunteți sigur că doriți să se întoarcă la căile de utilități detectate în mod automat? This will remove any customized path settings for the external utilities. - - + Acest lucru va elimina orice setările de cale personalizate pentru utilitățile externe. Select FreeBSD Ports Directory - - + Selectați directorul de porturi FreeBSD FreeBSD Ports - - + Porturi FreeBSD Ports Tree - - + Copacul de porturi Last Update - - + Ultima actualizare TextLabel - - + TextLabel Create Dir - - + Creare director Update - - + Actualizare Status - - + Stare PBI Builds - - + Construiește PBI External Utilities - - + Utilitare externe Default Search Paths - - + Căile implicite de căutare Modules - - + Module Resources - - + Resurse Default Icon - - + Pictogramă implicită Current User (~/EasyPBI/ports) - - + Utilizator curent (~/EasyPBI/ports) All Users (/usr/ports) - - + Toți utilizatori (/usr/ports) Other - - + Alte Nonexistent - - + Inexistente Success - - + Succes The FreeBSD ports tree has been successfully updated - - + Copacul de porturi FreeBSD a fost actualizat cu succes Failure - - + Insucces The FreeBSD ports tree has failed to update. - - + Copacul de porturi FreeBSD nu a reușit să se actualizaze. Last Message: %1 - - + Ultimul mesaj: %1 Requesting Root Access - - + Solicitantă acces root aboutDialog About EasyPBI - - + Despre EasyPBI License - - + Licență Development History - - + Istoria dezvoltării EasyPBI version %1 - - + Versiune EasyPBI %1 Create PBI's quickly and easily. - - + Creați PBI-uri ușor și rapid Unable to open resource file: %1 - - + Incapabil să deschidă fișierul de resurse:%1 Please check that your EasyPBI compilation was performed correctly - - + Vă rugăm să verificați dacă compilarea EasyPBI a fost efectuată corect diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_sv.ts b/src-qt4/EasyPBI/i18n/EasyPBI_sv.ts index 464e1e0bf..d38863631 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_sv.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_sv.ts @@ -5,7 +5,7 @@ MainGUI EasyPBI - EasyPBI + EasyPBI Module Editor @@ -13,132 +13,107 @@ View and edit the current PBI module - - + Visa och redigera nuvarande PBI modulen PBI Configuration - - + PBI konfiguration Main settings for the PBI - - + Huvudinställningar för PBIn Program Information - - + Programinformation Official name of the target program - - + Officiella namnet av målprogrammet Name - - + Namn Version of the program to be packaged - - + Version av programmet som kommer packas Version - - + Version URL of the main website for the target program - - + URL till webbsidan för målprogramvaran Website - - + Webbsida Author of the main program (or FreeBSD port maintainer instead) - - + Skapare av programmet (eller FreeBSD port maintainer som alternativ) Author - - + Skapare Icon that will be used for the program (PNG resources available) - - + Ikon som kommer användas av programmet (PNG resurs tillgänglig) Icon - Ikon + Ikon Build Information - - + Bygginformation Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + Lokal mapp som ska paketeras till en PBI (måste innehålla allt nödvändigt för ett progam att köras) Package Directory - - + Paket mapp Select a directory to be packaged into a PBI - - + Välj en mapp att paketeras till en PBI Select - - + Välj Main FreeBSD Port - - + Huvud FreeBSD Port FreeBSD port to be packaged as a PBI - - + FreeBSD port som ska packas som en PBI Select a FreeBSD port - - + Välj en FreeBSD port Change Port - - + Byt port Port Build Options - - + Alternativ för portbygge Special configuration options for any ports that need to be built. - - + Speciella konfigurationsalternativ för någon port som behövs byggas. Build options available for main FreeBSD port - - + Byggalternativ tillgängliga för huvud FreeBSD port Make Port Before @@ -146,18 +121,15 @@ Additional FreeBSD ports to be built before the main program - - + Ytterligare FreeBSD portar som ska byggas före huvudprogrammet Add additional FreeBSD port - - + Lägg till ytterligare FreeBSD port Remove additional FreeBSD port - - + Ta bort ytterligare FreeBSD port Make Port After @@ -165,96 +137,79 @@ Additional FreeBSD ports to be built after the main program - - + Ytterligare FreeBSD portar som ska byggas efter huvudprogrammet Require administrator permissions to install this PBI - - + Kräv administratörsrättigheter för att installera denna PBI Requires Root Permissions - - + Kräver root rättigheter Save the current settings to the PBI configuration file - - + Spara nuvarande inställningarna till PBI konfigrationsfilen Save Configuration - - + Spara konfiguration Resources - Resurser + Resurser Additional files to be included in the PBI - - + Ytterligare filer att inkluderas i PBIn Current Resources - Aktuella resurser + Aktuella resurser Current files to be included in the PBI - - + Aktuella filer som inkluderas i PBIn Copy an additional file into the PBI module - - + Kopiera ytterligare en fil till PBI modulen Add File - - + Lägg till fil Delete the selected file from the PBI module - - + Ta bort den valda filen från PBI modulen Delete File - - + Ta bort fil Create a custom wrapper script for a program binary - - + Skapa anpassat wrapper skript för programbinären Wrapper Script - - + Wrapper skript Save the wrapper script - - + Spara wrapper skriptet Save Script - - + Spara skript Resource Icon - - + Resurs ikon Resource Description - - + Resurs beskrivning XDG Entries diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_zh_CN.ts b/src-qt4/EasyPBI/i18n/EasyPBI_zh_CN.ts index 3a9ddcc60..b39882dc3 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_zh_CN.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_zh_CN.ts @@ -17,7 +17,7 @@ PBI Configuration - PBI配置 + PBI配置 Main settings for the PBI @@ -93,33 +93,27 @@ FreeBSD port to be packaged as a PBI - 要打包成PBI的FreeBSD port - + 要打包成PBI的FreeBSD port Select a FreeBSD port - 选择一个FreeBSD port - + 选择一个FreeBSD port Change Port - 更改Port - + 更改Port Port Build Options - Port编译选项 - + Port编译选项 Special configuration options for any ports that need to be built. - 要编译port所需的特殊配置选项。 - + 要编译port所需的特殊配置选项。 Build options available for main FreeBSD port - 主要FreeBSD port的可用编译选项 - + 主要FreeBSD port的可用编译选项 Make Port Before @@ -127,18 +121,15 @@ Additional FreeBSD ports to be built before the main program - 主程序前要编译的额外FreeBSD port - + 主程序前要编译的额外FreeBSD port Add additional FreeBSD port - 添加额外的FreeBSD port - + 添加额外的FreeBSD port Remove additional FreeBSD port - 移除额外的FreeBSD port - + 移除额外的FreeBSD port Make Port After @@ -146,28 +137,23 @@ Additional FreeBSD ports to be built after the main program - 在主程序后要编译的额外FreeBSD port - + 在主程序后要编译的额外FreeBSD port Require administrator permissions to install this PBI - 安装此PBI需要系统管理员权限 - + 安装此PBI需要系统管理员权限 Requires Root Permissions - 需要根用户权限 - + 需要根用户权限 Save the current settings to the PBI configuration file - 将当前设置保存到这BI配置文件中 - + 将当前设置保存到这BI配置文件中 Save Configuration - 保存配置 - + 保存配置 Resources @@ -203,18 +189,15 @@ Create a custom wrapper script for a program binary - 为程序二进制文件创建一个定制封装脚本 - + 为程序二进制文件创建一个定制封装脚本 Wrapper Script - 封装脚本 - + 封装脚本 Save the wrapper script - 保存封装脚本 - + 保存封装脚本 Save Script @@ -234,8 +217,7 @@ Set any desktop/menu entries, and any MIME types - 设定桌面/菜单条目,以及MIME类型 - + 设定桌面/菜单条目,以及MIME类型 Create and edit desktop entries @@ -271,8 +253,7 @@ Visible name for the item - 此条目的可见名称 - + 此条目的可见名称 Executable @@ -280,108 +261,87 @@ Binary to be run when the item is activated - 当此条目激活时要运行的二进制文件 - + 当此条目激活时要运行的二进制文件 Auto-detected binaries for the PBI - 为PBI自动检测到的二进制文件 - + 为PBI自动检测到的二进制文件 Visible icon to use for the item - 此条目要使用的可见图标 - + 此条目要使用的可见图标 Menu category for the item to be located. - 定位此条目的菜单类别。 - + 定位此条目的菜单类别。 Possible Menu categories - 可能的菜单类别 - + 可能的菜单类别 Start the application in a terminal session - 在终端进程中启动此程序 - + 在终端进程中启动此程序 Open in Terminal - 在终端中打开 - + 在终端中打开 Flag this item to not be displayed at all - 将此条目标记为完全不显示 - + 将此条目标记为完全不显示 Make Invisible - 使其不可见 - + 使其不可见 MIME Patterns - MIME类型 - + MIME类型 Save the item as currently shown - 将此条目以当前展示的样子保存 - + 将此条目以当前展示的样子保存 Create a new item with the current settings - 以当前设置创建一个新条目 - + 以当前设置创建一个新条目 Scripts - 脚本 - + 脚本 Additional installation/build scripts - 额外的安装/编译脚本 - + 额外的安装/编译脚本 Choose a script that you wish to create or edit - 选择一个你要创建或编辑的脚本 - + 选择一个你要创建或编辑的脚本 Create the selected script - 创建选定的脚本 - + 创建选定的脚本 Create - 创建 - + 创建 Delete the selected script from the PBI module - 从此PBI模块中删除选定的脚本 - + 从此PBI模块中删除选定的脚本 Save the current text as the selected script - 将当前文本保存为选定的脚本 - + 将当前文本保存为选定的脚本 Save - 保存 - + 保存 Contents for the selected script - 选定脚本的内容 - + 选定脚本的内容 External-Links @@ -389,13 +349,11 @@ FIles to be linked into the local system - 要链接到本地系统的文件 - + 要链接到本地系统的文件 Current Entries - 当前条目 - + 当前条目 File @@ -403,127 +361,103 @@ Link To - 链接到 - + 链接到 File Type - 文件类型 - + 文件类型 Remove currently selected link - 移除当前选定的链接 - + 移除当前选定的链接 Remove Entry - 移除条目 - + 移除条目 Add Entry - 添加条目 - + 添加条目 PBI file to be sym-linked into the local system (relative to the PBI directory) - 要符号链接到本地系统的PBI文件(PBI目录下的相对路径) - + 要符号链接到本地系统的PBI文件(PBI目录下的相对路径) Auto-detected binaries for this PBI - 为此PBI自动检测到的二进制文件 - + 为此PBI自动检测到的二进制文件 Location for the link to be created (relative to the local base: normally /usr/local/) - 要创建链接的位置(本地基础目录的相对路径:通过是/usr/local/) - + 要创建链接的位置(本地基础目录的相对路径:通过是/usr/local/) Flags to determine the file type - 用来检测文件类型的标识 - + 用来检测文件类型的标识 Available flags for the new link - 新链接的可用标识 - + 新链接的可用标识 Save this link to the PBI module - 将此链接保存到PBI模块中 - + 将此链接保存到PBI模块中 PBI Builder - PBI编译器 - + PBI编译器 Use the current module to build a PBI - 使用当前模块编译PBI - + 使用当前模块编译PBI Module Building - 模块编译中 - + 模块编译中 Shows the module that is currently being used to build a PBI - 显示当前正在用于编译PBI的模块 - + 显示当前正在用于编译PBI的模块 No PBI currently being built - 当前没有PBI在编译 - + 当前没有PBI在编译 Output Directory - 输出目录 + 输出目录 Location for the finished PBI to be located - 定位编译完毕的PBI的位置 - + 定位编译完毕的PBI的位置 Displays any output from a PBI build process - 在PBI编译过程中显示所有输出 - + 在PBI编译过程中显示所有输出 Build PBI - 创建PBI - + 创建PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - 可选项:编译一个32位而不是64位的PBI - + 可选项:编译一个32位而不是64位的PBI Build 32-bit - 编译为32位 - + 编译为32位 Cancel the currently running build process - 撤销正在运行的编译进程 - + 撤销正在运行的编译进程 Cancel Build - 撤销编译 - + 撤销编译 Save the current build log to disk (very useful when requesting help with a failed build) - 将当前编译日志保存到磁盘(对于编译失败求助时非常有用) - + 将当前编译日志保存到磁盘(对于编译失败求助时非常有用) Save Build Log @@ -531,103 +465,83 @@ System - 系统 - + 系统 Options - 选项 - + 选项 Information - 信息 - + 信息 toolBar - 工具栏 - + 工具栏 EasyPBI Settings - EasyPBI设置 - + EasyPBI设置 Open up the EasyPBI settings editor - 打开EasyPBI设置编辑器 - + 打开EasyPBI设置编辑器 Get FreeBSD Ports - 获取FreeBSD Port - + 获取FreeBSD Port Fetch/update the FreeBSD ports tree - 获取/更新FreeBSD port树 - + 获取/更新FreeBSD port树 New - 新建 - + 新建 Click to create a new PBI module - 点击创建新的PBI模块 - + 点击创建新的PBI模块 Load - 载入 - + 载入 Click to load an existing module - 点击载入已存在的模块 - + 点击载入已存在的模块 Summary - 总结 - + 总结 License - 许可证 - + 许可证 History - 历史 - + 历史 FreeBSD Ports - FreeBSD Port - + FreeBSD Port Open up freshports.org for additional port information - 打开freshports.org以查看更多关于port的信息 - + 打开freshports.org以查看更多关于port的信息 PBI Modules - PBI模块 - + PBI模块 Open up the PC-BSD Wiki page for PBI developers - 打开PBI开发者的PC-BSD维基页面 - + 打开PBI开发者的PC-BSD维基页面 Close EasyPBI - 关闭EasyPBI - + 关闭EasyPBI Package Module @@ -635,22 +549,19 @@ Compress the current module for distribution - 将当前模块压缩以分发 - + 将当前模块压缩以分发 About EasyPBI - 关于简易PBI + 关于简易PBI View additional information about EasyPBI - 查看关于EasyPBI的更多信息 - + 查看关于EasyPBI的更多信息 No Module Loaded - 没有载入的模块 - + 没有载入的模块 FreeBSD Port @@ -658,53 +569,43 @@ Local Sources - 本地资源 - + 本地资源 Installation Scripts - 安装脚本 - + 安装脚本 Permissions Error - 权限错误 - + 权限错误 There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - 在尝试创建本地EasyPBI目录结构时出错。请检查家目录的权限并重启EasyPBI。 - + 在尝试创建本地EasyPBI目录结构时出错。请检查家目录的权限并重启EasyPBI。 Resources Unavailable - 资源不可用 - + 资源不可用 Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - 有些外部资源无法找到,因此要乃至这些资源的EasyPBI服务被禁用了。 - + 有些外部资源无法找到,因此要乃至这些资源的EasyPBI服务被禁用了。 Success - 成功 - + 成功 A copy of the current module has been successfully packaged within the module directory. - 当前模块的拷贝已在模块目录内被成功打包。 - + 当前模块的拷贝已在模块目录内被成功打包。 EasyPBI: Permissions Error - EasyPBI:权限错误 - + EasyPBI:权限错误 Could not create PBI module. Please check the directory permissions and try again. - 无法创建PBI模块。请检查目录权限并重试。 - + 无法创建PBI模块。请检查目录权限并重试。 Select Module @@ -712,13 +613,11 @@ EasyPBI: No FreeBSD Ports - EasyPBI:没有FreeBSD Port - + EasyPBI:没有FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - 无法在您的系统中找到FreeBSD Port树。您可以通过EasyPBI的菜单获取port树,或者如果其安装在非标准位置下,请在EasyPBI的设置中手动指定安装路径。 - + 无法在您的系统中找到FreeBSD Port树。您可以通过EasyPBI的菜单获取port树,或者如果其安装在非标准位置下,请在EasyPBI的设置中手动指定安装路径。 Select Port @@ -726,68 +625,55 @@ EasyPBI: Invalid Port - EasyPBI:无效的Port - + EasyPBI:无效的Port The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - 选定的目录不是一个有效的FreeBSD port。请选择一个包含相应Makefile和distinfo的port目录。 - + 选定的目录不是一个有效的FreeBSD port。请选择一个包含相应Makefile和distinfo的port目录。 EasyPBI Error - EasyPBI错误 - + EasyPBI错误 The PBI configuration file could not be saved. Please check your file permissions before trying again. - PBI的配置文件无法保存。请检查文件权限并重试。 - + PBI的配置文件无法保存。请检查文件权限并重试。 Select Resources - 选择资源 - + 选择资源 New Wrapper Script - 新的封闭脚本 - + 新的封闭脚本 Filename - 文件名 - + 文件名 Could not remove the XDG entry. - 无法删除XDG条目。 - + 无法删除XDG条目。 Check the file permissions and try again - 请文件权限并重试。 - + 请文件权限并重试。 Could not save the changes to the XDG entry. - 无法将变动保存到XDG条目。 - + 无法将变动保存到XDG条目。 Error Saving File - 保存文件时发生错误 - + 保存文件时发生错误 Could not save the script - 无法保存脚本 - + 无法保存脚本 Please check the file permissions and try again - 请检查文件权限并重试 - + 请检查文件权限并重试 Error @@ -803,8 +689,7 @@ PBI Builder (Working) - PBI编译器(正在工作中) - + PBI编译器(正在工作中) Save Log @@ -836,63 +721,51 @@ PBI Builder (Finished) - PBI编译器(已完成) - + PBI编译器(已完成) Begin creating a new XDG entry - 开始创建一个新的XDG条目 - + 开始创建一个新的XDG条目 Category - 类别 - + 类别 Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - 以空格分列的自动文件关联列表(如:*.junk *.JUNK *.test *.TEST) - + 以空格分列的自动文件关联列表(如:*.junk *.JUNK *.test *.TEST) Add - 添加 - + 添加 Select Package Directory - 选择软件目录 - + 选择软件目录 FreeBSD Ports Missing - FreeBSD Port缺失 - + FreeBSD Port缺失 The FreeBSD ports tree is missing from your system. - 您的系统中没有安装FreeBSD port树。 - + 您的系统中没有安装FreeBSD port树。 Application needs administrator privileges to run - 程序需要管理员权限运行 - + 程序需要管理员权限运行 Requires Root - 需要根用户 - + 需要根用户 Refresh Module - 刷新模块 - + 刷新模块 Please open up the EasyPBI settings to correct this deficiency. - 请打开EasyPBI设置来改正这个缺陷。 - + 请打开EasyPBI设置来改正这个缺陷。 Start building a PBI from the current module (requires administrator privileges) @@ -915,8 +788,7 @@ NewModuleDialog Create a new Module - 创建一个新模块 - + 创建一个新模块 FreeBSD Port @@ -924,73 +796,59 @@ FreeBSD port that you wish to build as a PBI - 您要创建为PBI的FreeBSD port - + 您要创建为PBI的FreeBSD port Select a port from the local FreeBSD ports tree - 从本地FreeBSD port树中选择一个port - + 从本地FreeBSD port树中选择一个port Select - 选择 - + 选择 Local directory to be packaged as a PBI - 要打包成PBI的本地目录 - + 要打包成PBI的本地目录 Select a local directory to be packaged as a PBI - 选择要打包成PBI的本地目录 - + 选择要打包成PBI的本地目录 Local Directory - 本地目录 - + 本地目录 PNG icon file to use for the PBI (can be changed later) - PBI要使用的PNG图标文件(以后可更改) - + PBI要使用的PNG图标文件(以后可更改) Select a local PNG file (64x64 pixel size recommended) - 选择一个本地PNG文件(推荐64x64像素) - + 选择一个本地PNG文件(推荐64x64像素) Icon File - 图标文件 - + 图标文件 Create a PBI from an existing FreeBSD port - 从已存在的FreeBSD port中创建PBI - + 从已存在的FreeBSD port中创建PBI Package a local directory as a PBI - 将本地目录打包成PBI - + 将本地目录打包成PBI Local Sources - 本地资源 - + 本地资源 EasyPBI: No FreeBSD Ports - EasyPBI:没有FreeBSD Port - + EasyPBI:没有FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - 您的系统中没有发现FreeBSD Port树。您可以通过EasyPBI的菜单来获取port树,或者如果已安装在非标准位置,请通过EasyPBI设定手动指定其安装路径。 - + 您的系统中没有发现FreeBSD Port树。您可以通过EasyPBI的菜单来获取port树,或者如果已安装在非标准位置,请通过EasyPBI设定手动指定其安装路径。 Select Port @@ -998,85 +856,70 @@ Select Package Directory - 选择软件目录 - + 选择软件目录 Select PNG Icon - 选择PNG图标 - + 选择PNG图标 PNG icon (*.png) - PNG图标(*.png) - + PNG图标(*.png) PreferencesDialog EasyPBI Preferences - EasyPBI设定 - + EasyPBI设定 PBI Output Dir - PBI输出目录 - + PBI输出目录 Local directory for built PBI's to be placed. - 要放置已编译的PBI的本地目录。 - + 要放置已编译的PBI的本地目录。 Browse local system to select a PBI output directory - 浏览本地系统,选择一个PBI输出目录 - + 浏览本地系统,选择一个PBI输出目录 Select - 选择 - + 选择 Digitally sign any PBI's that are created for tamper-evident distribution - 要对所有的PBI做数字签名,以便在分发过程中防止被破坏 - + 要对所有的PBI做数字签名,以便在分发过程中防止被破坏 Digitally Sign PBI - 经过数字签名的PBI - + 经过数字签名的PBI Signature File - 签名文件 - + 签名文件 Local file that contains the openssl key - 包含openssl钥匙的本地文件 - + 包含openssl钥匙的本地文件 Browse for the openssl key file - 浏览查找openssl钥匙文件 - + 浏览查找openssl钥匙文件 Use system memory to speed up PBI build processes. - 使用系统内在以加速PBI编译进程。 - + 使用系统内在以加速PBI编译进程。 Use TMPFS - 使用TMPFS + 使用TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - 通过阻止对已编译port的重新编译可以极大提高PBI编译速度。 - + 通过阻止对已编译port的重新编译可以极大提高PBI编译速度。 Use Package Caching diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_zh_HK.ts b/src-qt4/EasyPBI/i18n/EasyPBI_zh_HK.ts index e1d5241ef..69f15b931 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_zh_HK.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_zh_HK.ts @@ -5,140 +5,115 @@ MainGUI EasyPBI - EasyPBI + EasyPBI Module Editor - 模組編輯器 + 模組編輯器 View and edit the current PBI module - - + 檢視並編輯當前 PBI 模組 PBI Configuration - - + PBI 設定 Main settings for the PBI - - + PBI 主設定 Program Information - - + 程式資訊 Official name of the target program - - + 目標程式正式名稱 Name - - + 名稱 Version of the program to be packaged - - + 要包裝程式的版本 Version - - + 版本 URL of the main website for the target program - - + 目標程式主網站網址 Website - - + 網站 Author of the main program (or FreeBSD port maintainer instead) - - + 主程式作者 (或改用 FreeBSD port 維護者) Author - - + 作者 Icon that will be used for the program (PNG resources available) - - + 程式要用的圖示 (有提供 PNG 資源) Icon - 圖示 + 圖示 Build Information - - + 建置資訊 Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + 要包裝為 PBI 的本機目錄 (必須包括足以讓程式正確運作的所有東西) Package Directory - - + 套件目錄 Select a directory to be packaged into a PBI - - + 選取要包裝為 PBI 的目錄 Select - - + 選取 Main FreeBSD Port - - + 主 FreeBSD Port FreeBSD port to be packaged as a PBI - - + 要包裝為 PBI 的 FreeBSD port Select a FreeBSD port - - + 選取 FreeBSD port Change Port - - + 更改 Port Port Build Options - - + Port 建置選項 Special configuration options for any ports that need to be built. - - + 需要建置的 port 的特殊設定選項。 Build options available for main FreeBSD port - - + 可用於主 FreeBSD port 的建置選項 Make Port Before @@ -146,18 +121,15 @@ Additional FreeBSD ports to be built before the main program - - + 要在主程式之前建置的額外 FreeBSD port Add additional FreeBSD port - - + 添加額外 FreeBSD port Remove additional FreeBSD port - - + 移除額外 FreeBSD port Make Port After @@ -165,71 +137,59 @@ Additional FreeBSD ports to be built after the main program - - + 要在主程式之後建置的額外 FreeBSD port Require administrator permissions to install this PBI - - + 要有管理員權限才能安裝此 PBI Requires Root Permissions - - + 要有 Root 權限 Save the current settings to the PBI configuration file - - + 將當前設定儲存至 PBI 設定檔 Save Configuration - - + 儲存設定 Resources - 資源 + 資源 Additional files to be included in the PBI - - + 要包括在 PBI 的額外檔案 Current Resources - 當前資源 + 當前資源 Current files to be included in the PBI - - + 當前要包括在 PBI 的檔案 Copy an additional file into the PBI module - - + 將額外檔案複製進 PBI 模組 Add File - - + 添加檔案 Delete the selected file from the PBI module - - + 自 PBI 模組刪除所選檔案 Delete File - - + 刪除檔案 Create a custom wrapper script for a program binary - - + 為程式二進檔建立自訂 wrapper script Wrapper Script @@ -238,142 +198,115 @@ Save the wrapper script - - + 儲存 wrapper script Save Script - - + 儲存 Script Resource Icon - - + 資源圖示 Resource Description - - + 資源說明 XDG Entries - - + XDG 項目 Set any desktop/menu entries, and any MIME types - - + 設定任何桌面/選單項目,及任何 MIME 類型 Create and edit desktop entries - - + 建立並編輯桌面項目 Desktop - - + 桌面 Create and edit menu entries - - + 建立並編輯選單項目 Menu - - + 選單 Refresh the current list (useful if files recently modified outside of EasyPBI) - - + 重新整理當前清單 (如在 EasyPBI 以外改動了檔案就有用) Delete the current item from the PBI module - - + 自 PBI 模組刪除當前項目 Remove - - + 移除 Entry Details - - + 項目詳情 Visible name for the item - - + 該項目顯示的名稱 Executable - 可執行 + 可執行 Binary to be run when the item is activated - - + 啟動該項目時要運行的二進檔 Auto-detected binaries for the PBI - - + 該 PBI 自動偵測到的二進檔 Visible icon to use for the item - - + 用於該項目的可見圖示 Menu category for the item to be located. - - + 項目要置入的選單分類。 Possible Menu categories - - + 可能選單分類 Start the application in a terminal session - - + 在終端機工作階段啟動應用程式 Open in Terminal - - + 在終端機開啟 Flag this item to not be displayed at all - - + 標記此項目,使其不會顯示 Make Invisible - - + 設為看不見 MIME Patterns - - + MIME 樣式 Save the item as currently shown - - + 將項目以當前顯示的模樣儲存 Create a new item with the current settings - - + 以當前設定建立新項目 Scripts @@ -382,1105 +315,908 @@ Additional installation/build scripts - - + 額外安裝/建置 script Choose a script that you wish to create or edit - - + 選擇要建立或編輯的 script Create the selected script - - + 建立所選 script Create - - + 建立 Delete the selected script from the PBI module - - + 自 PBI 模組刪除所選 script Save the current text as the selected script - - + 將當前文字儲存為所選 script Save - - + 儲存 Contents for the selected script - - + 所選 script 內容 External-Links - 外部連結 + 外部連結 FIles to be linked into the local system - - + 要連結至本機系統檔案 Current Entries - - + 當前項目 File - 檔案 + 檔案 Link To - - + 連結至 File Type - - + 檔案類型 Remove currently selected link - - + 移除當前所選連結 Remove Entry - - + 移除項目 Add Entry - - + 添加項目 PBI file to be sym-linked into the local system (relative to the PBI directory) - - + 要符號連結(sym-link)至本機系統的 PBI 檔案 (相對於 PBI 目錄) Auto-detected binaries for this PBI - - + 為此 PBI 偵測到的二進檔 Location for the link to be created (relative to the local base: normally /usr/local/) - - + 建立連結的位置 (相對於本機 base:通常是 /usr/local/) Flags to determine the file type - - + 決定檔案類型的旗標 Available flags for the new link - - + 可用於新連結的旗標 Save this link to the PBI module - - + 將此連結儲存至 PBI 模組 PBI Builder - - + PBI 建置程式 Use the current module to build a PBI - - + 以當前模組建置 PBI Module Building - - + 建置模組 Shows the module that is currently being used to build a PBI - - + 顯示當前用來建置 PBI 的模組 No PBI currently being built - - + 當前沒有建置 PBI Output Directory - 輸出目錄 + 輸出目錄 Location for the finished PBI to be located - - + 完成 PBI 後要放置的地點 Displays any output from a PBI build process - - + 顯示 PBI 建置過程所有輸出資訊 Build PBI - 建立 PBI + 建置 PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + 可選項目:建置 32-位元 PBI,而非通常的 64-位元 Build 32-bit - - + 建置 32-位元 Cancel the currently running build process - - + 取消當前運行的建置過程 Cancel Build - - + 取消建置 Save the current build log to disk (very useful when requesting help with a failed build) - - + 將當前日誌儲存至磁碟 (對為失敗的建置作業求助很有用) Save Build Log - 儲存建立日誌 + 儲存建置日誌 System - - + 系統 Options - - + 選項 Information - - + 資訊 toolBar - - + 工具列 EasyPBI Settings - - + EasyPBI 設定 Open up the EasyPBI settings editor - - + 開啟 EasyPBI 設定編輯器 Get FreeBSD Ports - - + 取得 FreeBSD Port Fetch/update the FreeBSD ports tree - - + 擷取/更新 FreeBSD port 目錄樹 New - - + 新增 Click to create a new PBI module - - + 按此建立新 PBI 模組 Load - - + 載入 Click to load an existing module - - + 按此載入既有模組 Summary - - + 摘要 License - - + 授權條款 History - - + 歷史 FreeBSD Ports - - + FreeBSD Port Open up freshports.org for additional port information - - + 開啟 freshports.org 以取得額外資訊 PBI Modules - - + PBI 模組 Open up the PC-BSD Wiki page for PBI developers - - + 開啟為 PBI 開發者而設的 PC-BSD Wiki 頁面 Close EasyPBI - - + 關閉 EasyPBI Package Module - 套件模組 + 套件模組 Compress the current module for distribution - - + 壓縮當前模組以方便分發 About EasyPBI - 關於 EasyPBI + 關於 EasyPBI View additional information about EasyPBI - - + 檢視有關 EasyPBI 的額外資訊 No Module Loaded - - + 未載入模組 FreeBSD Port - - + FreeBSD Port Local Sources - - + 本機源碼 Installation Scripts - - + 安裝 Script Permissions Error - - + 權限出錯 There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + 在本機建立 EasyPBI 目錄結構時出錯。請檢查家目錄權限並重啟 EasyPBI。 Resources Unavailable - - + 未提供資源 Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + 找不到某些外部資源,故已停用使用此等資源的 EasyPBI 服務。 Success - - + 成功 A copy of the current module has been successfully packaged within the module directory. - - + 已在模組目錄成功包裝當前模組的複本。 EasyPBI: Permissions Error - - + EasyPBI:權限出錯 Could not create PBI module. Please check the directory permissions and try again. - - + 無法建置 PBI 模組。請檢查目錄權限並再試。 Select Module - 選取模組 + 選取模組 EasyPBI: No FreeBSD Ports - - + EasyPBI:無 FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + 在本機找不到 FreeBSD Port 目錄樹。可以 EasyPBI 選單擷取 port,又或如果 port 目錄樹並非安裝在標準位置,請在 EasyPBI 的偏好設定指明。 Select Port - 選取 Port + 選取 Port EasyPBI: Invalid Port - - + EasyPBI:Port 無效 The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + 所選目錄並非有效 FreeBSD port。請選取包括合適 Makefile 和 distinfo 的 port 目錄。 EasyPBI Error - - + EasyPBI 出錯 The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + 無法儲存 PBI 設定檔。請檢查檔案權限並再試。 Select Resources - - + 選取資源 New Wrapper Script - - + 新 Wrapper Script Filename - - + 檔案名稱 Could not remove the XDG entry. - - + 無法移除該 XDG 項目。 Check the file permissions and try again - - + 檢查檔案權限並再試 Could not save the changes to the XDG entry. - - + 無法將更改儲存至該 XDG 項目。 Error Saving File - - + 儲存檔案時出錯 Could not save the script - - + 無法儲存 script Please check the file permissions and try again - - + 請檢查檔案權限並再試 Error - 出錯 + 出錯 Invalid PBI Settings - PBI 設定無效 + PBI 設定無效 Are you sure you wish to start the PBI build? - 是否確定開始建立 PBI? + 是否確定開始建置 PBI? PBI Builder (Working) - - + PBI 建置程式 (工作中) Save Log - 儲存日誌 + 儲存日誌 Log Files - 日誌檔 + 日誌檔 PBI Build Success - 成功建立 PBI + 成功建置 PBI The PBI finished building successfully - 成功完成建立 PBI + 成功完成建置 PBI PBI Build Failure - PBI 建立失敗 + PBI 建置失敗 The PBI failed to build. - 未能建立 PBI + PBI 建置失敗。 Please check the build log to find the cause of the failure and adjust the module accordingly - 請查看建立日誌找出失敗原因並據此調整模組 + 請查看建置日誌找出失敗原因並據此調整模組 PBI Builder (Finished) - - + PBI 建置程式 (完成) Begin creating a new XDG entry - - + 開始建立新 XDG 項目 Category - - + 分類 Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + 以空格分隔的自動檔案關聯 (例子:*.junk *.JUNK *.test *.TEST) Add - - + 添加 Select Package Directory - - + 選取套件目錄 FreeBSD Ports Missing - - + 缺少 FreeBSD Port The FreeBSD ports tree is missing from your system. - - + 系統缺少 FreeBSD port 目錄樹。 Application needs administrator privileges to run - - + 應用程式需要管理員權限才能執行 Requires Root - - + 需要 Root 權限 Refresh Module - - + 重新整理模組 Please open up the EasyPBI settings to correct this deficiency. - - + 請開啟 EasyPBI 設定以修正此問題。 Start building a PBI from the current module (requires administrator privileges) - - + 自當前模組開始建置 PBI (需要管理員權限) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + 需要有有效的互聯網連線及管理員權限。建置 PBI 所需的時間視乎系統配置以及要編譯的 port。 The directory selected does not appear to be a valid FreeBSD port. - - + 所選目錄看來不像有效的 FreeBSD port。 Do you wish to continue using it anyway? - - + 還要繼續嗎? NewModuleDialog Create a new Module - - + 建立新模組 FreeBSD Port - - + FreeBSD Port FreeBSD port that you wish to build as a PBI - - + 要建置為 PBI 的 FreeBSD port Select a port from the local FreeBSD ports tree - - + 自本機 FreeBSD port 目錄樹選取 port Select - - + 選取 Local directory to be packaged as a PBI - - + 要包裝為 PBI 的本機目錄 Select a local directory to be packaged as a PBI - - + 選取要包裝為 PBI 的本機目錄 Local Directory - - + 本機目錄 PNG icon file to use for the PBI (can be changed later) - - + 用於 PBI 的 PNG 圖示檔案 (可在稍後更改) Select a local PNG file (64x64 pixel size recommended) - - + 選取本機 PNG 檔案 (建議用 64x64 像素大小) Icon File - - + 圖示檔案 Create a PBI from an existing FreeBSD port - - + 自既有 FreeBSD port 建立 PBI Package a local directory as a PBI - - + 將本機目錄包裝為 PBI Local Sources - - + 本機源碼 EasyPBI: No FreeBSD Ports - - + EasyPBI:無 FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + 在本機找不到 FreeBSD Port 目錄樹。可以 EasyPBI 選單擷取 port,又或如果 port 目錄樹並非安裝在標準位置,請在 EasyPBI 的偏好設定指明。 Select Port - 選取 Port + 選取 Port Select Package Directory - - + 選取套件目錄 Select PNG Icon - - + 選取 PNG 圖示 PNG icon (*.png) - - + PNG 圖示 (*.png) PreferencesDialog EasyPBI Preferences - - + EasyPBI 偏好設定 PBI Output Dir - - + PBI 輸出目錄 Local directory for built PBI's to be placed. - - + PBI 完成之後放置的本機目錄。 Browse local system to select a PBI output directory - - + 瀏覽本機系統以選取 PBI 輸出目錄 Select - - + 選取 Digitally sign any PBI's that are created for tamper-evident distribution - - + 為防篡改分發套件製作的 PBI 都要有數碼簽章 Digitally Sign PBI - - + 有數碼簽章的 PBI Signature File - - + 簽章檔 Local file that contains the openssl key - - + 包含 openssl 金鑰的本機檔案 Browse for the openssl key file - - + 瀏覽以取得 openssl 金鑰檔 Use system memory to speed up PBI build processes. - - + 使用系統記憶體以加快 PBI 建置過程。 Use TMPFS - 使用 TMPFS + 使用 TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + 可極大加速 PBI 的建置過程,方法是防止之前已建置的 port 重新編譯。 Use Package Caching - 使用套件快取 + 使用套件快取 Package Caching Options - - + 套件快取選項 Packages to Ignore - - + 要忽略的套件 Listed packages will always be ignored during PBI builds. - - + 列出的套件在建置 PBI 時一定會忽略。 Add a currently cached package to be ignored. - - + 添加要忽略的當前已快取套件 Add - - + 添加 Remove the selected package from the ignore list. - - + 自忽略清單移除所選套件。 Remove - - + 移除 Delete all packages currently in the cache. - - + 刪除當前快取內所有套件。 Clear Cache - - + 清除快取 Local Paths - - + 本機路徑 Default directory for all PBI modules to be created - - + 所有要建置 PBI 模組的預設目錄 Select a local directory for PBI modules. - - + 選取 PBI 模組的本機目錄。 Default directory to open when adding icons/files to a module - - + 為模組添加圖示/檔案時預設要開啟的目錄 Select a local directory. - - + 選取本機目錄。 Default PNG icon to use for PBI modules. - - + 用於 PBI 模組的預設 PNG 圖示。 Browse local system for a default PNG icon. - - + 瀏覽本機系統以取得預設 PNG 圖示。 Have EasyPBI re-scan the system for available utilities. - - + 要 EasyPBI 重新掃描系統看看有否可用的工具程式。 Auto-Detect - - + 自動偵測 pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + 指向 "pbi_makeport" 二進檔的完整路徑 Browse system for the local binary. - - + 瀏覽系統以找尋二進檔。 pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + 指向 "pbi_create" 二進檔的完整路徑 Switch User Utility - - + 切換使用者工具程式 Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + 指向圖像化「切換使用者」工具程式 (pc-su, gksu, kdesu, qsu, 等等..) 的完整路徑 Select PBI Output Directory - 選取 PBI 輸出目錄 + 選取 PBI 輸出目錄 Select Digital Signature File - 選取數碼簽章檔 + 選取數碼簽章檔 Signature Files (*) - - + 簽章檔 (*) Select the Package to Ignore - - + 選取要忽略套件 Package Files (*.txz) - - + 套件檔 (*.txz) Are you sure you wish to clear the PBI package cache? - - + 是否確定清除 PBI 套件快取? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + 此舉會刪除快取目錄內所有檔案及目錄。下次開始建置 PBI 時,會自此源碼重新建置所有套件。 Select Default Module Directory - - + 選取預設模組目錄 Select Default Directory To Find Icon Files - - + 選取預設找尋圖示檔案的目錄 Select Default Icon FIle - - + 選取預設圖示檔 PNG Images (*.png) - - + PNG 圖像 (*.png) Select Graphical Switch-User Utility - - + 選取圖像化切換用戶工具程式 Select 'pbi_create' File Location - - + 選取 'pbi_create' 檔案位置 Select 'pbi_makeport' File Location - - + 選取 'pbi_makeport' 檔案位置 Are you sure you wish to return to the automatically detected utility paths? - - + 是否確定要回到自動偵測到的工具程式路徑? This will remove any customized path settings for the external utilities. - - + 此舉會為外部工具程式移除任何自訂的路徑設定。 Select FreeBSD Ports Directory - - + 選取 FreeBSD Port 目錄 FreeBSD Ports - - + FreeBSD Port Ports Tree - - + Port 目錄樹 Last Update - - + 最後更新 TextLabel - - + 文字標籤 Create Dir - - + 建立目錄 Update - - + 更新 Status - - + 狀態 PBI Builds - - + PBI 建置 External Utilities - - + 外部工具程式 Default Search Paths - - + 預設搜尋路徑 Modules - - + 模組 Resources - 資源 + 資源 Default Icon - - + 預設圖示 Current User (~/EasyPBI/ports) - - + 當前用戶 (~/EasyPBI/ports) All Users (/usr/ports) - - + 所有用戶 (/usr/ports) Other - - + 其他 Nonexistent - - + 不存在 Success - - + 成功 The FreeBSD ports tree has been successfully updated - - + 成功更新 FreeBSD port 目錄樹 Failure - - + 失敗 The FreeBSD ports tree has failed to update. - - + 未能更新 FreeBSD port 目錄樹。 Last Message: %1 - - + 最新訊息:%1 Requesting Root Access - - + 正在要求取得 Root 存取權限 aboutDialog About EasyPBI - 關於 EasyPBI + 關於 EasyPBI License - - + 授權條款 Development History - - + 開發歷史 EasyPBI version %1 - - + EasyPBI 第 %1 版 Create PBI's quickly and easily. - 建立 PBI 又快又易。 + 建立 PBI 快又易。 Unable to open resource file: %1 - - + 不能開啟資源檔:%1 Please check that your EasyPBI compilation was performed correctly - - + 請確保已正確編譯 EasyPBI。 diff --git a/src-qt4/EasyPBI/i18n/EasyPBI_zh_TW.ts b/src-qt4/EasyPBI/i18n/EasyPBI_zh_TW.ts index fb77f6b68..fa433cbae 100644 --- a/src-qt4/EasyPBI/i18n/EasyPBI_zh_TW.ts +++ b/src-qt4/EasyPBI/i18n/EasyPBI_zh_TW.ts @@ -5,25 +5,23 @@ MainGUI EasyPBI - EasyPBI + EasyPBI Module Editor - 模組編輯 + 編輯模組 View and edit the current PBI module - - + 檢視並編輯當前 PBI 模組 PBI Configuration - PBI組態 + PBI 組態 Main settings for the PBI - - + PBI 主設定 Program Information @@ -31,18 +29,15 @@ Official name of the target program - - + 目標程式正式名稱 Name - - + 名稱 Version of the program to be packaged - - + 要包裝程式的版本 Version @@ -50,1434 +45,1176 @@ URL of the main website for the target program - - + 目標程式主網站網址 Website - - + 網站 Author of the main program (or FreeBSD port maintainer instead) - - + 主程式作者 (或改用 FreeBSD port 維護人) Author - - + 作者 Icon that will be used for the program (PNG resources available) - - + 程式要用的圖示 (有提供 PNG 資源) Icon - 圖示 + 圖示 Build Information - - + 建置資訊 Local directory to be packaged into a PBI (must contain everything necessary for program to run) - - + 要包裝為 PBI 的本機目錄 (必須包括足以讓程式正確運作的所有東西) Package Directory - - + 套件目錄 Select a directory to be packaged into a PBI - - + 選取要包裝為 PBI 的目錄 Select - - + 選取 Main FreeBSD Port - - + 主 FreeBSD Port FreeBSD port to be packaged as a PBI - - + 要包裝為 PBI 的 FreeBSD port Select a FreeBSD port - - + 選取 FreeBSD port Change Port - - + 變更 Port Port Build Options - - + Port 建置選項 Special configuration options for any ports that need to be built. - - + 需要建置的 port 的特殊設定選項。 Build options available for main FreeBSD port - - + 可用於主 FreeBSD port 的建置選項 Make Port Before - 在此之前 Make Port: + 在此之前 Make Port: Additional FreeBSD ports to be built before the main program - - + 要在主程式之前建置的額外 FreeBSD port Add additional FreeBSD port - - + 添加額外 FreeBSD port Remove additional FreeBSD port - - + 移除額外 FreeBSD port Make Port After - 在此之後 Make Port: + 在此之後 Make Port: Additional FreeBSD ports to be built after the main program - - + 要在主程式之後建置的額外 FreeBSD port Require administrator permissions to install this PBI - - + 要有管理員權限才能安裝此 PBI Requires Root Permissions - - + 要有 Root 權限 Save the current settings to the PBI configuration file - - + 將當前設定儲存至 PBI 設定檔 Save Configuration - - + 儲存設定 Resources - 資源 + 資源 Additional files to be included in the PBI - - + 要包括在 PBI 的額外檔案 Current Resources - 目前的資源 + 當前資源 Current files to be included in the PBI - - + 當前要包括在 PBI 的檔案 Copy an additional file into the PBI module - - + 將額外檔案複製進 PBI 模組 Add File - - + 添加檔案 Delete the selected file from the PBI module - - + 自 PBI 模組刪除所選檔案 Delete File - - + 刪除檔案 Create a custom wrapper script for a program binary - - + 為程式二進檔建立自訂 wrapper script Wrapper Script - - + Wrapper Script Save the wrapper script - - + 儲存 wrapper script Save Script - - + 儲存 Script Resource Icon - - + 資源圖示 Resource Description - - + 資源說明 XDG Entries - - + XDG 項目 Set any desktop/menu entries, and any MIME types - - + 設定任何桌面/選單項目,及任何 MIME 類型 Create and edit desktop entries - - + 建立並編輯桌面項目 Desktop - - + 桌面 Create and edit menu entries - - + 建立並編輯選單項目 Menu - - + 選單 Refresh the current list (useful if files recently modified outside of EasyPBI) - - + 重新整理當前清單 (如在 EasyPBI 以外改動了檔案就有用) Delete the current item from the PBI module - - + 自 PBI 模組刪除當前項目 Remove - - + 移除 Entry Details - - + 項目詳情 Visible name for the item - - + 該項目顯示的名稱 Executable - 可執行 + 可執行 Binary to be run when the item is activated - - + 啟動該項目時要運行的二進檔 Auto-detected binaries for the PBI - - + 該 PBI 自動偵測到的二元檔 Visible icon to use for the item - - + 用於該項目的可見圖示 Menu category for the item to be located. - - + 項目要置入的選單分類。 Possible Menu categories - - + 可能選單分類 Start the application in a terminal session - - + 在終端機工作階段啟動應用程式 Open in Terminal - - + 在終端機開啟 Flag this item to not be displayed at all - - + 標記此項目,使其不會顯示 Make Invisible - - + 設為看不見 MIME Patterns - - + MIME 樣式 Save the item as currently shown - - + 將項目以當前顯示的模樣儲存 Create a new item with the current settings - - + 以當前設定建立新項目 Scripts - - + Scripts Additional installation/build scripts - - + 額外安裝/建置 script Choose a script that you wish to create or edit - - + 選擇要建立或編輯的 script Create the selected script - - + 建立所選 script Create - - + 建立 Delete the selected script from the PBI module - - + 自 PBI 模組刪除所選 script Save the current text as the selected script - - + 將當前文字儲存為所選 script Save - - + 儲存 Contents for the selected script - - + 所選 script 內容 External-Links - 外部連結 + 外部連結 FIles to be linked into the local system - - + 要連結至本機系統檔案 Current Entries - - + 當前項目 File - 檔案 + 檔案 Link To - - + 連結至 File Type - - + 檔案類型 Remove currently selected link - - + 移除當前所選連結 Remove Entry - - + 移除項目 Add Entry - - + 添加項目 PBI file to be sym-linked into the local system (relative to the PBI directory) - - + 要符號連結(sym-link)至本機系統的 PBI 檔案 (相對於 PBI 目錄) Auto-detected binaries for this PBI - - + 為此 PBI 偵測到的二進檔 Location for the link to be created (relative to the local base: normally /usr/local/) - - + 建立連結的位置 (相對於本機 base: 通常是 /usr/local/) Flags to determine the file type - - + 決定檔案類型的旗標 Available flags for the new link - - + 可用於新連結的旗標 Save this link to the PBI module - - + 將此連結儲存至 PBI 模組 PBI Builder - - + 建置 PBI Use the current module to build a PBI - - + 以當前模組建置 PBI Module Building - - + 建置模組 Shows the module that is currently being used to build a PBI - - + 顯示當前用來組建 PBI 的模組 No PBI currently being built - - + 當前沒有建置 PBI Output Directory - 輸出目錄 + 輸出目錄 Location for the finished PBI to be located - - + 完成 PBI 後要放置的地點 Displays any output from a PBI build process - - + 顯示 PBI 建置過程所有輸出資訊 Build PBI - 建立PBI + 建置 PBI OPTIONAL: Build a 32-bit PBI instead of the regular 64-bit - - + 可選項目:建置 32-位元 PBI,而非通常的 64-位元 Build 32-bit - - + 建置 32-位元 Cancel the currently running build process - - + 取消當前運行的建置過程 Cancel Build - - + 取消建置 Save the current build log to disk (very useful when requesting help with a failed build) - - + 將當前日誌儲存至磁碟 (對為失敗的建置作業求助很有用) Save Build Log - 儲存建立日誌 + 儲存建置日誌 System - - + 系統 Options - - + 選項 Information - - + 資訊 toolBar - - + 工具列 EasyPBI Settings - - + EasyPBI 設定 Open up the EasyPBI settings editor - - + 開啟 EasyPBI 設定編輯 Get FreeBSD Ports - - + 取得 FreeBSD Port Fetch/update the FreeBSD ports tree - - + 擷取/更新 FreeBSD port 目錄樹 New - - + 新增 Click to create a new PBI module - - + 按此建立新 PBI 模組 Load - - + 載入 Click to load an existing module - - + 按此載入既有模組 Summary - - + 摘要 License - - + 授權條款 History - - + 歷史 FreeBSD Ports - - + FreeBSD Port Open up freshports.org for additional port information - - + 開啟 freshports.org 以取得額外資訊 PBI Modules - - + PBI 模組 Open up the PC-BSD Wiki page for PBI developers - - + 開啟為 PBI 開發者而設的 PC-BSD Wiki 頁面 Close EasyPBI - - + 關閉 EasyPBI Package Module - 套件模組 + 套件模組 Compress the current module for distribution - - + 壓縮當前模組以方便分發 About EasyPBI - 關於 EasyPBI + 關於 EasyPBI View additional information about EasyPBI - - + 檢視有關 EasyPBI 的額外資訊 No Module Loaded - - + 未載入模組 FreeBSD Port - - + FreeBSD Port Local Sources - - + 本機源碼 Installation Scripts - - + 安裝 Script Permissions Error - - + 權限出錯 There was an error trying to create the local EasyPBI directory structure. Please check the permissions for your home directory and restart EasyPBI. - - + 在本機建立 EasyPBI 目錄結構時出錯。請檢查家目錄權限並重啟 EasyPBI。 Resources Unavailable - - + 未提供資源 Some external resources could not be found, so the EasyPBI services that use these resources have been deactivated. - - + 找不到某些外部資源,故已停用使用此等資源的 EasyPBI 服務。 Success - - + 成功 A copy of the current module has been successfully packaged within the module directory. - - + 已在模組目錄成功包裝當前模組的複本。 EasyPBI: Permissions Error - - + EasyPBI: 權限出錯 Could not create PBI module. Please check the directory permissions and try again. - - + 無法建置 PBI 模組。請檢查目錄權限並再試。 Select Module - 選取模組 + 選取模組 EasyPBI: No FreeBSD Ports - - + EasyPBI: 無 FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + 在本機找不到 FreeBSD Port 目錄樹。可以 EasyPBI 選單擷取 port,又或如果 port 目錄樹並非安裝在標準位置,請在 EasyPBI 的偏好設定指明。 Select Port - 選取 Port + 選取 Port EasyPBI: Invalid Port - - + EasyPBI: Port 無效 The directory selected is not a valid FreeBSD port. Please select a port directory which contains the appropriate Makefile and distinfo. - - + 所選目錄並非有效 FreeBSD port。請選取包括合適 Makefile 和 distinfo 的 port 目錄。 EasyPBI Error - - + EasyPBI 出錯 The PBI configuration file could not be saved. Please check your file permissions before trying again. - - + 無法儲存 PBI 設定檔。請檢查檔案權限並再試。 Select Resources - - + 選取資源 New Wrapper Script - - + 新 Wrapper Script Filename - - + 檔案名稱 Could not remove the XDG entry. - - + 無法移除該 XDG 項目。 Check the file permissions and try again - - + 檢查檔案權限並再試 Could not save the changes to the XDG entry. - - + 無法將變更儲存至該 XDG 項目。 Error Saving File - - + 儲存檔案時出錯 Could not save the script - - + 無法儲存 script Please check the file permissions and try again - - + 請檢查檔案權限並再試 Error - 出錯 + 出錯 Invalid PBI Settings - PBI 設定無效 + PBI 設定無效 Are you sure you wish to start the PBI build? - 是否確定開始建立 PBI? + 是否確定開始建置 PBI? PBI Builder (Working) - - + 建置 PBI (工作中) Save Log - 儲存日誌 + 儲存日誌 Log Files - 日誌檔 + 日誌檔 PBI Build Success - 成功建立 PBI + 成功建置 PBI The PBI finished building successfully - 成功完成建立 PBI + 成功完成建置 PBI PBI Build Failure - PBI 建立失敗 + 未能建置 PBI The PBI failed to build. - 未能建立 PBI + 未能建置 PBI。 Please check the build log to find the cause of the failure and adjust the module accordingly - 請查看建立日誌找出失敗原因並據此調整模組 + 請查看建置日誌找出失敗原因並據此調整模組 PBI Builder (Finished) - - + 建置 PBI (完成) Begin creating a new XDG entry - - + 開始建立新 XDG 項目 Category - - + 分類 Space-separated list of automatic file associations (Example: *.junk *.JUNK *.test *.TEST) - - + 以空格分隔的自動檔案關聯 (例子: *.junk *.JUNK *.test *.TEST) Add - - + 添加 Select Package Directory - - + 選取套件目錄 FreeBSD Ports Missing - - + 缺少 FreeBSD Port The FreeBSD ports tree is missing from your system. - - + 系統缺少 FreeBSD port 目錄樹。 Application needs administrator privileges to run - - + 應用程式需要管理員權限才能執行 Requires Root - - + 需要 Root 權限 Refresh Module - - + 重新整理模組 Please open up the EasyPBI settings to correct this deficiency. - - + 請開啟 EasyPBI 設定以修正此問題。 Start building a PBI from the current module (requires administrator privileges) - - + 自當前模組開始建置 PBI (需要管理員權限) This requires an active internet connection and administrator privileges. The time required to build a PBI varies depending upon system specifications and ports to be compiled. - - + 需要有有效的網際網路連線及管理員權限。建置 PBI 所需的時間視乎系統配置以及要編譯的 port。 The directory selected does not appear to be a valid FreeBSD port. - - + 所選目錄看來不像有效的 FreeBSD port。 Do you wish to continue using it anyway? - - + 還要繼續嗎? NewModuleDialog Create a new Module - - + 建立新模組 FreeBSD Port - - + FreeBSD Port FreeBSD port that you wish to build as a PBI - - + 要建置為 PBI 的 FreeBSD port Select a port from the local FreeBSD ports tree - - + 自本機 FreeBSD port 目錄樹選取 port Select - - + 選取 Local directory to be packaged as a PBI - - + 要包裝為 PBI 的本機目錄 Select a local directory to be packaged as a PBI - - + 選取要包裝為 PBI 的本機目錄 Local Directory - - + 本機目錄 PNG icon file to use for the PBI (can be changed later) - - + 用於 PBI 的 PNG 圖示檔案 (可在稍後變更) Select a local PNG file (64x64 pixel size recommended) - - + 選取本機 PNG 檔案 (建議用 64x64 像素大小) Icon File - - + 圖示檔案 Create a PBI from an existing FreeBSD port - - + 自既有 FreeBSD port 建立 PBI Package a local directory as a PBI - - + 將本機目錄包裝為 PBI Local Sources - - + 本機源碼 EasyPBI: No FreeBSD Ports - - + EasyPBI: 無 FreeBSD Port The FreeBSD Ports tree could not be found on your system. You may fetch the ports tree through the EasyPBI menu or manually set the path to the port tree in the EasyPBI preferences if it is installed in a non-standard location. - - + 在本機找不到 FreeBSD Port 目錄樹。可以 EasyPBI 選單擷取 port,又或如果 port 目錄樹並非安裝在標準位置,請在 EasyPBI 的偏好設定指明。 Select Port - 選取 Port + 選取 Port Select Package Directory - - + 選取套件目錄 Select PNG Icon - - + 選取 PNG 圖示 PNG icon (*.png) - - + PNG 圖示 (*.png) PreferencesDialog EasyPBI Preferences - - + EasyPBI 偏好設定 PBI Output Dir - - + PBI 輸出目錄 Local directory for built PBI's to be placed. - - + PBI 完成之後放置的本機目錄。 Browse local system to select a PBI output directory - - + 瀏覽本機系統以選取 PBI 輸出目錄 Select - - + 選取 Digitally sign any PBI's that are created for tamper-evident distribution - - + 為防篡改分發套件製作的 PBI 都要有數位簽章 Digitally Sign PBI - - + 有數位簽章的 PBI Signature File - - + 簽章檔 Local file that contains the openssl key - - + 包含 openssl 金鑰的本機檔案 Browse for the openssl key file - - + 瀏覽以取得 openssl 金鑰檔 Use system memory to speed up PBI build processes. - - + 使用系統記憶體以加快 PBI 建置過程。 Use TMPFS - 使用TMPFS + 使用TMPFS Greatly speeds up the PBI build process by preventing re-compilation of previously built ports. - - + 可極大加速 PBI 的建置過程,方法是防止之前已建置的 port 重新編譯。 Use Package Caching - 使用套件快取 + 使用套件快取 Package Caching Options - - + 套件快取選項 Packages to Ignore - - + 要忽略的套件 Listed packages will always be ignored during PBI builds. - - + 列出的套件在建置 PBI 時一定會忽略。 Add a currently cached package to be ignored. - - + 添加要忽略的當前已快取套件 Add - - + 添加 Remove the selected package from the ignore list. - - + 自忽略清單移除所選套件。 Remove - - + 移除 Delete all packages currently in the cache. - - + 刪除當前快取內所有套件。 Clear Cache - - + 清除快取 Local Paths - - + 本機路徑 Default directory for all PBI modules to be created - - + 所有要建置 PBI 模組的預設目錄 Select a local directory for PBI modules. - - + 選取 PBI 模組的本機目錄。 Default directory to open when adding icons/files to a module - - + 為模組添加圖示/檔案時預設要開啟的目錄 Select a local directory. - - + 選取本機目錄。 Default PNG icon to use for PBI modules. - - + 用於 PBI 模組的預設 PNG 圖示。 Browse local system for a default PNG icon. - - + 瀏覽本機系統以取得預設 PNG 圖示。 Have EasyPBI re-scan the system for available utilities. - - + 要 EasyPBI 重新掃描系統看看有否可用的工具程式。 Auto-Detect - - + 自動偵測 pbi_makeport - - + pbi_makeport Full path to the "pbi_makeport" binary - - + 指向 "pbi_makeport" 二進檔的完整路徑 Browse system for the local binary. - - + 瀏覽系統以找尋二進檔。 pbi_create - - + pbi_create Full path to the "pbi_create" binary - - + 指向 "pbi_create" 二進檔的完整路徑 Switch User Utility - - + 切換使用者工具程式 Full path to the graphical "switch user" utility (pc-su, gksu, kdesu, qsu, etc..) - - + 指向圖像化「切換使用者」工具程式 (pc-su, gksu, kdesu, qsu, 等等..) 的完整路徑 Select PBI Output Directory - 選取 PBI 輸出目錄 + 選取 PBI 輸出目錄 Select Digital Signature File - 選取數位簽章檔 + 選取數位簽章檔 Signature Files (*) - - + 簽章檔 (*) Select the Package to Ignore - - + 選取要忽略套件 Package Files (*.txz) - - + 套件檔 (*.txz) Are you sure you wish to clear the PBI package cache? - - + 是否確定清除 PBI 套件快取? This will delete all the files and directories in the cache directory. The next time you start a PBI build, it will begin to rebuild all the packages from source. - - + 此舉會刪除快取目錄內所有檔案及目錄。下次開始建置 PBI 時,會自此源碼重新建置所有套件。 Select Default Module Directory - - + 選取預設模組目錄 Select Default Directory To Find Icon Files - - + 選取預設找尋圖示檔案的目錄 Select Default Icon FIle - - + 選取預設圖示檔 PNG Images (*.png) - - + PNG 圖像 (*.png) Select Graphical Switch-User Utility - - + 選取圖像化切換使用者工具程式 Select 'pbi_create' File Location - - + 選取 'pbi_create' 檔案位置 Select 'pbi_makeport' File Location - - + 選取 'pbi_makeport' 檔案位置 Are you sure you wish to return to the automatically detected utility paths? - - + 是否確定要回到自動偵測到的工具程式路徑? This will remove any customized path settings for the external utilities. - - + 此舉會為外部工具程式移除任何自訂的路徑設定。 Select FreeBSD Ports Directory - - + 選取 FreeBSD Port 目錄 FreeBSD Ports - - + FreeBSD Port Ports Tree - - + Port 目錄樹 Last Update - - + 最後更新 TextLabel - - + 文字標籤 Create Dir - - + 建立目錄 Update - - + 更新 Status - - + 狀態 PBI Builds - - + PBI 建置 External Utilities - - + 外部工具程式 Default Search Paths - - + 預設搜尋路徑 Modules - - + 模組 Resources - 資源 + 資源 Default Icon - - + 預設圖示 Current User (~/EasyPBI/ports) - - + 當前使用者 (~/EasyPBI/ports) All Users (/usr/ports) - - + 所有使用者 (/usr/ports) Other - - + 其他 Nonexistent - - + 不存在 Success - - + 成功 The FreeBSD ports tree has been successfully updated - - + 成功更新 FreeBSD port 目錄樹 Failure - - + 失敗 The FreeBSD ports tree has failed to update. - - + 未能更新 FreeBSD ports 目錄樹。 Last Message: %1 - - + 最新訊息: %1 Requesting Root Access - - + 正在要求取得 Root 存取權限 aboutDialog About EasyPBI - 關於 EasyPBI + 關於 EasyPBI License - - + 授權條款 Development History - - + 開發歷史 EasyPBI version %1 - - + EasyPBI 第 %1 版 Create PBI's quickly and easily. - 快速又輕易建立 PBI。 + 建立 PBI 快又易。 Unable to open resource file: %1 - - + 不能開啟資源檔: %1 Please check that your EasyPBI compilation was performed correctly - - + 請確保已正確編譯 EasyPBI。 diff --git a/src-qt4/PCDM/i18n/PCDM_et.ts b/src-qt4/PCDM/i18n/PCDM_et.ts index 528159e3f..881174758 100644 --- a/src-qt4/PCDM/i18n/PCDM_et.ts +++ b/src-qt4/PCDM/i18n/PCDM_et.ts @@ -5,243 +5,198 @@ FancySwitcher Alt+Left - - + Alt+vasaknool Alt+Right - - + Alt+paremnool Alt+Up - - + Alt+ülesnool Alt+Down - - + Alt+allanool LoginWidget Select - - + Vali Select an alternate user and clear the password field - - + Vali muu kasutaja ja tühjenda parooli väli Select this user - - + Vali see kasutaja Login - - + Logi sisse Login to the system with the current user and password - - + Logi süsteemi sisse selle kasutaja ja parooliga Password - - + Parool Hold to view the currently entered password - - + Hoia all, et näha sisestatud parooli Login password for the selected user - - + Valitud kasutaja sisselogimise parool Available users - - + Kasutajad Login to %1 - - + Logi sisse masinasse %1 Available desktop environments - - + Töölauakeskkonnad PCDMgui Virtual Keyboard - - + Virtuaalne klaviatuur Locale - - + Lokaat Change locale - - + Muuda lokaati Keyboard Layout - - + Klaviatuuri asetus Change Keyboard Layout - - + Muuda klaviatuuri asetust System - - + Süsteem Tip: Make sure that caps-lock is turned off. - - + Veendu, et suurklahvilukk oleks maas. Restart - - + Taaskäivita Shut Down - - + Lülita välja Close PCDM - - + Sulge PCDM Shutdown the computer - - + Lülita arvuti välja Invalid Username/Password - - + Vigane kasutajanimi/parool Username/Password combination is invalid, please try again. - - + Kasutajanimi või parool on vigane. Palun proovi uuesti. System Shutdown - - + Süsteemi seiskamine You are about to shut down the system. - - + Arvuti lülitatakse välja. Are you sure? - - + Oled kindel? System Restart - - + Süsteemi taaskäivitus You are about to restart the system. - - + Süsteem taaskäivitatakse. QObject System Shutting Down - - + Süsteemi väljalülitamine widgetKeyboard Keyboard Settings - - + Klaviatuuri sätted Key Layout - - + Klahvipaigutus Variant - - + Variant Keyboard Model - - + Klaviatuuri mudel ( you may type into the space below to test your selected settings. ) - - + ( siia võib valitud sätete testimiseks trükkida. ) &Apply - - + &Rakenda &Close - - + &Sulge widgetLocale Select Locale - - + Vali lokaat Current Locale - - + Praegune lokaat Apply - - + Rakenda Cancel - - + Katkesta diff --git a/src-qt4/PCDM/i18n/PCDM_ja.ts b/src-qt4/PCDM/i18n/PCDM_ja.ts index c4a9f424a..2a978a6d7 100644 --- a/src-qt4/PCDM/i18n/PCDM_ja.ts +++ b/src-qt4/PCDM/i18n/PCDM_ja.ts @@ -139,7 +139,7 @@ Close PCDM - PCDM を閉じる + PCDM を閉じる diff --git a/src-qt4/PCDM/i18n/PCDM_nl.ts b/src-qt4/PCDM/i18n/PCDM_nl.ts index 528159e3f..2fb23de26 100644 --- a/src-qt4/PCDM/i18n/PCDM_nl.ts +++ b/src-qt4/PCDM/i18n/PCDM_nl.ts @@ -5,243 +5,198 @@ FancySwitcher Alt+Left - - + Alt+Links Alt+Right - - + Alt+Rechts Alt+Up - - + Alt+Omhoog Alt+Down - - + Alt+Omlaag LoginWidget Select - - + Kiezen Select an alternate user and clear the password field - - + Kies een andere gebruiker en maak het wachtwoordveld leeg Select this user - - + Deze gebruiker kiezen Login - - + Aanmelden Login to the system with the current user and password - - + Aanmelden bij het systeem met de huidige gebruiker en wachtwoord Password - - + Wachtwoord Hold to view the currently entered password - - + Houd ingedrukt om het thans ingevoerde wachtwoord te zien Login password for the selected user - - + Aanmeldwachtwoord voor de gekozen gebruiker Available users - - + Beschikbare gebruikers Login to %1 - - + Aanmelden bij %1 Available desktop environments - - + Beschikbare werkomgevingen PCDMgui Virtual Keyboard - - + Virtueel toetsenbord Locale - - + Regionale instellingen Change locale - - + Regionale instellingen veranderen Keyboard Layout - - + Toetsenbordindeling Change Keyboard Layout - - + Toetsenbordindelingen veranderen System - - + Systeem Tip: Make sure that caps-lock is turned off. - - + Tip: vergewis u ervan dat de caps-lock uit staat. Restart - - + Herstarten Shut Down - - + Afsluiten Close PCDM - - + PCDM sluiten Shutdown the computer - - + De computer afsluiten Invalid Username/Password - - + Ongeldige gebruikersnaam/wachtwoord Username/Password combination is invalid, please try again. - - + Combinatie van gebruikersnaam en wachtwoord is ongeldig, probeer het a.u.b. opnieuw. System Shutdown - - + Systeemafsluiting You are about to shut down the system. - - + U staat op het punt om het systeem af te sluiten. Are you sure? - - + Weet u het zeker? System Restart - - + Systeemherstart You are about to restart the system. - - + U staat op het punt om het systeem te herstarten. QObject System Shutting Down - - + Systeem afsluiten widgetKeyboard Keyboard Settings - - + Toetsenbordinstellingen Key Layout - - + Toetsindeling Variant - - + Variant Keyboard Model - - + Toetsenbordmodel ( you may type into the space below to test your selected settings. ) - - + (u kunt wat intikken in de ruimte hieronder, om uw gekozen instellingen te beproeven) &Apply - - + &Toepassen &Close - - + &Sluiten widgetLocale Select Locale - - + Regionale instelling kiezen Current Locale - - + Huidige regionale instelling Apply - - + Toepassen Cancel - - + Annuleren diff --git a/src-qt4/PCDM/i18n/PCDM_pt_BR.ts b/src-qt4/PCDM/i18n/PCDM_pt_BR.ts index 7c519cb5e..283586e20 100644 --- a/src-qt4/PCDM/i18n/PCDM_pt_BR.ts +++ b/src-qt4/PCDM/i18n/PCDM_pt_BR.ts @@ -24,25 +24,23 @@ LoginWidget Select - Selecionar + Selecionar Select an alternate user and clear the password field - - + Seleciona um usuário alternativo e limpa o campo de senha Select this user - Selecionar este usuário + Selecionar este usuário Login - Login + Entrar Login to the system with the current user and password - - + Acessar o sistema com o atual usuário e senha Password @@ -50,8 +48,7 @@ Hold to view the currently entered password - - + Espere para ver a senha digitada no momento Login password for the selected user @@ -67,8 +64,7 @@ Available desktop environments - - + Ambientes de trabalho disponíveis @@ -79,19 +75,19 @@ Locale - Localidade + Localidade Change locale - Mudar localidade + Mudar localidade Keyboard Layout - Disposição do teclado + Disposição de teclado Change Keyboard Layout - Mudar disposição do teclado + Mudar disposição de teclado System @@ -99,7 +95,7 @@ Tip: Make sure that caps-lock is turned off. - Dica: Certifique-se de que o caps-lock está desligado. + Dica: Certifique-se de que o Caps Lock esteja desligado. Restart @@ -111,7 +107,7 @@ Close PCDM - Fechar PCDM + Fechar PCDM Shutdown the computer @@ -119,21 +115,19 @@ Invalid Username/Password - Nome de usuário/Senha inválido + Nome de usuário/senha inválidos Username/Password combination is invalid, please try again. - A combinação Nome de usuário/Senha é inválida, por favor tente novamente. + A combinação do nome de usuário/senha é inválida, Por favor tente novamente. System Shutdown - - + Desligamento do sistema You are about to shut down the system. - - + Você está prestes a desligar o sistema. Are you sure? @@ -141,21 +135,18 @@ System Restart - - + Reinicialização do sistema You are about to restart the system. - - + Você está prestes a reiniciar o sistema. QObject System Shutting Down - - + Desligando o sistema @@ -166,29 +157,27 @@ Key Layout - - + Disposição das teclas Variant - - + Variante Keyboard Model - Modelo do teclado + Modelo do teclado ( you may type into the space below to test your selected settings. ) - ( você pode digitar algo no espaço abaixo para testar as suas configurações selecionadas. ) + ( você pode digitar algo no espaço abaixo para testar as suas configurações selecionadas. ) &Apply - &Aplicar + &Aplicar &Close - &Fechar + Fe&char @@ -199,8 +188,7 @@ Current Locale - - + Localidade atual Apply diff --git a/src-qt4/PCDM/i18n/PCDM_sv.ts b/src-qt4/PCDM/i18n/PCDM_sv.ts index 528159e3f..7b3483473 100644 --- a/src-qt4/PCDM/i18n/PCDM_sv.ts +++ b/src-qt4/PCDM/i18n/PCDM_sv.ts @@ -5,243 +5,198 @@ FancySwitcher Alt+Left - - + Alt+Vänster Alt+Right - - + Alt+höger Alt+Up - - + Alt+Upp Alt+Down - - + Alt+Ner LoginWidget Select - - + Välj Select an alternate user and clear the password field - - + Välj en alternativ användare och rensa lösenordsfältet Select this user - - + Välj denna användaren Login - - + Logga in Login to the system with the current user and password - - + Logga in i systemet med aktuella användarnamnet och lösenordet Password - - + Lösenord Hold to view the currently entered password - - + Håll in för att visa det ifyllda lösenordet Login password for the selected user - - + Login lösenord för den valda användaren Available users - - + Tillgängliga användare Login to %1 - - + Logga in till %1 Available desktop environments - - + Tillgängliga skrivbordsmiljöer PCDMgui Virtual Keyboard - - + Virtuellt tangentbord Locale - - + Språkversion Change locale - - + Byt språkversion Keyboard Layout - - + Tangentbordslayout Change Keyboard Layout - - + Byt tangentbordslayout System - - + System Tip: Make sure that caps-lock is turned off. - - + Tips: Kontrollera att caps-lock är avstängd. Restart - - + Starta om Shut Down - - + Stäng av Close PCDM - - + Stäng PCDM Shutdown the computer - - + Stäng av datorn Invalid Username/Password - - + Ogiltigt användarnamn/lösenord Username/Password combination is invalid, please try again. - - + Användarnamns-/lösenordskombinationen är ogiltig, vad god försök igen. System Shutdown - - + Systemavstängning You are about to shut down the system. - - + Du är på väg att stänga av systemet. Are you sure? - - + Är du säker? System Restart - - + Systemomstart You are about to restart the system. - - + Du är på väg att starta om systemet. QObject System Shutting Down - - + Systemet stängs av widgetKeyboard Keyboard Settings - - + Tangentbordsinställningar Key Layout - - + Tangentlayout Variant - - + Variant Keyboard Model - - + Tangentbordsmodell ( you may type into the space below to test your selected settings. ) - - + ( du kan skriva i utrymmet nedan för att testa dina valda inställningar. ) &Apply - - + &Använd &Close - - + &Stäng widgetLocale Select Locale - - + Välj språk Current Locale - - + Nuvarande språk Apply - - + Applicera Cancel - - + Avbryt diff --git a/src-qt4/PCDM/i18n/PCDM_zh_CN.ts b/src-qt4/PCDM/i18n/PCDM_zh_CN.ts index d2b3ef383..5cb950c96 100644 --- a/src-qt4/PCDM/i18n/PCDM_zh_CN.ts +++ b/src-qt4/PCDM/i18n/PCDM_zh_CN.ts @@ -64,8 +64,7 @@ Available desktop environments - 可用的桌面环境 - + 可用的桌面环境 diff --git a/src-qt4/PCDM/i18n/PCDM_zh_HK.ts b/src-qt4/PCDM/i18n/PCDM_zh_HK.ts index 528159e3f..4e29f2a86 100644 --- a/src-qt4/PCDM/i18n/PCDM_zh_HK.ts +++ b/src-qt4/PCDM/i18n/PCDM_zh_HK.ts @@ -5,243 +5,198 @@ FancySwitcher Alt+Left - - + Alt+左 Alt+Right - - + Alt+右 Alt+Up - - + Alt+上 Alt+Down - - + Alt+下 LoginWidget Select - - + 選取 Select an alternate user and clear the password field - - + 選取備用(alternate)用戶並清除密碼欄 Select this user - - + 選取此用戶 Login - - + 登入 Login to the system with the current user and password - - + 以當前用戶和密碼登入系統 Password - - + 密碼 Hold to view the currently entered password - - + 按實就能看到當前輸入的密碼 Login password for the selected user - - + 所選用戶的登入密碼 Available users - - + 可提供用戶 Login to %1 - - + 登入 %1 Available desktop environments - - + 可提供桌面環境 PCDMgui Virtual Keyboard - - + 虛擬鍵盤 Locale - - + 地域 Change locale - - + 更改地域 Keyboard Layout - - + 鍵盤配置 Change Keyboard Layout - - + 更改鍵盤配置 System - - + 系統 Tip: Make sure that caps-lock is turned off. - - + 提示:請確定 caps-lock 是關的。 Restart - - + 重新啟動 Shut Down - - + 關機 Close PCDM - - + 關閉 PCDM Shutdown the computer - - + 關掉電腦 Invalid Username/Password - - + 用戶/密碼無效 Username/Password combination is invalid, please try again. - - + 用戶/密碼組合無效,請再試。 System Shutdown - - + 系統關機 You are about to shut down the system. - - + 即將關掉電腦。 Are you sure? - - + 確定嗎? System Restart - - + 系統重新啟動 You are about to restart the system. - - + 即將重新啟動電腦。 QObject System Shutting Down - - + 系統正在關機 widgetKeyboard Keyboard Settings - - + 鍵盤設定 Key Layout - - + 按鍵配置 Variant - - + 變體 Keyboard Model - - + 鍵盤型號 ( you may type into the space below to test your selected settings. ) - - + ( 可在下方空間打字以測試所選設定。 ) &Apply - - + 套用(&A) &Close - - + 關閉(&C) widgetLocale Select Locale - - + 選取地域 Current Locale - - + 當前地域 Apply - - + 套用 Cancel - - + 取消 diff --git a/src-qt4/PCDM/i18n/PCDM_zh_TW.ts b/src-qt4/PCDM/i18n/PCDM_zh_TW.ts index 528159e3f..d0674fd55 100644 --- a/src-qt4/PCDM/i18n/PCDM_zh_TW.ts +++ b/src-qt4/PCDM/i18n/PCDM_zh_TW.ts @@ -5,243 +5,198 @@ FancySwitcher Alt+Left - - + Alt+左 Alt+Right - - + Alt+右 Alt+Up - - + Alt+上 Alt+Down - - + Alt+下 LoginWidget Select - - + 選取 Select an alternate user and clear the password field - - + 選取備用(alternate)使用者並清除密碼欄 Select this user - - + 選取此使用者 Login - - + 登入 Login to the system with the current user and password - - + 以當前使用者和密碼登入系統 Password - - + 密碼 Hold to view the currently entered password - - + 緊按就能看到當前輸入的密碼 Login password for the selected user - - + 所選使用者的登入密碼 Available users - - + 可提供使用者 Login to %1 - - + 登入 %1 Available desktop environments - - + 可提供桌面環境 PCDMgui Virtual Keyboard - - + 虛擬鍵盤 Locale - - + 地域 Change locale - - + 變更地域 Keyboard Layout - - + 鍵盤配置 Change Keyboard Layout - - + 變更鍵盤配置 System - - + 系統 Tip: Make sure that caps-lock is turned off. - - + 提示:請確定 caps-lock 是關的。 Restart - - + 重新啟動 Shut Down - - + 關機 Close PCDM - - + 關閉 PCDM Shutdown the computer - - + 關掉電腦 Invalid Username/Password - - + 使用者/密碼無效 Username/Password combination is invalid, please try again. - - + 使用者/密碼組合無效,請再嘗試。 System Shutdown - - + 系統關機 You are about to shut down the system. - - + 即將關掉電腦。 Are you sure? - - + 確定嗎? System Restart - - + 系統重新啟動 You are about to restart the system. - - + 即將重新啟動電腦。 QObject System Shutting Down - - + 系統正在關機 widgetKeyboard Keyboard Settings - - + 鍵盤設定 Key Layout - - + 按鍵配置 Variant - - + 變體 Keyboard Model - - + 鍵盤型號 ( you may type into the space below to test your selected settings. ) - - + ( 可在下方空間打字以測試所選設定。 ) &Apply - - + 套用(&A) &Close - - + 關閉(&C) widgetLocale Select Locale - - + 選取地域 Current Locale - - + 當前地域 Apply - - + 套用 Cancel - - + 取消 diff --git a/src-qt4/about-gui/about.desktop b/src-qt4/about-gui/about.desktop index 9ed858c7f..7946c6c7f 100755 --- a/src-qt4/about-gui/about.desktop +++ b/src-qt4/about-gui/about.desktop @@ -21,11 +21,12 @@ Name[fr]=À propos de Name[fr_CA]=Au sujet de Name[hr]=O Name[hu]=Névjegy -Name[it]=Circa +Name[it]=A riguardo Name[ja]=バージョン情報 Name[nl]=Over Name[pl]=O Name[pt_BR]=Sobre +Name[ro]=Despre Name[ru]=О программе Name[sr]=O Name[sv]=Om diff --git a/src-qt4/about-gui/i18n/AboutGui_ar.ts b/src-qt4/about-gui/i18n/AboutGui_ar.ts index f5efcd1c9..614088d55 100644 --- a/src-qt4/about-gui/i18n/AboutGui_ar.ts +++ b/src-qt4/about-gui/i18n/AboutGui_ar.ts @@ -81,8 +81,8 @@ System components... - - + + مكونات النظام Desktop environments... diff --git a/src-qt4/about-gui/i18n/AboutGui_el.ts b/src-qt4/about-gui/i18n/AboutGui_el.ts index 9924298e6..e2b9153a2 100644 --- a/src-qt4/about-gui/i18n/AboutGui_el.ts +++ b/src-qt4/about-gui/i18n/AboutGui_el.ts @@ -25,7 +25,7 @@ FreeBSD base - Mε βάση το FreeBSD + Βασισμένο στο FreeBSD Arch: @@ -81,7 +81,7 @@ System components... - Εξαρτήματα του συστήματος ... + Συστατικά συστήματος ... Desktop environments... @@ -89,13 +89,11 @@ PC-BSD CLI utilities: - - + Εργαλεία γραμμής εντολών του PC-BSD: PC-BSD UI utilities: - - + Εργαλεία του PC-BSD με γραφικό περιβάλλον: diff --git a/src-qt4/about-gui/i18n/AboutGui_it.ts b/src-qt4/about-gui/i18n/AboutGui_it.ts index 9fe95f890..90fb63308 100644 --- a/src-qt4/about-gui/i18n/AboutGui_it.ts +++ b/src-qt4/about-gui/i18n/AboutGui_it.ts @@ -5,7 +5,7 @@ MainWindow About - About + A riguardo Version: @@ -25,7 +25,7 @@ FreeBSD base - Base FreeBSD + FreeBSD base Arch: @@ -73,31 +73,27 @@ Testing snapshot %1. May be unstable! - Testando istantanea %1. Potrebbe essere instabile! + Testando snapshot %1. Potrebbe essere instabile! X.org server version: - X.org server versione: + Versione server X.org: System components... - - + Componenti del sistema... Desktop environments... - - + Ambienti desktop... PC-BSD CLI utilities: - - + CLI utilities di PC-BSD: PC-BSD UI utilities: - - + UI utilities di PC-BSD: diff --git a/src-qt4/about-gui/i18n/AboutGui_ko.ts b/src-qt4/about-gui/i18n/AboutGui_ko.ts index 7adba65ed..19e8b0b6b 100644 --- a/src-qt4/about-gui/i18n/AboutGui_ko.ts +++ b/src-qt4/about-gui/i18n/AboutGui_ko.ts @@ -77,8 +77,7 @@ X.org server version: - - + X.org 서버 버전: System components... diff --git a/src-qt4/about-gui/i18n/AboutGui_nl.ts b/src-qt4/about-gui/i18n/AboutGui_nl.ts index c2a51ab3a..f0c6059ec 100644 --- a/src-qt4/about-gui/i18n/AboutGui_nl.ts +++ b/src-qt4/about-gui/i18n/AboutGui_nl.ts @@ -17,7 +17,7 @@ Host: - Host: + Systeem: ???? @@ -25,7 +25,7 @@ FreeBSD base - FreeBSD-basis + FreeBSD-basis Arch: @@ -93,7 +93,7 @@ PC-BSD UI utilities: - Grafische werkomgevinggereedschappen van PC-BSD: + Grafische hulpmiddelen van PC-BSD: diff --git a/src-qt4/about-gui/i18n/AboutGui_ro.ts b/src-qt4/about-gui/i18n/AboutGui_ro.ts index 61157330d..f7e7de70d 100644 --- a/src-qt4/about-gui/i18n/AboutGui_ro.ts +++ b/src-qt4/about-gui/i18n/AboutGui_ro.ts @@ -5,118 +5,95 @@ MainWindow About - - + Despre Version: - - + Versiune <Unknown> - - + Necunoscut Host: - - + Gazdă ???? - - + ???? FreeBSD base - - + Componentele FreeBSD de bază Arch: - - + Arhitectură ident - - + ident Hardware - - + Hardware CPU: - - + CPU: Mem. - - + Mem. Back - - + Înapoi Desktop environments: - - + Medii grafice de lucru (Please wait...) - - + (Vă rugăm așteptați...) Name - - + Nume Version - - + Versiune Close - - + Închide Testing snapshot %1. May be unstable! - - + Testarea snapshot % 1. Poate fi instabilă! X.org server version: - - + Versiune server X.org System components... - - + Componentele sistemului... Desktop environments... - - + Medii grafice de lucru... PC-BSD CLI utilities: - - + Utilitățile CLI ale PC-BSD: PC-BSD UI utilities: - - + Utilitățile UI ale PC-BSD: diff --git a/src-qt4/about-gui/i18n/AboutGui_zh_CN.ts b/src-qt4/about-gui/i18n/AboutGui_zh_CN.ts index e71a1a0bf..6c724c109 100644 --- a/src-qt4/about-gui/i18n/AboutGui_zh_CN.ts +++ b/src-qt4/about-gui/i18n/AboutGui_zh_CN.ts @@ -41,11 +41,11 @@ CPU: - CPU: + CPU: Mem. - 内存: + 内存 Back diff --git a/src-qt4/about-gui/i18n/AboutGui_zh_HK.ts b/src-qt4/about-gui/i18n/AboutGui_zh_HK.ts index 94470d326..444e6f67c 100644 --- a/src-qt4/about-gui/i18n/AboutGui_zh_HK.ts +++ b/src-qt4/about-gui/i18n/AboutGui_zh_HK.ts @@ -81,23 +81,19 @@ System components... - - + 系統元件... Desktop environments... - - + 桌面環境... PC-BSD CLI utilities: - - + PC-BSD CLI 工具程式: PC-BSD UI utilities: - - + PC-BSD UI 工具程式: diff --git a/src-qt4/about-gui/i18n/AboutGui_zh_TW.ts b/src-qt4/about-gui/i18n/AboutGui_zh_TW.ts index 48000e729..cd0ca2dd3 100644 --- a/src-qt4/about-gui/i18n/AboutGui_zh_TW.ts +++ b/src-qt4/about-gui/i18n/AboutGui_zh_TW.ts @@ -81,23 +81,19 @@ System components... - - + 系統元件... Desktop environments... - - + 桌面環境... PC-BSD CLI utilities: - - + PC-BSD 文字介面工具程式: PC-BSD UI utilities: - - + PC-BSD 圖像介面工具程式: diff --git a/src-qt4/libpcbsd/ui/i18n/libpcbsd_de.ts b/src-qt4/libpcbsd/ui/i18n/libpcbsd_de.ts index a2d524852..aeae1c709 100644 --- a/src-qt4/libpcbsd/ui/i18n/libpcbsd_de.ts +++ b/src-qt4/libpcbsd/ui/i18n/libpcbsd_de.ts @@ -108,7 +108,7 @@ Wenn Sie jetzt abbrechen könnten die Pakete beschädigt werden. Trotzdem abbrec metaWidget Apply - Übernehmen + Anwenden Loading... Please wait... diff --git a/src-qt4/libpcbsd/ui/i18n/libpcbsd_nl.ts b/src-qt4/libpcbsd/ui/i18n/libpcbsd_nl.ts index 0da409448..405194142 100644 --- a/src-qt4/libpcbsd/ui/i18n/libpcbsd_nl.ts +++ b/src-qt4/libpcbsd/ui/i18n/libpcbsd_nl.ts @@ -128,7 +128,7 @@ Indien u nu afbreekt, kunnen de pakketten corrupt worden. Toch afbreken? System packages updated successfully. - Systeempakketten werden met succes bijgewerkt. + Systeempakketten werden met succes bijgewerkt. No Desktop @@ -140,15 +140,15 @@ Indien u nu afbreekt, kunnen de pakketten corrupt worden. Toch afbreken? View Packages - Pakketten bekijken + Pakketten bekijken Package Listing for: - Pakketlijst voor: + Pakketlijst voor: Downloading: %1 - Aan het binnenhalen: %1 + Aan het binnenhalen: %1 diff --git a/src-qt4/libpcbsd/ui/i18n/libpcbsd_pt_BR.ts b/src-qt4/libpcbsd/ui/i18n/libpcbsd_pt_BR.ts index b9fe75b0a..cf01cd21d 100644 --- a/src-qt4/libpcbsd/ui/i18n/libpcbsd_pt_BR.ts +++ b/src-qt4/libpcbsd/ui/i18n/libpcbsd_pt_BR.ts @@ -34,7 +34,7 @@ Warning: Packages are still being modifed! If you cancel now the packages may be corrupted. Cancel anyway? Atenção: Os pacotes estão sendo modificados! -Se você cancelar agora, os pacotes podem ser corrompidos. Cancelar mesmo assim? +Se cancelar agora, os pacotes poderão ser corrompidos. Cancelar mesmo assim? diff --git a/src-qt4/libpcbsd/ui/i18n/libpcbsd_zh_CN.ts b/src-qt4/libpcbsd/ui/i18n/libpcbsd_zh_CN.ts index 4255c1a3c..3202d797e 100644 --- a/src-qt4/libpcbsd/ui/i18n/libpcbsd_zh_CN.ts +++ b/src-qt4/libpcbsd/ui/i18n/libpcbsd_zh_CN.ts @@ -34,7 +34,7 @@ Warning: Packages are still being modifed! If you cancel now the packages may be corrupted. Cancel anyway? 警告:软件包正在被更改 -如果现在取消,软件包可以会崩溃。一定要取消吗? +如果现在取消,软件包可以会崩溃。一定要取消吗? @@ -77,7 +77,7 @@ If you cancel now the packages may be corrupted. Cancel anyway? Private Key File: - 私有key文件: + 私有key文件: Password: @@ -144,11 +144,11 @@ If you cancel now the packages may be corrupted. Cancel anyway? Package Listing for: - 包列表: + 包列表: Downloading: %1 - 正在下载:1% + 正在下载:1% diff --git a/src-qt4/life-preserver/i18n/LifePreserver_af.ts b/src-qt4/life-preserver/i18n/LifePreserver_af.ts index 609c46291..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_af.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_af.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ar.ts b/src-qt4/life-preserver/i18n/LifePreserver_ar.ts index 62e9f1ade..f1eb8cd1c 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ar.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ar.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + إسم المضيف + + + User Name + إسم المستخدم + + + SSH Port + منفذ SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + إغلاق + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + إسم المضيف + + + User Name + إسم المستخدم + + + SSH Port + منفذ SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + حزام إنقاذ الحياة - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + إزالة + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_az.ts b/src-qt4/life-preserver/i18n/LifePreserver_az.ts index 5140fbd9a..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_az.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_az.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_bg.ts b/src-qt4/life-preserver/i18n/LifePreserver_bg.ts index f4c7d567b..477ac742f 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_bg.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_bg.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Име на хоста + + + User Name + Потребителско име + + + SSH Port + SSH Порт + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Затвори + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Име на хоста + + + User Name + Потребителско име + + + SSH Port + SSH Порт + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Премахни + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_bn.ts b/src-qt4/life-preserver/i18n/LifePreserver_bn.ts index 37edc4203..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_bn.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_bn.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_bs.ts b/src-qt4/life-preserver/i18n/LifePreserver_bs.ts index 673f4fe95..317141b4e 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_bs.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_bs.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zatvori + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Ukloni + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ca.ts b/src-qt4/life-preserver/i18n/LifePreserver_ca.ts index e30b5389a..275f721e5 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ca.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ca.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nom d'equip + + + User Name + Nom d'usuari + + + SSH Port + Port SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Tancar + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nom d'equip + + + User Name + Nom d'usuari + + + SSH Port + Port SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Treure + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_cs.ts b/src-qt4/life-preserver/i18n/LifePreserver_cs.ts index 1ce1ba902..a955371e2 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_cs.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_cs.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Jméno hostitele + + + User Name + Jméno uživatele + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zavřít + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Jméno hostitele + + + User Name + Jméno uživatele + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Záchranná vesta - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Odstranit + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_cy.ts b/src-qt4/life-preserver/i18n/LifePreserver_cy.ts index 13c9c53db..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_cy.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_cy.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_da.ts b/src-qt4/life-preserver/i18n/LifePreserver_da.ts index 06bd7519a..a327903eb 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_da.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_da.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Værtsnavn + + + User Name + Brugernavn + + + SSH Port + SSH port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Luk + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Værtsnavn + + + User Name + Brugernavn + + + SSH Port + SSH port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Fjern + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_de.ts b/src-qt4/life-preserver/i18n/LifePreserver_de.ts index 0cbbb10d3..c5836267d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_de.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_de.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Schliessen + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Entfernen + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_el.ts b/src-qt4/life-preserver/i18n/LifePreserver_el.ts index e7e269340..db1363e65 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_el.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_el.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Όνομα κόμβου + + + User Name + Όνομα χρήστη + + + SSH Port + Θύρα SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Κλείσιμο + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Όνομα κόμβου + + + User Name + Όνομα χρήστη + + + SSH Port + Θύρα SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Συντηρητής - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Αφαίρεση + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_en_GB.ts b/src-qt4/life-preserver/i18n/LifePreserver_en_GB.ts index 47bcc09f8..e8d1732bd 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_en_GB.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_en_GB.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Close + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Remove + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_en_US.ts b/src-qt4/life-preserver/i18n/LifePreserver_en_US.ts deleted file mode 100644 index 8d1ed9cb0..000000000 --- a/src-qt4/life-preserver/i18n/LifePreserver_en_US.ts +++ /dev/null @@ -1,125 +0,0 @@ - - - - - LPTray - - - Close Life Preserver Tray - - - - - Creating snapshot for %1 - - - - - Finished replication for %1 - - - - - mainUI - - - Life Preserver - - - - - Data Set - - - - - Latest Snapshot - - - - - Available - - - - - Replication - - - - - Enable backups of a new dataset - - - - - Add - - - - - Remove selected dataset from automatic backup - - - - - Remove - - - - - New dataset with settings from the currently selected dataset - - - - - Copy - - - - - Customize the backup configuration for the selected dataset - - - - - Configure - - - - - Browse the files in a snapshot of the current dataset - - - - - Browse - - - - - Revert the selected dataset to a previous snapshot - - - - - Revert - - - - - NONE - - - - - Yes - - - - - No - - - - diff --git a/src-qt4/life-preserver/i18n/LifePreserver_en_ZA.ts b/src-qt4/life-preserver/i18n/LifePreserver_en_ZA.ts index ea6210df9..e8d1732bd 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_en_ZA.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_en_ZA.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Close + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Remove + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_es.ts b/src-qt4/life-preserver/i18n/LifePreserver_es.ts index d54dcbca4..489e76bb0 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_es.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_es.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nombre de Host + + + User Name + Nombre de Usuario + + + SSH Port + Puerto SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Cerrar + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nombre de Host + + + User Name + Nombre de Usuario + + + SSH Port + Puerto SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life-Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Eliminar + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_et.ts b/src-qt4/life-preserver/i18n/LifePreserver_et.ts index 08f488b35..642cd791b 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_et.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_et.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Hostinimi + + + User Name + Kasutajanimi + + + SSH Port + SSH port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Sulge + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Hostinimi + + + User Name + Kasutajanimi + + + SSH Port + SSH port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Eemalda + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_eu.ts b/src-qt4/life-preserver/i18n/LifePreserver_eu.ts index 156068077..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_eu.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_eu.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_fa.ts b/src-qt4/life-preserver/i18n/LifePreserver_fa.ts index 8e3db7d60..2de36866a 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_fa.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_fa.ts @@ -1,124 +1,713 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + +نام دستگاه + + + User Name + +نام کاربر + + + SSH Port + +پورت SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + +نام دستگاه + + + User Name + +نام کاربر + + + SSH Port + +پورت SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + +حذف + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_fi.ts b/src-qt4/life-preserver/i18n/LifePreserver_fi.ts index 3600b4bfe..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_fi.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_fi.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_fr.ts b/src-qt4/life-preserver/i18n/LifePreserver_fr.ts index 096439ee7..b9554c9c0 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_fr.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_fr.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nom de l’hôte + + + User Name + Nom d'utilisateur + + + SSH Port + Port SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Fermer + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nom de l’hôte + + + User Name + Nom d'utilisateur + + + SSH Port + Port SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Bouée de sauvetage - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Supprimer + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_fr_CA.ts b/src-qt4/life-preserver/i18n/LifePreserver_fr_CA.ts index 1961330e3..debebc204 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_fr_CA.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_fr_CA.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nom de l'hôte + + + User Name + Nom d'utilisateur + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Fermer + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nom de l'hôte + + + User Name + Nom d'utilisateur + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Supprimer + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_fur.ts b/src-qt4/life-preserver/i18n/LifePreserver_fur.ts index ad27945ad..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_fur.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_fur.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_gl.ts b/src-qt4/life-preserver/i18n/LifePreserver_gl.ts index 11cb94bc4..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_gl.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_gl.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_he.ts b/src-qt4/life-preserver/i18n/LifePreserver_he.ts index 1d425611e..9a56fa5ae 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_he.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_he.ts @@ -1,124 +1,712 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + גלגל הצלה - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + הסרה + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_hi.ts b/src-qt4/life-preserver/i18n/LifePreserver_hi.ts index e37706ada..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_hi.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_hi.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_hr.ts b/src-qt4/life-preserver/i18n/LifePreserver_hr.ts index c83a2ba58..c322a35dd 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_hr.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_hr.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Naziv računala + + + User Name + Korisničko ime + + + SSH Port + SSH port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zatvori + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Naziv računala + + + User Name + Korisničko ime + + + SSH Port + SSH port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Ukloni + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_hu.ts b/src-qt4/life-preserver/i18n/LifePreserver_hu.ts index 343e5d155..80444c1a0 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_hu.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_hu.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Gazdagép neve + + + User Name + Felhasználónév + + + SSH Port + SSH-port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Bezárás + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Gazdagép neve + + + User Name + Felhasználónév + + + SSH Port + SSH-port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Törlés + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_id.ts b/src-qt4/life-preserver/i18n/LifePreserver_id.ts index 147e44b6c..1106637ec 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_id.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_id.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nama Host + + + User Name + Nama User + + + SSH Port + Port SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Tutup + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nama Host + + + User Name + Nama User + + + SSH Port + Port SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Pelampung - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Hapus + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_is.ts b/src-qt4/life-preserver/i18n/LifePreserver_is.ts index a81bba9da..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_is.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_is.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_it.ts b/src-qt4/life-preserver/i18n/LifePreserver_it.ts index b921c329b..5da4eeba7 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_it.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_it.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nome host + + + User Name + Nome utente + + + SSH Port + Porta SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Chiudi + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nome host + + + User Name + Nome utente + + + SSH Port + Porta SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Rimuovere + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ja.ts b/src-qt4/life-preserver/i18n/LifePreserver_ja.ts index 92df82804..b6ae66a25 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ja.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ja.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + ホスト名 + + + User Name + ユーザー名 + + + SSH Port + SSH のポート + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + 閉じる(&C) + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + ホスト名 + + + User Name + ユーザー名 + + + SSH Port + SSH のポート + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + 削除 + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ka.ts b/src-qt4/life-preserver/i18n/LifePreserver_ka.ts index 55a070ba7..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ka.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ka.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ko.ts b/src-qt4/life-preserver/i18n/LifePreserver_ko.ts index 6fb3ac168..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ko.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ko.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_lt.ts b/src-qt4/life-preserver/i18n/LifePreserver_lt.ts index a965575f0..dae38023b 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_lt.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_lt.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Pagrindinio kompiuterio pavadinimas + + + User Name + Vartotojo vardas + + + SSH Port + SSH jungtis + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Uždaryti + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Pagrindinio kompiuterio pavadinimas + + + User Name + Vartotojo vardas + + + SSH Port + SSH jungtis + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Gyvybės išlaikytojas - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Pašalinti + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_lv.ts b/src-qt4/life-preserver/i18n/LifePreserver_lv.ts index c2ebe122f..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_lv.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_lv.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_mk.ts b/src-qt4/life-preserver/i18n/LifePreserver_mk.ts index 5b7b06db5..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_mk.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_mk.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_mn.ts b/src-qt4/life-preserver/i18n/LifePreserver_mn.ts index 6ecc4c22a..1a955747e 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_mn.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_mn.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Хостын Нэр + + + User Name + Хэрэглэгчийн Нэр + + + SSH Port + SSH Порт дугаар + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Хаах + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Хостын Нэр + + + User Name + Хэрэглэгчийн Нэр + + + SSH Port + SSH Порт дугаар + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Устгах + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ms.ts b/src-qt4/life-preserver/i18n/LifePreserver_ms.ts index d0790c5e3..cc6428849 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ms.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ms.ts @@ -1,124 +1,713 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Tutup + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_mt.ts b/src-qt4/life-preserver/i18n/LifePreserver_mt.ts index 32ed62b74..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_mt.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_mt.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_nb.ts b/src-qt4/life-preserver/i18n/LifePreserver_nb.ts index 078d39f9a..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_nb.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_nb.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ne.ts b/src-qt4/life-preserver/i18n/LifePreserver_ne.ts index 443f92f5f..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ne.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ne.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_nl.ts b/src-qt4/life-preserver/i18n/LifePreserver_nl.ts index 478623d29..8fae900b8 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_nl.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_nl.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Systeemnaam + + + User Name + Gebruikersnaam + + + SSH Port + SSH-poort + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Sluiten + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Systeemnaam + + + User Name + Gebruikersnaam + + + SSH Port + SSH-poort + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Reddingsboei - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Verwijderen + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_pa.ts b/src-qt4/life-preserver/i18n/LifePreserver_pa.ts index 74534152e..58bf434f4 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_pa.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_pa.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + ਹੋਸਟ ਨਾਂ + + + User Name + ਯੂਜ਼ਰ ਨਾਂ + + + SSH Port + SSH ਪੋਰਟ + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + ਬੰਦ ਕਰੋ + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + ਹੋਸਟ ਨਾਂ + + + User Name + ਯੂਜ਼ਰ ਨਾਂ + + + SSH Port + SSH ਪੋਰਟ + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + ਜਾਨ ਬਚਾਉ - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + ਹਟਾਓ + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_pl.ts b/src-qt4/life-preserver/i18n/LifePreserver_pl.ts index 9433cf1b7..64bbcf372 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_pl.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_pl.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nazwa Komputera + + + User Name + Nazwa użytkownika + + + SSH Port + Port SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zamknij + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nazwa Komputera + + + User Name + Nazwa użytkownika + + + SSH Port + Port SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Usuń + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_pt.ts b/src-qt4/life-preserver/i18n/LifePreserver_pt.ts index 74420486d..dc3636ff2 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_pt.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_pt.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nome do anfitrião (host) + + + User Name + Nome do utilizador + + + SSH Port + Porta SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Fechar + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nome do anfitrião (host) + + + User Name + Nome do utilizador + + + SSH Port + Porta SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Conservador de vida - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Remover + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_pt_BR.ts b/src-qt4/life-preserver/i18n/LifePreserver_pt_BR.ts index 627c8352f..a0eba5f5e 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_pt_BR.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_pt_BR.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Nome do host + + + User Name + Nome do Usuário + + + SSH Port + Porta SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Fechar + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Nome do host + + + User Name + Nome do Usuário + + + SSH Port + Porta SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Remover + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ro.ts b/src-qt4/life-preserver/i18n/LifePreserver_ro.ts index 08ca46982..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ro.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ro.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ru.ts b/src-qt4/life-preserver/i18n/LifePreserver_ru.ts index 3ff07d197..f6d951c19 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ru.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ru.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Имя хоста + + + User Name + Имя пользователя + + + SSH Port + SSH порт + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Закрыть + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Имя хоста + + + User Name + Имя пользователя + + + SSH Port + SSH порт + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Удалить + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sa.ts b/src-qt4/life-preserver/i18n/LifePreserver_sa.ts index 54b23d2fb..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sa.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sa.ts @@ -1,124 +1,714 @@ + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sk.ts b/src-qt4/life-preserver/i18n/LifePreserver_sk.ts index b3b9d57f3..fba403984 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sk.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sk.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Meno hostiteľa + + + User Name + Meno užívateľa + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zatvoriť + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Meno hostiteľa + + + User Name + Meno užívateľa + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Záchranný server - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Odstrániť + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sl.ts b/src-qt4/life-preserver/i18n/LifePreserver_sl.ts index c9a670f9a..5c5e06349 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sl.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sl.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Ime gostitelja + + + User Name + Uporabniško ime + + + SSH Port + Vrata SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zapri + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Ime gostitelja + + + User Name + Uporabniško ime + + + SSH Port + Vrata SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Odstrani + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sr.ts b/src-qt4/life-preserver/i18n/LifePreserver_sr.ts index f5518bd36..317141b4e 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sr.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sr.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Zatvori + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Host Name + + + User Name + User Name + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Ukloni + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sv.ts b/src-qt4/life-preserver/i18n/LifePreserver_sv.ts index 5ced58844..c944e5847 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sv.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sv.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Värdnamn + + + User Name + Användarnamn + + + SSH Port + SSH Port + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Stäng + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Värdnamn + + + User Name + Användarnamn + + + SSH Port + SSH Port + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Ta bort + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_sw.ts b/src-qt4/life-preserver/i18n/LifePreserver_sw.ts index 21ddb9734..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_sw.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_sw.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_ta.ts b/src-qt4/life-preserver/i18n/LifePreserver_ta.ts index da5fd3ac5..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_ta.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_ta.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_tg.ts b/src-qt4/life-preserver/i18n/LifePreserver_tg.ts index e65a96f29..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_tg.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_tg.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_th.ts b/src-qt4/life-preserver/i18n/LifePreserver_th.ts index bf4f93d41..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_th.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_th.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_tr.ts b/src-qt4/life-preserver/i18n/LifePreserver_tr.ts index 15fdf095e..6c9417535 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_tr.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_tr.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Makine Adı + + + User Name + Kullanıcı Adı + + + SSH Port + SSH Portu + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Kapat + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Makine Adı + + + User Name + Kullanıcı Adı + + + SSH Port + SSH Portu + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Kaldır + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_uk.ts b/src-qt4/life-preserver/i18n/LifePreserver_uk.ts index 1f4aa8303..26ba39c17 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_uk.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_uk.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + Ім'я хоста + + + User Name + Ім'я користувача + + + SSH Port + Порт SSH + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Закрити + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + Ім'я хоста + + + User Name + Ім'я користувача + + + SSH Port + Порт SSH + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Рятувальний круг - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Вилучити + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_uz.ts b/src-qt4/life-preserver/i18n/LifePreserver_uz.ts index 806c95e35..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_uz.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_uz.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_vi.ts b/src-qt4/life-preserver/i18n/LifePreserver_vi.ts index 1f4b7af40..76220964a 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_vi.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_vi.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + lưu trữ tên + + + User Name + Tên người dùng + + + SSH Port + SSH Cảng + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + Đóng + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + lưu trữ tên + + + User Name + Tên người dùng + + + SSH Port + SSH Cảng + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + Hủy bỏ + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_zh_CN.ts b/src-qt4/life-preserver/i18n/LifePreserver_zh_CN.ts index b19a67e47..a56826764 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_zh_CN.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_zh_CN.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + 主机名称 + + + User Name + 用户名 + + + SSH Port + SSH端口 + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + 关闭 + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + 主机名称 + + + User Name + 用户名 + + + SSH Port + SSH端口 + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + 删除 + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_zh_HK.ts b/src-qt4/life-preserver/i18n/LifePreserver_zh_HK.ts index a10991210..f51a98073 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_zh_HK.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_zh_HK.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + 電腦名稱 + + + User Name + 用戶名稱 + + + SSH Port + SSH 連接埠 + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + 關閉 + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + 電腦名稱 + + + User Name + 用戶名稱 + + + SSH Port + SSH 連接埠 + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + 移除 + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_zh_TW.ts b/src-qt4/life-preserver/i18n/LifePreserver_zh_TW.ts index aa3cbb01b..8a9bcde6a 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_zh_TW.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_zh_TW.ts @@ -1,124 +1,705 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + 主機名稱 + + + User Name + 使用者名稱 + + + SSH Port + SSH通道(Port) + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + 關閉 + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + 主機名稱 + + + User Name + 使用者名稱 + + + SSH Port + SSH通道(Port) + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + Life Preserver - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + 移除 + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/i18n/LifePreserver_zu.ts b/src-qt4/life-preserver/i18n/LifePreserver_zu.ts index 87b027137..62fce548d 100644 --- a/src-qt4/life-preserver/i18n/LifePreserver_zu.ts +++ b/src-qt4/life-preserver/i18n/LifePreserver_zu.ts @@ -1,124 +1,714 @@ - + + + LPConfig + + Configure Dataset + + + + Data Set: + + + + Local Snapshots + + + + Schedule: + + + + Daily + + + + Hourly + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + @ h AP + + + + Days + + + + Total + + + + Keep: + + + + Replication + + + + Replicate on a Remote System + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + h AP + + + + Apply + + + + Cancel + + + + + LPMessages + + Life Preserver Messages + + + + Messages + + + + Log Files + + + + Close + + + + + No recent messages + + + + No Log Files Available + + + + (Life Preserver) No file contents to display + + + + (Life Preserver) File does not exist: %1 + + + + (Life Preserver) File could not be opened: %1 + + + LPTray - + View Messages + + + + Start Application UI + + + Close Life Preserver Tray - + Time: %1 + + + + %1: %2 + + + + System Alert + + + + + LPWatcher + + New snapshot of %1 + + + Creating snapshot for %1 - + Replication Starting + + + + Starting replication for %1 + + + + Replication Log + + + + Finished Replication + + + Finished replication for %1 + + Replication Failed for %1 + + + + Logfile available at: %1 + + + + Replication Failed + + + + Replication Error Log + + + + Replicating %1: %2 + + + + Scrub repaired %1 bad blocks + + + + Scrub repaired %1 blocks in %2 with %3 errors + + + + Scrub completed + + + + Scrub completed without needing repairs + + + + Scrubbing %1: %2 (%3 remaining) + + + + Resilvering: %1 (%2 remaining) + + + + Resilvering Started: %1 remaining + + + + Resilver completed in %1 with %2 errors + + + + Resilver completed successfully in %1 + + + + The pool is in a degraded state. See additional device error(s). + + + + %1 is degraded. + + + + The device is faulty, and should be replaced. + + + + %1 is faulty. + + + + The device was removed, and should be either be re-attached or replaced. + + + + %1 was removed. + + + + The device is unavailable and should be re-added to the pool. + + + + %1 is unavailable. + + + + + LPWizard + + New Life Preserver + + + + This wizard will walk you through the process of setting up a new snapshot schedule for the following ZFS dataset: + + + + Snapshot schedule + + + + Snapshots can be scheduled anywhere from daily, down to every 5 minutes. Snapshots consume very little disk space, and will only grow as the current data on disk changes. + + + + Hourly + + + + Daily @ + + + + h AP + + + + 30 minutes + + + + 10 minutes + + + + 5 minutes + + + + Snapshot pruning + + + + <html><head/><body><p>The oldest snapshots will be auto-pruned after reaching either the number of days or the total number of snapshots that you specify. </p></body></html> + + + + Keep + + + + days worth of snapshots + + + + total snapshots + + + + Replication Server + + + + Replication will keep a copy of your data on a remote system in the case of a total disk failure. + + + + NOTE: A valid replication target system must be running a compatible version of ZFS and have SSH enabled, such as on a FreeNAS system. + + + + Replicate my data + + + + Frequency + + + + With snapshot creation (Best for daily snapshots) + + + + Daily at: + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + Remote Dataset + + + + <html><head/><body><p>Your new Life Preserver schedule is now set up! You may go back and change your configuration at any time from within the main Life Preserver window.</p><p><br/></p><p>Click the Finish button to apply these settings and create the new backup schedule.</p></body></html> + + mainUI - Life Preserver - + + - Data Set - Latest Snapshot - Available - Replication - Enable backups of a new dataset - Add - Remove selected dataset from automatic backup - Remove + + + + + Customize the backup configuration for the selected dataset - - New dataset with settings from the currently selected dataset + Configure - - Copy + Manage SSH keys for replication authentication - - Customize the backup configuration for the selected dataset + Key Setup - - Configure + Make a new snapshot immediately + + + + ... - - Browse the files in a snapshot of the current dataset + Browse a snapshot and safely recover that version of a file - Browse - - Revert the selected dataset to a previous snapshot + Revert an entire data subset to a previous snapshot (overwrites all files) - Revert - - NONE + File + + + + Close Window + + + + Copy To USB Stick + + + + Generate SSH Key + + + + Mirror Dataset to USB + + + + Updating the database + + + + Enabled + + + + Disabled + + + + Configuring dataset: %1 + + + + Configuring replication: %1 + + + + Reminder + + + + Don't forget to save your SSH key to a USB stick so that you can restore your system from the remote host later!! + + + + Removing replication: %1 + + + + Verify Dataset Backup Removal + + + + Are you sure that you wish to cancel automated snapshots and/or replication of the following dataset? + + + + Verify Snapshot Deletion + + + + Do you wish to remove the local snapshots for this dataset? + + + + WARNING: This is a permanant change that cannot be reversed + + + + %1: Removing snapshots + + + + %1: Disabling Replication + + + + %1: Disabling Life-Preserver Management + + + + New Snapshot Name + + + + Snapshot Name: + + + + Name + + + + Snapshot Pending + + + + The new snapshot creation has been added to the queue + + + + Verify Snapshot Reversion + + + + Are you sure that you wish to revert %1 to the selected snapshot? + + + + WARNING: This will result in the loss of any data not previously backed up. + + + + %1: Reverting dataset: %2 + + + + Reversion Error + + + + The snapshot reversion could not be completed successfully. + + + + Reversion Success + + + + The snapshot reversion was completed successfully. + + + + Revert a file + + + + Backup Files (*) + + + + Invalid Snapshot File + + + + Please select a file from within the chosen snapshot that you wish to revert + + + + %1: Reverting File: %2 + + + + Error Reverting File + + + + An error occurred while tring to revert the file %1. Please try again. + + + + FIle Reverted + + + + The reverted file is now available at: %1 + + + + Enabling dataset management: %1 + + + + %1: Setting up SSH Key + + + + Failure + + + + There was an error while creating the SSH key. + + + + Success + + + + The SSH key was successfully generated. + + + + There was an error in retrieving the remote replication information for this dataset. Please ensure that replication is enabled and try agin. + + + + No Valid USB Devices + + + + No valid USB devices could be found. Please mount a FAT32 formatted USB stick and try again. + + + + Select USB Device + + + + Available USB Devices: - - Yes + The public SSH key file was successfully copied onto the USB device. - - No + The public SSH key file could not be copied onto the USB device. diff --git a/src-qt4/life-preserver/life-preserver.pro b/src-qt4/life-preserver/life-preserver.pro index 7b57642ee..34fc6ecd4 100644 --- a/src-qt4/life-preserver/life-preserver.pro +++ b/src-qt4/life-preserver/life-preserver.pro @@ -61,7 +61,6 @@ TRANSLATIONS = i18n/LifePreserver_af.ts \ i18n/LifePreserver_da.ts \ i18n/LifePreserver_de.ts \ i18n/LifePreserver_el.ts \ - i18n/LifePreserver_en_US.ts \ i18n/LifePreserver_en_GB.ts \ i18n/LifePreserver_en_ZA.ts \ i18n/LifePreserver_es.ts \ diff --git a/src-qt4/life-preserver/lifepreserver.desktop b/src-qt4/life-preserver/lifepreserver.desktop index d59b3806a..448f85d58 100755 --- a/src-qt4/life-preserver/lifepreserver.desktop +++ b/src-qt4/life-preserver/lifepreserver.desktop @@ -45,9 +45,10 @@ Name[it]=Life Preserver Name[ja]=Life Preserver Name[ko]=Life Preserver Name[mn]=Life Preserver -Name[nl]=Reddingsvest +Name[nl]=Reddingsboei Name[pl]=Kamizelka ratunkowa Name[pt_BR]=Life Preserver +Name[ro]=Colac de salvare Name[ru]=Life Preserver Name[sk]=Life Preserver Name[sl]=Life Preserver @@ -58,8 +59,8 @@ Name[tr]=Yedekleyici Name[uk]=Зберігач життя Name[vi]=đồ cứu nguy Name[zh_CN]=Life Preserver备份程序 -Name[zh_HK]=Life Preserver -Name[zh_TW]=Life Preserver +Name[zh_HK]=救生員 Life Preserver +Name[zh_TW]=救生員 Life Preserver GenericName=Life Preserver Backup GenericName[af]=Reddingsboei Friends GenericName[ar]=حارس الحياة (النسخ الاحتياطي) @@ -81,13 +82,14 @@ GenericName[he]=גיבוי גלגל הצלה GenericName[hr]=Life Preserver sigurnosne kopije GenericName[hu]=Mentőöv biztonsági mentés GenericName[id]=Life Preserver Backup -GenericName[it]=Strumento per il Backup Life Preserver +GenericName[it]=Life Preserver Backup GenericName[ja]=バックアップ管理プログラム GenericName[ko]=Life Preserver Backup GenericName[mn]=Life Preserver Нөөцлөх -GenericName[nl]=Reddingsvest-reservekopie +GenericName[nl]=Reddingsboei-reservekopie GenericName[pl]=Kopia zapasowa Kamizelki Ratunkowej GenericName[pt_BR]=Backup com o Life Preserver +GenericName[ro]=Copie de rezervă a colacului de slavare GenericName[ru]=Создание резервных копий (Life Preserver) GenericName[sk]=Life Preserver Zálohovanie GenericName[sl]=Varnostno kopiranje @@ -98,5 +100,5 @@ GenericName[tr]=Life Preserver Yedekleme GenericName[uk]=Засіб для створення резервних копій GenericName[vi]=Dồ cứu nguy sao lưu GenericName[zh_CN]=Life Preserver备份 -GenericName[zh_HK]=Life Preserver 備份程式 -GenericName[zh_TW]=Life Preserver備份管理程式 +GenericName[zh_HK]=救生員 Life Preserver 備份程式 +GenericName[zh_TW]=救生員 Life Preserver 備份管理程式 diff --git a/src-qt4/pc-adsldap/i18n/PCADSLDAP_nl.ts b/src-qt4/pc-adsldap/i18n/PCADSLDAP_nl.ts index 233289dd8..1024017ae 100644 --- a/src-qt4/pc-adsldap/i18n/PCADSLDAP_nl.ts +++ b/src-qt4/pc-adsldap/i18n/PCADSLDAP_nl.ts @@ -33,7 +33,7 @@ Administrator Password - Wachtwoord van beheerder + Wachtwoord van beheerder Administrator Password (Confirm) @@ -49,7 +49,7 @@ Hostname - Hostnaam + Systeemnaam Base DN @@ -69,7 +69,7 @@ Password Encryption - Wachtwoordversleuteling + Wachtwoordversleuteling User Suffix @@ -77,19 +77,19 @@ Group Suffix - Achtervoegsel van groep + Achtervoegsel van groep Password Suffix - Achtervoegsel van wachtwoord + Achtervoegsel van wachtwoord Machine Suffix - Achtervoegsel van machine + Achtervoegsel van machine Encryption Mode - Versleutelingsmodus + Versleutelingsmodus Self Signed Certificate @@ -101,7 +101,7 @@ &Save - &Opslaan + &Opslaan &Close diff --git a/src-qt4/pc-adsldap/i18n/PCADSLDAP_ro.ts b/src-qt4/pc-adsldap/i18n/PCADSLDAP_ro.ts index 9a58f276a..bb4691c59 100644 --- a/src-qt4/pc-adsldap/i18n/PCADSLDAP_ro.ts +++ b/src-qt4/pc-adsldap/i18n/PCADSLDAP_ro.ts @@ -5,148 +5,119 @@ pcADSLDAP Active Directory - - + Director activ Enable Active Directory - - + Activare director activ Domain Name (DNS/Realm-Name) - - + Nume domeniu (DNS/Domeniul-Nume) NetBIOS Name - - + Nume NetBIOS Workgroup Name - - + Numele Grupului de lucru Allow Trusted Domains - - + Permiteți domenii de încredere Administrator Name - - + Nume administrator Administrator Password - - + Parolă administrator Administrator Password (Confirm) - - + Parolă administrator (Confirmare) LDAP - - + LDAP Enable LDAP - - + Activare LDAP Hostname - - + Nume gazdă Base DN - - + DN de bază Allow Anon Binding - - + Permite obligatoriu Anon Root bind DN - - + DN root obligatoriu Root bind password - - + Parolă root pbligatorie Password Encryption - - + Criptare a parolei User Suffix - - + Sufix utilizator Group Suffix - - + Sufix grup Password Suffix - - + Sufix parolă Machine Suffix - - + Sufix mașină Encryption Mode - - + Mod criptare Self Signed Certificate - - + Certificat de autosemnare Auxiliary Parameters - - + Parametrii auxiliari &Save - - + &Salvare &Close - - + &Închide Active Directory Configuration - - + Configurare director activ The Active Directory passwords specified do not match! - - + Parolele directorului activ specificate nu se potrivesc! AD and LDAP Configuration - - + Configurare AD și LDAP diff --git a/src-qt4/pc-adsldap/i18n/PCADSLDAP_zh_CN.ts b/src-qt4/pc-adsldap/i18n/PCADSLDAP_zh_CN.ts index d5978f7b3..62f40b1fa 100644 --- a/src-qt4/pc-adsldap/i18n/PCADSLDAP_zh_CN.ts +++ b/src-qt4/pc-adsldap/i18n/PCADSLDAP_zh_CN.ts @@ -5,7 +5,7 @@ pcADSLDAP Active Directory - 活动目录 + 活动目录 Enable Active Directory @@ -17,7 +17,7 @@ NetBIOS Name - NetBIOS名称 + NetBIOS名称 Workgroup Name @@ -117,7 +117,7 @@ AD and LDAP Configuration - 活动目录和LDAP配置 + 活动目录和LDAP配置 diff --git a/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_pt_BR.ts b/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_pt_BR.ts index 52d35eed0..304bf2517 100644 --- a/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_pt_BR.ts +++ b/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_pt_BR.ts @@ -5,7 +5,7 @@ btmaingui BlueTooth Manager - Gerenciador BlueTooth + Gerenciador de BlueTooth Current Settings diff --git a/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_zh_CN.ts b/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_zh_CN.ts index b4937ef22..8a3dd4e82 100644 --- a/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_zh_CN.ts +++ b/src-qt4/pc-bluetoothmanager/i18n/pc-bluetoothmanager_zh_CN.ts @@ -13,7 +13,7 @@ Computer/Device ID - 计算机/设备ID + 计算机/设备ID Change @@ -29,7 +29,7 @@ Start Tray Application - 启动托盘程序 + 启动托盘程序 Restart Service @@ -45,7 +45,7 @@ Add Device - 添加设备 + 添加设备 Saved Devices diff --git a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_nl.ts b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_nl.ts index a58031130..3524f1aa6 100644 --- a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_nl.ts +++ b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_nl.ts @@ -5,7 +5,7 @@ BluetoothTray New Bluetooth Device Detected - Nieuw Bluetooth-apparaat bespeurd + Nieuw Bluetooth-apparaat ontdekt Start Bluetooth Manager @@ -17,7 +17,7 @@ Close Bluetooth Tray - Bluetooth-systeemvak sluiten + Bluetooth-systeemvak sluiten Please Wait @@ -25,7 +25,7 @@ Restarting Bluetooth Services - Bluetooth-diensten aan het herstarten + Bluetooth-diensten aan het herstarten Click here to configure Bluetooth device configurations diff --git a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_pt_BR.ts b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_pt_BR.ts index 9d2e26b02..59fd44345 100644 --- a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_pt_BR.ts +++ b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_pt_BR.ts @@ -9,11 +9,11 @@ Start Bluetooth Manager - Iniciar Gerenciador Bluetooth + Iniciar Gerenciador de Bluetooth Restart Bluetooth Services - Reiniciar Serviços Bluetooth + Reiniciar Serviços de Bluetooth Close Bluetooth Tray @@ -25,7 +25,7 @@ Restarting Bluetooth Services - Reiniciando Serviços Bluetooth + Reiniciando Serviços de Bluetooth Click here to configure Bluetooth device configurations diff --git a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_ro.ts b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_ro.ts index fcda15f03..e88de184f 100644 --- a/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_ro.ts +++ b/src-qt4/pc-bluetoothtray/i18n/pc-bluetoothtray_ro.ts @@ -5,38 +5,31 @@ BluetoothTray New Bluetooth Device Detected - - + Dispozitiv nou Bluetooth detectat Start Bluetooth Manager - - + Pornire manager Bluetooth Restart Bluetooth Services - - + Restartate servicii Bluetooth Close Bluetooth Tray - - + Închidere panou Bluetooth Please Wait - - + Vă rugăm așteptați Restarting Bluetooth Services - - + Repornirea serviciilor Bluetooth Click here to configure Bluetooth device configurations - - + Click aici pentru a configura configurațiile dispozitivelor Bluetooth diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_af.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_af.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_af.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_af.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ar.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ar.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ar.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ar.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_az.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_az.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_az.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_az.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bg.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bg.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bg.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bg.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bn.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bn.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bn.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bn.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bs.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bs.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bs.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_bs.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ca.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ca.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ca.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ca.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cs.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cs.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cs.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cs.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cy.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cy.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cy.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_cy.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_da.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_da.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_da.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_da.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_de.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_de.ts index 85ac70665..67074baa9 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_de.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_de.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD Startkonfiguration Boot Environments - - + Boot-Umgebungen Create a new boot environment - - + Neue Boot-Umgebung erstellen Add - - + Hinzufügen Remove the currently selected boot environment - - + Ausgewählte Boot-Umgebung entfernen Remove - - + Entfernen Make a copy of the selected boot environment - - + Eine Kopie der ausgewählten Boot-Umgebung erstellen ... - - + ... Rename the currently selected boot environment - - + Die ausgewählte Boot-Umgebung umbenennen Activate the selected boot environment to be used as the default during bootup - - + Die ausgewählte Boot-Umgebung soll beim Hochfahren benutzt werden Default - - + Vorgabe Amount of time before the default option is started (0 deactivates automatic booting) - - + Vorgabe der Zeit in Sekunden, nach der automatisch gestartet wird (0 = kein automatischer Start) Display the GRUB menu during the countdown - - + GRUB-Menü anzeigen, während der Countdown läuft File - - + Datei Emergency Services - - + Notfalldienste Rebuild GRUB Menu - - + GRUB-Menü erneuern Restore GRUB Defaults - - + GRUB-Vorgaben wiederherstellen Name - - + Name Running - - + Läuft Date - - + Datum Mountpoints - - + Einhängepunkt Space - - + Freier Speicher GRUB Configuration - - + GRUB-Einstellungen Settings - - + Einstellungen Timer - - + Timer seconds - - + Sekunden Font File - - + Zeichensatzdatei Font file for GRUB to use - - + Font-Datei für GRUB Select a font file for GRUB - - + Wählen Sie eine Font-Datei für GRUB Show Timer Countdown - - + Zeige Timer Countdown Theme File - - + Themen-Datei Theme file for GRUB to use - - + Themen-Datei für GRUB Select a theme file for GRUB - - + Wählen Sie eine Themen-Datei für GRUB Save the current settings configuration - - + Aktuelle Einstellungen speichern Re-load the GRUB settings - - + GRUB-Einstellungen erneut laden Custom Entries - - + Angepasste Einträge Save the current entry configuration - - + Speichere die aktuell eingetragene Konfiguration Re-load the GRUB entries file - - + Lade die Eingabendatei von GRUB neu Close - - + Beenden Invalid Name - - + Ungültiger Name A Boot Environment with that name already exists, please choose a different one. - - + Eine Boot-Umgebung mit diesem Namen ist bereits vorhanden, bitte wählen Sie eine Andere. Working - - + Arbeite Performing Boot Environment Changes. Please Wait. - - + Führe Änderungen in der Boot-Umgebung durch, Bitte warten. New BE name - - + Neuer Boot-Umgebungsname Choose a name for the new boot environment - - + Wählen Sie einen Namen für die neue Boot-Umgebung Running Boot Environment - - + Laufende Boot-Umgebung You cannot rename a boot environment that you are currently running! - - + Sie können eine aktuell laufende Boot-Umgebung nicht umbenennen! Choose a new name for this boot environment - - + Wählen Sie einen neuen Namen für diese Boot-Umgebung You cannot remove your only boot environment! - - + Sie können nicht die einzige Boot-Umgebung entfernen! Single Boot Environment - - + Einzelne Boot-Umgebung You cannot remove a boot environment that you are currently running! - - + Sie können eine aktuell laufende Boot-Umgebung nicht entfernen! Verify BE Removal - - + Entfernung der Boot-Umgebung überprüfen Are you sure you want to delete the following boot environment? - - + Wollen Sie die folgende Boot-Umgebung wirklich löschen? Select a GRUB Theme File - - + Wählen Sie eine Themen-Datai für GRUB Theme File (theme.txt) - - + Themen-Datei (theme.txt) Select a GRUB Font File - - + Wählen Sie eine Font-Datei für GRUB Font File (*.pf2) - - + Zeichensatzdatei (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Erstelle neues GRUB-Menüsystem. Bitte warten. Unsaved Changes - - + Ungesicherte Änderungen You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Sie haben derzeit nicht gespeicherte Änderungen in der GRUB-Konfiguration. Wollen Sie trotzdem beenden? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_el.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_el.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_el.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_el.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_GB.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_GB.ts index 42bbb686c..f7f24ebf8 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_GB.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_GB.ts @@ -243,5 +243,9 @@ You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_ZA.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_ZA.ts index 42bbb686c..f7f24ebf8 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_ZA.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_en_ZA.ts @@ -243,5 +243,9 @@ You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_es.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_es.ts index 85ac70665..67b168685 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_es.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_es.ts @@ -5,78 +5,63 @@ mainUI PC-BSD Bootup Configuration - - + Configuración del arranque de PC-BSD Boot Environments - - + Entornos de Arranque Create a new boot environment - - + Crear un nuevo entorno de arranque Add - - + Añadir Remove the currently selected boot environment - - + Eliminar el entorno de arranque elegido. Remove - - + Eliminar Make a copy of the selected boot environment - - + Copiar el entorno de arranque elegido. ... - - + ... Rename the currently selected boot environment - - + Cambiar el nombre del entorno de arranque elegido. Activate the selected boot environment to be used as the default during bootup - - + Usar el entorno de arranque elegido como arranque por defecto. Default - - + Por defecto Amount of time before the default option is started (0 deactivates automatic booting) - - + Tiempo de espera antes de que la opción por defecto arranque (0 desactiva el arranque automático) Display the GRUB menu during the countdown - - + Mostrar el menú GRUB durante la cuenta atrás. File - - + Fichero Emergency Services - - + Servicios de emergencia. Rebuild GRUB Menu @@ -303,5 +288,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_et.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_et.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_et.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_et.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_eu.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_eu.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_eu.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_eu.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fa.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fa.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fa.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fa.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fi.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fi.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fi.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fi.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr.ts index 49eeacb2f..45bf79fc9 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr.ts @@ -243,5 +243,9 @@ You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? Vous avez actuellement des modifications non enregistrées dans la configuration de GRUB. Voulez-vous arrêter de toute manière? + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr_CA.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr_CA.ts index 85a2726d3..3d49d803d 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr_CA.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_fr_CA.ts @@ -243,5 +243,9 @@ You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? Vous avez actuellement des modifications non enregistrées dans la configuration de GRUB. Voulez-vous arrêter de toute manière? + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_gl.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_gl.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_gl.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_gl.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_he.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_he.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_he.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_he.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hi.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hi.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hi.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hi.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hr.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hr.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hr.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hr.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hu.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hu.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hu.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_hu.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_id.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_id.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_id.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_id.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_is.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_is.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_is.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_is.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_it.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_it.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_it.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_it.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ja.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ja.ts index 85ac70665..27df7677b 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ja.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ja.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD 起動設定 Boot Environments - - + ブート環境設定 Create a new boot environment - - + 新しいブート環境設定を作成します Add - - + 追加 Remove the currently selected boot environment - - + 選択されたブート環境設定を削除します Remove - - + 削除 Make a copy of the selected boot environment - - + 選択されたブート環境設定をコピーします ... - - + ... Rename the currently selected boot environment - - + 選択されたブート環境設定の名前を変更します Activate the selected boot environment to be used as the default during bootup - - + 選択されたブート環境設定を起動時のデフォルト設定とします Default - - + デフォルト Amount of time before the default option is started (0 deactivates automatic booting) - - + デフォルトオプションで起動するまでの時間(0が設定されると自動的には起動しません) Display the GRUB menu during the countdown - - + カウントダウン中に GRUB メニューを表示します File - - - - - Emergency Services - - + ファイル Rebuild GRUB Menu - - + GRUB メニューの再構築 Restore GRUB Defaults - - + GRUB デフォルト設定の再読み込み Name - - + 名前 Running - - + 実行中 Date - - + 日付 Mountpoints - - + マウントポイント Space - - + 容量 GRUB Configuration - - + GRUB の設定 Settings - - + 設定 Timer - - + タイマー seconds - - + Font File - - + フォントファイル Font file for GRUB to use - - + GRUB が使用するフォントファイル Select a font file for GRUB - - + GRUB 用フォントファイルを選択 Show Timer Countdown - - + タイマーのカウントダウンを表示 Theme File - - + テーマファイル Theme file for GRUB to use - - + GRUB のテーマファイル Select a theme file for GRUB - - + GRUB のテーマファイルを選択 Save the current settings configuration - - + 現在の設定値を保存します Re-load the GRUB settings - - - - - Custom Entries - - + GRUB の設定を再読み込みします Save the current entry configuration - - + 現在のエントリーを保存します Re-load the GRUB entries file - - + GRUB エントリーファイルを再読み込み Close - - + 閉じる Invalid Name - - + 無効な名前です A Boot Environment with that name already exists, please choose a different one. - - - - - Working - - + その名前のブート環境設定は既に存在します。別の名前をつけてください。 Performing Boot Environment Changes. Please Wait. - - + ブート環境設定を変更しています。お待ちください。 New BE name - - + 新しいブート環境設定の名前 Choose a name for the new boot environment - - + 新しいブート環境設定を指定してください Running Boot Environment - - + ブート環境設定が有効です You cannot rename a boot environment that you are currently running! - - + そのブート環境設定が有効な状態では名前を変更できません。 Choose a new name for this boot environment - - + 別のブート環境設定の名前を指定してください。 You cannot remove your only boot environment! - - + そのブート環境設定は削除できません。 Single Boot Environment - - + 唯一のブート環境設定 You cannot remove a boot environment that you are currently running! - - + 現在有効なブート環境設定は削除できません。 Verify BE Removal - - + ブート環境設定の削除確認 Are you sure you want to delete the following boot environment? - - + このブート環境設定を削除してもよろしいですか? Select a GRUB Theme File - - + GRUB テーマファイルの選択 Theme File (theme.txt) - - + テーマファイル(theme.txt) Select a GRUB Font File - - + GRUB 用フォントファイルの選択 Font File (*.pf2) - - + フォントファイル (*.pf2) Rebuilding GRUB menu system. Please wait. - - + GRUB メニューシステムを再構築しています。お待ちください。 Unsaved Changes - - + 保存していない変更 You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + 変更された GRUB 設定が保存されていません。保存しますか? + + + Custom Entries + カスタム設定のエントリー + + + Emergency Services + 非常時の修復 + + + Working + 処理しています + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ka.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ka.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ka.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ka.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ko.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ko.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ko.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ko.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lt.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lt.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lt.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lt.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lv.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lv.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lv.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_lv.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mk.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mk.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mk.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mk.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mn.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mn.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mn.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mn.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ms.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ms.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ms.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ms.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mt.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mt.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mt.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_mt.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nb.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nb.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nb.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nb.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nl.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nl.ts index 85ac70665..b21d8310f 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nl.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_nl.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + Opstartinstellingen van PC-BSD Boot Environments - - + Opstartomgevingen Create a new boot environment - - + Maak een nieuwe opstartomgeving Add - - + Toevoegen Remove the currently selected boot environment - - + Verwijder de thans gekozen opstartomgeving Remove - - + Verwijderen Make a copy of the selected boot environment - - + Maak een kopie van de gekozen opstartomgeving ... - - + ... Rename the currently selected boot environment - - + Hernoem de thans gekozen opstartomgeving Activate the selected boot environment to be used as the default during bootup - - + Stel de gekozen opstartomgeving in om gebruikt te worden als de standaard bij opstarten Default - - + Standaard Amount of time before the default option is started (0 deactivates automatic booting) - - + Hoeveelheid tijd voordat de standaardoptie wordt gestart (0 schakelt automatische opstart uit) Display the GRUB menu during the countdown - - + Toon het GRUB-menu tijdens het aftellen File - - + Bestand Emergency Services - - + Nooddiensten Rebuild GRUB Menu - - + GRUB-menu opnieuw opbouwen Restore GRUB Defaults - - + GRUB-standaarden herstellen Name - - + Naam Running - - + Draaiend Date - - + Datum Mountpoints - - + Koppelpunten Space - - + Ruimte GRUB Configuration - - + GRUB-instellingen Settings - - + Instellingen Timer - - + Aftelklok seconds - - + seconden Font File - - + Lettertypebestand Font file for GRUB to use - - + Lettertypebestand voor gebruik door GRUB Select a font file for GRUB - - + Kies een lettertypebestand voor GRUB Show Timer Countdown - - + Toon aftellen van aftelklok Theme File - - + Themabestand Theme file for GRUB to use - - + Themabestand voor gebruik door GRUB Select a theme file for GRUB - - + Kies een themabestand voor GRUB Save the current settings configuration - - + Sla de huidige instellingen op Re-load the GRUB settings - - + Herlaad de GRUB-instellingen Custom Entries - - + Aangepaste invoervelden Save the current entry configuration - - + Sla de huidige instellingen van de invoervelden op Re-load the GRUB entries file - - + Herlaad het GRUB-invoerveldenbestand Close - - + Sluiten Invalid Name - - + Ongeldige naam A Boot Environment with that name already exists, please choose a different one. - - + Er bestaat al een opstartomgeving met die naam, kies a.u.b. een andere. Working - - + Werkend Performing Boot Environment Changes. Please Wait. - - + Veranderingen aan het aanbrengen in de opstartomgeving. Een ogenblik geduld a.u.b.. New BE name - - + Nieuwe naam van opstartomgeving Choose a name for the new boot environment - - + Kies een naam voor de nieuwe opstartomgeving Running Boot Environment - - + Draaiende opstartomgeving You cannot rename a boot environment that you are currently running! - - + U kunt een draaiende opstartomgeving niet hernoemen. Choose a new name for this boot environment - - + Kies een nieuwe naam voor deze opstartomgeving You cannot remove your only boot environment! - - + U kunt uw enige opstartomgeving niet verwijderen. Single Boot Environment - - + Enkele opstartomgeving You cannot remove a boot environment that you are currently running! - - + U kunt een thans draaiende opstartomgeving niet verwijderen. Verify BE Removal - - + Verwijdering van opstartomgeving verifiëren Are you sure you want to delete the following boot environment? - - + Weet u zeker dat u de volgende opstartomgeving wil verwijderen? Select a GRUB Theme File - - + Kies een themabestand voor GRUB Theme File (theme.txt) - - + Themabestand (theme.txt) Select a GRUB Font File - - + Kies een lettertypebestand voor GRUB Font File (*.pf2) - - + Lettertypebestand (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Menusysteem van GRUB opnieuw aan het opbouwen. Een ogenblik geduld a.u.b.. Unsaved Changes - - + Niet-opgeslagen veranderingen You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Er zijn niet-opgeslagen veranderingen in de instellingen van GRUB. Wilt u toch afsluiten? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pa.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pa.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pa.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pa.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pl.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pl.ts index 85ac70665..7172276fe 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pl.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pl.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + Konfiguracja Uruchomieniowa PC-BSD Boot Environments - - + Środowiska Uruchomieniowe Create a new boot environment - - + Stwórz nowe środowisko uruchomieniowe Add - - + Dodaj Remove the currently selected boot environment - - + Usuń aktualnie wybrane środowisko uruchomieniowe Remove - - + Usuń Make a copy of the selected boot environment - - + Zrób kopię wybranego środowiska uruchomieniowego ... - - + ... Rename the currently selected boot environment - - + Zmień nazwę aktualnie wybranego środowiska uruchomieniowego Activate the selected boot environment to be used as the default during bootup - - + Aktywuj aktualnie wybrane środowisko uruchomieniowe aby było ono domyślnym w trakcie startu Default - - + Wartość domyślna Amount of time before the default option is started (0 deactivates automatic booting) - - + Czas oczekiwania na uruchomienie domyślej opcji (0 deaktywuje automatyczne botowanie) Display the GRUB menu during the countdown - - + Wyświetlaj menu GRUB w trakcie odliczania File - - + Plik Emergency Services - - + Usługi Awaryjne Rebuild GRUB Menu - - + Przebuduj menu GRUB Restore GRUB Defaults - - + Przywróć domyślne wartości dla GRUB'a Name - - + Nazwa Running - - + Działa Date - - + Data Mountpoints - - + Punkty montowania Space - - + Powierzchnia GRUB Configuration - - + Konfiguracja GRUB Settings - - + Ustawienia Timer - - + Opóźnienie seconds - - + sekund Font File - - + Plik czcionek Font file for GRUB to use - - + Plik czcionek do użycia przez GRUB Select a font file for GRUB - - + Wybierz plik czcionek dla GRUB'a Show Timer Countdown - - + Pokaż odliczanie opóźnienia Theme File - - + Plik Kompozycji Theme file for GRUB to use - - + Plik Kompozycji do użycia przez GRUB'a Select a theme file for GRUB - - + Wybierz plik Kompozycji dla GRUB'a Save the current settings configuration - - + Zapisz aktualne ustawienia konfiguracji Re-load the GRUB settings - - + Przeładuj ustawienia GRUB'a Custom Entries - - + Własnie wpisy Save the current entry configuration - - + Zapisz aktualną konfigurację wpisu Re-load the GRUB entries file - - + Przeładuj plik wpisów GRUB Close - - + Zamknij Invalid Name - - + Niepoprawna nazwa A Boot Environment with that name already exists, please choose a different one. - - + Środowisko uruchomieniowe o tej nazwie już istnieje, proszę wybrać inną. Working - - + Działanie Performing Boot Environment Changes. Please Wait. - - + Przeprowadzanie zmian środowiska uruchomieniowego. Proszę czekać. New BE name - - + Nowa nazwa BE Choose a name for the new boot environment - - + Wybierz nazwę dla nowego środowiska uruchomieniowego Running Boot Environment - - + Działające środowisko uruchomieniowe You cannot rename a boot environment that you are currently running! - - + Nie można zmienić nazwy środowiska uruchomieniowego którego aktualnie używasz! Choose a new name for this boot environment - - + Wybierz nową nazwę dla tego środowiska uruchomieniowego You cannot remove your only boot environment! - - + Nie możesz usunąć jedynego środowiska uruchomieniowego! Single Boot Environment - - + Pojedyńcze środowisko uruchomieniowe You cannot remove a boot environment that you are currently running! - - + Nie możesz usunąć środowiska uruchomieniowego którego aktualnie używasz! Verify BE Removal - - + Potwierdź usunięcie BE Are you sure you want to delete the following boot environment? - - + Na pewno chcesz usunąć poniższe środowisko uruchomieniowe? Select a GRUB Theme File - - + Wybierz Plik Kompozycji GRUB'a Theme File (theme.txt) - - + Plik kompozycji (theme.txt) Select a GRUB Font File - - + Wybierz plik czcionek GRUB'a Font File (*.pf2) - - + Plik czcionek (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Przebudowywanie menu systemu GRUB. Proszę czekać. Unsaved Changes - - + Niezapisane zmiany You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Masz niezapisane zmiany w konfiguracji GRUB. Na pewno chcesz wyjść? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt_BR.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt_BR.ts index 85ac70665..c5db97ae2 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt_BR.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_pt_BR.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + Configuração de inicialização do PC-BSD Boot Environments - - + Ambientes de Inicialização Create a new boot environment - - + Cria um novo ambiente de inicialização Add - - + Adicionar Remove the currently selected boot environment - - + Remove o ambiente de inicialização selecionado Remove - - + Remover Make a copy of the selected boot environment - - + Faz uma cópia do ambiente de inicialização selecionado ... - - + ... Rename the currently selected boot environment - - + Renomeia o ambiente de inicialização selecionado Activate the selected boot environment to be used as the default during bootup - - + Ativa o ambiente de inicialização para ser usado como padrão durante a inicialização Default - - + Padrão Amount of time before the default option is started (0 deactivates automatic booting) - - + Quantidade de tempo antes que a opção padrão seja inicializada (0 desabilita a inicialização automática) Display the GRUB menu during the countdown - - + Exibir o menu do GRUB durante a contagem regressiva File - - + Arquivo Emergency Services - - + Serviços de emergência Rebuild GRUB Menu - - + Reconstruir o menu do GRUB Restore GRUB Defaults - - + Restaurar as predefinições do GRUB Name - - + Nome Running - - + Em execução Date - - + Data Mountpoints - - + Pontos de montagem Space - - + Espaço GRUB Configuration - - + Configuração do GRUB Settings - - + Configurações Timer - - + Tempo seconds - - + segundos Font File - - + Arquivo de fonte Font file for GRUB to use - - + Arquivo de fonte a ser usado no GRUB Select a font file for GRUB - - + Selecione um arquivo de fonte para o GRUB Show Timer Countdown - - + Mostrar contagem regressiva Theme File - - + Arquivo de tema Theme file for GRUB to use - - + Arquivo de tema a ser usado no GRUB Select a theme file for GRUB - - + Selecione um arquivo de tema para o GRUB Save the current settings configuration - - + Salvar as definições atuais de configuração Re-load the GRUB settings - - + Recarregar as configurações do GRUB Custom Entries - - + Entradas personalizadas Save the current entry configuration - - + Salvar a atual configuração de entrada Re-load the GRUB entries file - - + Recarregar o arquivo de entradas do GRUB Close - - + Fechar Invalid Name - - + Nome inválido A Boot Environment with that name already exists, please choose a different one. - - + Um Ambiente de Inicialização com este nome já existe. Por favor, escolha um diferente. Working - - + Em operação Performing Boot Environment Changes. Please Wait. - - + Realizando mudanças no Ambiente de Inicialização. Aguarde por favor. New BE name - - + Novo nome de Ambiente de Inicialização Choose a name for the new boot environment - - + Escolha um nome para o novo ambiente de inicialização Running Boot Environment - - + Executando o Ambiente de Inicialização You cannot rename a boot environment that you are currently running! - - + Você não pode renomear um ambiente de inicialização que está em execução! Choose a new name for this boot environment - - + Por favor, escolha um novo nome para este ambiente de inicialização You cannot remove your only boot environment! - - + Você não pode remover apenas o seu ambiente de inicialização! Single Boot Environment - - + Ambiente de Inicialização simples You cannot remove a boot environment that you are currently running! - - + Não pode remover um ambiente de inicialização que você está executando! Verify BE Removal - - + Verificar a remoção do Ambiente de Inicialização Are you sure you want to delete the following boot environment? - - + Você tem certeza que deseja excluir o seguinte ambiente de inicialização? Select a GRUB Theme File - - + Selecione um arquivo de tema do GRUB Theme File (theme.txt) - - + Arquivo de tema (theme.txt) Select a GRUB Font File - - + Selecione um arquivo de fonte do GRUB Font File (*.pf2) - - + Arquivo de fonte (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Reconstruindo o menu do sistema do GRUB. Por favor aguarde. Unsaved Changes - - + Alterações que não foram salvas You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Você tem alterações da configuração do GRUB que não foram salvas. Deseja sair mesmo assim? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ro.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ro.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ro.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ro.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ru.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ru.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ru.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ru.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sa.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sa.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sa.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sa.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sk.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sk.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sk.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sk.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sl.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sl.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sl.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sl.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sr.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sr.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sr.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sr.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sv.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sv.ts index 85ac70665..217f0d3c8 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sv.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sv.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD uppstartskonfiguration Boot Environments - - + Startmiljöer Create a new boot environment - - + Skapa en ny startmiljö Add - - + Lägg till Remove the currently selected boot environment - - + Ta bort den valda startmiljön Remove - - + Ta bort Make a copy of the selected boot environment - - + Skapa en kopia av vald startmiljö ... - - + ... Rename the currently selected boot environment - - + Döp om den valda startmiljön Activate the selected boot environment to be used as the default during bootup - - + Gör vald startmiljö till standardmiljön vid start Default - - + Standard Amount of time before the default option is started (0 deactivates automatic booting) - - + Tid innan standardalternativet startas (0 deaktiverar automatisk start) Display the GRUB menu during the countdown - - + Visa GRUB menyn under tiden av nedräkningen File - - + Fil Emergency Services - - + Beredskapstjänster Rebuild GRUB Menu - - + Bygg om GRUB meny Restore GRUB Defaults - - + Återställ GRUB till standardvärden Name - - + Namn Running - - + Igång Date - - + Datum Mountpoints - - + Monteringspunkter Space - - + Utrymme GRUB Configuration - - + GRUB konfiguration Settings - - + Inställningar Timer - - + Timer seconds - - + sekunder Font File - - + Teckensnittsfil Font file for GRUB to use - - + Teckensnittsfil som GRUB ska använda Select a font file for GRUB - - + Välj en teckensnittsfil för GRUB Show Timer Countdown - - + Visa timer nedräknare Theme File - - + Temafil Theme file for GRUB to use - - + Temafil som GRUB ska använda Select a theme file for GRUB - - + Välj en temafil för GRUB Save the current settings configuration - - + Spara de aktuella inställningarnas konfiguration Re-load the GRUB settings - - + Ladda om GRUB inställningarna Custom Entries - - + Anpassade inmatningar Save the current entry configuration - - + Spara den aktuella inmatningskonfigurationen Re-load the GRUB entries file - - + Ladda om GRUBs inmatningsfil Close - - + Stäng Invalid Name - - + Ogiltigt namn A Boot Environment with that name already exists, please choose a different one. - - + En startmiljö med det namnet finns redan, vad god välj ett annat namn. Working - - + Bearbetar Performing Boot Environment Changes. Please Wait. - - + Utför startmiljöändringar. Vad god vänta. New BE name - - + Nytt SM namn Choose a name for the new boot environment - - + Välj ett namn för den nya startmiljön Running Boot Environment - - + Kör startmiljö You cannot rename a boot environment that you are currently running! - - + Du kan inte döpa om en startmiljö som du kör just nu! Choose a new name for this boot environment - - + Välj ett nytt namn för denna startmiljön You cannot remove your only boot environment! - - + Du kan inte ta bort din enda startmiljö! Single Boot Environment - - + Enda startmiljön You cannot remove a boot environment that you are currently running! - - + Du kan inte ta bort en startmiljö som du kör just nu! Verify BE Removal - - + Verifiera SM borttagning Are you sure you want to delete the following boot environment? - - + Är du säker på att du vill ta bort följande startmiljö? Select a GRUB Theme File - - + Välj en GRUB temafil Theme File (theme.txt) - - + Temafil (theme.txt) Select a GRUB Font File - - + Välj en GRUB teckensnittsfil Font File (*.pf2) - - + Teckensnittsfil (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Bygger om GRUBs meny system. Vad god vänta. Unsaved Changes - - + Osparade ändringar You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Du har osparade ändringar i din GRUB konfiguration. Vill du avsluta ändå? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sw.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sw.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sw.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_sw.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ta.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ta.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ta.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_ta.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tg.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tg.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tg.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tg.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_th.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_th.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_th.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_th.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tr.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tr.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tr.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_tr.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uk.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uk.ts index 96ff927d0..2a148df0c 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uk.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uk.ts @@ -49,248 +49,203 @@ Amount of time before the default option is started (0 deactivates automatic booting) - - + Кількість часу до автоматичного застосування значення за замовчуванням (0 - повністю автоматичне) Display the GRUB menu during the countdown - - + Відображати меню GRUB під час відліку часу File - - + Файл Emergency Services - - + Невідкладні задачі Rebuild GRUB Menu - - + Перегенерувати меню GRUB Restore GRUB Defaults - - + Відновити налаштування GRUB Name - - + Ім'я Running - - + Поточне Date - - + Дата, час Mountpoints - - + Монтування Space - - + Розмір GRUB Configuration - - + Налаштування GRUB Settings - - + Налаштування Timer - - + Таймер seconds - - + секунд Font File - - + Файл шрифту Font file for GRUB to use - - + Файл шрифту для GRUB Select a font file for GRUB - - + Оберіть файл шрифту GRUB Show Timer Countdown - - + Показати відлік часу Theme File - - + Файл теми Theme file for GRUB to use - - + Тема GRUB Select a theme file for GRUB - - + Оберіть тему для GRUB Save the current settings configuration - - + Зберегти поточні налаштування Re-load the GRUB settings - - + Перезавантажити налаштування GRUB Custom Entries - - + Налаштування користувача Save the current entry configuration - - + Зберегти поточні налаштування користувача Re-load the GRUB entries file - - + Перечитати налаштування GRUB Close - - + Закрити Invalid Name - - + Невірне ім'я A Boot Environment with that name already exists, please choose a different one. - - + Оточення завантаження з таким ім'ям вже існує. Будь ласка оберіть інше ім'я. Working - - + Працюю Performing Boot Environment Changes. Please Wait. - - + Відбувається зміна налаштувань оточення завантаження. Будь ласка зачекайте... New BE name - - + Ім'я нового ОЗ Choose a name for the new boot environment - - + Оберіть ім'я нового оточення завантаження Running Boot Environment - - + Активне оточення завантаження You cannot rename a boot environment that you are currently running! - - + Ви не можете переіменувати оточення завантаження що наразі є активним Choose a new name for this boot environment - - + Будь ласка оберіть ім'я для оточення завантаження You cannot remove your only boot environment! - - + Ви не можете видалити єдине оточення завантаження Single Boot Environment - - + Єдине оточення завантаження You cannot remove a boot environment that you are currently running! - - + Ви не можете видалити оточення завантаження з якого ви наразі завантажили систему! Verify BE Removal - - + Видалення ОЗ Are you sure you want to delete the following boot environment? - - + Ви певні що бажаєте видалити наступне оточення завантаження? Select a GRUB Theme File - - + Оберіть файл теми GRUB Theme File (theme.txt) - - + Файли тем (theme.txt) Select a GRUB Font File - - + Оберіть файл шрифту GRUB Font File (*.pf2) - - + Файли шрифту (*.pf2) Rebuilding GRUB menu system. Please wait. - - + Перебудування системи меню GRUB. Будь ласка зачекайте. Unsaved Changes - - + Зміни не збережено You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Наразі ви маєте деякі налаштування GRUB що не було збережено. Бажаєте вийти не зважаючи на це? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uz.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uz.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uz.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_uz.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_vi.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_vi.ts index 85ac70665..22e5b40ef 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_vi.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_vi.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD Cấu hình bootup Boot Environments - - + Môi trường khởi động Create a new boot environment - - + Tạo ra một môi trường khởi động mới Add - - + thêm Remove the currently selected boot environment - - + Loại bỏ các môi trường khởi động hiện đang được chọn Remove - - + Hủy bỏ Make a copy of the selected boot environment - - + Tạo một bản sao của môi trường khởi động được chọn ... - - + ... Rename the currently selected boot environment - - + Đổi tên các môi trường khởi động hiện đang được chọn Activate the selected boot environment to be used as the default during bootup - - + Kích hoạt các môi trường khởi động được lựa chọn sẽ được sử dụng như là mặc định trong quá trình khởi động hệ thống Default - - + mặc Amount of time before the default option is started (0 deactivates automatic booting) - - + Số lượng thời gian trước khi lựa chọn mặc định được bắt đầu (0 vô hiệu hóa tự động khởi động) Display the GRUB menu during the countdown - - + Hiển thị menu GRUB trong đếm ngược File - - + tập tin Emergency Services - - + Các dịch vụ khẩn cấp Rebuild GRUB Menu - - + Xây dựng lại GRUB đơn Restore GRUB Defaults - - + Khôi phục mặc định GRUB Name - - + tên Running - - + đang chạy Date - - + Ngày Mountpoints - - + điểm lắp Space - - + không gian GRUB Configuration - - + Cấu hình GRUB Settings - - + Các thiết lập Timer - - + hẹn giờ seconds - - + Giây Font File - - + phông chữ tập tin Font file for GRUB to use - - + Phông chữ cho GRUB dùng Select a font file for GRUB - - + Chọn một tập tin phông chữ cho GRUB Show Timer Countdown - - + Hiển thị đồng hồ đếm ngược Theme File - - + chủ đề tập tin Theme file for GRUB to use - - + Tập tin chủ đề cho GRUB dùng Select a theme file for GRUB - - + Chọn một tập tin chủ đề cho GRUB Save the current settings configuration - - + Lưu lại cấu hình các thiết lập hiện tại Re-load the GRUB settings - - + Tái tải các cài đặt GRUB Custom Entries - - + tùy chỉnh riêng Save the current entry configuration - - + Lưu lại cấu hình nhập hiện tại Re-load the GRUB entries file - - + Tái nạp các mục file GRUB Close - - + Đóng Invalid Name - - + Tên không hợp lệ A Boot Environment with that name already exists, please choose a different one. - - + Một môi trường khởi động với tên đó đã tồn tại, xin vui lòng chọn tên khác. Working - - + làm việc Performing Boot Environment Changes. Please Wait. - - + Thực hiện các thay đổi môi trường khởi động. Xin vui lòng đợi. New BE name - - + Mới BE tên Choose a name for the new boot environment - - + Chọn một tên cho môi trường khởi động mới Running Boot Environment - - + đang chạy khởi động Môi trường You cannot rename a boot environment that you are currently running! - - + Bạn không thể đổi tên một môi trường khởi động mà bạn đang chạy! Choose a new name for this boot environment - - + Chọn một tên mới cho môi trường khởi động này You cannot remove your only boot environment! - - + Bạn không thể loại bỏ môi trường khởi động duy nhất của bạn! Single Boot Environment - - + Độc thân khởi động Môi trường You cannot remove a boot environment that you are currently running! - - + Bạn không thể loại bỏ một môi trường khởi động mà bạn đang chạy! Verify BE Removal - - + Xác minh BE diệt Are you sure you want to delete the following boot environment? - - + Bạn có chắc bạn muốn xóa các môi trường khởi động sau đây? Select a GRUB Theme File - - + Chọn số một GRUB Chủ điểm tệp Theme File (theme.txt) - - + Chủ điểm tệp (theme.txt) Select a GRUB Font File - - + Chọn số một GRUB phông chữ tệp Font File (*.pf2) - - + phông chữ tệp (*.PF2) Rebuilding GRUB menu system. Please wait. - - + Xây dựng lại hệ thống menu GRUB. Xin vui lòng chờ đợi. Unsaved Changes - - + Những thay đổi chưa được lưu You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + Bạn đang có những thay đổi chưa được lưu trong cấu hình GRUB. Bạn có muốn bỏ thuốc lá không? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_CN.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_CN.ts index 85ac70665..73b47f79b 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_CN.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_CN.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD启动配置 Boot Environments - - + 启动环境 Create a new boot environment - - + 创建一个新启动环境 Add - - + 添加 Remove the currently selected boot environment - - + 删除当前选定的启动环境 Remove - - + 删除 Make a copy of the selected boot environment - - + 对选定的启动环境制作一份复本 ... - - + …… Rename the currently selected boot environment - - + 重命名当前选定的启动环境 Activate the selected boot environment to be used as the default during bootup - - + 激活选定的启动环境以作为默认启动环境 Default - - + 默认 Amount of time before the default option is started (0 deactivates automatic booting) - - + 默认选项启动的等待时长(0关闭自动启动) Display the GRUB menu during the countdown - - + 在倒数时显示GRUB菜单 File - - + 文件 Emergency Services - - + 紧急服务 Rebuild GRUB Menu - - + 重新构建GRUB菜单 Restore GRUB Defaults - - + 恢复GRUB默认值 Name - - + 名称 Running - - + 正在运行 Date - - + 日期 Mountpoints - - + 挂载点 Space - - + 空白 GRUB Configuration - - + GRUB配置 Settings - - + 设置 Timer - - + 记时器 seconds - - + Font File - - + 字体文件 Font file for GRUB to use - - + GRUB要使用的字体文件 Select a font file for GRUB - - + 为GRUB选择字体文件 Show Timer Countdown - - + 选定倒数记数器 Theme File - - + 主题文件 Theme file for GRUB to use - - + GRUB要使用的主题文件 Select a theme file for GRUB - - + 为GRUB选择主题文件 Save the current settings configuration - - + 保存当前设置配置 Re-load the GRUB settings - - + 重新载入GRUB设置 Custom Entries - - + 定制条目 Save the current entry configuration - - + 保存当前条目的配置 Re-load the GRUB entries file - - + 重新载入GRUB条目文件 Close - - + 关闭 Invalid Name - - + 无效名称 A Boot Environment with that name already exists, please choose a different one. - - + 此名称的启动环境已存在,请选择个新名称。 Working - - + 正在工作 Performing Boot Environment Changes. Please Wait. - - + 正在进行启动环境更改。请稍等。 New BE name - - + 新启动环境名称 Choose a name for the new boot environment - - + 请为新启动环境命名 Running Boot Environment - - + 正在运行启动环境 You cannot rename a boot environment that you are currently running! - - + 你不能为正在运行的启动环境重命名 Choose a new name for this boot environment - - + 为此启动环境选择个新名称 You cannot remove your only boot environment! - - + 你不可以删除当前唯一的启动环境! Single Boot Environment - - + 单个启动环境 You cannot remove a boot environment that you are currently running! - - + 你不可以删除正在运行的启动环境! Verify BE Removal - - + 确认启动环境删除 Are you sure you want to delete the following boot environment? - - + 你确定要删除以下启动环境? Select a GRUB Theme File - - + 选择一个GRUB主题文件 Theme File (theme.txt) - - + 主题文件(theme.txt) Select a GRUB Font File - - + 选择一个GRUB字体文件 Font File (*.pf2) - - + 字体文件(*.pf2) Rebuilding GRUB menu system. Please wait. - - + 重建GRUB菜单系统。请稍等。 Unsaved Changes - - + 未保存的更改 You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + 你当前的GRUB配置更改未保存。你确定要退出? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_HK.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_HK.ts index 85ac70665..3c4941825 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_HK.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_HK.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD 開機設定 Boot Environments - - + 開機環境 Create a new boot environment - - + 建立新開機環境 Add - - + 添加 Remove the currently selected boot environment - - + 移除當前所選開機環境 Remove - - + 移除 Make a copy of the selected boot environment - - + 為所選開機環境製作複本 ... - - + ... Rename the currently selected boot environment - - + 重新命名當前所選開機環境 Activate the selected boot environment to be used as the default during bootup - - + 將所選開機環境設定為開機預設 Default - - + 預設 Amount of time before the default option is started (0 deactivates automatic booting) - - + 啟動預設選項等待時間 (0 代表不自動開機) Display the GRUB menu during the countdown - - + 倒數時顯示 GRUB 選單 File - - + 檔案 Emergency Services - - + 緊急服務 Rebuild GRUB Menu - - + 重新建置 GRUB 選單 Restore GRUB Defaults - - + 回存 GRUB 預設值 Name - - + 名稱 Running - - + 正在運行 Date - - + 日期 Mountpoints - - + 掛載點 Space - - + 空間 GRUB Configuration - - + GRUB 設定 Settings - - + 設定 Timer - - + 計時 seconds - - + Font File - - + 字型檔 Font file for GRUB to use - - + GRUB 要用的字型檔 Select a font file for GRUB - - + 選取 GRUB 要用的字型檔 Show Timer Countdown - - + 顯示倒數計時 Theme File - - + 佈景主題檔 Theme file for GRUB to use - - + GRUB 要用的佈景主題檔 Select a theme file for GRUB - - + 選取 GRUB 要用的佈景主題檔 Save the current settings configuration - - + 儲存當前設定 Re-load the GRUB settings - - + 重新載入 GRUB 設定 Custom Entries - - + 自訂項目 Save the current entry configuration - - + 儲存當前項目設定 Re-load the GRUB entries file - - + 重新載入 GRUB 項目檔 Close - - + 關閉 Invalid Name - - + 名稱無效 A Boot Environment with that name already exists, please choose a different one. - - + 已有使用該名稱的開機環境,請選擇別的名稱。 Working - - + 能用 Performing Boot Environment Changes. Please Wait. - - + 正在更改開機環境。請稍候。 New BE name - - + 新開機環境名稱 Choose a name for the new boot environment - - + 為新開機環境選擇名稱 Running Boot Environment - - + 正在運行開機環境 You cannot rename a boot environment that you are currently running! - - + 不能更改當前正在運行的開機環境的名稱! Choose a new name for this boot environment - - + 為此開機環境選擇新名稱 You cannot remove your only boot environment! - - + 不能移除唯一一個的開機環境! Single Boot Environment - - + 單一開機環境 You cannot remove a boot environment that you are currently running! - - + 不能移除當前正在運行的開機環境! Verify BE Removal - - + 驗證開機環境的移除 Are you sure you want to delete the following boot environment? - - + 確定要刪除以下開機環境嗎? Select a GRUB Theme File - - + 選取 GRUB 佈景主題檔 Theme File (theme.txt) - - + 佈景主題檔 (theme.txt) Select a GRUB Font File - - + 選取 GRUB 字型檔 Font File (*.pf2) - - + 字型檔 (*.pf2) Rebuilding GRUB menu system. Please wait. - - + 正在重新建置 GRUB 選單系統。請稍候。 Unsaved Changes - - + 未儲存更改 You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + GRUB 當前有未儲存更改。是否仍要離開? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_TW.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_TW.ts index 85ac70665..6f2d2acc1 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_TW.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zh_TW.ts @@ -5,303 +5,247 @@ mainUI PC-BSD Bootup Configuration - - + PC-BSD 開機設定 Boot Environments - - + 開機環境 Create a new boot environment - - + 建立新開機環境 Add - - + 添加 Remove the currently selected boot environment - - + 移除當前所選開機環境 Remove - - + 移除 Make a copy of the selected boot environment - - + 為所選開機環境製作複本 ... - - + ... Rename the currently selected boot environment - - + 重新命名當前所選開機環境 Activate the selected boot environment to be used as the default during bootup - - + 將所選開機環境設定為開機預設 Default - - + 預設 Amount of time before the default option is started (0 deactivates automatic booting) - - + 啟動預設選項等待時間 (0 代表不自動開機) Display the GRUB menu during the countdown - - + 倒數時顯示 GRUB 選單 File - - + 檔案 Emergency Services - - + 緊急服務 Rebuild GRUB Menu - - + 重新建置 GRUB 選單 Restore GRUB Defaults - - + 回存 GRUB 預設值 Name - - + 名稱 Running - - + 正在運行 Date - - + 日期 Mountpoints - - + 掛載點 Space - - + 空間 GRUB Configuration - - + GRUB 設定 Settings - - + 設定 Timer - - + 計時 seconds - - + Font File - - + 字型檔 Font file for GRUB to use - - + GRUB 要用的字型檔 Select a font file for GRUB - - + 選取 GRUB 要用的字型檔 Show Timer Countdown - - + 顯示倒數計時 Theme File - - + 佈景主題檔 Theme file for GRUB to use - - + GRUB 要用的佈景主題檔 Select a theme file for GRUB - - + 選取 GRUB 要用的佈景主題檔 Save the current settings configuration - - + 儲存當前設定 Re-load the GRUB settings - - + 重新載入 GRUB 設定 Custom Entries - - + 自訂項目 Save the current entry configuration - - + 儲存當前項目設定 Re-load the GRUB entries file - - + 重新載入 GRUB 項目檔 Close - - + 關閉 Invalid Name - - + 名稱無效 A Boot Environment with that name already exists, please choose a different one. - - + 已有使用該名稱的開機環境,請選擇別的名稱。 Working - - + 能用 Performing Boot Environment Changes. Please Wait. - - + 正在變更開機環境。請稍候。 New BE name - - + 新開機環境名稱 Choose a name for the new boot environment - - + 為新開機環境選擇名稱 Running Boot Environment - - + 正在運行開機環境 You cannot rename a boot environment that you are currently running! - - + 不能變更當前正在運行的開機環境的名稱! Choose a new name for this boot environment - - + 為此開機環境選擇新名稱 You cannot remove your only boot environment! - - + 不能移除唯一一個的開機環境! Single Boot Environment - - + 單一開機環境 You cannot remove a boot environment that you are currently running! - - + 不能移除當前正在運行的開機環境! Verify BE Removal - - + 驗證開機環境的移除 Are you sure you want to delete the following boot environment? - - + 確定要刪除以下開機環境嗎? Select a GRUB Theme File - - + 選取 GRUB 佈景主題檔 Theme File (theme.txt) - - + 佈景主題檔 (theme.txt) Select a GRUB Font File - - + 選取 GRUB 字型檔 Font File (*.pf2) - - + 字型檔 (*.pf2) Rebuilding GRUB menu system. Please wait. - - + 正在重新建置 GRUB 選單系統。請稍候。 Unsaved Changes - - + 未儲存變更 You currently have unsaved changes in the GRUB configuration. Do you want to quit anyway? - - + GRUB 當前有未儲存變更。是否仍要離開? + + + You cannot make a copy of the currently running boot environment! + diff --git a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zu.ts b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zu.ts index 85ac70665..ef6473707 100644 --- a/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zu.ts +++ b/src-qt4/pc-bootconfig/i18n/pc-bootconfig_zu.ts @@ -303,5 +303,9 @@ + + You cannot make a copy of the currently running boot environment! + + diff --git a/src-qt4/pc-bugreport/pcbugreport.desktop b/src-qt4/pc-bugreport/pcbugreport.desktop index acde84198..905feec47 100644 --- a/src-qt4/pc-bugreport/pcbugreport.desktop +++ b/src-qt4/pc-bugreport/pcbugreport.desktop @@ -21,16 +21,20 @@ Name[fa]=ابزار گزارش اشکال PC-BSD Name[fr]=PC-BSD outil de rapport de bug Name[fr_CA]=PC-BSD outils rapport de bug Name[hr]=PC-BSD alat za izveštaj o greškama +Name[it]=Strumento di segnalazione dei bug di PC-BSD Name[ja]=PC-BSD バグ報告ツール Name[nl]=Foutmeldingshulpmiddel voor PC-BSD Name[pl]=PC-BSD - Narzędzie do raportowania błędów. Name[pt_BR]=Ferramenta de relatório de erro do PC-BSD +Name[ro]=Instrument raportare eroare PC-BSD Name[ru]=Инструмент сообщения об ошибке PC-BSD Name[sr]=PC-BSD alat za izveštaj o greškama Name[sv]=PC-BSD felrapporteringsverktyg Name[uk]=Інструмент повідомлення про вади PC-BSD Name[vi]=PC-BSD công cụ báo cáo lỗi bị Name[zh_CN]=PC-BSD 缺陷汇报工具 +Name[zh_HK]=PC-BSD 錯誤回報工具 +Name[zh_TW]=PC-BSD 錯誤回報工具 GenericName=PC-BSD bug report tool GenericName[af]=PC- BSD fout verslag instrument GenericName[ar]=اداة تقارير الاعطاب PC-BSD @@ -45,13 +49,17 @@ GenericName[fa]=ابزار گزارش اشکال PC-BSD GenericName[fr]=PC-BSD outil de rapport de bug GenericName[fr_CA]=PC-BSD outils rapport de bug GenericName[hr]=PC-BSD alat za izveštaj o greškama +GenericName[it]=Strumento di segnalazione dei bug di PC-BSD GenericName[ja]=PC-BSD バグ報告ツール GenericName[nl]=Foutmeldingshulpmiddel voor PC-BSD GenericName[pl]=PC-BSD - Narzędzie do raportowania błędów. GenericName[pt_BR]=Ferramenta de relatório de erro do PC-BSD +GenericName[ro]=Instrument raportare eroare PC-BSD GenericName[ru]=Инструмент сообщения об ошибке PC-BSD GenericName[sr]=PC-BSD alat za izveštaj o greškama GenericName[sv]=PC-BSD felrapporteringsverktyg GenericName[uk]=Інструмент повідомлення про вади PC-BSD GenericName[vi]=PC-BSD công cụ báo cáo lỗi bị GenericName[zh_CN]=PC-BSD 缺陷汇报工具 +GenericName[zh_HK]=PC-BSD 錯誤回報工具 +GenericName[zh_TW]=PC-BSD 錯誤回報工具 diff --git a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_de.ts b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_de.ts index 46656d5a6..c3a7897cd 100644 --- a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_de.ts +++ b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_de.ts @@ -9,7 +9,7 @@ Software and updates - Software und Updates + Anwendungen und Aktualisierungen System management diff --git a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_pt_BR.ts b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_pt_BR.ts index 30d19f477..94d8f95db 100644 --- a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_pt_BR.ts +++ b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_pt_BR.ts @@ -5,7 +5,7 @@ MainWnd PCBSD Control Panel - Panel de Controle do PCBSD + Painel de Controle do PCBSD Software and updates @@ -13,7 +13,7 @@ System management - Geremciamento do sistema + Gerenciamento do sistema Hardware @@ -23,10 +23,6 @@ Networking Rede - - Desktop environment - Ambiente Desktop - Tools Ferramentas @@ -49,7 +45,7 @@ Enlightenment - Enlightenmen + Enlightenment XFCE @@ -57,16 +53,12 @@ unsupported - Não suportados + não suportado (current) (atual) - - Unsupported DE - Desktop não suportado - (All installed) (Todos os instalados) @@ -99,5 +91,13 @@ What do you want to configure? O que você quer configurar? + + Desktop environment + Ambiente de trabalho + + + Unsupported DE + Ambiente de trabalho não suportado + diff --git a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_ro.ts b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_ro.ts index f23380bac..4c981d5dd 100644 --- a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_ro.ts +++ b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_ro.ts @@ -5,123 +5,99 @@ MainWnd PCBSD Control Panel - - + Panou de control PCBSD Software and updates - - + Software și actualizări System management - - + Sistemul de management Hardware - - + Hardware Networking - - + Rețelistică Desktop environment - - + Mediu grafic Tools - - + Instrumente All - - + Toate KDE - - + KDE LXDE - - + LXDE Gnome - - + Gnome Enlightenment - - + Enlightenment XFCE - - + XFCE unsupported - - + nesuportate (current) - - + (curent) Unsupported DE - - + Medii grafice nesuportate (All installed) - - + (Toate instalate) (KDE) - - + (KDE) (LXDE) - - + (LXDE) (Gnome) - - + (Gnome) (Enlightenment) - - + (Enlightenment) (XFCE) - - + (XFCE) Reading items... - - + Citirea elementelor... What do you want to configure? - - + Ce doriți să configurați? diff --git a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_zh_CN.ts b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_zh_CN.ts index 4bd7df6f9..43d9b5572 100644 --- a/src-qt4/pc-controlpanel/i18n/pc-controlpanel_zh_CN.ts +++ b/src-qt4/pc-controlpanel/i18n/pc-controlpanel_zh_CN.ts @@ -97,8 +97,7 @@ What do you want to configure? - 您想要配置什么? - + 您想要配置什么? diff --git a/src-qt4/pc-controlpanel/items/de/gnome-alecarte.desktop b/src-qt4/pc-controlpanel/items/de/gnome-alecarte.desktop index 8ee8fbad5..156250ef8 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-alecarte.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-alecarte.desktop @@ -152,7 +152,7 @@ Comment[hu]=A főmenüben megjelenő alkalmazások módosítása Comment[hy]=Ընտրել աշխատածրագրերը, որոնք ցուցադրվելու են գլխավոր մենյուում Comment[id]=Mengubah aplikasi yang ditampilkan pada menu utama Comment[io]=Chanjez quin programi montresas en la precipua menuo -Comment[it]=Cambia quali applicazioni vengono mostrate nel menu principale +Comment[it]=Modificare le applicazioni mostrate nel menu principale Comment[ja]=メインメニューに表示するアプリケーションを選択する Comment[ka]=ძირითად მენიუში პროგრამების მართვა, შესაძლებელია მათი დამალვა ან ჩვენება Comment[kk]=Бас мәзірде көрсетілген қолданбаларды таңдау @@ -169,7 +169,7 @@ Comment[mr]=मुख्य मेन्यु मध्ये कुठले Comment[ms]=Tukar aplikasi mana yang akan ditunjukkan pada menu utama Comment[nb]=Endrie hvilke programmer som vises i hovedmenyen Comment[nds]=Programme de Hööftmenü todeelen -Comment[nl]=Bepaal welke toepassingen in het hoofdmenu staan +Comment[nl]=Verander welke toepassingen er in het hoofdmenu worden getoond Comment[nn]=Endra kva program som vert viste i hovudmenyen Comment[oc]=Modificar las aplicacions visualizadas dins lo menut principal Comment[or]=ମୁଖ୍ୟ ତାଲିକାରେ ଦର୍ଶାଯାଇଥିବା ପ୍ରୟୋଗଗୁଡିକୁ ପରିବର୍ତ୍ତନ କରନ୍ତୁ @@ -178,7 +178,7 @@ Comment[pl]=Modyfikuj listę aplikacji wyświetlanych w menu głównym Comment[ps]=په ارې غورنۍ کې د ښودلو لپاره کاريالونه بدلول Comment[pt]=Alterar que aplicações são apresentadas no menu principal Comment[pt_BR]=Mudar quais aplicativos são exibidos no menu principal -Comment[ro]=Schimbati aplicatiile afişate în meniul principal +Comment[ro]=Schimbați care aplicații sunt afișate în meniul principal Comment[ru]=Изменить какие приложения показаны в главном меню Comment[sk]=Zmeniť aplikácie zobrazované v hlavnom menu Comment[sl]=Določitev programov, ki so prikazani v osnovnem meniju diff --git a/src-qt4/pc-controlpanel/items/de/gnome-appearance-properties.desktop b/src-qt4/pc-controlpanel/items/de/gnome-appearance-properties.desktop index 0ee45bfa9..33d975c59 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-appearance-properties.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-appearance-properties.desktop @@ -50,7 +50,7 @@ Name[hr]=Izgled Name[hu]=Megjelenés Name[hy]=Արտաքին տեսք Name[id]=Penampilan -Name[it]=Apparenza +Name[it]=Aspetto Name[ja]=表示 Name[ka]=გარემოს იერსახე Name[kk]=Сыртқы түрі @@ -134,7 +134,7 @@ Comment[hr]=Prilagodite izgled radne površine Comment[hu]=Az asztali környezet megjelenésének személyre szabása Comment[hy]=Ձևափոխել աշխատանքային սեղանի տեսքը Comment[id]=Menyesuaikan tampilan desktop -Comment[it]=Modifica il look del desktop +Comment[it]=Personalizza l'aspetto del desktop Comment[ja]=デスクトップの外見をカスタマイズする Comment[ka]=სამუშაო მაგიდის ხედის გალამაზება Comment[kn]=ಗಣಕತೆರೆಯನ್ನು ನೋಟವನ್ನು ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಬದಲಾಯಿಸಿ @@ -156,7 +156,7 @@ Comment[pa]=ਡੈਸਕਟਾਪ ਲਈ ਪਸੰਦੀਦਾ ਦਿੱਖ Comment[pl]=Dostosuj wygląd i zachowanie pulpitu Comment[pt]=Personalizar a aparência do ambiente de trabalho Comment[pt_BR]=Personalizar o visual do desktop -Comment[ro]=Personalizează aspectul spațiului de lucru +Comment[ro]=Personalizarea aspectului mediului grafic Comment[ru]=Настроить внешний вид рабочего стола Comment[sk]=Upraviť vzhľad obrazovky Comment[sl]=Prilagajanje videza namizja diff --git a/src-qt4/pc-controlpanel/items/de/gnome-at-properties.desktop b/src-qt4/pc-controlpanel/items/de/gnome-at-properties.desktop index 6cac9f8ec..d1fbef5f9 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-at-properties.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-at-properties.desktop @@ -61,7 +61,7 @@ Name[mn]=Туслах чанарын технологиуд Name[mr]=सहाय्यक तंत्रज्ञाण Name[ms]=Aplikasi Teknologi Penolong Name[nb]=Hjelpeteknologier -Name[nl]=Ondersteunende technologie +Name[nl]=Ondersteunende technologieën Name[nn]=Hjelpeteknologi Name[oc]=Espleches d'accessibilitat Name[or]=ସହକାରୀ ପ୍ରଯୁକ୍ତିବିଜ୍ଞାନ @@ -69,7 +69,7 @@ Name[pa]=ਸਹਾਇਕ ਤਕਨਾਲੋਜੀ ਯੋਗ Name[pl]=Narzędzia wspomagające Name[pt]=Tecnologias Assistivas Name[pt_BR]=Tecnologias assistivas -Name[ro]=Tehnologii asistative +Name[ro]=Tehnologii asistență Name[ru]=Вспомогательные технологии Name[sk]=Asistenčné technológie Name[sl]=Pomožne tehnologije @@ -124,7 +124,7 @@ Comment[hr]=Odaberite koje značajke pristupačnosti omogućiti pri vašoj prija Comment[hu]=A bejelentkezéskor bekapcsolandó akadálymentesítési szolgáltatások kiválasztása Comment[hy]=Ընտրել, թե հասանելի որ հատկությունները ակտիվացնել մուտքի ժամանակ Comment[id]=Pilih fitur aksesibilitas yang diaktifkan saat Anda login -Comment[it]=Scegli quali funzioni di accessibilità abilitare quando fai il login +Comment[it]=Scegli quali funzioni di accessibilità abilitare quando effettui il log in Comment[ja]=ログイン時に有効にするユーザー補助機能を選択する Comment[kn]=ನೀವು ಪ್ರವೇಶಿಸಿದಾಗ ಯಾವ ನಿಲುಕಣಾ ಸವಲತ್ತುಗಳನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕು ಎಂದು ಆಯ್ಕೆ ಮಾಡಿ Comment[ko]=로그인할 때 활성화할 접근성 기능을 설정 @@ -143,7 +143,7 @@ Comment[pa]=ਜਦੋਂ ਤੁਸੀਂ ਲਾਗ ਕਰੋ ਤਾਂ ਅਸੈ Comment[pl]=Wybierz które funkcje wspomagające dostęp będą włączane po zalogowaniu Comment[pt]=Seleccionar que funcionalidades de acessibilidade activar ao iniciar sessão Comment[pt_BR]=Escolha quais catacterísticas de acessibilidade habilitar quando você se logar -Comment[ro]=Alegeți ce opțiuni de accesibilitate să fie activate la autentificare +Comment[ro]=Alegerea caracteristicilor de accesibilitate care sunt permise la autentificare Comment[ru]=Выберите специальные возможности, включенные при Вашем входе Comment[sk]=Vybrať ktoré sprístupnenia sa zapnú po prihlásení Comment[sl]=Izbor pomožnih tehnologij, ki naj se omogočijo ob zagonu diff --git a/src-qt4/pc-controlpanel/items/de/gnome-default-applications.desktop b/src-qt4/pc-controlpanel/items/de/gnome-default-applications.desktop index d92a157a0..71d90780f 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-default-applications.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-default-applications.desktop @@ -54,7 +54,7 @@ Name[hu]=Kedvelt alkalmazások Name[hy]=Նախընտրելի ծրագրեր Name[id]=Aplikasi yang utamakan Name[is]=Valin forrit -Name[it]=Applicazioni predefinite +Name[it]=Applicazioni Preferite Name[ja]=優先するアプリケーション Name[ka]=სასურველი პროგრამები Name[kk]=Таңдамалы қолданбалар @@ -73,7 +73,7 @@ Name[ms]=Aplikasi Digemari Name[nb]=Forvalgte programmer Name[nds]=Leevste Programme Name[ne]=रूचाइएका अनुप्रयोगहरू -Name[nl]=Voorkeurtoepassingen +Name[nl]=Voorkeurstoepassingen Name[nn]=Fortrukne program Name[nso]=Ditirišo tše Ratwago Name[oc]=Aplicacions preferidas @@ -146,7 +146,7 @@ Comment[hu]=Alapértelmezett alkalmazások kiválasztása Comment[hy]=Ընտրել նախնական ծրագրերը Comment[id]=Pilih aplikasi pilihan Anda Comment[is]=Veldu sjálfgefin forrit -Comment[it]=Scegli le tue applicazioni predefinite +Comment[it]=Selezione delle applicazioni predefinite Comment[ja]=常用するアプリケーションを選択する Comment[ka]=ნაგულისხმები პროგრამების ამორჩევა Comment[kn]=ನಿಮ್ಮ ಪೂರ್ವನಿಯೋಜಿತ ಅನ್ವಯಗಳನ್ನು ಆರಿಸಿ diff --git a/src-qt4/pc-controlpanel/items/de/gnome-gconf-editor.desktop b/src-qt4/pc-controlpanel/items/de/gnome-gconf-editor.desktop index dce4507f1..a0ca7ae7d 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-gconf-editor.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-gconf-editor.desktop @@ -10,90 +10,6 @@ X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gconf-editor X-GNOME-Bugzilla-Component=general X-GNOME-Bugzilla-Version=2.32.0 -Comment=Directly edit your entire configuration database -Comment[af]=Direk wysig jou hele opset databasis -Comment[ar]=تحرير مباشر لإعدادات قاعدة البيانات -Comment[as]=আপোনাৰ সম্পূৰ্ণ বিন্যাস তথ্যভঁৰাল পোনেপোনে সম্পাদন কৰক -Comment[ast]=Edite direutamente la so base de datos de configuración completa -Comment[az]=Birbaşa bütün quraşdırma verilənlər bazasını düzəlt -Comment[be@latin]=Naŭprost redahuj bazu naładaŭ -Comment[be]=Наўпрост рэдагуе ўсю базу даньняў наладак -Comment[bg]=Директно редактиране на цялата конфигурационна база данни -Comment[bn]=তোমার সম্পূর্ণ কনফিগারেশন ডাটাবেস সরাসরি সম্পাদন কর -Comment[bn_IN]=সম্পূর্ণ কনফিগারেশন ডাটাবেস সরাসরি সম্পাদনা করুন -Comment[bs]=Neposredno uredite celokupnu bazu podataka podešavanja -Comment[ca@valencia]=Edita directament la base de dades de la configuració sencera -Comment[ca]=Edita directament la base de dades de la configuració sencera -Comment[cs]=Přímo upravovat celou databázi s nastavením -Comment[cy]=Golygu'ch storfa cyfluniad yn uniongyrchol -Comment[da]=Rediger hele din indstillingsdatabase direkte -Comment[de]=Konfigurationsdatenbank direkt bearbeiten -Comment[dz]=ཐད་ཀར་དུ་ ཁྱོད་རའི་རིམ་སྒྲིག་གནད་སྡུད་ཡོངས་རྫོགས་ ཞུན་དག་རྐྱབས། -Comment[el]=Επεξεργαστείτε απευθείας ολόκληρη τη βάση δεδομένων παραμέτρων σας -Comment[en@shaw]=𐑛𐑲𐑮𐑧𐑒𐑑𐑤𐑦 𐑧𐑛𐑦𐑑 𐑿𐑼 𐑧𐑯𐑑𐑲𐑼 𐑒𐑩𐑯𐑓𐑦𐑜𐑘𐑼𐑱𐑖𐑩𐑯 𐑛𐑱𐑑𐑩𐑚𐑱𐑕 -Comment[en_CA]=Directly edit your entire configuration database -Comment[en_GB]=Directly edit your entire configuration database -Comment[en_ZA]=Directly edit your entire configuration database -Comment[es]=Editar directamente toda la base de datos de configuración -Comment[et]=Muuda otse kogu konfiguratsiooni andmebaasi -Comment[eu]=Editatu zuzenean konfigurazioaren datu-base osoa -Comment[fa]=به طور مستقیم تنظیمات پایگاه داده کل خود را ویرایش کنید -Comment[fi]=Muokkaa suoraan koko asetustietokantaasi -Comment[fr]=Éditer directement la configuration entière de votre base de données -Comment[fr_CA]=Éditer directement la configuration entière de votre base de données -Comment[gl]=Edite directamente toda a súa base de datos de configuración -Comment[gu]=તમારા આખા ડેટાબેઝની રુપરેખામાં સીધો ફેરફાર કરો -Comment[he]=ערוך את נתוני כלל ההגדרות -Comment[hi]=आपके सम्पूर्ण कॉन्फ़िगरेशन डेटाबेस को सीधे संपादित करें -Comment[hr]=Neposredno uredite cjeloukupnu bazu podataka postavki -Comment[hu]=A konfigurációs adatbázis közvetlen szerkesztése -Comment[id]=Langsung menyunting seluruh database konfigurasi Anda -Comment[it]=Modifica direttamente l'intero database di configurazione -Comment[ja]=設定データベース全体を直接編集する -Comment[ka]=კონფიგურაციის მონაცემთა ბაზის პირდაპირი რედაქტირება -Comment[kn]=ನೇರವಾಗಿ ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಸಂರಚನಾ ದತ್ತಸಂಚಯವನ್ನು ಸಂಪಾದಿಸಿ -Comment[ko]=전체 설정 데이터베이스를 직접 수정 -Comment[li]=De ganse kóngfiggerasie-database direk bewirke -Comment[lt]=Tiesiogiai redaguoti visą konfigūracijos duomenų bazę -Comment[lv]=Pa tiešo rediģē visu konfigurācijas datubāzi -Comment[mai]=अपन सम्पूर्ण बिन्यास डाटाबेसकेँ सीधे संपादित करू -Comment[mg]=Manova avy hatrany ny soratra fototry ny kirakiranao manontolo -Comment[mk]=Директно изменување на целосната база на конфигурација -Comment[ml]=താങ്കളുടെ കോണ്‍ഫിഗറേഷന്‍ ഡേറ്റാബെയ്സ് മുഴുവനും ഒന്നിച്ച് നേരിട്ട് മാറ്റം വരുത്തുക -Comment[mn]=Тохируулгын өгөгдлүүдийг нийтээр нь шууд засварлах -Comment[mr]=आपल्या सम्पूर्ण संयोजना डाटाबेस मध्ये थेट बदल करा -Comment[ms]=Edit keseluruhan pangkalandata konfigurasi anda. -Comment[nb]=Rediger hele konfigurasjonsdatabasen direkte -Comment[ne]=तपाईँको सम्पूर्ण कन्फिगरेसन डाटावेश प्रतक्ष रूपमा सम्पादन गर्नुहोस् -Comment[nl]=Verander direct uw configuratie-gegevensbank -Comment[nn]=Rediger heile oppsettsdatabasen direkte -Comment[oc]=Editar directament tota vòstra basa de donadas de configuracion -Comment[or]=ସିଧାସଳଖ ଭାବରେ ସମସ୍ତ ବିନ୍ଯାସ ତଥ୍ଯଧାର ସମ୍ପାଦନ କରନ୍ତୁ -Comment[pa]=ਤੁਸੀ ਆਪਣੀ ਪੂਰੇ ਸੰਰਚਨਾ ਡਾਟਾਬੇਸ ਨੂੰ ਸੋਧ ਸਕਦੇ ਹੋ -Comment[pl]=Bezpośrednia edycja całej bazy danych konfiguracji -Comment[ps]=خپل ټول سمبالګر توکبنسټ سم کړﺉ -Comment[pt]=Edite directamente toda a sua base de dados de configuração -Comment[pt_BR]=Editar diretamente seu banco de dados de configuração inteiro -Comment[ro]=Editează direct întreaga bază de date cu configurări -Comment[ru]=Непосредственно редактировать свои конфигурации базы данных -Comment[sk]=Upraviť ľubovolné nastavenie priamo v databáze -Comment[sl]=Neposredno urejanje celotne zbirke podatkov nastavitev -Comment[sq]=Ndrysho drejtpërsëdrejti të gjithë databazën e konfigurimit -Comment[sr@latin]=Neposredno uredite vašu bazu sa podešavanjima -Comment[sr]=Neposredno uredite celokupnu bazu podataka podešavanja -Comment[sv]=Direkt redigera hela konfigurationsdatabasen -Comment[ta]=உங்கள் ஒட்டுமொத்த வடிவமைப்பையும் நேரடியாக திருத்தலாம் -Comment[te]=నీ రూపకరణ దత్తాంశస్థానమును నేరుగా సరిచేయి -Comment[tg]=Танзимоти додаҳои маълумотро бевосита таҳрир кунед -Comment[th]=แก้ไขฐานข้อมูลค่าตั้งของคุณโดยตรง -Comment[tr]=Doğrudan tüm yapılandırma veritabanını düzenleyin -Comment[ug]=سەپلىمە ساندانىنى بىۋاستە تەھرىرلەش -Comment[uk]=Безпосередньо редагувати базу налаштувань -Comment[vi]=Trực tiếp chỉnh sửa toàn cơ sở dữ liệu cấu hình của bạn -Comment[xh]=Hlela ngqo yonke i-database yakho yokumiselwa kwenkqubo yekhompyutha -Comment[zh_CN]=直接编辑整个配置数据库 -Comment[zh_HK]=直接編輯所有設定資料 -Comment[zh_TW]=直接編輯所有組態資料 Name=Configuration Editor Name[af]=Opset Redakteur Name[am]=የማስተካከያው አራሚ @@ -183,3 +99,87 @@ Name[xh]=Umhleli wokuMiselwa kweNkqubo yeKhompyutha Name[zh_CN]=配置编辑器 Name[zh_HK]=設定編輯器 Name[zh_TW]=組態編輯器 +Comment=Directly edit your entire configuration database +Comment[af]=Direk wysig jou hele opset databasis +Comment[ar]=تحرير مباشر لإعدادات قاعدة البيانات +Comment[as]=আপোনাৰ সম্পূৰ্ণ বিন্যাস তথ্যভঁৰাল পোনেপোনে সম্পাদন কৰক +Comment[ast]=Edite direutamente la so base de datos de configuración completa +Comment[az]=Birbaşa bütün quraşdırma verilənlər bazasını düzəlt +Comment[be@latin]=Naŭprost redahuj bazu naładaŭ +Comment[be]=Наўпрост рэдагуе ўсю базу даньняў наладак +Comment[bg]=Директно редактиране на цялата конфигурационна база данни +Comment[bn]=তোমার সম্পূর্ণ কনফিগারেশন ডাটাবেস সরাসরি সম্পাদন কর +Comment[bn_IN]=সম্পূর্ণ কনফিগারেশন ডাটাবেস সরাসরি সম্পাদনা করুন +Comment[bs]=Neposredno uredite celokupnu bazu podataka podešavanja +Comment[ca@valencia]=Edita directament la base de dades de la configuració sencera +Comment[ca]=Edita directament la base de dades de la configuració sencera +Comment[cs]=Přímo upravovat celou databázi s nastavením +Comment[cy]=Golygu'ch storfa cyfluniad yn uniongyrchol +Comment[da]=Rediger hele din indstillingsdatabase direkte +Comment[de]=Konfigurationsdatenbank direkt bearbeiten +Comment[dz]=ཐད་ཀར་དུ་ ཁྱོད་རའི་རིམ་སྒྲིག་གནད་སྡུད་ཡོངས་རྫོགས་ ཞུན་དག་རྐྱབས། +Comment[el]=Επεξεργαστείτε απευθείας ολόκληρη τη βάση δεδομένων παραμέτρων σας +Comment[en@shaw]=𐑛𐑲𐑮𐑧𐑒𐑑𐑤𐑦 𐑧𐑛𐑦𐑑 𐑿𐑼 𐑧𐑯𐑑𐑲𐑼 𐑒𐑩𐑯𐑓𐑦𐑜𐑘𐑼𐑱𐑖𐑩𐑯 𐑛𐑱𐑑𐑩𐑚𐑱𐑕 +Comment[en_CA]=Directly edit your entire configuration database +Comment[en_GB]=Directly edit your entire configuration database +Comment[en_ZA]=Directly edit your entire configuration database +Comment[es]=Editar directamente toda la base de datos de configuración +Comment[et]=Muuda otse kogu konfiguratsiooni andmebaasi +Comment[eu]=Editatu zuzenean konfigurazioaren datu-base osoa +Comment[fa]=به طور مستقیم تنظیمات پایگاه داده کل خود را ویرایش کنید +Comment[fi]=Muokkaa suoraan koko asetustietokantaasi +Comment[fr]=Éditer directement la configuration entière de votre base de données +Comment[fr_CA]=Éditer directement la configuration entière de votre base de données +Comment[gl]=Edite directamente toda a súa base de datos de configuración +Comment[gu]=તમારા આખા ડેટાબેઝની રુપરેખામાં સીધો ફેરફાર કરો +Comment[he]=ערוך את נתוני כלל ההגדרות +Comment[hi]=आपके सम्पूर्ण कॉन्फ़िगरेशन डेटाबेस को सीधे संपादित करें +Comment[hr]=Neposredno uredite cjeloukupnu bazu podataka postavki +Comment[hu]=A konfigurációs adatbázis közvetlen szerkesztése +Comment[id]=Langsung menyunting seluruh database konfigurasi Anda +Comment[it]=Modifica direttamente l'intero database di configurazione +Comment[ja]=設定データベース全体を直接編集する +Comment[ka]=კონფიგურაციის მონაცემთა ბაზის პირდაპირი რედაქტირება +Comment[kn]=ನೇರವಾಗಿ ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಸಂರಚನಾ ದತ್ತಸಂಚಯವನ್ನು ಸಂಪಾದಿಸಿ +Comment[ko]=전체 설정 데이터베이스를 직접 수정 +Comment[li]=De ganse kóngfiggerasie-database direk bewirke +Comment[lt]=Tiesiogiai redaguoti visą konfigūracijos duomenų bazę +Comment[lv]=Pa tiešo rediģē visu konfigurācijas datubāzi +Comment[mai]=अपन सम्पूर्ण बिन्यास डाटाबेसकेँ सीधे संपादित करू +Comment[mg]=Manova avy hatrany ny soratra fototry ny kirakiranao manontolo +Comment[mk]=Директно изменување на целосната база на конфигурација +Comment[ml]=താങ്കളുടെ കോണ്‍ഫിഗറേഷന്‍ ഡേറ്റാബെയ്സ് മുഴുവനും ഒന്നിച്ച് നേരിട്ട് മാറ്റം വരുത്തുക +Comment[mn]=Тохируулгын өгөгдлүүдийг нийтээр нь шууд засварлах +Comment[mr]=आपल्या सम्पूर्ण संयोजना डाटाबेस मध्ये थेट बदल करा +Comment[ms]=Edit keseluruhan pangkalandata konfigurasi anda. +Comment[nb]=Rediger hele konfigurasjonsdatabasen direkte +Comment[ne]=तपाईँको सम्पूर्ण कन्फिगरेसन डाटावेश प्रतक्ष रूपमा सम्पादन गर्नुहोस् +Comment[nl]=Verander direct uw configuratie-gegevensbank +Comment[nn]=Rediger heile oppsettsdatabasen direkte +Comment[oc]=Editar directament tota vòstra basa de donadas de configuracion +Comment[or]=ସିଧାସଳଖ ଭାବରେ ସମସ୍ତ ବିନ୍ଯାସ ତଥ୍ଯଧାର ସମ୍ପାଦନ କରନ୍ତୁ +Comment[pa]=ਤੁਸੀ ਆਪਣੀ ਪੂਰੇ ਸੰਰਚਨਾ ਡਾਟਾਬੇਸ ਨੂੰ ਸੋਧ ਸਕਦੇ ਹੋ +Comment[pl]=Bezpośrednia edycja całej bazy danych konfiguracji +Comment[ps]=خپل ټول سمبالګر توکبنسټ سم کړﺉ +Comment[pt]=Edite directamente toda a sua base de dados de configuração +Comment[pt_BR]=Editar diretamente seu banco de dados de configuração inteiro +Comment[ro]=Editați direct configurația întregii baze de date +Comment[ru]=Непосредственно редактировать свои конфигурации базы данных +Comment[sk]=Upraviť ľubovolné nastavenie priamo v databáze +Comment[sl]=Neposredno urejanje celotne zbirke podatkov nastavitev +Comment[sq]=Ndrysho drejtpërsëdrejti të gjithë databazën e konfigurimit +Comment[sr@latin]=Neposredno uredite vašu bazu sa podešavanjima +Comment[sr]=Neposredno uredite celokupnu bazu podataka podešavanja +Comment[sv]=Direkt redigera hela konfigurationsdatabasen +Comment[ta]=உங்கள் ஒட்டுமொத்த வடிவமைப்பையும் நேரடியாக திருத்தலாம் +Comment[te]=నీ రూపకరణ దత్తాంశస్థానమును నేరుగా సరిచేయి +Comment[tg]=Танзимоти додаҳои маълумотро бевосита таҳрир кунед +Comment[th]=แก้ไขฐานข้อมูลค่าตั้งของคุณโดยตรง +Comment[tr]=Doğrudan tüm yapılandırma veritabanını düzenleyin +Comment[ug]=سەپلىمە ساندانىنى بىۋاستە تەھرىرلەش +Comment[uk]=Безпосередньо редагувати базу налаштувань +Comment[vi]=Trực tiếp chỉnh sửa toàn cơ sở dữ liệu cấu hình của bạn +Comment[xh]=Hlela ngqo yonke i-database yakho yokumiselwa kwenkqubo yekhompyutha +Comment[zh_CN]=直接编辑整个配置数据库 +Comment[zh_HK]=直接編輯所有設定資料 +Comment[zh_TW]=直接編輯所有組態資料 diff --git a/src-qt4/pc-controlpanel/items/de/gnome-keybinding-properies.desktop b/src-qt4/pc-controlpanel/items/de/gnome-keybinding-properies.desktop index 29ec988a2..4e578ac7c 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-keybinding-properies.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-keybinding-properies.desktop @@ -55,7 +55,7 @@ Name[hu]=Gyorsbillentyűk Name[hy]=Ստեղնաշարի ստեղների համադրություն Name[id]=Cara Pintas Keyboard Name[is]=Flýtilyklar -Name[it]=Scorciatoie di Tastiera +Name[it]=Scorciatoie da Tastiera Name[ja]=キーボードショートカット Name[ka]=სხარტი კლავიშები Name[kk]=Пернетақта жарлықтары @@ -83,7 +83,7 @@ Name[pa]=ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ Name[pl]=Skróty klawiaturowe Name[pt]=Atalhos de Teclado Name[pt_BR]=Atalhos de teclado -Name[ro]=Scurtături tastatură +Name[ro]=Comenzi rapide tastatură Name[ru]=Сочетания клавиш Name[si]=යතුරු පුවරු කෙටි මාර්‍ඟ Name[sk]=Klávesové skratky @@ -150,7 +150,7 @@ Comment[hu]=Gyorsbillentyűk parancsokhoz rendelése Comment[hy]=Նշանակել ստեղների համադրություն հրամանների համար Comment[id]=Menetapkan tombol cara pintas untuk perintah-perintah Comment[is]=Tengja flýtilykla við skipanir -Comment[it]=Crea scorciatoie di tastiera per l'esecuzione di comandi +Comment[it]=Assegnare scorciatoie ai comandi Comment[ja]=ショートカットキーをコマンドに割り当てる Comment[ka]=ბრძანებისთვის სხარტი კლავიშის მინიჭება Comment[kn]=ಆಜ್ಞೆಗಳಿಗೆ ಶಾರ್ಟ್-ಕಟ್ ಕೀಲಿಗಳನ್ನು ನಿಯೋಜಿಸು @@ -175,7 +175,7 @@ Comment[pa]=ਕਮਾਡਾਂ ਨੂੰ ਸ਼ਾਰਟਕੱਟ ਮੁਹੱਈ Comment[pl]=Przypisywanie klawiszy skrótów do poleceń Comment[pt]=Associar atalhos de teclado a comandos Comment[pt_BR]=Associar teclas de atalhos para comandos -Comment[ro]=Asociați combinații comenzilor des utilizate +Comment[ro]=Atribuirea tastelor de scurtătură pentru comenzi Comment[ru]=Назначение сочетания клавиш для команд Comment[sk]=Priradiť klávesové skratky vybraným aplikáciam Comment[sl]=Ukazom določi tipkovne bližnjice diff --git a/src-qt4/pc-controlpanel/items/de/gnome-obconf.desktop b/src-qt4/pc-controlpanel/items/de/gnome-obconf.desktop index a4d7745eb..55578cc78 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-obconf.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-obconf.desktop @@ -26,13 +26,14 @@ Name[he]=הגדרות Openbox Name[hr]=Openbox upravitelj postavkama Name[hu]=Openbox konfigurációkezelő Name[id]=Pengatur Konfigurasi Openbox -Name[it]=Configurazione di Openbox +Name[it]=Gestore della Configurazione di Openbox Name[ja]=Openbox の設定マネージャー Name[ko]=Openbox 설정 관리자 Name[mn]=Опенбокс тохируулга хийх удирдагч Name[nl]=Openbox configuratiebeheerder Name[pl]=Konfiguracja Openbox Name[pt_BR]=Gerenciador de Configurações do Openbox +Name[ro]=Configurarea managerului de ferestre Openbox Name[ru]=Настройка конфигурации Openbox Name[sk]=Správca nastavení Openbox Name[sr]=Upravljanje Openbox podešavanja @@ -64,13 +65,14 @@ Comment[he]=מנהל הגדרות Openbox Comment[hr]=Upravljajte Openbox postavkama Comment[hu]=Openbox konfigurációkezelő Comment[id]=Pengatur konfigurasi Openbox -Comment[it]=Configurazione di Openbox +Comment[it]=Gestore della configurazione di openbox Comment[ja]=Openbox の設定マネージャー Comment[ko]=Openbox 설정 관리자 Comment[mn]=Опенбокс тохируулга хийх удирдагч Comment[nl]=Openbox configuratiebeheerder Comment[pl]=menadżer konfiguracji Openbox Comment[pt_BR]=Gerenciador de configurações do Openbox +Comment[ro]=Configurarea managerului de ferestre Openbox Comment[ru]=Настройка конфигурации Openbox Comment[sk]=Správca nastavení Openbox Comment[sr]=Upravljanje Openbox podešavanja diff --git a/src-qt4/pc-controlpanel/items/de/gnome-screensaver.desktop b/src-qt4/pc-controlpanel/items/de/gnome-screensaver.desktop index 7aca8d908..b1af8f62b 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-screensaver.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-screensaver.desktop @@ -29,13 +29,14 @@ Name[fr]=Préférences de l'écran de veille Gnome Name[fr_CA]=Préférences de l'écran de veille Gnome Name[hr]=Postavke Gnome čuvara zaslona Name[hu]=Gnome képernyőkímélő beállításai -Name[it]=Preferenze Gnome Screensaver +Name[it]=Preferenze Screensaver Gnome Name[ja]=Gnome スクリーンセイバーの設定 Name[ko]=그놈 화면 보호기 설정 Name[mn]=ГНОМ дэлгэц хадгалагчийн тохиргоо Name[nl]=Voorkeuren van GNOME schermbeveiliging Name[pl]=Ustawienia wygaszacza ekranu Gnome Name[pt_BR]=Preferências do protetor de tela Gnome +Name[ro]=Preferințe Screensaver Gnome Name[ru]=Выбор экранной заставки Gnome Name[sr]=Podešavanja Gnome čuvara ekrana Name[sv]=Gnome skärmsläckare, Inställningar @@ -63,13 +64,14 @@ Comment[fr]=Changer les paramètres de l'écran de veille pour le bureau Gnome Comment[fr_CA]=Changer les paramètres de l'écran de veille pour le bureau Gnome Comment[hr]=Promijenite postavke čuvara zaslona za Gnome radnu površinu Comment[hu]=Gnome asztal képernyőkímélő beállításainak megváltoztatása -Comment[it]=Cambia le impostazioni dello screensaver per il Gnome desktop +Comment[it]=Cambia le impostazioni dello screensaver per il desktop Gnome Comment[ja]=Gnome デスクトップのスクリーンセイバー設定を変更します Comment[ko]=그놈 바탕화면의 화면 보호기 설정을 바꿉니다. Comment[mn]=ГНОМ горим дахь дэлгэц хадгалагчийн тохиргоог өөрчлөх Comment[nl]=Verander de schermbeveiligingsinstellingen voor de GNOME-werkomgeving Comment[pl]=Zmień ustawienia wygaszacza ekranu dla Gnome Comment[pt_BR]=Alterar as definições do protetor de tela para a área de trabalho Gnome +Comment[ro]=Modificare setării screensaver pentru mediul grafic Gnome Comment[ru]=Настройка изменения экранной заставки для рабочего стола Gnome Comment[sr]=Promenite podešavanja čuvara ekrana za Gnome radnu površinu Comment[sv]=Ändra skärmsläckare inställningar för Gnome desktop diff --git a/src-qt4/pc-controlpanel/items/de/gnome-session-properties.desktop b/src-qt4/pc-controlpanel/items/de/gnome-session-properties.desktop index dfc690960..84ae7514d 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-session-properties.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-session-properties.desktop @@ -48,7 +48,7 @@ Name[hi]=आरंभन अनुप्रयोग Name[hr]=Aplikacije pri podizanju Name[hu]=Indítópult Name[id]=Aplikasi Awalan -Name[it]=Applicazioni all'Avvio +Name[it]=Applicazioni di Avvio Name[ja]=スタートアップ Name[kn]=ಆರಂಭಿಕ ಅನ್ವಯಗಳು Name[ko]=시작 프로그램 @@ -59,7 +59,7 @@ Name[mn]=Эхэлж ачаалагдах хэрэглээний програм Name[mr]=आरंभिक अनुप्रयोग Name[nb]=Oppstartsprogrammer Name[nds]=Systemstartprogramme -Name[nl]=Opstart-toepassingen +Name[nl]=Opstarttoepassingen Name[nn]=Oppstartsprogram Name[or]=ପ୍ରାରମ୍ଭିକ ପ୍ରୟୋଗଗୁଡ଼ିକ Name[pa]=ਸ਼ੁਰੂਆਤੀ ਐਪਲੀਕੇਸ਼ਨ @@ -67,7 +67,7 @@ Name[pl]=Aplikacje startowe Name[ps]=پېل کاريالونه Name[pt]=Aplicações de Arranque Name[pt_BR]=Aplicações de inicialização -Name[ro]=Aplicatiile de startup +Name[ro]=Aplicații de startup Name[ru]=Запуск приложений Name[sk]=Aplikácie spúšťané pri štarte Name[sl]=Začetni programi @@ -122,7 +122,7 @@ Comment[hi]=चुनें कि कौन सा अनुप्रयोग Comment[hr]=Odaberite aplikacije koje će se pokrenuti kada se prijavite Comment[hu]=A bejelentkezéskor elindítandó alkalmazások kiválasztása Comment[id]=Pilih aplikasi yang ingin Anda jalankan saat login -Comment[it]=Seleziona quali applicazioni vuoi autoavviare al login +Comment[it]=Selezionare quali applicazioni avviare durante il log in Comment[ja]=ログイン時に起動するアプリケーションを選択 Comment[kn]=ನೀವು ಪ್ರವೇಶಿಸಿದಾಗ ಯಾವ ಅನ್ವಯವನ್ನು ಆರಂಭಿಸಬೇಕು ಎನ್ನುವುದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ Comment[ko]=로그인할 때 시작할 프로그램을 설정 @@ -139,7 +139,7 @@ Comment[pa]=ਚੁਣੋ ਕਿ ਕਿਹੜੀਆਂ ਐਪਲੀਕੇਸ਼ Comment[pl]=Wybierz, jakie aplikacje będą uruchamiane po zalogowaniu się Comment[pt]=Seleccione que aplicações arrancar ao iniciar uma sessão Comment[pt_BR]=Escolha quais aplicações devem iniciar quando você fizer login -Comment[ro]=Alegeţi ce aplicaţii sa porneasca la login +Comment[ro]=Alegeţi ce aplicaţii să pornească la autentificare Comment[ru]=Выберите приложения для запуска при Вашем входе Comment[sk]=Vybrať aplikácie spúšťané automaticky po prihlásení Comment[sl]=Izbor programov za samodejni zagon ob prijavi diff --git a/src-qt4/pc-controlpanel/items/de/gnome-window-properties.desktop b/src-qt4/pc-controlpanel/items/de/gnome-window-properties.desktop index 9b116d514..6239fd7a1 100755 --- a/src-qt4/pc-controlpanel/items/de/gnome-window-properties.desktop +++ b/src-qt4/pc-controlpanel/items/de/gnome-window-properties.desktop @@ -165,14 +165,14 @@ Comment[mn]=Цонхны төлөв байдлаа өөртөө тааруул Comment[mr]=पटल Comment[nb]=Egenskaper for vinduer Comment[ne]=तपाईँको सञ्झ्यालको गुणहरू सेट गर्नुहोस् -Comment[nl]=Stel venstereigenschappen in +Comment[nl]=Stel uw venstereigenschappen in Comment[nn]=Vel vindaugseigenskapar Comment[or]=ଆପଣଙ୍କର ଉଇଣ୍ଡୋ ବିଶେଷତାଗୁଡିକୁ ସ୍ଥିର କର Comment[pa]=ਆਪਣੀ ਵਿੰਡੋ ਵਿਸ਼ੇਸ਼ਤਾ ਦਿਓ Comment[pl]=Ustaw opcje Okien Comment[pt]=Defina as propriedades das janelas Comment[pt_BR]=Configure suas propriedades da janela -Comment[ro]=Definiți proprietățile ferestrelor +Comment[ro]=Setați proprietățile ferestrei Comment[ru]=Установить свойства окна Comment[sk]=Nastaviť vlastnosti okien Comment[sl]=Nastavite lastnosti oken diff --git a/src-qt4/pc-controlpanel/items/de/kde-sweeper.desktop b/src-qt4/pc-controlpanel/items/de/kde-sweeper.desktop index 8faed7373..a68d70389 100755 --- a/src-qt4/pc-controlpanel/items/de/kde-sweeper.desktop +++ b/src-qt4/pc-controlpanel/items/de/kde-sweeper.desktop @@ -71,7 +71,7 @@ Name[wa]=Schoveu (Sweeper) Name[x-test]=xxSweeperxx Name[zh_CN]=清理器 Name[zh_HK]=清道夫 -Name[zh_TW]=Sweeper +Name[zh_TW]=清道夫 GenericName=System Cleaner GenericName[af]=Stelsel Bestuurder GenericName[ar]=منظف النظام @@ -101,7 +101,7 @@ GenericName[hne]=सिसटम क्लीनर GenericName[hr]=Čistač Sustava GenericName[hu]=Rendszertisztító GenericName[id]=Pembersih Sistem -GenericName[it]=Pulizia del Sistema +GenericName[it]=System Cleaner GenericName[ja]=システムクリーナー GenericName[kk]=Жүйені тазалау GenericName[km]=កម្មវិធី​សម្អាត​ប្រព័ន្ធ @@ -117,7 +117,7 @@ GenericName[pa]=ਸਿਸਟਮ ਕਲੀਨਰ GenericName[pl]=Program do czyszczenia systemu z niepotrzebnych plików etc. GenericName[pt]=Limpeza do Sistema GenericName[pt_BR]=Limpador do sistema -GenericName[ro]=Curatare sistem +GenericName[ro]=Curățare sistem GenericName[ru]=Очистка системы GenericName[sk]=Vyčistiť systém GenericName[sl]=Čiščenje sistema diff --git a/src-qt4/pc-controlpanel/items/de/kde-systemsettings.desktop b/src-qt4/pc-controlpanel/items/de/kde-systemsettings.desktop index 372509152..036e75d73 100755 --- a/src-qt4/pc-controlpanel/items/de/kde-systemsettings.desktop +++ b/src-qt4/pc-controlpanel/items/de/kde-systemsettings.desktop @@ -75,7 +75,7 @@ Name[pa]=ਸਿਸਟਮ ਸੈਟਿੰਗ Name[pl]=Ustawienia Systemowe Name[pt]=Configuração do Sistema Name[pt_BR]=Configurações do sistema -Name[ro]=Configurări de sistem +Name[ro]=Setările sistemului Name[ru]=Настройки системы Name[se]=Vuogádatheivehusat Name[si]=පද්ධති සැකසුම් @@ -162,7 +162,7 @@ GenericName[pa]=ਸਿਸਟਮ ਸੈਟਿੰਗ GenericName[pl]=Ustawienia Systemowe GenericName[pt]=Configuração do Sistema GenericName[pt_BR]=Configurações do sistema -GenericName[ro]=Configurări de sistem +GenericName[ro]=Setările sistemului GenericName[ru]=Настройки системы GenericName[se]=Vuogádatheivehusat GenericName[si]=පද්ධති සැකසුම් diff --git a/src-qt4/pc-controlpanel/items/de/lxde-default-apps.desktop b/src-qt4/pc-controlpanel/items/de/lxde-default-apps.desktop index 5d6623f9e..0feeb4e5b 100644 --- a/src-qt4/pc-controlpanel/items/de/lxde-default-apps.desktop +++ b/src-qt4/pc-controlpanel/items/de/lxde-default-apps.desktop @@ -28,11 +28,11 @@ Name[he]=תוכנות מועדפות Name[hr]=Preferirane aplikacije Name[hu]=Kedvelt alkalmazások Name[id]=Aplikasi yang utamakan -Name[it]=Applicazioni predefinite +Name[it]=Applicazioni Preferite Name[ja]=優先するアプリケーション Name[ko]=기본 응용 프로그램 Name[mn]=Сонгосон хэрэглээний програмууд -Name[nl]=Voorkeurtoepassingen +Name[nl]=Voorkeurstoepassingen Name[pl]=Preferowane aplikacje Name[pt_BR]=Aplicações Preferenciais Name[ro]=Aplicaţii preferate diff --git a/src-qt4/pc-controlpanel/items/de/lxde-desktop-prefs.desktop b/src-qt4/pc-controlpanel/items/de/lxde-desktop-prefs.desktop index 560262409..db66c1f0f 100644 --- a/src-qt4/pc-controlpanel/items/de/lxde-desktop-prefs.desktop +++ b/src-qt4/pc-controlpanel/items/de/lxde-desktop-prefs.desktop @@ -30,6 +30,7 @@ Name[ko]=바탕화면 설정 Name[nl]=Bureaubladvoorkeuren Name[pl]=Opcje Pulpitu Name[pt_BR]=Preferências da área de trabalho +Name[ro]=Preferințe mediu grafic Name[ru]=Настройки рабочего стола Name[sr]=Podešavanja radne površine Name[sv]=Skrivbords Inställningar diff --git a/src-qt4/pc-controlpanel/items/de/lxde-lxappearance.desktop b/src-qt4/pc-controlpanel/items/de/lxde-lxappearance.desktop index 9dbf8afec..2d40c165c 100644 --- a/src-qt4/pc-controlpanel/items/de/lxde-lxappearance.desktop +++ b/src-qt4/pc-controlpanel/items/de/lxde-lxappearance.desktop @@ -30,6 +30,7 @@ Name[mn]=Харагдац болон мэдрэмжтэй байдлыг өөр Name[nl]=Pas uiterlijk en bediening aan Name[pl]=Dostosuj wygląd i styl Name[pt_BR]=Personalizar aparência +Name[ro]=Personalizare aspect și simț Name[ru]=Настройка внешнего вида и поведения Name[sr]=Podesite izgled radne površine Name[sv]=Anpassa Känsla och Utseende @@ -64,6 +65,7 @@ GenericName[mn]=Харагдац болон мэдрэмжтэй байдлыг GenericName[nl]=Pas uiterlijk en bediening aan GenericName[pl]=Dostosuj wygląd i styl GenericName[pt_BR]=Personalizar aparência +GenericName[ro]=Personalizare aspect și simț GenericName[ru]=Настройка внешнего вида и поведения GenericName[sr]=Podesite izgled radne površine GenericName[sv]=Anpassa Känsla och Utseende @@ -91,13 +93,14 @@ Comment[fr_CA]=Personnaliser l'aspect de votre bureau et des applications Comment[he]=התאמת חווית המשתמש בשולחן העבודה ותוכנות שונות Comment[hr]=Prilagodite izgled i dojam vaše radne površine i aplikacija Comment[hu]=A munkaasztal és az alkalmazások megjelenésének testreszabása -Comment[it]=Personalizza il Look and Feel del desktop e delle applicaziioni +Comment[it]=Personalizza il look and feel del desktop e delle applicazioni Comment[ja]=あなたのデスクトップやアプリケーションのルック&フィールを設定します Comment[ko]=데스크탑 및 응용 프로그램의 룩 앤드 필 사용자 정의 Comment[mn]=Өөртөө десктоп болон хэрэглээний програмын харагдац, мэдрэмжтэй байдлыг тохируулах Comment[nl]=Past uiterlijk en bediening aan van uw werkomgeving en toepassingen Comment[pl]=Dostosowuje wygląd i zachowanie pulpitu oraz aplikacji Comment[pt_BR]=Personaliza a aparência do seu desktop e aplicativos +Comment[ro]=Personalizarea aspectului și simțului mediului grafic și a aplicațiilor dumneavoastră Comment[ru]=Настройки внешнего вида рабочего стола и приложений Comment[sr]=Podesite izgled Vaše radne površine i programa Comment[sv]=Anpassa Känslan och Utseendet för ditt skrivbord och dina program diff --git a/src-qt4/pc-controlpanel/items/de/lxde-xscreensaver.desktop b/src-qt4/pc-controlpanel/items/de/lxde-xscreensaver.desktop index ce11dde6e..36675a764 100644 --- a/src-qt4/pc-controlpanel/items/de/lxde-xscreensaver.desktop +++ b/src-qt4/pc-controlpanel/items/de/lxde-xscreensaver.desktop @@ -30,6 +30,7 @@ Name[ko]=화면 보호기 설정 Name[nl]=Voorkeuren voor de schermbeveiliging Name[pl]=Opcje wygaszacza ekranu Name[pt_BR]=Preferências da Proteção de Tela +Name[ro]=Preferințe screensaver Name[ru]=Настройки экранной заставки Name[sr]=Podešavanja čuvara ekrana Name[sv]=Inställningar för skärmsläckare diff --git a/src-qt4/pc-controlpanel/items/de/xfce-session-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce-session-settings.desktop index 8d56d85f9..be2b6c42d 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-session-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-session-settings.desktop @@ -46,7 +46,7 @@ Name[nl]=Sessie en opstarten Name[pl]=Sesja i uruchamianie Name[pt]=Sessão e arranque Name[pt_BR]=Sessão e inicialização -Name[ro]=Sesiuni și pornire +Name[ro]=Sesiunea și Startup Name[ru]=Сессия и запуск Name[sk]=Sedenie a štart prostredia Name[sq]=Sesion dhe Nisje @@ -89,7 +89,7 @@ Comment[he]=התאם אישית את התחלת שולחן העבודה ומסך Comment[hr]=Prilagodi pokretanje radne površine i pozdravni ekran Comment[hu]=Az elinduló asztal és az indítókép személyre szabása Comment[id]=Sesuaikan awalan desktop dan layar awal -Comment[it]=Modifica la procedura di avvio del desktop e lo schermo di attesa +Comment[it]=Personalizza l'avvio del desktop e la schermata iniziale Comment[ja]=デスクトップの起動とスプラッシュスクリーンをカスタマイズする Comment[kk]=Жұмыс үстелінің қосылу мен сплэш экраның баптау Comment[ko]=데스크탑 시작과 스플래시 화면 사용자 정의 @@ -100,7 +100,7 @@ Comment[nl]=Aanpassen bureaublad-opstart en opstartscherm Comment[pl]=Dostosuj uruchamianie pulpitu i ekran powitalny Comment[pt]=Personalizar arranque do ambiente e ecrã inicial Comment[pt_BR]=Personalizar inicilização e tela de aberura do desktop -Comment[ro]=Personalizați inițializarea desktopului și tema de pornire +Comment[ro]=Particularizarea startupului mediului grafic și a ecranului de pornire Comment[ru]=Настройка запуска рабочего стола и заставки Comment[sk]=Upraviť štart prostredia a úvodnú obrazovku Comment[sq]=Përshtasni desktopin dhe skenën e siglës diff --git a/src-qt4/pc-controlpanel/items/de/xfce-settings-manager.desktop b/src-qt4/pc-controlpanel/items/de/xfce-settings-manager.desktop index dac53a943..375c6fd5d 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-settings-manager.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-settings-manager.desktop @@ -33,7 +33,7 @@ Name[he]=מנהל הגדרות Name[hr]=Upravitelj postavkama Name[hu]=Beállításkezelő Name[id]=Pengelola Aturan -Name[it]=Manager delle impostazioni +Name[it]=Gestore delle impostazioni Name[ja]=設定マネージャー Name[kk]=Баптаулар басқарушысы Name[ko]=설정 관리자 @@ -45,7 +45,7 @@ Name[pa]=ਸੈਟਿੰਗ ਮੈਨੇਜਰ Name[pl]=Menedżer ustawień Name[pt]=Gestor de definições Name[pt_BR]=Gerenciador de configurações -Name[ro]=Manager de opțiuni +Name[ro]=Manager setări Name[ru]=Менеджер настроек Name[si]=සැකසුම් කළමනාකරු Name[sk]=Správca nastavení @@ -87,7 +87,7 @@ Comment[he]=מנהל הגדרות גרפי עבור Xfce 4 Comment[hr]=Grafički upravitelj postavkama za Xfce 4 Comment[hu]=Grafikus beállításkezelő az Xfce 4-hez Comment[id]=Pengelola Aturan untuk Xfce 4 -Comment[it]=Manager delle impostazioni grafiche di Xfce 4 +Comment[it]=Gestore delle impostazioni grafiche per Xfce 4 Comment[ja]=Xfce4 の設定マネージャー Comment[kk]=Xfce 4 үшін баптауларды графикалық түзету сайманы Comment[ko]=Xfce4 그래픽 설정 관리자 @@ -99,7 +99,7 @@ Comment[pa]=Xfce ੪ ਲਈ ਗਰਾਫਿਕਲ ਸੈਟਿੰਗ ਮੈਨ Comment[pl]=Graficzny edytor ustawień dla Xfce 4 Comment[pt]=Gestor gráfico de definições do Xfce 4 Comment[pt_BR]=Editor Gráfico de configurações para o Xfce 4 -Comment[ro]=Manager grafic al opțiunilor Xfce 4 +Comment[ro]=Manager setări grafice pentru Xfce 4 Comment[ru]=Менеджер графических настроек для Xfce 4 Comment[si]=Xfce 4 සඳහා චිත්‍රක සැකසුම් කළමනාකරු Comment[sk]=Graficḱý správca nastavení pre Xfce 4 diff --git a/src-qt4/pc-controlpanel/items/de/xfce-ui-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce-ui-settings.desktop index 56bc0b4e6..c3faa79c7 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-ui-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-ui-settings.desktop @@ -37,7 +37,7 @@ Name[hr]=Izgled Name[hu]=Megjelenés Name[id]=Penampilan Name[is]=Útlit -Name[it]=Apparenza +Name[it]=Aspetto Name[ja]=表示 Name[kk]=Сыртқы түрі Name[ko]=모양 @@ -90,7 +90,7 @@ Comment[he]=התאם אישית את מראה שולחן העבודה Comment[hr]=Uredite izgled vaše radne površine Comment[hu]=Az asztali környezet megjelenésének személyre szabása Comment[id]=Sesuaikan tampilan desktop Anda -Comment[it]=Customizza il look del tuo desktop +Comment[it]=Personalizza l'aspetto del tuo desktop Comment[ja]=デスクトップの外見をカスタマイズする Comment[kk]=Жұмыс үстеліңіздің сыртқы түрін баптаңыз Comment[ko]=바탕화면 모양 사용자 정의 @@ -102,7 +102,7 @@ Comment[pa]=ਆਪਣੇ ਡੈਸਕਟਾਪ ਦੀ ਦਿੱਖ ਬਦਲੋ Comment[pl]=Dostosuj wygląd pulpitu Comment[pt]=Personalizar a aparência do seu ambiente Comment[pt_BR]=Personalize o visual de seu desktop -Comment[ro]=Personalizați aspectul propriului desktop +Comment[ro]=Personalizarea aspectului mediului grafic Comment[ru]=Настроить внешний вид вашего рабочего стола Comment[si]=ඔබගේ වැඩතලයේ පෙනුම අභිමතකරණය කරන්න Comment[sk]=Upraviť vzhľad obrazovky diff --git a/src-qt4/pc-controlpanel/items/de/xfce-wm-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce-wm-settings.desktop index 6656bfdc5..fb967ccb6 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-wm-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-wm-settings.desktop @@ -116,7 +116,7 @@ Comment[nl]=Stel venstergedrag en sneltoetsen in Comment[pl]=Konfiguracja zachowania i skrótów okienek Comment[pt]=Configurar comportamento e atalhos das janelas Comment[pt_BR]=Configurar comportamento e atalhos da janela -Comment[ro]=Schimbați comportamentul ferestrelor și combinațiile de taste asociate +Comment[ro]=Configurarea comportamentului ferestrei și comenzile rapide Comment[ru]=Настройка поведения окна и ярлыков Comment[si]=කවුළු හැසිරීම් හා කෙටිමං වින්‍යාස කරන්න Comment[sk]=Nastaviť chovanie okien a skratiek diff --git a/src-qt4/pc-controlpanel/items/de/xfce-wmtweaks-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce-wmtweaks-settings.desktop index 38ed1e4b8..f58c96c85 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-wmtweaks-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-wmtweaks-settings.desktop @@ -40,7 +40,7 @@ Name[he]=כיונון מנהל החלונות Name[hr]=Uštimavač upravljača prozora Name[hu]=Ablakkezelő hangolása Name[id]=Optimasi Pengatur Jendela -Name[it]=Messa a punto del Gestore delle Finestre +Name[it]=Window Manager Tweaks Name[ja]=ウインドウマネージャー(詳細) Name[kk]=Терезелер басқарушының қу баптаулары Name[ko]=창 관리자 설정 @@ -53,7 +53,7 @@ Name[pa]=ਵਿੰਡੋ ਮੈਨੇਜਰ ਟਵੀਕ Name[pl]=Modyfikacje menadżera okien Name[pt]=Ajustes do gestor de janelas Name[pt_BR]=Destaque do Gerenciador de janelas -Name[ro]=Ajustări pentru managerul de ferestre +Name[ro]=Ajustări ale managerului de ferestre Name[ru]=Тонкие настройки оконного менеджера Name[sk]=Doladiť správcu okien Name[sq]=Rregullime të Imta për Përgjegjës Dritaresh @@ -95,7 +95,7 @@ Comment[he]=כיונון התנהגות מנהל החלונות Comment[hr]=Fino podešavanje ponašanja prozora i efekte Comment[hu]=Ablakviselkedés és effektusok finomhangolása Comment[id]=Menyetel perilaku jendela dan efek-efek -Comment[it]=Configurazione dettagliata del comportamento delle finestre e degli effetti +Comment[it]=Ottimizzazione del comportamento delle finestre e degli effetti Comment[ja]=ウィンドウの振る舞いと効果を微調整する Comment[kk]=Терезе әрекеттерін мен жарлықтарды туралау Comment[ko]=창 동작과 효과를 미세 조정 @@ -106,7 +106,7 @@ Comment[nl]=Fijnregeling van het venstergedrag en effecten Comment[pl]=Dostosowywanie zachowania i efektów okien Comment[pt]=Configurar comportamento e efeitos das janelas Comment[pt_BR]=Ajuste fino do comportamento e efeitos da janela -Comment[ro]=Optimizați comportamentul ferestrelor și efectele asociate +Comment[ro]=Ajustări fine ale efectelor și comportamentului mangerului de ferestre Comment[ru]=Тонкая настройка поведения окон и эффектов Comment[si]=Fine-tune window behaviour and effects Comment[sk]=Upraviť vybrané nastavenia správcu okien a grafické efekty diff --git a/src-qt4/pc-controlpanel/items/de/xfce-workspaces-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce-workspaces-settings.desktop index 83d5a17ca..a0f895134 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce-workspaces-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce-workspaces-settings.desktop @@ -44,7 +44,7 @@ Name[he]=סביבות עבודה Name[hr]=Radni prostori Name[hu]=Munkaterületek Name[id]=Ruang kerja -Name[it]=Desktop Virtuali +Name[it]=Aree di lavoro Name[ja]=ワークスペース Name[kk]=Жұмыс орындары Name[ko]=작업 영역 @@ -103,7 +103,7 @@ Comment[he]=הגדר שם ומספר סביבות עבודה Comment[hr]=Postavi broj i imena radnih prostora Comment[hu]=Munkaterületek számának és neveinek beállítása Comment[id]=Mengatur jumlah dan nama ruang kerja -Comment[it]=Imposta il numero e i nomi dei desktop virtuali +Comment[it]=Imposta il numero e i nomi delle aree di lavoro Comment[ja]=ワークスペースの番号や名前を設定する Comment[kk]=Жұмыс орындарының нөмірлерін мен аттарын орнату Comment[ko]=작업 영역의 번호와 이름을 설정 @@ -114,7 +114,7 @@ Comment[nl]=Stel namen en het aantal werkbladen in Comment[pl]=Podaj liczbę i nazwy pulpitów Comment[pt]=Definir número e nomes das áreas de trabalho Comment[pt_BR]=Informe os números e nomes das áreas de trabalho -Comment[ro]=Schimbați numărul și numele spațiilor de lucru +Comment[ro]=Setărea numărului și numelui spațiilor de lucru Comment[ru]=Установите количество и имена рабочих областей Comment[sk]=Nastaviť počet a pomenovať pracovné plochy Comment[sq]=Caktoni numrat dhe emrat e hapësirave të punës diff --git a/src-qt4/pc-controlpanel/items/de/xfce4-accessibility-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce4-accessibility-settings.desktop index 7c4d6372b..e5befba03 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce4-accessibility-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce4-accessibility-settings.desktop @@ -101,7 +101,7 @@ Comment[nl]=Verbeter de toegankelijkheid van toetsenbord en muis Comment[pl]=Poprawianie dostępności klawiatury i myszki Comment[pt]=Melhorar a acessibilidade do teclado e do rato Comment[pt_BR]=Aprimorar acessibilidade do teclado e do mouse -Comment[ro]=Îmbunătățiți accesibilitatea tastaturii și a mausului +Comment[ro]=Îmbunătățirea accesibilității tastaturii și mouse-ului Comment[ru]=Улучшение доступности клавиатуры и мыши Comment[sk]=Upraviť prístupnosť myši a klávesnice Comment[sr]=Poboljšajte pristupačnost tastature i miša diff --git a/src-qt4/pc-controlpanel/items/de/xfce4-settings-editor.desktop b/src-qt4/pc-controlpanel/items/de/xfce4-settings-editor.desktop index 06d7b4650..dce92fc11 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce4-settings-editor.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce4-settings-editor.desktop @@ -45,7 +45,7 @@ Name[pa]=ਸੈਟਿੰਗ ਐਡੀਟਰ Name[pl]=Edytor ustawień Name[pt]=Editor de definições Name[pt_BR]=Editor de Configurações -Name[ro]=Editor de opțiuni +Name[ro]=Setări Editor Name[ru]=Редактор настроек Name[sk]=Upraviť nastavenia Name[sr]=Uređivač podešavanja @@ -86,7 +86,7 @@ Comment[he]=עורך הגדרות גרפי לXfconf Comment[hr]=Grafički uređivač postavki za Xfconf Comment[hu]=Grafikus beállításszerkesztő az Xfconf-hoz Comment[id]=Penyunting aturan untuk Xfconf -Comment[it]=Impostazioni grafiche per Xfconf +Comment[it]=Editor delle impostazioni grafiche per Xfconf Comment[ja]=Xfconf のグラフィカルな設定エディター Comment[kk]=Xfconf үшін баптауларды графикалық түзетуші Comment[ko]=Xfconf 그래픽 설정 편집기 @@ -97,7 +97,7 @@ Comment[nl]=Grafische instellingenbewerker voor Xconf Comment[pl]=Graficzny edytor ustawień dla Xfconf Comment[pt]=Editor gráfico de definições para o Xfconf Comment[pt_BR]=Editor Gráfico de configurações para o XConf -Comment[ro]=Editor grafic al opțiunilor Xfconf +Comment[ro]=Setările Editorului grafic pentru Xfconf Comment[ru]=Редактор графических настроек для Xfconf Comment[sk]=Grafický nástroj pre úpravu nastavení Xfce: Xfconf Comment[sr]=Grafički uređivač podešavanja za Xfconf diff --git a/src-qt4/pc-controlpanel/items/de/xfce4-thunar-settings.desktop b/src-qt4/pc-controlpanel/items/de/xfce4-thunar-settings.desktop index b80d45c5b..1f94ad1ec 100644 --- a/src-qt4/pc-controlpanel/items/de/xfce4-thunar-settings.desktop +++ b/src-qt4/pc-controlpanel/items/de/xfce4-thunar-settings.desktop @@ -94,7 +94,7 @@ Comment[he]=הגדרות מנהל הקבצים Thunar Comment[hr]=Namjesti Thunar upravitelj datoteka Comment[hu]=A Thunar fájlkezelő beállítása Comment[id]=Konfigurasi manajer berkas Thunar -Comment[it]=Configure il file manager Thunar +Comment[it]=Configura il file manager Thunar Comment[ja]=Thunarファイルマネージャーを設定します Comment[kk]=Thunar файлдар басқарушысын баптау Comment[ko]=Thunar 파일 관리자 설정 @@ -104,8 +104,8 @@ Comment[nb]=Konfigurer Thunar Filbehandler Comment[nl]=Configureer de Thunar-bestandbeheerder Comment[pl]=Konfiguracja menedżera plików Thunar Comment[pt]=Configurar o gestor de ficheiros Thunar -Comment[pt_BR]=Configurar o gerenciaodr de arquivos Thunar -Comment[ro]=Schimbați opțiunile managerului de fișiere Thunar +Comment[pt_BR]=Configurar o gerenciador de arquivos Thunar +Comment[ro]=Configurarea managerul de fișiere Thunar Comment[ru]=Настройка файлового менеджера Thunar Comment[sk]=Nastavenia správcu súborov Thunar Comment[sq]=Formësoni përgjegjësin e kartelave Thunar diff --git a/src-qt4/pc-controlpanel/items/hardware/cups.desktop b/src-qt4/pc-controlpanel/items/hardware/cups.desktop index 23f18879b..22bf813b7 100644 --- a/src-qt4/pc-controlpanel/items/hardware/cups.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/cups.desktop @@ -33,6 +33,7 @@ Name[mn]=CUPS - Юникс үйлдлийн системүүдийн хэвлэ Name[nl]=CUPS Name[pl]=CUPS Name[pt_BR]=CUPS +Name[ro]=CUPS Name[ru]=CUPS Name[sk]=CUPS Name[sl]=CUPS @@ -69,9 +70,10 @@ Comment[it]=Web GUI per Common UNIX printing system Comment[ja]=共通 UNIX 印刷システム (CUPS) の web GUI 画面 Comment[ko]=일반적인 UNIX 인쇄 시스템 웹 GUI Comment[mn]=CUPS - веб интерфэйс -Comment[nl]=Webgebaseerde gebruikersschil voor Gemeenschappelijk UNIX afdruksysteem +Comment[nl]=Webgebaseerde gebruikersschil voor Gemeenschappelijk UNIX-afdruksysteem Comment[pl]=Common UNIX Printing System - interfejs WWW Comment[pt_BR]=Interface gráfica (GUI) web do sitema de impressão UNIX comum (CUPS) +Comment[ro]=Interfață grafică web comună a sistemului de imprimare UNIX Comment[ru]=Веб-интерфейс общей системы печати (CUPS) Comment[sr]=Common UNIX printing system web GUI Comment[sv]=Webb GUI för Common UNIX Printing System diff --git a/src-qt4/pc-controlpanel/items/hardware/gnome-keyboard.desktop b/src-qt4/pc-controlpanel/items/hardware/gnome-keyboard.desktop index e74639028..12076b166 100644 --- a/src-qt4/pc-controlpanel/items/hardware/gnome-keyboard.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/gnome-keyboard.desktop @@ -178,7 +178,7 @@ Comment[pa]=ਆਪਣੀ ਕੀ-ਬੋਰਡ ਪਸੰਦ ਦਿਓ Comment[pl]=Ustaw swoje preferencje klawiatury Comment[pt]=Defina as suas preferências de teclado Comment[pt_BR]=Defina as preferências do seu teclado -Comment[ro]=Schimbați opțiunile de tastare +Comment[ro]=Setarea preferințelor tastaturii Comment[ru]=Задать настройки клавиатуры Comment[sk]=Nastaviť klávesnicu Comment[sl]=Možnosti tipkovnice diff --git a/src-qt4/pc-controlpanel/items/hardware/gnome-power-preferences.desktop b/src-qt4/pc-controlpanel/items/hardware/gnome-power-preferences.desktop index 62b35be2e..4943c980c 100644 --- a/src-qt4/pc-controlpanel/items/hardware/gnome-power-preferences.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/gnome-power-preferences.desktop @@ -51,7 +51,7 @@ Name[hr]=Upravljanje energijom Name[hu]=Energiakezelés Name[id]=Manajemen Daya Name[is]=Aflstjórnun -Name[it]=Risparmio Energetico +Name[it]=Gestione Alimentazione Name[ja]=電源管理 Name[ka]=ენერგიის მმართველი Name[kn]=ವಿದ್ಯುಚ್ಚಕ್ತಿಯ ನಿರ್ವಹಣೆ @@ -74,7 +74,7 @@ Name[pa]=ਪਾਵਰ ਪਰਬੰਧ Name[pl]=Zarządzanie zasilaniem Name[pt]=Gestão de Energia Name[pt_BR]=Gerenciamento de Energia -Name[ro]=Administrare consum +Name[ro]=Gestionarea consumului de energie Name[ru]=Управление питанием Name[sk]=Správca napájania Name[sl]=Upravljanje napajanja @@ -130,7 +130,7 @@ Comment[hr]=Namjestite kako upravljati energijom Comment[hu]=Energiakezelés beállítása Comment[id]=Mengkonfigurasi manajemen daya Comment[is]=Stilla aflstjórnun -Comment[it]=Configura il risparmio energetico +Comment[it]=Configura la gestione dell'alimentazione Comment[ja]=電源管理の設定 Comment[ka]=ენერგიის მართვის კონფიგურირება Comment[kn]=ವಿದ್ಯುಚ್ಚಕ್ತಿಯ ನಿರ್ವಹಣೆಯನ್ನು ಸಂರಚಿಸು @@ -152,7 +152,7 @@ Comment[pa]=ਪਾਵਰ ਪਰਬੰਧ ਸੰਰਚਨਾ Comment[pl]=Konfiguracja Zarządzania Zasilaniem Comment[pt]=Configurar o gestor de energia Comment[pt_BR]=Configure o gerenciamento de energia -Comment[ro]=Configurare administrare consum +Comment[ro]=Configurarea consumului de energie Comment[ru]=Настройка управления питанием Comment[sk]=Nastaviť vlastnosti napájania Comment[sl]=Nastavi upravljalnik porabe diff --git a/src-qt4/pc-controlpanel/items/hardware/gnome-settings-mouse.desktop b/src-qt4/pc-controlpanel/items/hardware/gnome-settings-mouse.desktop index 6b174484e..de66b3bec 100644 --- a/src-qt4/pc-controlpanel/items/hardware/gnome-settings-mouse.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/gnome-settings-mouse.desktop @@ -82,7 +82,7 @@ Name[pa]=ਮਾਊਸ Name[pl]=Mysz Name[pt]=Rato Name[pt_BR]=Mouse -Name[ro]=Maus +Name[ro]=Mouse Name[ru]=Мышь Name[rw]=Imbeba Name[sk]=Myš @@ -176,7 +176,7 @@ Comment[pa]=ਆਪਣੇ ਮਾਊਸ ਦੀ ਪਸੰਦ ਦਿਓ Comment[pl]=Ustaw swoje preferencje myszy Comment[pt]=Defina as suas preferências do rato Comment[pt_BR]=Defina as preferências de seu mouse -Comment[ro]=Definire preferințe maus +Comment[ro]=Setarea preferințelor mouse-ului Comment[ru]=Задать настройки мыши Comment[sk]=Nastaviť myš Comment[sl]=Nastavi možnosti miške diff --git a/src-qt4/pc-controlpanel/items/hardware/gnome-volume-control.desktop b/src-qt4/pc-controlpanel/items/hardware/gnome-volume-control.desktop index bd3463528..e009cb574 100644 --- a/src-qt4/pc-controlpanel/items/hardware/gnome-volume-control.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/gnome-volume-control.desktop @@ -116,7 +116,7 @@ Comment[hi]=ध्वनि आवाज और ध्वनि घटना ब Comment[hr]=Promjeni glasnoću zvuka i zvučne efekte Comment[hu]=Hangerő és hangesemények megváltoztatása Comment[id]=Ubah volume suara dan suara peristiwa -Comment[it]=Modifica il volume dell'audio o gli eventi sonori +Comment[it]=Modifica il volume del suono e eventi sonori Comment[ja]=ボリュームと効果音の設定 Comment[kn]=ಧ್ವನಿಯ ಪ್ರಮಾಣ ಹಾಗು ಧ್ವನಿಗಳನ್ನು ಸನ್ನಿವೇಶಗಳನ್ನು ಬದಲಾಯಿಸಿ Comment[ko]=사운드 볼륨 및 소리 이벤트를 변경합니다. @@ -133,7 +133,7 @@ Comment[pa]=ਸਾਊਂਡ ਵਾਲੀਅਮ ਅਤੇ ਸਾਊਂਡ ਈਵ Comment[pl]=Zmiana głośności i dźwięki zdarzeń Comment[pt]=Altere o volume do som e os sons de eventos Comment[pt_BR]=Alterar o volume de som e eventos sonoros -Comment[ro]=Schimbă volumul sunetului și sunetele evenimentelor +Comment[ro]=Schimbarea volumul sunetului și a evenimentele de sunet Comment[ru]=Изменение громкости звука и звуков событий Comment[sk]=Zmeniť hlasitosť zvuku alebo nastaviť systémové zvuky Comment[sl]=Spreminjanje glasnosti zvoka in povezljivost z dogodki diff --git a/src-qt4/pc-controlpanel/items/hardware/kinfocenter.desktop b/src-qt4/pc-controlpanel/items/hardware/kinfocenter.desktop index 1a3914db8..75741fdfd 100644 --- a/src-qt4/pc-controlpanel/items/hardware/kinfocenter.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/kinfocenter.desktop @@ -10,100 +10,6 @@ OnlyShowIn=KDE; X-DBUS-StartupType=Unique Categories=Qt;KDE;System; -GenericName=Info Center -GenericName[af]=Inligting Sentrum -GenericName[ar]=مركز المعلومات -GenericName[as]=তথ্য কেন্দ্ৰ -GenericName[ast]=Centru d'información -GenericName[be@latin]=Infarmacyjny centar -GenericName[be]=Цэнтр інфармацыі -GenericName[bg]=Информационен Център -GenericName[bn]=তথ্য কেন্দ্র -GenericName[bn_IN]=তথ্য কেন্দ্র -GenericName[br]=Kreizenn Titouroù -GenericName[bs]=Info centrala -GenericName[ca@valencia]=Centre d'informació -GenericName[ca]=Centre d'Informació -GenericName[cs]=Informační centrum -GenericName[csb]=Centróm wëdowiédzë -GenericName[cy]=Canolfan Gwybodaeth -GenericName[da]=Informationscenter -GenericName[de]=Info-Zentrale -GenericName[el]=Κέντρο πληροφοριών -GenericName[en_GB]=Info Center -GenericName[en_ZA]=Info Center -GenericName[eo]=Informocentro -GenericName[es]=Centro de información -GenericName[et]=Infokeskus -GenericName[eu]=Info gunea -GenericName[fa]=اطلاعات مرکز -GenericName[fi]=Infokeskus -GenericName[fr]=Centre d'informations -GenericName[fr_CA]=Centre d'Information -GenericName[fy]=Ynformaasjesintrum -GenericName[ga]=Lárionad Eolais -GenericName[gl]=Centro de información -GenericName[gu]=માહિતી કેન્દ્ર -GenericName[he]=מרכז מידע -GenericName[hi]=जानकारी केंद्र -GenericName[hne]=जानकारी केंद्र -GenericName[hr]=Informacijsko sjedište -GenericName[hsb]=Centralna informacija -GenericName[hu]=Információs központ -GenericName[ia]=Centro de Info -GenericName[id]=Pusat Info -GenericName[is]=Upplýsingaborð -GenericName[it]=Centro Informazioni -GenericName[ja]=システムの情報を表示する -GenericName[ka]=საინფორმაციო ცენტრი -GenericName[kk]=Мәлімет орталығы -GenericName[km]=មជ្ឈមណ្ឌល​ព័ត៌មាន -GenericName[kn]=ಮಾಹಿತಿ ಕೇಂದ್ರ -GenericName[ko]=정보 센터 -GenericName[ku]=Navenda Agahiyan -GenericName[lt]=Info centras -GenericName[lv]=Informācijas centrs -GenericName[mai]=सूचना केंद्र -GenericName[mk]=Информативен центар -GenericName[ml]=വിവരകേന്ദ്രം -GenericName[mn]=Инфо Төв -GenericName[mr]=माहिती केंद्र -GenericName[ms]=Pusat Maklumat -GenericName[nb]=Info Senter -GenericName[nds]=Infozentrum -GenericName[ne]=सूचना केन्द्र -GenericName[nl]=Informatiecentrum -GenericName[nn]=KDEs informasjonssenter -GenericName[or]=ସୂଚନା କେନ୍ଦ୍ର -GenericName[pa]=ਜਾਣਕਾਰੀ ਸੈਂਟਰ -GenericName[pl]=Centrum Informacyjne -GenericName[pt]=Centro de Informações -GenericName[pt_BR]=Centro de Informação -GenericName[ro]=Centru de informații -GenericName[ru]=Информационный центр -GenericName[se]=Diehtoguovddáš -GenericName[si]=තොරතුරු මධ්‍යස්ථානය -GenericName[sk]=Informačné centrum -GenericName[sl]=Info Center -GenericName[sr@ijekavian]=Информациони центар -GenericName[sr@ijekavianlatin]=Informacioni centar -GenericName[sr@latin]=Informacioni centar -GenericName[sr]=Info centrala -GenericName[sv]=Informations Center -GenericName[ta]=தகவல் மையம் -GenericName[te]=సమాచార కేంద్రం -GenericName[tg]=Маркази иттилоотии система -GenericName[th]=ศูนย์ข้อมูล -GenericName[tr]=Bilgi Merkezi -GenericName[uk]=Інформаційних центр -GenericName[uz@cyrillic]=Маълумот маркази -GenericName[uz]=Maʼlumot markazi -GenericName[vi]=Trung tâm Ðàn -GenericName[wa]=Cinte d' infôrmåcions di KDE -GenericName[x-test]=xxInfo Centerxx -GenericName[zh_CN]=信息中心 -GenericName[zh_HK]=資訊中心 -GenericName[zh_TW]=顯示系統相關資訊 Name=KInfoCenter Name[af]=KInfoCenter Name[ar]=مركز المعلومات كيه @@ -173,7 +79,7 @@ Name[pa]=ਕੇ-ਜਾਣਕਾਰੀ ਸੈਂਟਰ Name[pl]=KInfoCenter Name[pt]=KInfoCenter Name[pt_BR]=KInfoCenter -Name[ro]=Centrul de informații KDE +Name[ro]=Centrul informații K Name[ru]=KInfoCenter Name[se]=KInfoCenter Name[si]=KInfoCenter @@ -198,3 +104,97 @@ Name[x-test]=xxKInfoCenterxx Name[zh_CN]=信息中心 Name[zh_HK]=KInfoCenter Name[zh_TW]=KInfoCenter +GenericName=Info Center +GenericName[af]=Inligting Sentrum +GenericName[ar]=مركز المعلومات +GenericName[as]=তথ্য কেন্দ্ৰ +GenericName[ast]=Centru d'información +GenericName[be@latin]=Infarmacyjny centar +GenericName[be]=Цэнтр інфармацыі +GenericName[bg]=Информационен Център +GenericName[bn]=তথ্য কেন্দ্র +GenericName[bn_IN]=তথ্য কেন্দ্র +GenericName[br]=Kreizenn Titouroù +GenericName[bs]=Info centrala +GenericName[ca@valencia]=Centre d'informació +GenericName[ca]=Centre d'Informació +GenericName[cs]=Informační centrum +GenericName[csb]=Centróm wëdowiédzë +GenericName[cy]=Canolfan Gwybodaeth +GenericName[da]=Informationscenter +GenericName[de]=Info-Zentrale +GenericName[el]=Κέντρο πληροφοριών +GenericName[en_GB]=Info Center +GenericName[en_ZA]=Info Center +GenericName[eo]=Informocentro +GenericName[es]=Centro de información +GenericName[et]=Infokeskus +GenericName[eu]=Info gunea +GenericName[fa]=اطلاعات مرکز +GenericName[fi]=Infokeskus +GenericName[fr]=Centre d'informations +GenericName[fr_CA]=Centre d'Information +GenericName[fy]=Ynformaasjesintrum +GenericName[ga]=Lárionad Eolais +GenericName[gl]=Centro de información +GenericName[gu]=માહિતી કેન્દ્ર +GenericName[he]=מרכז מידע +GenericName[hi]=जानकारी केंद्र +GenericName[hne]=जानकारी केंद्र +GenericName[hr]=Informacijsko sjedište +GenericName[hsb]=Centralna informacija +GenericName[hu]=Információs központ +GenericName[ia]=Centro de Info +GenericName[id]=Pusat Info +GenericName[is]=Upplýsingaborð +GenericName[it]=Centro Informazioni +GenericName[ja]=システムの情報を表示する +GenericName[ka]=საინფორმაციო ცენტრი +GenericName[kk]=Мәлімет орталығы +GenericName[km]=មជ្ឈមណ្ឌល​ព័ត៌មាន +GenericName[kn]=ಮಾಹಿತಿ ಕೇಂದ್ರ +GenericName[ko]=정보 센터 +GenericName[ku]=Navenda Agahiyan +GenericName[lt]=Info centras +GenericName[lv]=Informācijas centrs +GenericName[mai]=सूचना केंद्र +GenericName[mk]=Информативен центар +GenericName[ml]=വിവരകേന്ദ്രം +GenericName[mn]=Инфо Төв +GenericName[mr]=माहिती केंद्र +GenericName[ms]=Pusat Maklumat +GenericName[nb]=Info Senter +GenericName[nds]=Infozentrum +GenericName[ne]=सूचना केन्द्र +GenericName[nl]=Informatiecentrum +GenericName[nn]=KDEs informasjonssenter +GenericName[or]=ସୂଚନା କେନ୍ଦ୍ର +GenericName[pa]=ਜਾਣਕਾਰੀ ਸੈਂਟਰ +GenericName[pl]=Centrum Informacyjne +GenericName[pt]=Centro de Informações +GenericName[pt_BR]=Centro de Informação +GenericName[ro]=Centru informații +GenericName[ru]=Информационный центр +GenericName[se]=Diehtoguovddáš +GenericName[si]=තොරතුරු මධ්‍යස්ථානය +GenericName[sk]=Informačné centrum +GenericName[sl]=Info Center +GenericName[sr@ijekavian]=Информациони центар +GenericName[sr@ijekavianlatin]=Informacioni centar +GenericName[sr@latin]=Informacioni centar +GenericName[sr]=Info centrala +GenericName[sv]=Informations Center +GenericName[ta]=தகவல் மையம் +GenericName[te]=సమాచార కేంద్రం +GenericName[tg]=Маркази иттилоотии система +GenericName[th]=ศูนย์ข้อมูล +GenericName[tr]=Bilgi Merkezi +GenericName[uk]=Інформаційних центр +GenericName[uz@cyrillic]=Маълумот маркази +GenericName[uz]=Maʼlumot markazi +GenericName[vi]=Trung tâm Ðàn +GenericName[wa]=Cinte d' infôrmåcions di KDE +GenericName[x-test]=xxInfo Centerxx +GenericName[zh_CN]=信息中心 +GenericName[zh_HK]=資訊中心 +GenericName[zh_TW]=顯示系統相關資訊 diff --git a/src-qt4/pc-controlpanel/items/hardware/lxde-lxinput.desktop b/src-qt4/pc-controlpanel/items/hardware/lxde-lxinput.desktop index 27488663f..09d9b5e0a 100644 --- a/src-qt4/pc-controlpanel/items/hardware/lxde-lxinput.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/lxde-lxinput.desktop @@ -39,6 +39,7 @@ Name[nl]=Toetsenbord en muis Name[pl]=Klawiatura i mysz Name[pt]=Teclado e Rato Name[pt_BR]=Teclado e Mouse +Name[ro]=Tastatură și Mouse Name[ru]=Клавиатура и мышь Name[sk]=Klávesnica a myš Name[sl]=Tipkovnica in miška @@ -75,7 +76,7 @@ Comment[he]=הגדרות מקלדת, עכבר ואחרים Comment[hr]=Namjestite tipkovnicu, miš i druge ulazne uređaje Comment[hu]=Billentyűzet, egér, és egyéb beviteli eszköz beállítása Comment[id]=Mengkonfigurasi keyboard, mouse, dan perangkat input lainnya -Comment[it]=Configura la tastiera, il mouse e altri dispositivi di puntamento +Comment[it]=Configura la tastiera, il mouse, e altri dispositivi di input Comment[ja]=キーボード、マウス、その他の入力デバイスの設定 Comment[ko]=키보드, 마우스 및 기타 입력 장치를 설정합니다. Comment[lt]=Konfigūruoti klaviatūrą, pelę ir kitus įvedimo įrenginius @@ -84,6 +85,7 @@ Comment[nl]=Configureer toetsenbord, muis en andere invoerapparaten Comment[pl]=Konfiguracja klawiatury, myszy i innych urządzeń wejściowych Comment[pt]=Configurar teclado, rato e outros dispositivos Comment[pt_BR]=Configurar teclado, mouse e outros dispositivos de entrada +Comment[ro]=Configurare tastatură, mouse, și a altor dispozitive de intrare Comment[ru]=Настройка клавиатуры, мыши и других устройств ввода Comment[sk]=Nastaviť klávesnicu, myš a ostatné vstupné zariadenia Comment[sl]=Nastavitve tipkovnice, miške in drugih vhodnih enot diff --git a/src-qt4/pc-controlpanel/items/hardware/nvidia-settings.desktop b/src-qt4/pc-controlpanel/items/hardware/nvidia-settings.desktop index 6ca591018..35f43b872 100644 --- a/src-qt4/pc-controlpanel/items/hardware/nvidia-settings.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/nvidia-settings.desktop @@ -36,7 +36,8 @@ Name[ko]=nVidia 설정 Name[mn]=nVidia тохируулгууд Name[nl]=nVidia-instellingen Name[pl]=nVidia - ustawienia -Name[pt_BR]=configurações nVidia +Name[pt_BR]=Configurações nVidia +Name[ro]=Setări nVidia Name[ru]=Настройки nVidia Name[sk]=nastavenia nVidia Name[sr]=nVidia podešavanja @@ -75,7 +76,8 @@ Comment[ko]=nVidia 비디오 카드 설정 Comment[mn]=nVidia видео картын тохируулгууд Comment[nl]=nVidia videokaart-instellingen Comment[pl]=nVidia - ustawienia karty graficznej -Comment[pt_BR]=configurações da placa de vídeo nVidia +Comment[pt_BR]=Configurações da placa de vídeo nVidia +Comment[ro]=Setările plăcii video nVidia Comment[ru]=Настройка видеокарт nVidia Comment[sk]=Nastavenia grafickej karty nVidia Comment[sr]=nVidia podešavanja grafičke karte diff --git a/src-qt4/pc-controlpanel/items/hardware/pc-bluetoothmanager.desktop b/src-qt4/pc-controlpanel/items/hardware/pc-bluetoothmanager.desktop index a48325e2f..e4f59ea7a 100644 --- a/src-qt4/pc-controlpanel/items/hardware/pc-bluetoothmanager.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/pc-bluetoothmanager.desktop @@ -26,6 +26,7 @@ Name[ja]=Bluetooth マネージャー Name[nl]=Bluetoothbeheerder Name[pl]=Menadżer Bluetooth Name[pt_BR]=Gerenciador de Bluetooth +Name[ro]=Manager Bluetooth Name[ru]=Менеджер Bluetooth Name[sr]=Bluetooth upravljač Name[sv]=Bluetooth-hantering @@ -54,7 +55,8 @@ Comment[it]=Applicazione per configurare l'associazione dei dispositivi Bluetoot Comment[ja]=Bluetooth デバイスのペアリング設定を行います。 Comment[nl]=Toepassing om het verbinden van Bluetoothapparaten in te stellen Comment[pl]=Aplikacja do konfiguracji połączeń urządzeń Bluetooth -Comment[pt_BR]=Aplicativo para configurar o pareamento de dispositivos Bluetooth +Comment[pt_BR]=Aplicativo para configurar o pareamento para dispositivos Bluetooth +Comment[ro]=Cerere pentru configurarea asocieri la dispozitive Bluetooth Comment[ru]=Приложение устанавливающее сопряжение для Bluetooth устройств Comment[sr]=Program za nameštanje uparivanja za Bluetooth aparate Comment[sv]=Program för ihopkoppling av Bluetooth-enheter diff --git a/src-qt4/pc-controlpanel/items/hardware/pc-mounttray.desktop b/src-qt4/pc-controlpanel/items/hardware/pc-mounttray.desktop index a4fe153b6..8f7381804 100644 --- a/src-qt4/pc-controlpanel/items/hardware/pc-mounttray.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/pc-mounttray.desktop @@ -23,9 +23,10 @@ Name[hu]=Csatoló tálca Name[it]=Mount Tray Name[ja]=マウントトレイ Name[ko]=마운트 트레이 -Name[nl]=Koppelaar +Name[nl]=Koppelvak Name[pl]=Tacka montowania Name[pt_BR]=Bandeja de Montagem +Name[ro]=Panou de montare Name[ru]=Установить лоток Name[sr]=Mount Tray Name[sv]=Monterings Tray @@ -56,6 +57,7 @@ Comment[ko]=휴대용 장치를 추가/제거하는 트레이 응용 프로그 Comment[nl]=Systeemvaktoepassing voor het toevoegen/verwijderen van draagbare apparaten Comment[pl]=Aplikacja tacki do dodawania/usuwania urządzeń przenośnych Comment[pt_BR]=Aplicação da bandeja para adicionar/remover dispositivos portáteis +Comment[ro]=Panou cerere pentru adaugare/îndepărtare dispozitive portabile Comment[ru]=Приложение системного лотка для подключения/отключения портативных устройств Comment[sr]=Program za dodavanje/uklanjanje prenosnih uređaja Comment[sv]=Tray applikation för att lägga till / ta bort portabla enheter diff --git a/src-qt4/pc-controlpanel/items/hardware/pc-soundconfig.desktop b/src-qt4/pc-controlpanel/items/hardware/pc-soundconfig.desktop index cc517346c..beb9e1c43 100644 --- a/src-qt4/pc-controlpanel/items/hardware/pc-soundconfig.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/pc-soundconfig.desktop @@ -26,6 +26,7 @@ Name[ja]=サウンドの設定 Name[nl]=Geluidinstellingen Name[pl]=Konfiguracja dźwięku Name[pt_BR]=Configuração do Som +Name[ro]=Configurare sunet Name[ru]=Настройки звука Name[sr]=Zvučna podešavanja Name[sv]=Ljudkonfiguration @@ -55,6 +56,7 @@ Comment[ja]=サウンドデバイスの設定とテストを行います Comment[nl]=Het actieve geluidapparaat instellen en uitproberen Comment[pl]=Ustaw i testuj aktywne urządzenie dźwiękowe Comment[pt_BR]=Ajuste e teste o dispositivo de som atual +Comment[ro]=Setare și testare dispozitiv de sunet activ Comment[ru]=Установка и тестирование активного звукового устройства Comment[sr]=Podesite aktivni zvučni aparat i probajte ga Comment[sv]=Ställ in och testa den aktiva ljudenheten diff --git a/src-qt4/pc-controlpanel/items/hardware/pc-xgui.desktop b/src-qt4/pc-controlpanel/items/hardware/pc-xgui.desktop index abac59588..b16d58955 100644 --- a/src-qt4/pc-controlpanel/items/hardware/pc-xgui.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/pc-xgui.desktop @@ -33,6 +33,7 @@ Name[mn]=Дэлгэц Name[nl]=Weergeven Name[pl]=Wyświetlanie Name[pt_BR]=Tela +Name[ro]=Ecran Name[ru]=Дисплей Name[sk]=Obrazovka Name[sr]=Ekran @@ -70,7 +71,8 @@ Comment[ko]=디스플레이 등록 정보를 설정 Comment[mn]=Дэлгэцийн төлөв байдлуудыг тохируулах Comment[nl]=Schermeigenschappen instellen Comment[pl]=Ustawienia wyświetlania -Comment[pt_BR]=Configuração das propriedades do display +Comment[pt_BR]=Configuração das propriedades de tela +Comment[ro]=Proprietățile de configurarea ale ecranului Comment[ru]=Установка свойств дисплея Comment[sk]=Nastavenie vlastností obrazovky Comment[sr]=Podesite ekran @@ -96,11 +98,12 @@ PC-TryMessage[fr]=Programmer un lancement du gestionnaire d'affichage après le PC-TryMessage[fr_CA]=Programmer un lancement du gestionnaire d'affichage après le prochain redémarrage ? PC-TryMessage[hr]=Hoćete li kod sledečeg starta koristiti asistenta za podešavanje zaslona? PC-TryMessage[hu]=Beütemezi a kijelző varázslót, hogy az a következő újraindítás után elinduljon? -PC-TryMessage[it]=Pianificare l'esecuzione della procedura guidata di visualizzazione al prossimo riavvio? +PC-TryMessage[it]=Pianificare la procedura guidata di visualizzazione da eseguire dopo il prossimo riavvio? PC-TryMessage[ja]=次の再起動時にディスプレイ設定ウィザードを起動しますか? PC-TryMessage[nl]=De scherminstelhulp uitvoeren na de volgende herstart? PC-TryMessage[pl]=Zaplanuj uruchomienie kreatora wyświetlania po następnym restarcie? PC-TryMessage[pt_BR]=Agendar o configurador da tela para rodar depois da próxima inicialização? +PC-TryMessage[ro]=Programați asistentul de afișare pentru a rula după repornire? PC-TryMessage[ru]=Запускать мастер настройки экрана после следующей перезагрузки? PC-TryMessage[sr]=Hoćete li kod sledečeg starta koristiti asistenta za podešavanje ekrana? PC-TryMessage[sv]=Schemalägg display konfiguratorn att köras efter nästa omstart? diff --git a/src-qt4/pc-controlpanel/items/hardware/system-config-printer.desktop b/src-qt4/pc-controlpanel/items/hardware/system-config-printer.desktop index c7ca911e5..1a5ea55fe 100644 --- a/src-qt4/pc-controlpanel/items/hardware/system-config-printer.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/system-config-printer.desktop @@ -56,7 +56,7 @@ Name[pa]=ਛਾਪਣਾ Name[pl]=Drukowanie Name[pt]=Impressão Name[pt_BR]=Impressão -Name[ro]=Tipărire +Name[ro]=Imprimare Name[ru]=Печать Name[si]=මුද්‍රණය කරමින් Name[sk]=Tlač @@ -119,7 +119,7 @@ Comment[pa]=ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ Comment[pl]=Konfiguracja drukarek Comment[pt]=Configurar as impressoras Comment[pt_BR]=Configurar impressoras -Comment[ro]=Configurează imprimantele +Comment[ro]=Configurarea imprimantelor Comment[ru]=Настройка принтеров Comment[si]=මුද්‍රකයන් මානකරන්න Comment[sk]=Nastavenie tlače diff --git a/src-qt4/pc-controlpanel/items/hardware/xfce-keyboard-settings.desktop b/src-qt4/pc-controlpanel/items/hardware/xfce-keyboard-settings.desktop index 4e7d83944..f4a76a25c 100644 --- a/src-qt4/pc-controlpanel/items/hardware/xfce-keyboard-settings.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/xfce-keyboard-settings.desktop @@ -100,7 +100,7 @@ Comment[nl]=Wijzig toetsenbordinstellingen en programmasneltoetsen Comment[pl]=Edytuj ustawienia klawiatury i skrótów aplikacji Comment[pt]=Editar definições do teclado e atalhos das aplicações Comment[pt_BR]=Editar as configurações do teclado e atalhos para aplicativos -Comment[ro]=Editați opțiunile de tastatură și combinațiile de taste +Comment[ro]=Modificați setările pentru tastatură și comenzile rapide ale aplicațiilor Comment[ru]=Изменить настройки клавиатуры и ярлыков приложений Comment[sk]=Nastaviť klávesnicu a klávesové zkratky aplikácií Comment[sr]=Podešavanja tastature i prečice za programe diff --git a/src-qt4/pc-controlpanel/items/hardware/xfce-mouse-settings.desktop b/src-qt4/pc-controlpanel/items/hardware/xfce-mouse-settings.desktop index c2dcab811..228038ee5 100644 --- a/src-qt4/pc-controlpanel/items/hardware/xfce-mouse-settings.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/xfce-mouse-settings.desktop @@ -48,7 +48,7 @@ Name[pa]=ਮਾਊਂਸ Name[pl]=Mysz Name[pt]=Rato Name[pt_BR]=Mouse -Name[ro]=Maus +Name[ro]=Mouse Name[ru]=Мышь Name[sk]=Myš Name[sl]=Miš @@ -90,7 +90,7 @@ Comment[he]=הגדרת אפשרויות סמן Comment[hr]=Namjestite ponašanje i izgled uređaja za pokazivanje Comment[hu]=Mutatóeszköz működésének és megjelenésének beállítása Comment[id]=Mengkonfigurasi perilaku perangkat penunjuk dan penampilan -Comment[it]=Configura il comportamente e la grafica del dispositivo di puntamento +Comment[it]=Configura il comportamente e l'aspetto del dispositivo di puntamento Comment[ja]=ポインターデバイスの挙動を設定する Comment[kk]=Көрсету құрылғысының мінез-құлығын мен сыртқы түрін баптау Comment[ko]=포인터 장치 동작 및 모양을 설정합니다. @@ -102,7 +102,7 @@ Comment[pa]=ਪੁਆਇੰਟਰ ਜੰਤਰ ਰਵੱਈਆ ਅਤੇ ਦਿ Comment[pl]=Konfiguracja zachowania i wyglądu urządzenia wskazującego Comment[pt]=Configurar comportamento e aparência do ponteiro Comment[pt_BR]=Configurar o comportamento do ponteiro do dispositivo e aparência -Comment[ro]=Configurați aspectul și comportamentul mausului +Comment[ro]=Configurarea comportamentului cursorului și aspectul acestuia Comment[ru]=Настройка указателя устройства поведение и внешний вид Comment[sk]=Nastaviť vzhľad kurzoru a polohovacie zariadenie Comment[sr]=Izgled i ponašanje uređaja za prikazivanje diff --git a/src-qt4/pc-controlpanel/items/hardware/xsane.desktop b/src-qt4/pc-controlpanel/items/hardware/xsane.desktop index f633cf722..73b7e18fa 100644 --- a/src-qt4/pc-controlpanel/items/hardware/xsane.desktop +++ b/src-qt4/pc-controlpanel/items/hardware/xsane.desktop @@ -27,6 +27,7 @@ Name[ja]=スキャナー Name[nl]=Scanner Name[pl]=Skaner Name[pt_BR]=Scanner (digitalizador) +Name[ro]=Scaner Name[ru]=Сканер Name[sr]=Skener Name[sv]=Skanner diff --git a/src-qt4/pc-controlpanel/items/network/pbi-tork.desktop b/src-qt4/pc-controlpanel/items/network/pbi-tork.desktop index a64780cc1..19627c45c 100644 --- a/src-qt4/pc-controlpanel/items/network/pbi-tork.desktop +++ b/src-qt4/pc-controlpanel/items/network/pbi-tork.desktop @@ -32,6 +32,7 @@ Name[mn]=Торк Name[nl]=Tork Name[pl]=Tork Name[pt_BR]=Tork +Name[ro]=Tork Name[ru]=Tork Name[sk]=Tork Name[sl]=Tork @@ -64,13 +65,14 @@ Comment[he]=ניהול אנונימיות ושרותי רשת לסביבת KDE Comment[hr]=Moćan upravitelj anonimnim i mrežnim servisima za KDE sučelje Comment[hu]=Hatékony anonimitást és hálózati szolgáltatásokat kezelő program KDE-hez Comment[id]=Anonimitas yang handal dan pengelola layanan jaringan untuk desktop KDE -Comment[it]=Gestione per l'anonimato in rete per desktop con KDE +Comment[it]=Potente gestore dell'anonimato e dei servizi di rete per desktop KDE Comment[ja]=KDE 用の強力な匿名ネットワークサービスマネージャー Comment[ko]=KDE 데스크탑을 위한 강력한 익명성 및 네트워크 서비스 관리자 Comment[mn]=КДЕ десктопын хүчин чадалтай сүлжээний үйлчилгээ удирдагч Comment[nl]=Krachtige anonimiteit- en netwerkdienstenbeheerder voor de KDE-omgeving Comment[pl]=Menadżer usług sieciowych i anonimizujących dla KDE Comment[pt_BR]=Poderoso gerenciador de serviços de rede e anonimato do Ambiente KDE +Comment[ro]=Anonimul și puternicul manager al serviciilor de rețea pentru mediul grafic KDE Comment[ru]=Мощный анонимайзер и менеджер сетевых сервисов для рабочего стола KDE Comment[sr]=Moćan upravljač anonimnim i mrežnim servisima za KDE okruženje Comment[sv]=Kraftfull anonymitets och nätverkstjänsthanterare för KDE-skrivbordet diff --git a/src-qt4/pc-controlpanel/items/network/pcnetwork.desktop b/src-qt4/pc-controlpanel/items/network/pcnetwork.desktop index 0da6460e3..944d0159d 100644 --- a/src-qt4/pc-controlpanel/items/network/pcnetwork.desktop +++ b/src-qt4/pc-controlpanel/items/network/pcnetwork.desktop @@ -50,63 +50,6 @@ Keywords[zh_HK]=Network,DNS,routes,interfaces,網絡,路由,介面 Keywords[zh_TW]=網路,DNS,路由,介面 Categories=System; -Comment=Configure Network Settings -Comment[af]=Instel Netwerk Opset -Comment[ar]=اعداد خيارات الشبكة -Comment[bg]=Конфигуриране на мрежовите настройки -Comment[bn]=নেটওয়ার্ক মানসমূহ কনফিগার করে -Comment[br]=Kefluniañ dibarzhoù ar rouedad -Comment[bs]=Podešavanja mreže -Comment[ca]=Configurar les preferències de la xarxa -Comment[cs]=Nastavení sítě -Comment[da]=Konfiguration af netværksopsætning -Comment[de]=Konfiguriere Netzwerkeinstellungen -Comment[el]=Ρύθμιση παραμέτρων δικτύου -Comment[en_GB]=Configure Network Settings -Comment[en_ZA]=Configure Network Settings -Comment[es]=Herramienta para configurar su red -Comment[et]=Seadista võrk -Comment[eu]=Konfiguratu sareko ezarpenak -Comment[fa]=پیکربندی تنظیمات شبکه -Comment[fi]=Määritä verkkoasetukset -Comment[fr]=Configurer les paramètres réseau -Comment[fr_CA]=Configurer les paramètres réseau -Comment[ga]=Cumraigh na Socruithe Líonra -Comment[gl]=Configuración da Rede -Comment[he]=הגדר נתוני רשת -Comment[hr]=Postavi mrežne postavke -Comment[hu]=Hálózati beállítások megadása -Comment[id]=Mengkonfigurasi Aturan Jaringan -Comment[is]=Umsjón netstillinga -Comment[it]=Impostazioni di Rete -Comment[ja]=ネットワークを設定します -Comment[ko]=네트워크 설정 -Comment[lt]=Konfigūruoti tinklo nustatymus -Comment[mk]=Конфигурирајте ги поставуањата за мрежата -Comment[mn]=Сүлжээний Тохируулга Хийх -Comment[nb]=Sett opp nettverksinnstillinger -Comment[nds]=Nettwark-Instellen fastleggen -Comment[nl]=Configureer netwerkinstellingen -Comment[nn]=Set opp nettverket -Comment[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ ਸੰਰਚਨਾ -Comment[pl]=Konfiguruj ustawienia sieciowe -Comment[pt]=Configurar Opções de Rede -Comment[pt_BR]=Configurar Opções de rede -Comment[ro]=Configurare setari de retea -Comment[ru]=Настройка параметров сети -Comment[se]=Heivet fierpmádaga -Comment[sk]=Nastavenia konfigurácie siete -Comment[sl]=Nastavite omrežne nastavitve -Comment[sr@Latn]=Podešavanje postavki mreže -Comment[sr]=Podešavanja mreže -Comment[sv]=Konfigurera nätverksinställningar -Comment[tg]=Танзимоти шабака -Comment[tr]=Ağ Ayarlarını Yapılandır -Comment[uk]=Налаштувати параметри мережі -Comment[vi]=Cấu hình thiết lập mạng -Comment[zh_CN]=配置网络设置 -Comment[zh_HK]=配置網絡設定 -Comment[zh_TW]=設定網路組態 Name=Network Configuration Name[af]=Netwerk Opset Name[ar]=إعدادات الشبكة @@ -143,12 +86,13 @@ Name[mk]=Поставувања на мрежа Name[mn]=Сүлжээний тохируулга Name[nb]=Nettverksoppsett Name[nds]=Nettwark-Instellen -Name[nl]=Netwerk-Configuratie +Name[nl]=Netwerkinstellingen Name[nn]=Nettverksinnstillingar Name[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ Name[pl]=Konfiguracja Sieci Name[pt]=Configuração da Rede Name[pt_BR]=Configuração de rede +Name[ro]=Configurarea rețelei Name[ru]=Настройка сети Name[se]=Fierpmádatheivehusat Name[sk]=Nastavenie siete @@ -163,3 +107,60 @@ Name[vi]=Cấu hình mạng Name[zh_CN]=网络配置 Name[zh_HK]=網絡設定 Name[zh_TW]=網路組態設定 +Comment=Configure Network Settings +Comment[af]=Instel Netwerk Opset +Comment[ar]=اعداد خيارات الشبكة +Comment[bg]=Конфигуриране на мрежовите настройки +Comment[bn]=নেটওয়ার্ক মানসমূহ কনফিগার করে +Comment[br]=Kefluniañ dibarzhoù ar rouedad +Comment[bs]=Podešavanja mreže +Comment[ca]=Configurar les preferències de la xarxa +Comment[cs]=Nastavení sítě +Comment[da]=Konfiguration af netværksopsætning +Comment[de]=Konfiguriere Netzwerkeinstellungen +Comment[el]=Ρύθμιση παραμέτρων δικτύου +Comment[en_GB]=Configure Network Settings +Comment[en_ZA]=Configure Network Settings +Comment[es]=Herramienta para configurar su red +Comment[et]=Seadista võrk +Comment[eu]=Konfiguratu sareko ezarpenak +Comment[fa]=پیکربندی تنظیمات شبکه +Comment[fi]=Määritä verkkoasetukset +Comment[fr]=Configurer les paramètres réseau +Comment[fr_CA]=Configurer les paramètres réseau +Comment[ga]=Cumraigh na Socruithe Líonra +Comment[gl]=Configuración da Rede +Comment[he]=הגדר נתוני רשת +Comment[hr]=Postavi mrežne postavke +Comment[hu]=Hálózati beállítások megadása +Comment[id]=Mengkonfigurasi Aturan Jaringan +Comment[is]=Umsjón netstillinga +Comment[it]=Configurare le Impostazioni di Rete +Comment[ja]=ネットワークを設定します +Comment[ko]=네트워크 설정 +Comment[lt]=Konfigūruoti tinklo nustatymus +Comment[mk]=Конфигурирајте ги поставуањата за мрежата +Comment[mn]=Сүлжээний Тохируулга Хийх +Comment[nb]=Sett opp nettverksinnstillinger +Comment[nds]=Nettwark-Instellen fastleggen +Comment[nl]=Configureer netwerkinstellingen +Comment[nn]=Set opp nettverket +Comment[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ ਸੰਰਚਨਾ +Comment[pl]=Konfiguruj ustawienia sieciowe +Comment[pt]=Configurar Opções de Rede +Comment[pt_BR]=Configurar Opções de rede +Comment[ro]=Configurare setări de retea +Comment[ru]=Настройка параметров сети +Comment[se]=Heivet fierpmádaga +Comment[sk]=Nastavenia konfigurácie siete +Comment[sl]=Nastavite omrežne nastavitve +Comment[sr@Latn]=Podešavanje postavki mreže +Comment[sr]=Podešavanja mreže +Comment[sv]=Konfigurera nätverksinställningar +Comment[tg]=Танзимоти шабака +Comment[tr]=Ağ Ayarlarını Yapılandır +Comment[uk]=Налаштувати параметри мережі +Comment[vi]=Cấu hình thiết lập mạng +Comment[zh_CN]=配置网络设置 +Comment[zh_HK]=配置網絡設定 +Comment[zh_TW]=設定網路組態 diff --git a/src-qt4/pc-controlpanel/items/network/pfmanager.desktop b/src-qt4/pc-controlpanel/items/network/pfmanager.desktop index c3c67cf46..adc70c0b9 100644 --- a/src-qt4/pc-controlpanel/items/network/pfmanager.desktop +++ b/src-qt4/pc-controlpanel/items/network/pfmanager.desktop @@ -7,45 +7,6 @@ Keywords="firewall" X-KDE-RootOnly=true X-KDE-SubstituteUID=true Categories=System; -Comment=Configure firewall settings -Comment[af]=Instel vuur muur instellings -Comment[ar]=اضبط إعدادات الجدار الناري -Comment[bg]=Конфигуриране на настройките на защитната стена -Comment[bs]=Podešavanja zaštitnog zida -Comment[ca]=Configureu les configuracions del tallafocs -Comment[da]=Indstil brandmurens opsætning -Comment[de]=Konfiguriere Firewalleinstellungen -Comment[el]=Ρυθμίσετε τις παραμέτρους του τείχους προστασίας -Comment[en_GB]=Configure firewall settings -Comment[en_ZA]=Configure firewall settings -Comment[es]=Configurar los ajustes del cortafuegos -Comment[et]=Muuda tulemüüri sätteid -Comment[fa]=پیکربندی تنظیمات فایروال -Comment[fi]=Määritä palomuurin asetukset -Comment[fr]=Configurer les paramétres du pare-feu -Comment[fr_CA]=Configurer les paramétres du pare-feu -Comment[he]=הגדרת אפשרויות -Comment[hr]=Namjestite vatrozid postavke -Comment[hu]=Tűzfalbeállítások módosítása -Comment[id]=Mengkonfigurasi aturan firewall -Comment[it]=Gestisci impostazioni firewall -Comment[ja]=ファイアーウォール設定 -Comment[ko]=방화벽 설정 -Comment[mn]=Галт ханын тохируулга хийх -Comment[nl]=Configureer firewall-instellingen -Comment[pl]=Konfiguruj ustawienia Zapory sieciowej -Comment[pt_BR]=Configure as opções de firewall -Comment[ru]=Настройка параметров брандмауэра -Comment[sk]=Konfigurácia firewallu -Comment[sr]=Podešavanja zaštitnog zida -Comment[sv]=Konfigurera brandväggsinställningar -Comment[tg]=Танзимоти мухофизати шабака -Comment[tr]=Firewall ayarlarını düzenleyin -Comment[uk]=Налаштування брандмауера -Comment[vi]=Cấu hình thiết lập tường lửa -Comment[zh_CN]=配置防火墙设置 -Comment[zh_HK]=配置防火牆設定 -Comment[zh_TW]=設定防火牆組態 Name=Firewall Manager Name[af]=Fuur Muur Bestuurder Name[ar]=مدير الجدار الناري @@ -68,7 +29,7 @@ Name[he]=ניהול Name[hr]=Upravitelj vatrozida Name[hu]=Tűzfalkezelő Name[id]=Pengelola Firewall -Name[it]=Gestione Firewall +Name[it]=Gestore Firewall Name[ja]=ファイアーウォールマネージャー Name[ko]=방화벽 관리자 Name[lt]=Užkarda @@ -79,7 +40,7 @@ Name[nl]=Firewallbeheerder Name[pl]=Menadżer Zapory Sieciowej Name[pt]=Firewall Name[pt_BR]=Gerenciador do Firewall -Name[ro]=Firewall Director +Name[ro]=Managerul firewall Name[ru]=Управление брандмауэром Name[sk]=Správca zabezpečenia firewall Name[sr]=Upravljač zaštitnog zida @@ -91,3 +52,43 @@ Name[vi]=Tường lửa quản lý Name[zh_CN]=防火墙管理程序 Name[zh_HK]=防火牆管理員 Name[zh_TW]=防火牆管理員 +Comment=Configure firewall settings +Comment[af]=Instel vuur muur instellings +Comment[ar]=اضبط إعدادات الجدار الناري +Comment[bg]=Конфигуриране на настройките на защитната стена +Comment[bs]=Podešavanja zaštitnog zida +Comment[ca]=Configureu les configuracions del tallafocs +Comment[da]=Indstil brandmurens opsætning +Comment[de]=Konfiguriere Firewalleinstellungen +Comment[el]=Ρυθμίσετε τις παραμέτρους του τείχους προστασίας +Comment[en_GB]=Configure firewall settings +Comment[en_ZA]=Configure firewall settings +Comment[es]=Configurar los ajustes del cortafuegos +Comment[et]=Muuda tulemüüri sätteid +Comment[fa]=پیکربندی تنظیمات فایروال +Comment[fi]=Määritä palomuurin asetukset +Comment[fr]=Configurer les paramétres du pare-feu +Comment[fr_CA]=Configurer les paramétres du pare-feu +Comment[he]=הגדרת אפשרויות +Comment[hr]=Namjestite vatrozid postavke +Comment[hu]=Tűzfalbeállítások módosítása +Comment[id]=Mengkonfigurasi aturan firewall +Comment[it]=Configurare le impostazioni del firewall +Comment[ja]=ファイアーウォール設定 +Comment[ko]=방화벽 설정 +Comment[mn]=Галт ханын тохируулга хийх +Comment[nl]=Configureer firewall-instellingen +Comment[pl]=Konfiguruj ustawienia Zapory sieciowej +Comment[pt_BR]=Configure as opções de firewall +Comment[ro]=Configurare setări firewall +Comment[ru]=Настройка параметров брандмауэра +Comment[sk]=Konfigurácia firewallu +Comment[sr]=Podešavanja zaštitnog zida +Comment[sv]=Konfigurera brandväggsinställningar +Comment[tg]=Танзимоти мухофизати шабака +Comment[tr]=Firewall ayarlarını düzenleyin +Comment[uk]=Налаштування брандмауера +Comment[vi]=Cấu hình thiết lập tường lửa +Comment[zh_CN]=配置防火墙设置 +Comment[zh_HK]=配置防火牆設定 +Comment[zh_TW]=設定防火牆組態 diff --git a/src-qt4/pc-controlpanel/items/software/easypbi.desktop b/src-qt4/pc-controlpanel/items/software/easypbi.desktop index 9fa833f10..723afa6b6 100644 --- a/src-qt4/pc-controlpanel/items/software/easypbi.desktop +++ b/src-qt4/pc-controlpanel/items/software/easypbi.desktop @@ -32,6 +32,7 @@ Name[mn]=EasyPBI Name[nl]=EasyPBI Name[pl]=EasyPBI Name[pt_BR]=PBIFácil +Name[ro]=EasyPBI Name[ru]=Легкий PBI Name[sr]=EasyPBI Name[sv]=EasyPBI @@ -66,6 +67,7 @@ GenericName[mn]=EasyPBI GenericName[nl]=EasyPBI GenericName[pl]=EasyPBI GenericName[pt_BR]=PBIFácil +GenericName[ro]=EasyPBI GenericName[ru]=Легкий PBI GenericName[sr]=EasyPBI GenericName[sv]=EasyPBI @@ -92,13 +94,14 @@ Comment[fr]=Système de création Simple PBI Comment[fr_CA]=Systèmes simple de création de PBI Comment[hr]=Jednostavan sustav za stvaranje PBI-a Comment[hu]=Egyszerű PBI-létrehozó rendszer -Comment[it]=Semplice sistema per la creazione di PBI +Comment[it]=Semplice sistema per la creazione dei PBI Comment[ja]=簡単に PBI を作成するシステム Comment[ko]=간단한 PBI 생성 시스템 Comment[mn]=PBI бүтээх энгийн систем Comment[nl]=Eenvoudig systeem voor het maken van PBI's Comment[pl]=Prosty system tworzenia PBI -Comment[pt_BR]=Sistema de criação de PBI simples +Comment[pt_BR]=Sistema simples de criação de PBI +Comment[ro]=Un sistem simplu de creare a PBI Comment[ru]=Простая система создания PBI Comment[sr]=Jednostavan sistem za pravljenje PBI Comment[sv]=Enkelt system för att skapa PBI-filer diff --git a/src-qt4/pc-controlpanel/items/software/pbi-bpm.desktop b/src-qt4/pc-controlpanel/items/software/pbi-bpm.desktop index 99ea78902..605279a2d 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-bpm.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-bpm.desktop @@ -32,6 +32,7 @@ Name[mn]=BPM Name[nl]=BPM Name[pl]=BPM Name[pt_BR]=BPM +Name[ro]=BPM Name[ru]=BPM Name[sr]=BPM Name[sv]=BPM @@ -66,6 +67,7 @@ GenericName[mn]=BPM GenericName[nl]=BPM GenericName[pl]=BPM GenericName[pt_BR]=BPM +GenericName[ro]=BPM GenericName[ru]=BPM GenericName[sr]=BPM GenericName[sv]=BPM @@ -93,13 +95,14 @@ Comment[fr_CA]=Un gestionnaire pour les collections de ports BSD Comment[he]=מנהל אוסף ports של BSD Comment[hr]=Upravljač zbirkom BSD portova Comment[hu]=Egy BSD port-gyűjtemény-kezelő -Comment[it]=Gestore della collezione dei port di BSD +Comment[it]=Gestore della raccolta dei port di BSD Comment[ja]=BSD Ports Collectionのマネージャー Comment[ko]=BSD ports 관리자 Comment[mn]=BSD портуудын цуглуулгыг удирдагч -Comment[nl]=Een beheerder van de BSD-ports-verzameling +Comment[nl]=Een beheerder van de BSD-poortenverzameling Comment[pl]=Menadżer kolekcji portów BSD Comment[pt_BR]=Gerenciador da coleção de ports BSD +Comment[ro]=Un manager BSD al colecției de porturi Comment[ru]=Менеджер коллекции портов BSD Comment[sr]=Upravljač zbirkom BSD portova Comment[sv]=En hanterare för BSD ports samlingen diff --git a/src-qt4/pc-controlpanel/items/software/pbi-dbsd-tools.desktop b/src-qt4/pc-controlpanel/items/software/pbi-dbsd-tools.desktop index 6ac52bddd..8e7528968 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-dbsd-tools.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-dbsd-tools.desktop @@ -32,6 +32,7 @@ Name[mn]=DesktopBSD Багажууд Name[nl]=DesktopBSD-gereedschappen Name[pl]=DesktopBSD - narzędzia Name[pt_BR]=Ferramentas DesktopBSD +Name[ro]=Unelte DesktopBSD Name[ru]=Инструменты DesktopBSD Name[sk]=DesktopBSD Nástroje Name[sr]=DesktopBSD alati @@ -70,6 +71,7 @@ Comment[mn]=DesktopBSD програм удирдах багаж Comment[nl]=DesktopBSD-softwarebeheergereedschap Comment[pl]=DesktopBSD - menadżer oprogramowania Comment[pt_BR]=Ferramenta de gerenciamento de software do DesktopBSD +Comment[ro]=Instrumentul de mangement software DesktopBSD Comment[ru]=Средство управления программным обеспечением DesktopBSD Comment[sk]=Nástroj správy software DesktopBSD Comment[sr]=DesktopBSD alat za upravljanje programa diff --git a/src-qt4/pc-controlpanel/items/software/pbi-kports.desktop b/src-qt4/pc-controlpanel/items/software/pbi-kports.desktop index 17cabed06..55efa34be 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-kports.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-kports.desktop @@ -32,6 +32,7 @@ Name[mn]=Кпортууд Name[nl]=Kports Name[pl]=Kports Name[pt_BR]=Kports +Name[ro]=Kports Name[ru]=Kports Name[sr]=Kports Name[sv]=Kports @@ -66,6 +67,7 @@ GenericName[mn]=Кпортууд GenericName[nl]=Kports GenericName[pl]=Kports GenericName[pt_BR]=Kports +GenericName[ro]=Kports GenericName[ru]=Kports GenericName[sr]=Kports GenericName[sv]=Kports diff --git a/src-qt4/pc-controlpanel/items/software/pbi-q4wine.desktop b/src-qt4/pc-controlpanel/items/software/pbi-q4wine.desktop index 85eb56cbd..abc40c540 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-q4wine.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-q4wine.desktop @@ -32,6 +32,7 @@ Name[mn]=Q4Вайн Name[nl]=Q4Wine Name[pl]=Q4Wine Name[pt_BR]=Q4Wine +Name[ro]=Q4Wine Name[ru]=Q4Wine Name[sk]=Q4Wine Name[sl]=Q4Wine @@ -71,6 +72,7 @@ Comment[mn]=QT дээр бичигдсэн Вайн тохируулгын ба Comment[nl]=Wine-beheergereedschap gemaakt in QT Comment[pl]=Wine - narzędzie konfiguracyjne używające Qt Comment[pt_BR]=Ferramenta de gerenciamento do Wine escrita em Qt +Comment[ro]=Instrument de management Wine scris în Qt Comment[ru]=Управляющий инструмент для Wine написанный на Qt Comment[sr]=QT program za podešavanja Wine Comment[sv]=Hanterings verktyg för Wine skrivet i Qt diff --git a/src-qt4/pc-controlpanel/items/software/pbi-wine64cfg.desktop b/src-qt4/pc-controlpanel/items/software/pbi-wine64cfg.desktop index e00c0e26d..93e741b5a 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-wine64cfg.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-wine64cfg.desktop @@ -32,6 +32,7 @@ Name[mn]=Вайн Тохируулга Name[nl]=Wine-configuratie Name[pl]=Wine - konfiguracja Name[pt_BR]=Configuração do Wine +Name[ro]=Configurare Wine Name[ru]=Конфигурация Wine Name[sk]=Konfigurácia Wine Name[sr]=Wine podešavanja @@ -63,13 +64,14 @@ Comment[he]=הגדרות Wine Comment[hr]=Wine postavke Comment[hu]=Wine konfigurálás Comment[id]=Konfigurasi Wine -Comment[it]=configurazione Wine +Comment[it]=Configurazione Wine Comment[ja]=Wine の設定 Comment[ko]=Wine 설정 Comment[mn]=Вайн тохируулга Comment[nl]=Wine-configuratie Comment[pl]=Wine - konfiguracja Comment[pt_BR]=Configuração do Wine +Comment[ro]=Configurare Wine Comment[ru]=Конфигурация Wine Comment[sk]=Konfigurácia Wine Comment[sr]=Wine podešavanja diff --git a/src-qt4/pc-controlpanel/items/software/pbi-winecfg.desktop b/src-qt4/pc-controlpanel/items/software/pbi-winecfg.desktop index 76a5e538b..b1e6f7cb5 100644 --- a/src-qt4/pc-controlpanel/items/software/pbi-winecfg.desktop +++ b/src-qt4/pc-controlpanel/items/software/pbi-winecfg.desktop @@ -32,6 +32,7 @@ Name[mn]=Вайн Тохируулга Name[nl]=Wine-configuratie Name[pl]=Wine - konfiguracja Name[pt_BR]=Configuração do Wine +Name[ro]=Configurare Wine Name[ru]=Конфигурация Wine Name[sk]=Konfigurácia Wine Name[sr]=Wine podešavanja @@ -63,13 +64,14 @@ Comment[he]=הגדרות Wine Comment[hr]=Wine postavke Comment[hu]=Wine konfigurálás Comment[id]=Konfigurasi Wine -Comment[it]=configurazione Wine +Comment[it]=Configurazione Wine Comment[ja]=Wine の設定 Comment[ko]=Wine 설정 Comment[mn]=Вайн тохируулга Comment[nl]=Wine-configuratie Comment[pl]=Wine - konfiguracja Comment[pt_BR]=Configuração do Wine +Comment[ro]=Configurare Wine Comment[ru]=Конфигурация Wine Comment[sk]=Konfigurácia Wine Comment[sr]=Wine podešavanja diff --git a/src-qt4/pc-controlpanel/items/software/pc-pkgmanager.desktop b/src-qt4/pc-controlpanel/items/software/pc-pkgmanager.desktop index e36a71eee..06c458dbf 100644 --- a/src-qt4/pc-controlpanel/items/software/pc-pkgmanager.desktop +++ b/src-qt4/pc-controlpanel/items/software/pc-pkgmanager.desktop @@ -8,7 +8,7 @@ Categories=System; Name=Package Manager Name[af]=Pakket Bestuurder Name[bs]=Upravljač paketa -Name[de]=Paketverwalter +Name[de]=Paketverwaltung Name[el]=Διαχειριστής πακέτων Name[en_GB]=Package Manager Name[en_ZA]=Package Manager @@ -17,12 +17,16 @@ Name[et]=Pakihaldur Name[fr]=Gestionnaire de Paquets Name[fr_CA]=Gestionnaire de Paquet Name[hr]=Upravljač paketa +Name[it]=Gestore Pacchetti Name[ja]=パッケージマネージャー Name[nl]=Pakketbeheerder Name[pl]=Menadżer Pakietów Name[pt_BR]=Gerenciador de pacotes +Name[ro]=Manager de pachete Name[sr]=Upravljač paketa Name[sv]=Pakethanterare -Name[uk]=Менеджер пакунків +Name[uk]=Керування пакунками Name[vi]=Trình quản lý gói Name[zh_CN]=包管理器 +Name[zh_HK]=套件管理員 +Name[zh_TW]=套件管理員 diff --git a/src-qt4/pc-controlpanel/items/software/pc-updategui.desktop b/src-qt4/pc-controlpanel/items/software/pc-updategui.desktop index 8c3e4f3f4..ab5d78a79 100644 --- a/src-qt4/pc-controlpanel/items/software/pc-updategui.desktop +++ b/src-qt4/pc-controlpanel/items/software/pc-updategui.desktop @@ -31,6 +31,7 @@ Name[mn]=Шинэчлэлтийг удирдагч Name[nl]=Updatebeheerder Name[pl]=Manadżer Aktualizacji Name[pt_BR]=Gerenciador de atualização +Name[ro]=Manager de actualizări Name[ru]=Менеджер обновлений Name[sk]=Správca aktualizácii Name[sr]=Upravljač obnavljanja diff --git a/src-qt4/pc-controlpanel/items/system/about.desktop b/src-qt4/pc-controlpanel/items/system/about.desktop index 622a791b2..75951e2b8 100644 --- a/src-qt4/pc-controlpanel/items/system/about.desktop +++ b/src-qt4/pc-controlpanel/items/system/about.desktop @@ -20,11 +20,12 @@ Name[fr]=À propos de Name[fr_CA]=Au sujet de Name[hr]=O Name[hu]=Névjegy -Name[it]=Circa +Name[it]=A riguardo Name[ja]=バージョン情報 Name[nl]=Over Name[pl]=O Name[pt_BR]=Sobre +Name[ro]=Despre Name[ru]=О программе Name[sr]=O Name[sv]=Om @@ -52,9 +53,10 @@ Comment[hr]=Informacije o PC-BSD sustavu Comment[hu]=Információ a PC–BSD rendszerről Comment[it]=Informazioni sul sistema PC-BSD Comment[ja]=PC-BSD システムの情報 -Comment[nl]=Informatie over het PC-BSD systeem +Comment[nl]=Informatie over het PC-BSD-systeem Comment[pl]=Informacje o systemie PC-BSD Comment[pt_BR]=Informação do sistema PC-BSD +Comment[ro]=Informații despre sistemul PC-BSD Comment[ru]=Информация о системе PC-BSD Comment[sr]=Informacije o PC-BSD sistemu Comment[sv]=Information om PC-BSD systemet diff --git a/src-qt4/pc-controlpanel/items/system/gnome-system-log.desktop b/src-qt4/pc-controlpanel/items/system/gnome-system-log.desktop index b63f55280..ffb4d309d 100644 --- a/src-qt4/pc-controlpanel/items/system/gnome-system-log.desktop +++ b/src-qt4/pc-controlpanel/items/system/gnome-system-log.desktop @@ -48,7 +48,7 @@ Name[hi]=लॉग फ़ाइल प्रदर्शक Name[hr]=Prikaz zapisa Name[hu]=Naplófájl-megtekintő Name[id]=Penampil Berkas Log -Name[it]=Visualizzatore di log file +Name[it]=Log File Viewer Name[ja]=ログファイルビューワー Name[kn]=ದಾಖಲೆ ಕಡತದ ವೀಕ್ಷಕ Name[ko]=로그 파일 뷰어 @@ -58,13 +58,13 @@ Name[ml]=ലോഗ് ഫയല്‍ ദര്‍ശിനി Name[mn]=Системийн ажиллагааны бүртгэлийн жагсаалтын файлыг харуулагч Name[mr]=लॉग फाइल दर्शिका Name[nb]=Logg Fil Viser -Name[nl]=Logboek-kijker +Name[nl]=Logboekkijker Name[or]=ଲଗ ଫାଇଲ ପ୍ରଦର୍ଶିକା Name[pa]=ਲਾਗ ਫਾਇਲ ਦਰਸ਼ਕ Name[pl]=Przeglądarka plików dziennika Name[pt]=Visualizador de Ficheiros de Registo Name[pt_BR]=Visualizador de arquivos de log -Name[ro]=Vizualizator fișier înregistrări +Name[ro]=Vizualizarea fișierului de autentificare Name[ru]=Просмотр файлов журналов Name[sk]=Prehliadač systémových záznamov Name[sl]=Pregledovalnik dnevnikov @@ -119,7 +119,7 @@ Comment[hi]=तंत्र लॉग फ़ाइल दिखाएँ व म Comment[hr]=Prikazivanje ili nadgledanje sistemskih zapisa Comment[hu]=Rendszernapló-fájlok megtekintése vagy figyelése Comment[id]=Melihat atau mengamati berkas log sistem -Comment[it]=Leggi o monitorizza i log file di sistema +Comment[it]=Visualizza o monitora i file log del sistema Comment[ja]=システムログファイルモニター Comment[kn]=ವ್ಯವಸ್ಥೆಯ ದಾಖಲೆ ಕಡತಗಳನ್ನು ನೋಡಿ ಅಥವ ಮೇಲ್ವಿಚಾರಣೆ ನಡೆಸಿ Comment[ko]=시스템 로그 파일을 보거나 모니터합니다. @@ -140,7 +140,7 @@ Comment[pl]=Zobacz lub monitoruj dziennik systemowy Comment[ps]=غونډال خبرال دوتنې کتل يا څارل Comment[pt]=Ver ou monitorizar ficheiros de registo do sistema Comment[pt_BR]=Visualiza e monitora aquivos de log do sistema -Comment[ro]=Vizualizează sau monitorizează fișierele cu înregistrările de sistem +Comment[ro]=Vizualizează sau monitorizează fișierele jurnalului de sistem Comment[ru]=Просмотр или контроль файлов системных журналов Comment[sk]=Zobraziť alebo sledovať súbory systémových záznamov Comment[sl]=Pregledovanje ali nadzor sistemskih dnevniških datotek diff --git a/src-qt4/pc-controlpanel/items/system/ksystemlog.desktop b/src-qt4/pc-controlpanel/items/system/ksystemlog.desktop index 7cf0f29d9..1c67fecc6 100644 --- a/src-qt4/pc-controlpanel/items/system/ksystemlog.desktop +++ b/src-qt4/pc-controlpanel/items/system/ksystemlog.desktop @@ -96,7 +96,7 @@ GenericName[hr]=Prikaz sistemskih zapisa GenericName[hu]=Rendszernapló-megtekintő GenericName[id]=Penampil Log Sistem GenericName[is]=Kerfisannálabirtir -GenericName[it]=Visualizzatore di log di sistema +GenericName[it]=System Log Viewer GenericName[ja]=システムログビューワー GenericName[kk]=Жүйелік журналын қарау GenericName[ko]=시스템 로그 뷰어 @@ -109,7 +109,7 @@ GenericName[pa]=ਸਿਸਟਮ ਲਾਗ ਦਰਸ਼ਕ GenericName[pl]=Przeglądarka dziennika Systemowego GenericName[pt]=Visualizador de Registos do Sistema GenericName[pt_BR]=Visualizador de logs do sistema -GenericName[ro]=Vizualizator jurnale de sistem +GenericName[ro]=Vizualizarea jurnalului de sistem GenericName[ru]=Просмотр системных журналов GenericName[sr@ijekavian]=Приказивач системског дневника GenericName[sr@ijekavianlatin]=Prikazivač sistemskog dnevnika @@ -154,7 +154,7 @@ Comment[hr]=Alat za prikazivanje sistemskih zapisa Comment[hu]=Rendszernapló-megtekintő eszköz Comment[id]=Alat penampil log sistem Comment[is]=Tól til að skoða kerfisannála (system logs) -Comment[it]=Strumento di visualizzazione di log di sistema +Comment[it]=Strumento di visualizzazione dei log di sistema Comment[ja]=システムログ閲覧ツール Comment[kk]=Жүйелік журналын қарау құралы Comment[ko]=시스템 로그 뷰어 도구 @@ -170,7 +170,7 @@ Comment[pa]=ਸਿਸਟਮ ਲਾਗ ਦਰਸ਼ਕ ਟੂਲ Comment[pl]=Narzędzie do przeglądania dziennika systemowego Comment[pt]=Ferramenta de visualização de registos do sistema Comment[pt_BR]=Ferramenta de visualização de logs do sistema -Comment[ro]=Unealtă de vizualizare a jurnalelor de sistem +Comment[ro]=Instrumentul de vizualizare al jurnalului de sistem Comment[ru]=Инструмент для просмотра системных журналов Comment[sk]=Nástroj na prehliadanie záznamov systému Comment[sl]=Orodje za pregledovanje sistemskih dnevnikov diff --git a/src-qt4/pc-controlpanel/items/system/lxde-lxtask.desktop b/src-qt4/pc-controlpanel/items/system/lxde-lxtask.desktop index bf44c40a6..c8a59e45b 100644 --- a/src-qt4/pc-controlpanel/items/system/lxde-lxtask.desktop +++ b/src-qt4/pc-controlpanel/items/system/lxde-lxtask.desktop @@ -7,52 +7,6 @@ StartupNotify=true Type=Application Categories=GTK;System;Monitor; -Comment=Manage running processes -Comment[af]=Bestuur hardloop prosesse -Comment[ar]=إدارة العمليات قيد التنفيذ -Comment[bg]=Управление на стартираните процеси -Comment[bs]=Upravljanje pokrenutih procesa -Comment[ca]=Gestioneu els processos en execució -Comment[cs]=Správa spuštěných procesů -Comment[da]=Håndter kørende processer -Comment[de]=Verwaltung laufender Prozesse -Comment[el]=Διαχείριση διεργασιών που εκτελούνται -Comment[en_GB]=Manage running processes -Comment[en_ZA]=Manage running processes -Comment[es]=Administrar procesos en ejecución -Comment[es_VE]=Administrar procesos en ejecución -Comment[et]=Halda jooksvaid protsesse -Comment[fa]=مدیریت پردازش های در حال اجرا -Comment[fi]=Hallitse käynnissä olevia prosesseja -Comment[fr]=Gérer les processus en cours -Comment[fr_CA]=Gérer les processus en cours -Comment[gl]=Xestionar os procesos en execución -Comment[he]=ניהול תהליכים רצים -Comment[hr]=Upravljanje pokrenutim procesima -Comment[hu]=Futó folyamatok kezelése -Comment[id]=Mengelola proses yang berjalan -Comment[it]=Gestisci i processi attivi -Comment[ja]=実行中のプロセスを管理する -Comment[ko]=실행중인 프로세스를 관리 -Comment[lt]=Valdo veikiančius procesus -Comment[mn]=Идэвхтэй ажиллагаатай процессыг удирдах -Comment[nl]=Beheer lopende processen -Comment[nn]=Handsam prosessar som køyrer -Comment[pl]=Zarządzaj działającymi procesami -Comment[pt]=Gestão dos processos em execução -Comment[pt_BR]=Gerencia processos correntes -Comment[ru]=Управление запущенными процессами -Comment[sk]=Správa bežiacich procesov -Comment[sl]=Upravljanje zagnanih procesov -Comment[sr]=Upravljanje pokrenutih procesa -Comment[sv]=Hantera processer som körs -Comment[tg]=Идоракунии амалҳои ҷорӣ -Comment[tr]=Çalışan süreçleri yönetin -Comment[uk]=Управління запущеними процесами -Comment[vi]=Quản lý các tiến trình đang chạy -Comment[zh_CN]=管理运行中的进程 -Comment[zh_HK]=管理正在執行的進程 -Comment[zh_TW]=管理正在執行的程序 Name=Task Manager Name[af]=Taak Bestuurder Name[ar]=مدير المهام @@ -88,6 +42,7 @@ Name[nn]=Oppgåvestyring Name[pl]=Menadżer Zadań Name[pt]=Gestor de Tarefas Name[pt_BR]=Gerenciador de tarefas +Name[ro]=Manager de activități Name[ru]=Диспетчер задач Name[sk]=Správca úloh Name[sl]=Nadzornik opravil @@ -126,7 +81,7 @@ GenericName[he]=מנהל תהליכים GenericName[hr]=Upravitelj procesa GenericName[hu]=Folyamatkezelő GenericName[id]=Pengelola Proses -GenericName[it]=Manager processi +GenericName[it]=Gestore dei processi GenericName[ja]=プロセスマネージャー GenericName[ko]=프로세스 관리자 GenericName[lt]=Procesų valdyklė @@ -136,6 +91,7 @@ GenericName[nn]=Prosesshandsamar GenericName[pl]=Menadżer procesów GenericName[pt]=Gestor de processos GenericName[pt_BR]=Gerenciador de processos +GenericName[ro]=Manager de proces GenericName[ru]=Менеджер процессов GenericName[sk]=Správca procesov GenericName[sl]=Upravitelj procesov @@ -148,3 +104,50 @@ GenericName[vi]=Quản lý quá trình GenericName[zh_CN]=进程管理器 GenericName[zh_HK]=進程管理員 GenericName[zh_TW]=處理程序管理員 +Comment=Manage running processes +Comment[af]=Bestuur hardloop prosesse +Comment[ar]=إدارة العمليات قيد التنفيذ +Comment[bg]=Управление на стартираните процеси +Comment[bs]=Upravljanje pokrenutih procesa +Comment[ca]=Gestioneu els processos en execució +Comment[cs]=Správa spuštěných procesů +Comment[da]=Håndter kørende processer +Comment[de]=Verwaltung laufender Prozesse +Comment[el]=Διαχείριση διεργασιών που εκτελούνται +Comment[en_GB]=Manage running processes +Comment[en_ZA]=Manage running processes +Comment[es]=Administrar procesos en ejecución +Comment[es_VE]=Administrar procesos en ejecución +Comment[et]=Halda jooksvaid protsesse +Comment[fa]=مدیریت پردازش های در حال اجرا +Comment[fi]=Hallitse käynnissä olevia prosesseja +Comment[fr]=Gérer les processus en cours +Comment[fr_CA]=Gérer les processus en cours +Comment[gl]=Xestionar os procesos en execución +Comment[he]=ניהול תהליכים רצים +Comment[hr]=Upravljanje pokrenutim procesima +Comment[hu]=Futó folyamatok kezelése +Comment[id]=Mengelola proses yang berjalan +Comment[it]=Gestire i processi attivi +Comment[ja]=実行中のプロセスを管理する +Comment[ko]=실행중인 프로세스를 관리 +Comment[lt]=Valdo veikiančius procesus +Comment[mn]=Идэвхтэй ажиллагаатай процессыг удирдах +Comment[nl]=Beheer lopende processen +Comment[nn]=Handsam prosessar som køyrer +Comment[pl]=Zarządzaj działającymi procesami +Comment[pt]=Gestão dos processos em execução +Comment[pt_BR]=Gerencia processos correntes +Comment[ro]=Gestionarea proceselor care rulează +Comment[ru]=Управление запущенными процессами +Comment[sk]=Správa bežiacich procesov +Comment[sl]=Upravljanje zagnanih procesov +Comment[sr]=Upravljanje pokrenutih procesa +Comment[sv]=Hantera processer som körs +Comment[tg]=Идоракунии амалҳои ҷорӣ +Comment[tr]=Çalışan süreçleri yönetin +Comment[uk]=Управління запущеними процесами +Comment[vi]=Quản lý các tiến trình đang chạy +Comment[zh_CN]=管理运行中的进程 +Comment[zh_HK]=管理正在執行的進程 +Comment[zh_TW]=管理正在執行的程序 diff --git a/src-qt4/pc-controlpanel/items/system/pbi-thefish.desktop b/src-qt4/pc-controlpanel/items/system/pbi-thefish.desktop index 2ed26ba4d..e391b5b02 100644 --- a/src-qt4/pc-controlpanel/items/system/pbi-thefish.desktop +++ b/src-qt4/pc-controlpanel/items/system/pbi-thefish.desktop @@ -33,6 +33,7 @@ Name[mn]=Загас Name[nl]=De vis Name[pl]=Fish Name[pt_BR]=O peixe +Name[ro]=Pește Name[ru]=The fish Name[sk]=The fish Name[sr]=The fish @@ -67,6 +68,7 @@ Comment[ja]=fish: rc.conf エディター Comment[nl]=De vis: bewerker van rc.conf Comment[pl]=Fish: edytor rc.conf Comment[pt_BR]=The fish: editor do rc.conf +Comment[ro]=The fish: editor rc.conf Comment[ru]=Рыба: редактор rc.conf Comment[sr]=The fish: rc.conf editor Comment[sv]=The fish: rc.conf editor diff --git a/src-qt4/pc-controlpanel/items/system/pc-adsldap.desktop b/src-qt4/pc-controlpanel/items/system/pc-adsldap.desktop index 8d7c07830..7d84ee95d 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-adsldap.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-adsldap.desktop @@ -20,11 +20,12 @@ Name[fr]=Active Directory & LDAP Name[fr_CA]=Répertoire actif & LDAP Name[hr]=Active Directory & LDAP Name[hu]=Active Directory és LDAP -Name[it]=Attiva Directory & LDAP +Name[it]=Active Directory & LDAP Name[ja]=Active Directory と LDAP Name[nl]=Actieve map & LDAP Name[pl]=Active Directory & LDAP Name[pt_BR]=Active Directory e LDAP +Name[ro]=Director activ & LDAP Name[ru]=Active Directory и LDAP Name[sr]=Active Directory & LDAP Name[sv]=Active Directory & LDAP diff --git a/src-qt4/pc-controlpanel/items/system/pc-bootconfig.desktop b/src-qt4/pc-controlpanel/items/system/pc-bootconfig.desktop index 26c4a13e8..b7d8683db 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-bootconfig.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-bootconfig.desktop @@ -9,26 +9,43 @@ Terminal=false Type=Application Categories=System;Settings; Name=Boot Manager +Name[ar]=إدارة التشغيل Name[de]=Boot-Verwaltung Name[en_GB]=Boot Manager Name[en_ZA]=Boot Manager +Name[es]=Gestor de arranque +Name[et]=Alglaadimishaldur Name[fr]=Gestionnaire de démarrage Name[fr_CA]=Gestionnaire de démarrage +Name[it]=Boot Manager Name[ja]=起動マネージャー +Name[nl]=Opstartbeheerder Name[pl]=Menadżer botowania -Name[pt_BR]=Gerenciador de Boot +Name[pt_BR]=Gerenciador de Inicialização +Name[ro]=Manager Boot +Name[sv]=Starthanterare Name[uk]=Налаштування завантаження Name[vi]=khởi động Trình quản lý Name[zh_CN]=启动管理器 +Name[zh_HK]=開機管理員 +Name[zh_TW]=開機管理員 Comment=Configure bootup options Comment[de]=Optionen für den Systemstart festlegen Comment[en_GB]=Configure bootup options Comment[en_ZA]=Configure bootup options +Comment[es]=Configurar las opciones de arranque +Comment[et]=Muuda alglaadimise valikuid Comment[fr]=Configurer les options de démarrage Comment[fr_CA]=Configurer les options de démarrage +Comment[it]=Configura le opzioni di avvio Comment[ja]=起動オプションを設定します +Comment[nl]=Opstartopties instellen Comment[pl]=Konfiguruj opcje botowania. Comment[pt_BR]=Configure as opções de inicialização +Comment[ro]=Configurare opțiuni de bootup +Comment[sv]=Konfiguera startalternativ Comment[uk]=Налаштування завантаження комп'ютера Comment[vi]=Cấu hình tùy chọn khởi động hệ thống Comment[zh_CN]=配置启动选项 +Comment[zh_HK]=設定開機選項 +Comment[zh_TW]=設定開機選項 diff --git a/src-qt4/pc-controlpanel/items/system/pc-checkhw.desktop b/src-qt4/pc-controlpanel/items/system/pc-checkhw.desktop index aa51bd33b..3aa3abbbc 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-checkhw.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-checkhw.desktop @@ -22,9 +22,11 @@ Name[hr]=Usklađenost aparata Name[hu]=Hardver-kompatibilitás Name[it]=Compatibilità Hardware Name[ja]=ハードウェア互換性 +Name[ko]=하드웨어 호환성 Name[nl]=Verenigbaarheid van apparaten Name[pl]=Kompatybilność sprzętowa Name[pt_BR]=Compatibilidade de Hardware +Name[ro]=Compatibilitate hardware Name[ru]=Аппаратная совместимость Name[sr]=Usklađenost aparata Name[sv]=Hådvarukompabilitet diff --git a/src-qt4/pc-controlpanel/items/system/pc-dmconf.desktop b/src-qt4/pc-controlpanel/items/system/pc-dmconf.desktop index 1e4b4c970..346e4cacd 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-dmconf.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-dmconf.desktop @@ -13,16 +13,23 @@ Type=Application Categories=System;Settings; Name=Login Manager Settings Name[af]=Teken Bestuurder Instellings -Name[de]=Loginmanager Einstellungen +Name[ar]=الدخول لادارة الاعدادت +Name[de]=Einstellungen der Anmeldeverwaltung Name[en_GB]=Login Manager Settings Name[en_ZA]=Login Manager Settings +Name[es]=Configuración del Administrador de Acceso +Name[et]=Sisselogimishalduri sätted Name[fr]=Paramètres du Gestionnaire de connexion Name[fr_CA]=Paramètres du Gestionnaire de connexion +Name[it]=Accedere alle Impostazioni di Gestione Name[ja]=ログインマネージャーの設定 Name[nl]=Instellingen van aanmeldbeheerder Name[pl]=Ustawienia menadżera logowania -Name[pt_BR]=Configurações do gerenciador de login +Name[pt_BR]=Configurações do gerenciador de sessão +Name[ro]=Setări manager autentificare Name[sv]=Inställningar för skärmhanteraren Name[uk]=Налаштування входу до системи Name[vi]=Đăng nhập Settings Manager Name[zh_CN]=登陆管理器设置 +Name[zh_HK]=登入管理員設定 +Name[zh_TW]=登入管理員設定 diff --git a/src-qt4/pc-controlpanel/items/system/pc-gdmconf.desktop b/src-qt4/pc-controlpanel/items/system/pc-gdmconf.desktop index 1499570d1..d8033623a 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-gdmconf.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-gdmconf.desktop @@ -13,15 +13,23 @@ Type=Application Categories=System;Settings; Name=GDM Manager Name[af]=GDM Bestuurder +Name[ar]=مدير GDM Name[de]=GDM-Verwaltung Name[en_GB]=GDM Manager Name[en_ZA]=GDM Manager Name[es]=Administrador GDM +Name[et]=GDMi haldur Name[fr]=Gestionnaire GDM Name[fr_CA]=Gestionnaire GDM +Name[it]=GDM Manager Name[ja]=GDM マネージャー +Name[nl]=GDM-beheerder Name[pl]=Menadżer GDM Name[pt_BR]=Gerenciador de GDM +Name[ro]=Manager GDM +Name[sv]=GDM Manager Name[uk]=Налаштування GDM Name[vi]=GDM quản lý Name[zh_CN]=GDM管理器 +Name[zh_HK]=GDM 管理員 +Name[zh_TW]=GDM 管理員 diff --git a/src-qt4/pc-controlpanel/items/system/pc-servicemanager.desktop b/src-qt4/pc-controlpanel/items/system/pc-servicemanager.desktop index 44ed45fd4..4b85733af 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-servicemanager.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-servicemanager.desktop @@ -7,6 +7,46 @@ Type=Application X-KDE-RootOnly=true X-KDE-SubstituteUID=true Categories=System;Settings;Qt; +Name=Service Manager +Name[af]=Diens Bestuurder +Name[ar]=مدير الخدمات +Name[bg]=Мениджър услуги +Name[bs]=Upravljač servisa +Name[ca]=Gestor de serveis +Name[da]=Servicehåndtering +Name[de]=Diensteverwaltung +Name[el]=Διαχείριση υπηρεσιών +Name[en_GB]=Service Manager +Name[en_ZA]=Service Manager +Name[es]=Gestor de servicios. +Name[et]=Teenuste haldaja +Name[fa]=مدیر سرویس +Name[fr]=Gestionnaire de services +Name[fr_CA]=Gestionnaire de services +Name[he]=מנהל שירותים +Name[hr]=Upravitelj servisa +Name[hu]=Szolgáltatáskezelő +Name[id]=Pengelola Layanan +Name[it]=Gestore Servizi +Name[ja]=サービスマネージャー +Name[ko]=서비스 관리자 +Name[mn]=Үйлчилгээ Удирдагч +Name[nb]=Tjeneste behandler +Name[nl]=Dienstenbeheerder +Name[pl]=Menadżer Usług +Name[pt_BR]=Gerenciador de Serviços +Name[ro]=Managerul de servicii +Name[ru]=Управление службами +Name[sk]=Správca úloh +Name[sr]=Upravljač servisa +Name[sv]=Hanterare för tjänster +Name[tg]=Мудири хидматҳо +Name[tr]=Servis Yöneticisi +Name[uk]=Керування службами +Name[vi]=Dịch vụ quản lý +Name[zh_CN]=服务管理程序 +Name[zh_HK]=服務管理員 +Name[zh_TW]=服務管理員 Comment=PC-BSD services management Comment[af]=PC-BSD dienste bestuurder Comment[ar]=إدارة خدمات PC-BSD @@ -35,6 +75,7 @@ Comment[mn]=PC-BSD үйлчилгээний удирдлага Comment[nl]=PC-BSD dienstenbeheer Comment[pl]=PC-BSD - zarządzanie usługami Comment[pt_BR]=Gerenciamento de serviços PC-BSD +Comment[ro]=Managementul serviciilor PC-BSD Comment[ru]=Управление службами PC-BSD Comment[sk]=PC-BSD správca služieb Comment[sr]=Podešavanje PC-BSD servisa @@ -46,43 +87,3 @@ Comment[vi]=PC-BSD quản lý dịch vụ Comment[zh_CN]=PC-BSD服务管理 Comment[zh_HK]=PC-BSD 服務管理 Comment[zh_TW]=PC-BSD服務管理 -Name=Service Manager -Name[af]=Diens Bestuurder -Name[ar]=مدير الخدمات -Name[bg]=Мениджър услуги -Name[bs]=Upravljač servisa -Name[ca]=Gestor de serveis -Name[da]=Servicehåndtering -Name[de]=Diensteverwaltung -Name[el]=Διαχείριση υπηρεσιών -Name[en_GB]=Service Manager -Name[en_ZA]=Service Manager -Name[es]=Gestor de servicios. -Name[et]=Teenuste haldaja -Name[fa]=مدیر سرویس -Name[fr]=Gestionnaire de services -Name[fr_CA]=Gestionnaire de services -Name[he]=מנהל שירותים -Name[hr]=Upravitelj servisa -Name[hu]=Szolgáltatáskezelő -Name[id]=Pengelola Layanan -Name[it]=Gestione Servizi -Name[ja]=サービスマネージャー -Name[ko]=서비스 관리자 -Name[mn]=Үйлчилгээ Удирдагч -Name[nb]=Tjeneste behandler -Name[nl]=Dienstenbeheerder -Name[pl]=Menadżer Usług -Name[pt_BR]=Gerenciador de Serviços -Name[ro]=director de servicii -Name[ru]=Управление службами -Name[sk]=Správca úloh -Name[sr]=Upravljač servisa -Name[sv]=Hanterare för tjänster -Name[tg]=Мудири хидматҳо -Name[tr]=Servis Yöneticisi -Name[uk]=Керування службами -Name[vi]=Dịch vụ quản lý -Name[zh_CN]=服务管理程序 -Name[zh_HK]=服務管理員 -Name[zh_TW]=服務管理員 diff --git a/src-qt4/pc-controlpanel/items/system/pc-sysmanager.desktop b/src-qt4/pc-controlpanel/items/system/pc-sysmanager.desktop index 6f2d43d77..13c8806a1 100644 --- a/src-qt4/pc-controlpanel/items/system/pc-sysmanager.desktop +++ b/src-qt4/pc-controlpanel/items/system/pc-sysmanager.desktop @@ -28,7 +28,7 @@ Name[he]=מנהל מערכת Name[hr]=Upravitelj sustava Name[hu]=Rendszerkezelő Name[id]=Pengelola Sistem -Name[it]=Gestione del Sistema +Name[it]=Gestore del Sistema Name[ja]=システムマネージャー Name[ko]=시스템 관리자 Name[lt]=Sistemos tvarkytuvė @@ -39,7 +39,7 @@ Name[nl]=Systeembeheerder Name[pl]=Menadżer systemu Name[pt]=Gestor do sistema Name[pt_BR]=Gerenciador do Sistema -Name[ro]=director de sistem +Name[ro]=Director de sistem Name[ru]=Управление системой Name[sk]=Správca systému Name[sl]=Upravljanje sistema @@ -80,6 +80,7 @@ Comment[mn]=PC-BSD системийн удирдлага Comment[nl]=PC-BSD systeembeheer Comment[pl]=PC-BSD - zarządzanie systemem Comment[pt_BR]=Gerenciamento do sistema PC-BSD +Comment[ro]=Managementul de sistem PC-BSD Comment[ru]=Управление системой PC-BSD Comment[sk]=PC-BSD správca systému Comment[sr]=Podešavanje PC-BSD sistema diff --git a/src-qt4/pc-controlpanel/items/system/pcusermanager.desktop b/src-qt4/pc-controlpanel/items/system/pcusermanager.desktop index c5d809220..bde23aeb2 100644 --- a/src-qt4/pc-controlpanel/items/system/pcusermanager.desktop +++ b/src-qt4/pc-controlpanel/items/system/pcusermanager.desktop @@ -31,7 +31,7 @@ Name[he]=מנהל המשתמשים Name[hr]=Upravitelj korisnika Name[hu]=Felhasználó-kezelő Name[id]=Pengelola Pengguna -Name[it]=Gestione Utente +Name[it]=Gestore Utente Name[ja]=ユーザー管理 Name[ko]=사용자 관리자 Name[mn]=Хэрэглэгчийн хэрэгсэл @@ -74,7 +74,7 @@ Comment[he]=ניהול משתמשים וקבוצות Comment[hr]=Upravlja korisnicima i grupama Comment[hu]=Felhasználók és csoportok kezelése Comment[id]=Mengelola user dan grup -Comment[it]=Gestisci gli utenti e i gruppi +Comment[it]=Gestione utenti e gruppi Comment[ja]=ユーザーとグループの管理 Comment[ko]=사용자와 그룹 관리 Comment[lt]=Administruoti vartotojus ir grupes diff --git a/src-qt4/pc-controlpanel/items/system/webmin.desktop b/src-qt4/pc-controlpanel/items/system/webmin.desktop index 6cbc2a56e..35b72666b 100644 --- a/src-qt4/pc-controlpanel/items/system/webmin.desktop +++ b/src-qt4/pc-controlpanel/items/system/webmin.desktop @@ -32,6 +32,7 @@ Name[mn]=Вебмин Name[nl]=Webmin Name[pl]=Webmin Name[pt_BR]=Webmin +Name[ro]=Webmin Name[ru]=Webmin Name[sk]=Webmin Name[sl]=Webmin @@ -64,13 +65,14 @@ Comment[he]=מערכת מבוססת Web לניהול מערכות Unix Comment[hr]=Web zasnovano sučelje za upravljanje sustavima za Unix Comment[hu]=Webalapú unix-rendszerfelügyeleti felület Comment[id]=Antar muka berbasis web untuk manajemen sistem Unix -Comment[it]=Interfaccia web per l'amministrazione di sistema Unix +Comment[it]=Interfaccia web based per la gestione del sistema Unix Comment[ja]=Unix システムの管理を web 画面で行う Comment[ko]=유닉스 시스템 관리를 위한 웹 기반 인터페이스 Comment[mn]=Юникс системийн удирдлагын Веб интерфэйс -Comment[nl]=Web-omgeving voor Unix-systeembeheer +Comment[nl]=Webomgeving voor Unix-systeembeheer Comment[pl]=Interfejs WWW menadżera do zarządzania systemem Unix Comment[pt_BR]=Interface web para gerenciamento de sistema Unix +Comment[ro]=Interfață bazată pe web a management de sistem pentru Unix Comment[ru]=Веб-интерфейс для управления системой для Unix Comment[sk]=Webové rozhranie pre správu unixových systémov Comment[sr]=Web bazirano okruženje za upravljanje sistema za Unix diff --git a/src-qt4/pc-controlpanel/items/tools/flash-player-properties.desktop b/src-qt4/pc-controlpanel/items/tools/flash-player-properties.desktop index d3236427a..f61a77aa8 100644 --- a/src-qt4/pc-controlpanel/items/tools/flash-player-properties.desktop +++ b/src-qt4/pc-controlpanel/items/tools/flash-player-properties.desktop @@ -23,13 +23,14 @@ Name[fr_CA]=Préférences d'Adobe Flash Player Name[he]=אפשרויות Adobe Flash Player Name[hr]=Adobe Flash Player postavke Name[hu]=Az Adobe Flash Player beállításai -Name[it]=Preferenze del Flash Player di Adobe +Name[it]=Preferenze di Adobe Flash Player Name[ja]=Adobe Flash Playerの設定 Name[ko]=Adobe Flash Player 환경 설정 Name[mn]=Адобе флаш тоглуулагчийн сонголтууд -Name[nl]=Adobe Flash Player voorkeuren +Name[nl]=Adobe Flash Player-voorkeuren Name[pl]=Preferencje odtwarzacza Adobe Flash Name[pt_BR]=Preferências do Adobe Flash Player +Name[ro]=Preferințe Adobe Flash Player Name[ru]=Настройки Adobe Flash Player Name[sr]=Adobe Flash Player podešavanja Name[sv]=Adobe Flash Player inställningar @@ -60,7 +61,7 @@ Comment[gl]=Preferencias para Adobe Flash Player Comment[he]=העדפות Adobe Flash Player Comment[hr]=Postavke za Adobe Flash Player Comment[hu]=Beállítások az Adobe Flash Player-höz -Comment[it]=Preferenze di Adobe Flash Player +Comment[it]=Preferenze per Adobe Flash Player Comment[ja]=Adobe Flash Playerを設定します Comment[ko]=Adobe Flash Player 환경 설정 Comment[mn]=Адобе флаш тоглуулагчийн сонголтууд @@ -69,6 +70,7 @@ Comment[nl]=Voorkeuren voor Adobe Flash Player Comment[pl]=Preferencje dla odtwarzacza Adobe Flash Comment[pt]=Preferências para a Adobe Flash Player Comment[pt_BR]=Preferências do Adobe Flash Player +Comment[ro]=Preferințe pentru Adobe Flash Player Comment[ru]=Настройки для Adobe Flash Player Comment[sk]=Predvoľby pre Adobe Flash Player Comment[sr]=Podešavanja za Adobe Flash Player diff --git a/src-qt4/pc-controlpanel/items/tools/lifepreserver.desktop b/src-qt4/pc-controlpanel/items/tools/lifepreserver.desktop index 9f7cd1f26..089a4733e 100644 --- a/src-qt4/pc-controlpanel/items/tools/lifepreserver.desktop +++ b/src-qt4/pc-controlpanel/items/tools/lifepreserver.desktop @@ -34,13 +34,14 @@ Name[he]=גיבוי גלגל הצלה Name[hr]=Life Preserver sigurnosne kopije Name[hu]=Mentőöv biztonsági mentés Name[id]=Life Preserver Backup -Name[it]=Strumento per il Backup Life Preserver +Name[it]=Life Preserver Backup Name[ja]=バックアップ管理プログラム Name[ko]=Life Preserver Backup Name[mn]=Life Preserver Нөөцлөх -Name[nl]=Reddingsvest-reservekopie +Name[nl]=Reddingsboei-reservekopie Name[pl]=Kopia zapasowa Kamizelki Ratunkowej Name[pt_BR]=Backup com o Life Preserver +Name[ro]=Copie de rezervă a colacului de slavare Name[ru]=Создание резервных копий (Life Preserver) Name[sk]=Life Preserver Zálohovanie Name[sl]=Varnostno kopiranje @@ -51,8 +52,8 @@ Name[tr]=Life Preserver Yedekleme Name[uk]=Засіб для створення резервних копій Name[vi]=Dồ cứu nguy sao lưu Name[zh_CN]=Life Preserver备份 -Name[zh_HK]=Life Preserver 備份程式 -Name[zh_TW]=Life Preserver備份管理程式 +Name[zh_HK]=救生員 Life Preserver 備份程式 +Name[zh_TW]=救生員 Life Preserver 備份管理程式 GenericName=Life Preserver Backup GenericName[af]=Reddingsboei Friends GenericName[ar]=حارس الحياة (النسخ الاحتياطي) @@ -74,13 +75,14 @@ GenericName[he]=גיבוי גלגל הצלה GenericName[hr]=Life Preserver sigurnosne kopije GenericName[hu]=Mentőöv biztonsági mentés GenericName[id]=Life Preserver Backup -GenericName[it]=Strumento per il Backup Life Preserver +GenericName[it]=Life Preserver Backup GenericName[ja]=バックアップ管理プログラム GenericName[ko]=Life Preserver Backup GenericName[mn]=Life Preserver Нөөцлөх -GenericName[nl]=Reddingsvest-reservekopie +GenericName[nl]=Reddingsboei-reservekopie GenericName[pl]=Kopia zapasowa Kamizelki Ratunkowej GenericName[pt_BR]=Backup com o Life Preserver +GenericName[ro]=Copie de rezervă a colacului de slavare GenericName[ru]=Создание резервных копий (Life Preserver) GenericName[sk]=Life Preserver Zálohovanie GenericName[sl]=Varnostno kopiranje @@ -91,5 +93,5 @@ GenericName[tr]=Life Preserver Yedekleme GenericName[uk]=Засіб для створення резервних копій GenericName[vi]=Dồ cứu nguy sao lưu GenericName[zh_CN]=Life Preserver备份 -GenericName[zh_HK]=Life Preserver 備份程式 -GenericName[zh_TW]=Life Preserver備份管理程式 +GenericName[zh_HK]=救生員 Life Preserver 備份程式 +GenericName[zh_TW]=救生員 Life Preserver 備份管理程式 diff --git a/src-qt4/pc-controlpanel/items/tools/pbi-kbackup.desktop b/src-qt4/pc-controlpanel/items/tools/pbi-kbackup.desktop index 6125568d8..c2ae4de32 100644 --- a/src-qt4/pc-controlpanel/items/tools/pbi-kbackup.desktop +++ b/src-qt4/pc-controlpanel/items/tools/pbi-kbackup.desktop @@ -35,7 +35,7 @@ Name[mn]=КBackup (Нөөцлах Програм) Name[nl]=KBackup (reservekopieprogramma) Name[pl]=KBackup (program do robienia kopii zapasowych) Name[pt_BR]=KBackup (Programa de Backup) -Name[ro]=KBackup (program de backup) +Name[ro]=KBackup (Program de backup) Name[ru]=KBackup (Программа резервного копирования) Name[sk]=KBackup (Program pre správu zálohovania dokumentov) Name[sr]=KBackup (Program za osiguranje) @@ -68,14 +68,14 @@ Comment[he]=גיבוי נתונים באמצעות ממשק קל לשימוש Comment[hr]=Napravite sigurnosne kopije vaših datoteka sa sučeljem koji je jednostavan za korištenje Comment[hu]=Mentse adatait egy könnyen kezelhető felhasználói felületen Comment[id]=Backup data Anda dengan antarmuka yang mudah digunakan -Comment[it]=Salva i tuoi dati con pochi semplici clic +Comment[it]=Eseguire il backup dei dati con un'interfaccia utente facile da usare Comment[ja]=使いやすいユーザーインターフェイスを持ったバックアップソフト Comment[ko]=사용하기 쉬운 사용자 인터페이스로 자료를 백업 Comment[mn]=Та хялбар ажиллах интерфэйсээр өгөгдлөө нөөцөл -Comment[nl]=Reservekopieën maken met een makkelijk te bedienen gebruikersschil +Comment[nl]=Reservekopieën maken van uw gegevens met een makkelijk te bedienen gebruikersschil Comment[pl]=Stwórz kopię zapasową swoich danych za pomocą łatwego w obsłudze interfejsu użytkownika Comment[pt_BR]=Faça cópias de segurança dos seus dados com uma interface fácil de usar -Comment[ro]=Backup al datelor dvs. cu o interfaţă uşor de utilizat +Comment[ro]=Copie de rezervă a datelor dvs. cu o interfaţă uşor de utilizat Comment[ru]=Резервная копия Ваших данных с легким в использовании пользовательским интерфейсом Comment[sk]=Zálohujte dokumenty pomocou jednoduchého rozhrania Comment[sr]=Osigurajte Vaše podatke sa okruženjem koji je jednostavan za korišćenje diff --git a/src-qt4/pc-controlpanel/items/tools/pbi-luckybackup.desktop b/src-qt4/pc-controlpanel/items/tools/pbi-luckybackup.desktop index 2bfd03284..14b95639a 100644 --- a/src-qt4/pc-controlpanel/items/tools/pbi-luckybackup.desktop +++ b/src-qt4/pc-controlpanel/items/tools/pbi-luckybackup.desktop @@ -25,7 +25,7 @@ Name[he]=luckyBackup Name[hr]=Lucky backup Name[hu]=Lucky backup Name[id]=Lucky backup -Name[it]=Backup Lucky +Name[it]=Lucky backup Name[ja]=Lucky backup Name[ko]=Lucky 백업 Name[mn]=Тохиолдлын нөөц хуулбар @@ -43,7 +43,7 @@ Name[uk]=Lucky backup Name[vi]=Lucky sao lưu Name[zh_CN]=Luck backup Name[zh_HK]=Lucky 備份 -Name[zh_TW]=Lucky backup +Name[zh_TW]=Lucky 備份 Comment=Backup tool Comment[af]=Friends hulpmiddel Comment[ar]=أداة النسخ الاحتياطي @@ -67,6 +67,7 @@ Comment[ja]=バックアップツール Comment[nl]=Gereedschap voor reservekopie Comment[pl]=Narzędzie kopii zapasowych Comment[pt_BR]=Ferramenta de backup +Comment[ro]=Instrument backup Comment[ru]=Средство резервного копирования Comment[sr]=Program za osiguranje Comment[sv]=Backupverktyg diff --git a/src-qt4/pc-controlpanel/items/tools/pcbugreport.desktop b/src-qt4/pc-controlpanel/items/tools/pcbugreport.desktop index acde84198..905feec47 100644 --- a/src-qt4/pc-controlpanel/items/tools/pcbugreport.desktop +++ b/src-qt4/pc-controlpanel/items/tools/pcbugreport.desktop @@ -21,16 +21,20 @@ Name[fa]=ابزار گزارش اشکال PC-BSD Name[fr]=PC-BSD outil de rapport de bug Name[fr_CA]=PC-BSD outils rapport de bug Name[hr]=PC-BSD alat za izveštaj o greškama +Name[it]=Strumento di segnalazione dei bug di PC-BSD Name[ja]=PC-BSD バグ報告ツール Name[nl]=Foutmeldingshulpmiddel voor PC-BSD Name[pl]=PC-BSD - Narzędzie do raportowania błędów. Name[pt_BR]=Ferramenta de relatório de erro do PC-BSD +Name[ro]=Instrument raportare eroare PC-BSD Name[ru]=Инструмент сообщения об ошибке PC-BSD Name[sr]=PC-BSD alat za izveštaj o greškama Name[sv]=PC-BSD felrapporteringsverktyg Name[uk]=Інструмент повідомлення про вади PC-BSD Name[vi]=PC-BSD công cụ báo cáo lỗi bị Name[zh_CN]=PC-BSD 缺陷汇报工具 +Name[zh_HK]=PC-BSD 錯誤回報工具 +Name[zh_TW]=PC-BSD 錯誤回報工具 GenericName=PC-BSD bug report tool GenericName[af]=PC- BSD fout verslag instrument GenericName[ar]=اداة تقارير الاعطاب PC-BSD @@ -45,13 +49,17 @@ GenericName[fa]=ابزار گزارش اشکال PC-BSD GenericName[fr]=PC-BSD outil de rapport de bug GenericName[fr_CA]=PC-BSD outils rapport de bug GenericName[hr]=PC-BSD alat za izveštaj o greškama +GenericName[it]=Strumento di segnalazione dei bug di PC-BSD GenericName[ja]=PC-BSD バグ報告ツール GenericName[nl]=Foutmeldingshulpmiddel voor PC-BSD GenericName[pl]=PC-BSD - Narzędzie do raportowania błędów. GenericName[pt_BR]=Ferramenta de relatório de erro do PC-BSD +GenericName[ro]=Instrument raportare eroare PC-BSD GenericName[ru]=Инструмент сообщения об ошибке PC-BSD GenericName[sr]=PC-BSD alat za izveštaj o greškama GenericName[sv]=PC-BSD felrapporteringsverktyg GenericName[uk]=Інструмент повідомлення про вади PC-BSD GenericName[vi]=PC-BSD công cụ báo cáo lỗi bị GenericName[zh_CN]=PC-BSD 缺陷汇报工具 +GenericName[zh_HK]=PC-BSD 錯誤回報工具 +GenericName[zh_TW]=PC-BSD 錯誤回報工具 diff --git a/src-qt4/pc-controlpanel/items/tools/warden.desktop b/src-qt4/pc-controlpanel/items/tools/warden.desktop index f04cb40ea..7b2ee682a 100644 --- a/src-qt4/pc-controlpanel/items/tools/warden.desktop +++ b/src-qt4/pc-controlpanel/items/tools/warden.desktop @@ -30,10 +30,10 @@ Name[it]=Warden Name[ja]=Warden Name[ko]=Warden Name[mn]=Сахиул -Name[nl]=Bewaker +Name[nl]=Cipier Name[pl]=Warden Name[pt_BR]=Warden -Name[ro]=Gardian +Name[ro]=Warden Name[ru]=Надзиратель Name[sk]=Warden Name[sl]=Warden @@ -57,7 +57,7 @@ Comment[de]=Jail-Verwaltung Comment[el]=Διαχείριση των jails Comment[en_GB]=Jails management Comment[en_ZA]=Jails management -Comment[es]=Gestión de Jails +Comment[es]=Gestión de Jaulas(Jails). Comment[et]=Vanglate haldamine Comment[fa]=مديريت jails Comment[fr]=Gestion des prisons @@ -70,10 +70,10 @@ Comment[it]=Gestione Jails Comment[ja]=jail を管理する Comment[ko]=Jails 관리 Comment[mn]=Шоронгийн удирдлага -Comment[nl]=Jails-beheer +Comment[nl]=Gevangenisbeheer Comment[pl]=Zarządzanie Więzieniami Comment[pt_BR]=Gerenciamento de Jails -Comment[ro]=Management de inchisori +Comment[ro]=Managementul închisorilor Comment[ru]=Управление виртуальными средами (jails) Comment[sk]=Správca virtualizácie Jails Comment[sr]=Podešavanja Jails-a diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_de.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_de.ts index f48d47945..269b66b8c 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_de.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_de.ts @@ -29,7 +29,7 @@ Password Request - Passworteingabe + Passwortanforderung Please enter the login password for this user @@ -37,7 +37,7 @@ Enable Remote Desktop (VNC) - VNC Fernsteuerung aktivieren + VNC Fernsteuerung aktivieren Misc diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_et.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_et.ts index c8b3a6fff..434e3d82b 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_et.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_et.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + Sisselogimishalduri sätted Auto login - - + Logi sisse automaatselt Enable auto login - - + Logi sisse automaatselt Auto login user - - + Logi kasutaja sisse automaatselt Remote login - - + Kaugelt sisselogimine Save - - + Salvesta Password Request - - + Paroolinõue Please enter the login password for this user - - + Sisesta parool, millega see kasutaja sisse logib Enable Remote Desktop (VNC) - - + Lülita sisse kaugtöölaud (VNC) Misc - - + Muu Enable "show password" button - - + Kasuta nuppu "näita parooli" Please enter the remote login password - - + Sisesta parool kaugelt sisse logimiseks diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_nl.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_nl.ts index c8b3a6fff..121eeb867 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_nl.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_nl.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + Instellingen van aanmeldbeheerder Auto login - - + Automatisch aanmelden Enable auto login - - + Automatisch aanmelden inschakelen Auto login user - - + Gebruiker automatisch aanmelden Remote login - - + Aanmelden-op-afstand Save - - + Opslaan Password Request - - + Verzoek om wachtwoord Please enter the login password for this user - - + Voer a.u.b. het aanmeldwachtwoord in voor deze gebruiker Enable Remote Desktop (VNC) - - + Schakel bureaublad-op-afstand in (VNC) Misc - - + Divers Enable "show password" button - - + Schakel 'toon wachtwoord'-knop in Please enter the remote login password - - + Voer a.u.b. het wachtwoord in voor aanmelden-op-afstand diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_pt_BR.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_pt_BR.ts index 23b7023d3..e9d179b85 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_pt_BR.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_pt_BR.ts @@ -5,7 +5,7 @@ MainWindow Login Manager Settings - Configurações do Gerenciador de Login + Configurações do Gerenciador de Sessão Auto login @@ -21,7 +21,7 @@ Remote login - Login remoto + Sessão remota Save @@ -29,11 +29,11 @@ Password Request - Solicitação de senha + Solicitação de senha Please enter the login password for this user - Por favor, digite a senha de login para este usuário + Por favor, digite a senha de login para este usuário Enable Remote Desktop (VNC) @@ -45,11 +45,11 @@ Enable "show password" button - Habilitar o botão "exibir senha" + Habilitar o botão "exibir senha" Please enter the remote login password - Por favor, digite a senha do login remoto + Por favor, digite a senha de sessão remota diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_ro.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_ro.ts index c8b3a6fff..f1f56761a 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_ro.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_ro.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + Setări manager autentificare Auto login - - + Autentificare automată Enable auto login - - + Permisiune autentificare automată Auto login user - - + Autentificare automată utilizator Remote login - - + Autentificare la distanță Save - - + Salvare Password Request - - + Solicitare parolă Please enter the login password for this user - - + Vă rugăm să introduceți parola de login pentru acest utilizator Enable Remote Desktop (VNC) - - + Activare ecran de la distanță (VNC) Misc - - + Misc Enable "show password" button - - + Activare buton "arată parola" Please enter the remote login password - - + Vă rugăm să introduceți parola de autentificare de la distanță diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_sv.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_sv.ts index c8b3a6fff..0be61ab98 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_sv.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_sv.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + Loginhanterarens inställningar Auto login - - + Auto-login Enable auto login - - + Aktivera auto-login Auto login user - - + Auto-login användare Remote login - - + Fjärrinloggning Save - - + Spara Password Request - - + Lösenordsbegäran Please enter the login password for this user - - + Vad god ange lösenordet för denna användaren Enable Remote Desktop (VNC) - - + Aktivera fjärrskrivbord (VNC) Misc - - + Övrigt Enable "show password" button - - + Aktivera "visa lösenord" knapp Please enter the remote login password - - + Vad god ange fjärrlösenordet diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_HK.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_HK.ts index c8b3a6fff..61434c64e 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_HK.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_HK.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + 登入管理員設定 Auto login - - + 自動登入 Enable auto login - - + 啟用自動登入 Auto login user - - + 自動登入使用者 Remote login - - + 遠端登入 Save - - + 儲存 Password Request - - + 密碼要求 Please enter the login password for this user - - + 請輸入此用戶的登入密碼 Enable Remote Desktop (VNC) - - + 啟用遠端桌面 (VNC) Misc - - + 雜項 Enable "show password" button - - + 啟用「顯示密碼」按鈕 Please enter the remote login password - - + 請輸入遠端登入密碼 diff --git a/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_TW.ts b/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_TW.ts index c8b3a6fff..f5f0b18e4 100644 --- a/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_TW.ts +++ b/src-qt4/pc-dmconf/i18n/pc-dmconf_zh_TW.ts @@ -5,63 +5,51 @@ MainWindow Login Manager Settings - - + 登入管理員設定 Auto login - - + 自動登入 Enable auto login - - + 啟用自動登入 Auto login user - - + 自動登入使用者 Remote login - - + 遠端登入 Save - - + 儲存 Password Request - - + 密碼要求 Please enter the login password for this user - - + 請輸入此使用者的登入密碼 Enable Remote Desktop (VNC) - - + 啟用遠端桌面 (VNC) Misc - - + 雜項 Enable "show password" button - - + 啟用「顯示密碼」按鈕 Please enter the remote login password - - + 請輸入遠端登入密碼 diff --git a/src-qt4/pc-dmconf/pc-dmconf.desktop b/src-qt4/pc-dmconf/pc-dmconf.desktop index ef893e0f3..e6a2bdb3f 100644 --- a/src-qt4/pc-dmconf/pc-dmconf.desktop +++ b/src-qt4/pc-dmconf/pc-dmconf.desktop @@ -12,16 +12,23 @@ Type=Application Categories=System;Settings; Name=Login Manager Settings Name[af]=Teken Bestuurder Instellings -Name[de]=Loginmanager Einstellungen +Name[ar]=الدخول لادارة الاعدادت +Name[de]=Einstellungen der Anmeldeverwaltung Name[en_GB]=Login Manager Settings Name[en_ZA]=Login Manager Settings +Name[es]=Configuración del Administrador de Acceso +Name[et]=Sisselogimishalduri sätted Name[fr]=Paramètres du Gestionnaire de connexion Name[fr_CA]=Paramètres du Gestionnaire de connexion +Name[it]=Accedere alle Impostazioni di Gestione Name[ja]=ログインマネージャーの設定 Name[nl]=Instellingen van aanmeldbeheerder Name[pl]=Ustawienia menadżera logowania -Name[pt_BR]=Configurações do gerenciador de login +Name[pt_BR]=Configurações do gerenciador de sessão +Name[ro]=Setări manager autentificare Name[sv]=Inställningar för skärmhanteraren Name[uk]=Налаштування входу до системи Name[vi]=Đăng nhập Settings Manager Name[zh_CN]=登陆管理器设置 +Name[zh_HK]=登入管理員設定 +Name[zh_TW]=登入管理員設定 diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_de.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_de.ts index f43ffc179..58366631a 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_de.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_de.ts @@ -101,23 +101,19 @@ System Hostname - - + System Hostname Enter a valid hostname, or leave default. - - + Geben Sie einen einen gültigen Hostnamen ein oder übernehmen Sie die Standardeinstellung. Please enter a hostname - - + Bitte geben Sie einen Hostnamen ein Hostname may only contain letters and numbers - - + Der Hostname darf ausschließlich aus Buchstaben und Ziffern bestehen @@ -181,7 +177,7 @@ Apply - Übernehmen + Anwenden Cancel @@ -222,7 +218,7 @@ &Apply - &Übernehmen + &Anwenden &Close diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_el.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_el.ts index 4a97ac611..2d98f3545 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_el.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_el.ts @@ -21,11 +21,11 @@ System Timezone - Σύστημα Χρονικών Ζωνών + Ζώνη ώρας συστήματος Where are you located? Please select the timezone for your location. - Που βρίσκεστε; Επιλέξτε την χρονική ζώνη με βάση το πού βρίσκεστε. + Που βρίσκεστε; Επιλέξτε την ζώνη ώρας με βάση το πού βρίσκεστε. Root Password @@ -93,13 +93,11 @@ Will encrypt users home-directory - - + Κρυπτογράφηση του καταλόγου χρήστη Encrypt user files - - + Κρυπτογράφηση των αρχείων του χρήστη System Hostname diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_es.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_es.ts index 2f7e23c2d..99808e2f1 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_es.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_es.ts @@ -101,23 +101,19 @@ System Hostname - - + Nombre del sistema Enter a valid hostname, or leave default. - - + Escriba un nombre válido para el sistema, o deje el nombre por defecto. Please enter a hostname - - + Escriba un nombre de sistema Hostname may only contain letters and numbers - - + El nombre del sistema sólo puede contener letras y números. diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_et.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_et.ts index 6f23020c3..d3dc19bd3 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_et.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_et.ts @@ -93,33 +93,27 @@ Will encrypt users home-directory - - + Krüpteerib kasutaja kodukausta Encrypt user files - - + Krüpteeri kasutaja failid System Hostname - - + Süsteemi hostinimi Enter a valid hostname, or leave default. - - + Vali sobilik hostinimi või kasuta etteantud nime. Please enter a hostname - - + Palun sisesta hostinimi Hostname may only contain letters and numbers - - + Hostinimi võib sisaldada ainult tähti ja numbreid diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_fr_CA.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_fr_CA.ts index b4bc13886..f21571750 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_fr_CA.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_fr_CA.ts @@ -81,7 +81,7 @@ Set the system timezone - FrançaisDéfinir le fuseau horaire + Définir le fuseau horaire Display help for the current screen diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_ja.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_ja.ts index 3d076cae1..847d6bcc1 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_ja.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_ja.ts @@ -101,23 +101,19 @@ System Hostname - - + システムのホスト名 Enter a valid hostname, or leave default. - - + 有効なホスト名を入力するか、そのままにしておいてください。 Please enter a hostname - - + ホスト名を入力してください。 Hostname may only contain letters and numbers - - + ホスト名は英数字のみ入力してください。 diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_nl.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_nl.ts index 691e407f0..1c4d2dcc2 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_nl.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_nl.ts @@ -17,7 +17,7 @@ Welcome to your new PC-BSD system! You may change your language above, and click next to begin the setup process. - Welkom in uw nieuwe PC-BSD-systeem! U kunt bovenin uw taal wijzigen, en op Volgende klikken om het instelproces te beginnen. + Welkom in uw nieuwe PC-BSD-systeem! U kunt hierboven uw taal wijzigen, en op Volgende klikken om het instelproces te beginnen. System Timezone @@ -65,7 +65,7 @@ The following wireless networks were found. Click the one you wish to connect to. If you wish to skip, click "Next" below. - De volgende draadloze netwerken werden gevonden. Klik op degene waar u mee wil verbinden. Indien u dit wenst over te slaan, klik dan op 'Volgende' onderaan. + De volgende draadloze netwerken werden gevonden. Klik op datgene waar u mee wil verbinden. Indien u dit wenst over te slaan, klik dan op 'Volgende' hieronder. Setup is now complete! Press Finish to login to your new desktop. @@ -93,33 +93,27 @@ Will encrypt users home-directory - - + Zal de persoonlijke map van gebruiker versleutelen Encrypt user files - - + Gebruikersbestanden versleutelen System Hostname - - + Systeemnaam Enter a valid hostname, or leave default. - - + Voer een geldige systeemnaam in, of laat die op de standaard staan. Please enter a hostname - - + Voer a.u.b. een systeemnaam in Hostname may only contain letters and numbers - - + Een systeemnaam mag alleen letters en cijfers bevatten @@ -196,7 +190,7 @@ Error: The entered network keys do not match! - Fout: de ingevoerde netwerksleutels komen niet overeen! + Fout: de ingevoerde netwerksleutels komen niet overeen. diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_pt_BR.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_pt_BR.ts index 36b15b363..0254bf6f5 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_pt_BR.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_pt_BR.ts @@ -89,7 +89,7 @@ Will encrypt users home-directory - Irá criptografar o diretório home dos usuários + Irá criptografar o diretório home dos usuários Encrypt user files @@ -97,27 +97,23 @@ Welcome to your new PC-BSD system! You may change your language above, and click next to begin the setup process. - Bem-vindo ao seu novo sistema PC-BSD! Você pode alterar o seu idioma acima e clicar em próximo para iniciar o processo de configuração. + Bem-vindo ao seu novo sistema PC-BSD! Você pode alterar o seu idioma acima e clicar em Próximo para iniciar o processo de configuração. System Hostname - - + Nome do computador Enter a valid hostname, or leave default. - - + Digite um nome válido para o computador ou deixe como está. Please enter a hostname - - + Por favor, digite um nome do computador Hostname may only contain letters and numbers - - + O nome do computador deve conter apenas letras e números diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_ro.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_ro.ts index 3f4f31d63..9be0bbef5 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_ro.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_ro.ts @@ -5,274 +5,224 @@ Installer Switch between US layout and user selected layout - - + Comuta între US layout și layout selectat de utilizator &Back - - + &Înapoi &Next - - + &Următorul Welcome to your new PC-BSD system! You may change your language above, and click next to begin the setup process. - - + Bine ați venit la noul dvs. sistem PC-BSD! Puteți schimba limba mai sus și faceți click pe Următorul pentru a începe procesul de instalare. System Timezone - - + Fusul orar al sistemului Where are you located? Please select the timezone for your location. - - + Care este locația dumneavoastră? Vă rugăm să selectați fusul orar pentru locația dvs. Root Password - - + Parolă root Password - - + Parolă Password (Repeat) - - + Parolă (Repetare) The system or "root" password allows you to make changes to your operating system, and should be kept from non-trusted users. - - + Parola de sistem sau root vă permite să faceți modificări în sistemul de operare și trebui să fie ținută departe de utilizatorii care nu sunt de încredere. Create a User - - + Creeaza un utilizator Name - - + Nume Username - - + Nume utilizator Connect to a Wireless Network - - + Conectarea la o wireless &Rescan - - + &Rescanare The following wireless networks were found. Click the one you wish to connect to. If you wish to skip, click "Next" below. - - + Au fost găsite următoarele wireless. Faceți click pe cea la care doriți să vă conectați. Dacă doriți să săriți peste, faceți click pe "Următorul" de mai jos. Setup is now complete! Press Finish to login to your new desktop. - - + Instalarea este acum completă! Apăsați Terminare pentru a vă conecta la noul dumneavoastră mediu grafic. &Finish - - + &Terminare Change the installation language - - + Schimbați limba de instalare Set the system timezone - - + Setați fus orar al sistemului Display help for the current screen - - + Afișează ajutor pentru ecranul curent Launch the on-screen keyboard - - + Lansează tastatura de pe ecran Will encrypt users home-directory - - + Criptare director acasă al utilizatorilor Encrypt user files - - + Criptare fișiere utilizatori System Hostname - - + Numele sistemului Enter a valid hostname, or leave default. - - + Introduceți un nume de sistem valid sau lăsați-l pe cel implicit. Please enter a hostname - - + Vă rugăm să introduceți un nume sistemului Hostname may only contain letters and numbers - - + Numele sistemului poate conține doar litere și numere QObject This screen allows you to select the system language you wish to use. - - + Acest ecran vă permite să selectați limba sistemului pe care doriți să o utilizați. This screen lets you pick the default timezone for your computer. - - + Acest ecran vă permite să alegeți zona de fus orar implicită pentru calculatorul dumneavoastră. On this screen please enter the root password you wish to use. This password is used for full system access, and should be something secure. - - + În acest ecran vă rugăm să introduceți parola de root pe care doriți să o utilizați. Această parolă este folosită pentru accesul complet al sistemului și ar trebui să fie ceva securizat. On this screen you will need to create a user to log into your desktop. Additional users may be created in the Control Panel. - - + În acest ecran va trebui să creați un utilizator pentru a vă conecta la mediul grafic al dvs. Utilizatori suplimentari vor putea fi creați din panoul de control. On this screen you may connect to an available wifi network. If you have a hidden network, it may be added later in the Network Manager. - - + În acest ecran vă puteți conecta la o rețea wireless disponibilă. Dacă aveți o rețea ascunsă, acesta poate fi adăugată mai târziu din administratorul de rețea. The computer setup is now finished! Click Finish to log into your new Desktop. - - + Procesul de configurare este acum încheiat! Faceți click pe Finalizare pentru a intra în nou dumneavoastră mediu grafic. dialogHelp &Close - - + &Închide dialogInfoBox &Close - - + &Închide netKey SSID - - + SSID Network Key - - + Cheie rețea Network Key (Repeat) - - + Cheie rețea (Repetare) Show network key as text - - + Arată cheia rețelei ca text Apply - - + Aplică Cancel - - + Anulare Network Key Error - - + Eroare cheie rețea Error: The entered network keys do not match! - - + Eroare: Cheile rețelei introduse nu se potrivesc! + widgetKeyboard Keyboard Settings - - + Setări tastatură Key Layout - - + Layout tastatură Variant - - + Variante Keyboard Model - - + Model tastatură ( you may type into the space below to test your selected settings. ) - - + ( puteți tasta în spațiul de mai jos pentru a testa setările alese de dvs. ) &Apply - - + &Aplică &Close - - + &Închide diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_sv.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_sv.ts index fab24fbb9..acf56d127 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_sv.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_sv.ts @@ -93,33 +93,27 @@ Will encrypt users home-directory - - + Kommer kryptera användares hemmappar Encrypt user files - - + Kryptera användarfiler System Hostname - - + Systemets hostname Enter a valid hostname, or leave default. - - + Ange ett giltigt hostname, eller lämna standard. Please enter a hostname - - + Var god ange ett hostname Hostname may only contain letters and numbers - - + Hostname kan endast innehålla bokstäver och nummer diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_vi.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_vi.ts index 4fbcf7e8e..f9c4286f6 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_vi.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_vi.ts @@ -101,23 +101,19 @@ System Hostname - - + hệ thống tên máy chủ Enter a valid hostname, or leave default. - - + Nhập tên máy chủ hợp lệ, hoặc để mặc định. Please enter a hostname - - + Hãy nhập tên máy chủ Hostname may only contain letters and numbers - - + tên máy chủ chỉ có thể chứa chữ cái và số diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_CN.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_CN.ts index f047f3e92..b058faafd 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_CN.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_CN.ts @@ -73,7 +73,7 @@ &Finish - 完成(&F) + 完成(&F) Change the installation language @@ -101,23 +101,19 @@ System Hostname - - + 系统主机名 Enter a valid hostname, or leave default. - - + 输入一个有效的用户名,或者使用默认的。 Please enter a hostname - - + 请输入一个主机名 Hostname may only contain letters and numbers - - + 主机名只能使用字母和数字 @@ -151,14 +147,14 @@ dialogHelp &Close - 关闭(&C) + 关闭(&C) dialogInfoBox &Close - 关闭(&C) + 关闭(&C) @@ -177,11 +173,11 @@ Show network key as text - 显示网络密码为明文 + 显示网络密码为明文 Apply - 应用 + 应用 Cancel @@ -189,13 +185,13 @@ Network Key Error - 网络密码错误 + 网络密码错误 Error: The entered network keys do not match! - 错误: 输入的网络密码不符合! - + 错误:输入的网络密码不符合! + @@ -206,7 +202,7 @@ Key Layout - 键盘布局 + 键盘布局 Variant @@ -218,7 +214,7 @@ ( you may type into the space below to test your selected settings. ) - (你可以在下面空白处打字,测试你选择的设置。) + (你可以在下面空白处打字,测试你选择的设置。) &Apply diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_HK.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_HK.ts index da4bc0f1f..8288498c6 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_HK.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_HK.ts @@ -93,33 +93,27 @@ Will encrypt users home-directory - - + 會加密用戶家目錄 Encrypt user files - - + 加密用戶檔案 System Hostname - - + 系統主機名稱 Enter a valid hostname, or leave default. - - + 輸入有效主機名稱,或保留預設值。 Please enter a hostname - - + 請輸入主機名稱 Hostname may only contain letters and numbers - - + 主機名稱只能有字母及數字 diff --git a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_TW.ts b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_TW.ts index 9ce5fcc8f..de2fc33a0 100644 --- a/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_TW.ts +++ b/src-qt4/pc-firstbootgui/i18n/FirstBoot_zh_TW.ts @@ -93,33 +93,27 @@ Will encrypt users home-directory - - + 會加密使用者家目錄 Encrypt user files - - + 加密使用者檔案 System Hostname - - + 系統主機名稱 Enter a valid hostname, or leave default. - - + 輸入有效主機名稱,或保留預設值。 Please enter a hostname - - + 請輸入主機名稱 Hostname may only contain letters and numbers - - + 主機名稱只能有字母及數字 diff --git a/src-qt4/pc-gdmconf/pcgdmconf.desktop b/src-qt4/pc-gdmconf/pcgdmconf.desktop index 68023c01f..6db6a98a0 100644 --- a/src-qt4/pc-gdmconf/pcgdmconf.desktop +++ b/src-qt4/pc-gdmconf/pcgdmconf.desktop @@ -33,7 +33,8 @@ Name[ko]=GDM 설정 Name[mn]=GDM тохиргоо Name[nl]=GDM-configuratie Name[pl]=Konfiguracja GDM -Name[pt_BR]=Configuração GDM +Name[pt_BR]=Configuração do GDM +Name[ro]=Configurare GDM Name[ru]=Конфигурация GDM Name[sr]=GDM podešavanja Name[sv]=GDM konfiguration diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_af.ts b/src-qt4/pc-installgui/i18n/SysInstaller_af.ts index 4556bc042..7f7a9bcc4 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_af.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_af.ts @@ -256,6 +256,51 @@ Start the install using this config file? Begin die installasie met behulp van hierdie Konfigurasielêer: + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -290,10 +335,6 @@ Available System Packages Beskikbaar stelsel pakkette - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Kies die sagteware wat jy wil geïnstalleer het. Ten minste een lessenaar moet gekies word, en veranderinge kan gemaak word na die installasie. - &Save &red @@ -318,6 +359,10 @@ Package Listing for: Pakket aanbieding vir: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -448,10 +493,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Kenners (CLI handleiding af) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Kies die skyf of partisie jy wil installeer op. Neem asseblief kennis dat BSD kan slegs geïnstalleer word om 'n hele skyf, of primêre partisie groter as 10 GB. - Selected Disk gekies skyf @@ -620,11 +661,6 @@ Force ZFS 4K block size krag ZFS 4K blok grootte - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -635,6 +671,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -735,4 +795,98 @@ Hierdie slimmerd sal loop jy deur middel van die opstel van jou nuwe bediener. Klik op die volgende te begin. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ar.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ar.ts index 2169463d7..cef2246da 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ar.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ar.ts @@ -289,6 +289,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -328,10 +373,6 @@ Available System Packages حزم النظام المتاحة - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - الرجاء تحديد البرامج التي ترغب في تثبيتها. يجب تحديد واحد على الأقل من سطح المكتب، ويمكن احداث تغييرات بعد التثبيت. - &Save حفظ @@ -358,6 +399,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -511,11 +556,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -695,11 +735,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -710,6 +745,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -818,4 +877,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_az.ts b/src-qt4/pc-installgui/i18n/SysInstaller_az.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_az.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_az.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_bg.ts b/src-qt4/pc-installgui/i18n/SysInstaller_bg.ts index e0e210b03..94ec5e0f2 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_bg.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_bg.ts @@ -293,6 +293,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -332,10 +377,6 @@ Available System Packages Достъпни системни пакети - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Моля изберете софтуера който искате да бъде инсталиран. Трябва да бъде избран най-малко един desktop, а промени могат да бъдат направени след инсталацията. - &Save &Запис @@ -362,6 +403,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -511,11 +556,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -717,11 +757,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -732,6 +767,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -847,4 +906,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_bn.ts b/src-qt4/pc-installgui/i18n/SysInstaller_bn.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_bn.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_bn.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_bs.ts b/src-qt4/pc-installgui/i18n/SysInstaller_bs.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_bs.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_bs.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ca.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ca.ts index 4f8bf8b17..42aa85ff3 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ca.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ca.ts @@ -300,6 +300,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -341,11 +386,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save De&sar @@ -373,6 +413,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -524,11 +568,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -731,11 +770,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -746,6 +780,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -862,4 +920,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_cs.ts b/src-qt4/pc-installgui/i18n/SysInstaller_cs.ts index 81f04c38a..66c62b915 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_cs.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_cs.ts @@ -300,6 +300,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -339,10 +384,6 @@ Available System Packages Dostupné systémové balíčky - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Vyberte software, který chcete instalovat. Musíte zvolit minimálně jedno desktopové prostředí; po dokončení instalace můžete provádět změny. - &Save &Uložit @@ -369,6 +410,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -519,11 +564,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -725,11 +765,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -740,6 +775,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -855,4 +914,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_cy.ts b/src-qt4/pc-installgui/i18n/SysInstaller_cy.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_cy.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_cy.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_da.ts b/src-qt4/pc-installgui/i18n/SysInstaller_da.ts index 41ee8ae3f..53c76ce99 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_da.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_da.ts @@ -301,6 +301,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -340,10 +385,6 @@ Available System Packages Tilgængelige systempakker - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Vælg det software du vil have installeret. Der skal vælges mindst 1 skrivebordsmiljø, men det kan ændres efter installeringen. - &Save &Gem @@ -371,6 +412,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -523,11 +568,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -730,11 +770,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -745,6 +780,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -860,4 +919,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_de.ts b/src-qt4/pc-installgui/i18n/SysInstaller_de.ts index 3ea3b2017..14b7d2cbc 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_de.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_de.ts @@ -257,6 +257,51 @@ Start the install using this config file? Die Installation mit dieser Konfigurationsdatei starten? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Verfügbare Systempakete - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Bitte wählen Sie die Software aus, die Sie installieren möchten.Es muss mindestens ein Desktop ausgewählt sein.Änderungen an der Paketauswahl können auch noch nach der Installation durchgeführt werden. - &Save &Speichern @@ -319,6 +360,10 @@ Package Listing for: Paketdateiliste für: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -420,7 +465,7 @@ &Apply - &Übernehmen + &Anwenden &Close @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Experten (CLI manueller Modus) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Bitte die Festplatte oder Partition auswählen, auf der Sie installieren wollen. Bitte beachten, dass BSD nur auf einer ganzen Festplatte installiert werden kann, oder auf primären Partition größer als 10GB. - Selected Disk Ausgewählte Festplatte @@ -621,20 +662,37 @@ Force ZFS 4K block size 4K Blockgröße für ZFS erzwingen - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) - - + (MB) Swap Size - - + Swap Größe + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -736,4 +794,98 @@ Dieser Assistent wird Sie durch die Installation Ihres neuen Servers geleiten. Klicken sie weiter um anzufangen. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_el.ts b/src-qt4/pc-installgui/i18n/SysInstaller_el.ts index 5bfbc0a5f..3fbaf94a6 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_el.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_el.ts @@ -41,7 +41,7 @@ Your system is now being installed! This process may take a while, depending upon the installation options chosen, and system speed. You will be notified when the installation is finished. - Το σύστημά σας εγκαθίστατε τώρα! Αυτή η διαδικασία μπορεί να διαρκέσει λίγο, ανάλογα με την εγκατάσταση των επιλογών που επιλέξατε, και την ταχύτητα του συστήματος. Θα ειδοποιηθείτε όταν ολοκληρωθεί η εγκατάσταση. + Το σύστημά σας εγκαθίσταται τώρα! Αυτή η διαδικασία μπορεί να διαρκέσει λίγο, ανάλογα με την εγκατάσταση των επιλογών που επιλέξατε, και την ταχύτητα του συστήματος. Θα ειδοποιηθείτε όταν ολοκληρωθεί η εγκατάσταση. Installing to file-system mounted at /mnt @@ -49,7 +49,7 @@ The disk will be setup with the following configuration: - Ο δίσκος θα εγκατασταθεί, με την ακόλουθη ρύθμιση παραμέτρων: + Ο δίσκος θα ρυθμιστεί με τις παραμέτρους που ακολουθούν: Disk: @@ -125,8 +125,7 @@ Display hardware compatibility diagnostic - - + Παρουσίαση διαγνωστικού για την συμβατότητα του υλικού του υπολογιστή System Selection @@ -140,8 +139,7 @@ Change the installation language - - + Αλλαγή γλώσσας εγκατάστασης Customize the selected system @@ -160,18 +158,15 @@ Cancel the installation - - + Ακύρωση εγκατάστασης TrueOS Package Selection - - + Επιλογή πακέτων για το TrueOS PC-BSD Package Selection - - + Επιλογή πακέτων για το PC-BSD Your system is now installed! @@ -288,13 +283,57 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject This screen allows you to select the language you wish to perform the install with. - - + Σ'αυτή την οθόνη μπορείτε να επιλέξετε την γλώσσα στην οποία θα γίνει η εγκατάσταση. This screen allows you to select the type of system you wish to install. Clicking customize will allow you to change the selected packages for your system. @@ -327,11 +366,6 @@ Available System Packages Διαθέσιμα πακέτα συστήματος - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save &Αποθήκευση @@ -356,6 +390,10 @@ Package Listing for: Λίστα για το πακέτο: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -499,15 +537,9 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk - - + Επιλεγμένος δίσκος: Selected Partition @@ -714,11 +746,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -729,6 +756,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -850,4 +901,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_en.ts b/src-qt4/pc-installgui/i18n/SysInstaller_en.ts index b7f49070b..c449dcd15 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_en.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_en.ts @@ -4,352 +4,408 @@ Installer - + Change the installation language - + Welcome to PC-BSD! Please select your language and click next to continue. - + System Selection - - + + Load installation config file from USB stick - + Load config from USB - + Customize the selected system - - + + &Customize - - + + Summary - + + Restore from Life-Preserver backup + + + + Disk Selection - + Installation - + Your system is now being installed! This process may take a while, depending upon the installation options chosen, and system speed. You will be notified when the installation is finished. - + Your system is now installed! Click Finish to reboot. After rebooting you may eject the install media. - + Display hardware compatibility diagnostic - + + Manage network connectivity + + + + Display help for the current screen - + Launch the on-screen keyboard - + Switch between US layout and user selected layout - + Cancel the installation - + Ab&ort - - + + &Back - - + + &Next - + Desktop (PC-BSD) - + Server (TrueOS) - - + + Save Config to USB - + &Cancel - + Installing to file-system mounted at /mnt - + The disk will be setup with the following configuration: - + Disk: - + Mirroring: - - - + + + Partition: - - - + + + FileSystem: - - - + + + Size: - + ZFS Datasets:<br> - - + + Mount: - - + + Options: - + TrueOS Package Selection - + PC-BSD Package Selection - + The following meta-pkgs will be installed: - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + PC-BSD Installer - + Unable to detect any disk drives! The install will now exit. - + Unable to suggest a partition for the detected disk. - + Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - + + ZFS Datasets: + + + + + The original ZFS layout will be restored + + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + + Start the restore now? + + + + Start the installation now? - + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + + System Restore + + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Failed! - + The installer has encountered an error and has been halted. - + Do you want to generate an error report? - + Restart the system now? - + &Finish - - + + Extracting system... - - + + Installing system... This may take a while... - + Installing packages... This may take a while... - + + Installing meta-package: %1 + + + + Are you sure you want to abort this installation? - + The selected disk / partition is less than recommended %1GB. The installation may fail... - + This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - + Please insert a USB stick now, and click OK to continue. - + Please enter the nickname you want to save this configuration as. - + Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - + Configuration saved! You may now safely remove the USB media. - + This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - + Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - + Configuration loaded! You may now safely remove the USB media. - + + Restoring system: %1 + + + + Please insert the USB stick now, and click OK to continue. - + Config File: - + Start the install using this config file? @@ -396,7 +452,7 @@ - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). @@ -588,13 +644,13 @@ - - ZFS pool name + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. + + ZFS pool name @@ -619,7 +675,8 @@ - Install GRUB boot-loader (Required for Boot-Environment support) + + Install GRUB (Required for Boot-Environment support) @@ -639,7 +696,7 @@ - + Please select at least 1 other drive for mirroring @@ -689,140 +746,160 @@ - + Use entire disk - + + No boot-loader! + + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + + Stamp GRUB on MBR + + + + Please select 2 or 4 additional drives for raidz1 - + Please select 3, 5, or 9 additional drives for raidz2 - + Please select 4, 6, or 10 additional drives for raidz3 - + ZFS Mounts - + ZFS Options - + + The original system datasets / mount-points will be automatically restored. + + + + Resizing - + Remove mount-point - + Are you sure you want to remove this mount point? - + Enter mount-point - + Please enter the new mount-point: - + Invalid Mount - + Mount point should start with '/' - + Editing: - + Enter SWAP size - + Size (MB) - + Installing to file-system mounted at /mnt - + The disk will be setup with the following configuration: - + Disk: - + Mirroring: - - - + + + Partition: - - - + + + FileSystem: - - - + + + Size: - + ZFS Datasets:<br> - - + + Mount: - - + + Options: @@ -955,4 +1032,121 @@ + + wizardRestore + + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + + To get started please enter the hostname, username and port of your backup server. + + + + + Backup Server + + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + + Server Authentication + + + + + Use USB key + + + + + Use password authentication + + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + + Restore System Selection + + + + + Restore Summary + + + + + The system is ready to be restored, click Finish to continue. + + + + + No keys found! + + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + + + Connection failed! + + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + + Will restore from: + + + + + Select the SSH key to use + + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_en_GB.ts b/src-qt4/pc-installgui/i18n/SysInstaller_en_GB.ts index e12d7bf4b..eb2b5925e 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_en_GB.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_en_GB.ts @@ -257,6 +257,51 @@ Start the install using this config file? Start the install using this config file? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Available System Packages - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - &Save &Save @@ -319,6 +360,10 @@ Package Listing for: Package Listing for: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Experts (CLI manual mode) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Selected Disk Selected Disk @@ -621,10 +662,6 @@ Force ZFS 4K block size Force ZFS 4K block size - - Install GRUB boot-loader (Required for Boot-Environment support) - Install GRUB boot-loader (Required for Boot-Environment support) - (MB) (MB) @@ -633,6 +670,30 @@ Swap Size Swap Size + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -733,4 +794,98 @@ This wizard will walk you though the setup of your new server. Click next to begin. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_en_US.ts b/src-qt4/pc-installgui/i18n/SysInstaller_en_US.ts index b7f49070b..c449dcd15 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_en_US.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_en_US.ts @@ -4,352 +4,408 @@ Installer - + Change the installation language - + Welcome to PC-BSD! Please select your language and click next to continue. - + System Selection - - + + Load installation config file from USB stick - + Load config from USB - + Customize the selected system - - + + &Customize - - + + Summary - + + Restore from Life-Preserver backup + + + + Disk Selection - + Installation - + Your system is now being installed! This process may take a while, depending upon the installation options chosen, and system speed. You will be notified when the installation is finished. - + Your system is now installed! Click Finish to reboot. After rebooting you may eject the install media. - + Display hardware compatibility diagnostic - + + Manage network connectivity + + + + Display help for the current screen - + Launch the on-screen keyboard - + Switch between US layout and user selected layout - + Cancel the installation - + Ab&ort - - + + &Back - - + + &Next - + Desktop (PC-BSD) - + Server (TrueOS) - - + + Save Config to USB - + &Cancel - + Installing to file-system mounted at /mnt - + The disk will be setup with the following configuration: - + Disk: - + Mirroring: - - - + + + Partition: - - - + + + FileSystem: - - - + + + Size: - + ZFS Datasets:<br> - - + + Mount: - - + + Options: - + TrueOS Package Selection - + PC-BSD Package Selection - + The following meta-pkgs will be installed: - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + PC-BSD Installer - + Unable to detect any disk drives! The install will now exit. - + Unable to suggest a partition for the detected disk. - + Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - + + ZFS Datasets: + + + + + The original ZFS layout will be restored + + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + + Start the restore now? + + + + Start the installation now? - + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + + System Restore + + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Failed! - + The installer has encountered an error and has been halted. - + Do you want to generate an error report? - + Restart the system now? - + &Finish - - + + Extracting system... - - + + Installing system... This may take a while... - + Installing packages... This may take a while... - + + Installing meta-package: %1 + + + + Are you sure you want to abort this installation? - + The selected disk / partition is less than recommended %1GB. The installation may fail... - + This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - + Please insert a USB stick now, and click OK to continue. - + Please enter the nickname you want to save this configuration as. - + Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - + Configuration saved! You may now safely remove the USB media. - + This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - + Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - + Configuration loaded! You may now safely remove the USB media. - + + Restoring system: %1 + + + + Please insert the USB stick now, and click OK to continue. - + Config File: - + Start the install using this config file? @@ -396,7 +452,7 @@ - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). @@ -588,13 +644,13 @@ - - ZFS pool name + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. + + ZFS pool name @@ -619,7 +675,8 @@ - Install GRUB boot-loader (Required for Boot-Environment support) + + Install GRUB (Required for Boot-Environment support) @@ -639,7 +696,7 @@ - + Please select at least 1 other drive for mirroring @@ -689,140 +746,160 @@ - + Use entire disk - + + No boot-loader! + + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + + Stamp GRUB on MBR + + + + Please select 2 or 4 additional drives for raidz1 - + Please select 3, 5, or 9 additional drives for raidz2 - + Please select 4, 6, or 10 additional drives for raidz3 - + ZFS Mounts - + ZFS Options - + + The original system datasets / mount-points will be automatically restored. + + + + Resizing - + Remove mount-point - + Are you sure you want to remove this mount point? - + Enter mount-point - + Please enter the new mount-point: - + Invalid Mount - + Mount point should start with '/' - + Editing: - + Enter SWAP size - + Size (MB) - + Installing to file-system mounted at /mnt - + The disk will be setup with the following configuration: - + Disk: - + Mirroring: - - - + + + Partition: - - - + + + FileSystem: - - - + + + Size: - + ZFS Datasets:<br> - - + + Mount: - - + + Options: @@ -955,4 +1032,121 @@ + + wizardRestore + + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + + To get started please enter the hostname, username and port of your backup server. + + + + + Backup Server + + + + + Host Name + + + + + User Name + + + + + SSH Port + + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + + Server Authentication + + + + + Use USB key + + + + + Use password authentication + + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + + Restore System Selection + + + + + Restore Summary + + + + + The system is ready to be restored, click Finish to continue. + + + + + No keys found! + + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + + + Connection failed! + + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + + Will restore from: + + + + + Select the SSH key to use + + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_en_ZA.ts b/src-qt4/pc-installgui/i18n/SysInstaller_en_ZA.ts index e12d7bf4b..eb2b5925e 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_en_ZA.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_en_ZA.ts @@ -257,6 +257,51 @@ Start the install using this config file? Start the install using this config file? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Available System Packages - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - &Save &Save @@ -319,6 +360,10 @@ Package Listing for: Package Listing for: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Experts (CLI manual mode) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Selected Disk Selected Disk @@ -621,10 +662,6 @@ Force ZFS 4K block size Force ZFS 4K block size - - Install GRUB boot-loader (Required for Boot-Environment support) - Install GRUB boot-loader (Required for Boot-Environment support) - (MB) (MB) @@ -633,6 +670,30 @@ Swap Size Swap Size + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -733,4 +794,98 @@ This wizard will walk you though the setup of your new server. Click next to begin. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_es.ts b/src-qt4/pc-installgui/i18n/SysInstaller_es.ts index cca63eaf0..4ab65eecf 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_es.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_es.ts @@ -257,6 +257,51 @@ Start the install using this config file? ¿Iniciar la instalación usando este fichero de configuración? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Paquetes del sistema disponibles - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Por favor selecciona el software que deseas instalar. Al menos un escritorio debe ser seleccionado, y los cambios se realizaran después de la instalación. - &Save &Guardar @@ -319,6 +360,10 @@ Package Listing for: Listado de Paquetes por: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) Expertos FreeBSD (modo manual CLI) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Por favor selecciona el disco o la partición en la cual deseas instalar. Tenga en cuenta que BSD solo puede ser instalado en todo el disco duro, o partición primaria mas grande que 10GB. - Selected Disk Disco seleccionado @@ -623,11 +664,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -638,6 +674,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -738,4 +798,98 @@ Este asistente le guiará en la configuración de su nuevo servidor. Haga clic en Siguiente para comenzar. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_et.ts b/src-qt4/pc-installgui/i18n/SysInstaller_et.ts index ab5418c70..87b2c1e84 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_et.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_et.ts @@ -5,7 +5,7 @@ Installer Switch between US layout and user selected layout - Vali US-paigutuse ja kasutaja valitud paigutuse vahel + Vali klaviatuuri nuppude paigutus Ab&ort @@ -77,7 +77,7 @@ The following meta-pkgs will be installed: - Järgmised metapaketid paigaldatakse: + Paigaldatakse järgmised metapaketid: PC-BSD Installer @@ -195,83 +195,112 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa Load installation config file from USB stick - - + Laadi paigaldamise sätete fail USB-mälupulgalt Load config from USB - - + Laadi seadistus mälupulgalt Desktop (PC-BSD) - - + Töölaud (PC-BSD) Server (TrueOS) - - + Server (TrueOS) Save Config to USB - - + Salvesta seadistus USB-le This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - - + Paigaldamise seadistus salvestatakse failisüsteemiga MSDOSFS/FAT32 vormindatud USB-mälupulgale. Kas soovid jätkata? Please insert a USB stick now, and click OK to continue. - - + Ühenda USB-mälupulk arvutisse ja vajuta jätkamiseks "OK". Please enter the nickname you want to save this configuration as. - - + Vali nimi, mille alla seadistuse fail salvestada. Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Seadistuse faili ei õnnestunud USB-mälupulgale kirjutada. Kas seade töötab ja on vormindatud failisüsteemiga MSDOSFS/FAT32? Configuration saved! You may now safely remove the USB media. - - + Seadistus salvestatud! USB-meedia võib nüüd arvutist ohutult eemaldada. This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + Paigaldamise seadistuse fail loetakse USB-mälupulgalt, mille failisüsteem on MSDOSFS/FAT32. Kas soovid jätkata? Please insert the USB stick now, and click OK to continue. - - + Ühenda USB-mälupulk arvutisse ja vajuta jätkamiseks "OK". Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Mälupulgale salvestatud seadistuse faili ei õnnestunud lugeda. Kas seade töötab ja on vormindatud failisüsteemiga MSDOSFS/FAT32? Configuration loaded! You may now safely remove the USB media. - - + Seadistus laaditud! USB-meedia võib nüüd arvutist ohutult eemaldada. Config File: - - + Seadistuse fail: Start the install using this config file? - - + Kas alustada paigaldamist selle seadistuse failiga? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + @@ -307,10 +336,6 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa Available System Packages Saadaval süsteemi paketid - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Vali tarkvara, mida soovid paigaldada. Valida tuleb vähemalt üks töölauakeskkond. Muudatusi saab teha ka pärast paigaldamist. - &Save &Salvesta @@ -335,6 +360,10 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa Package Listing for: Paketid metapaketis + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -465,10 +494,6 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa FreeBSD Experts (CLI manual mode) FreeBSD ekspertidele (käsitsi seadistamine käsurealt) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Vali ketas või partitsioon, mida paigaldamiseks kasutada. Pane tähele, et BSD-d saab paigaldada ainult tervele kettale või peamisele partitsioonile, mis on suurem kui 10 GB. - Selected Disk Valitud ketas @@ -631,28 +656,43 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa ZFS pool name - - + ZFS pool'i nimi Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + Sunni ZFSi ploki suuruseks 4K (MB) - - + (MB) Swap Size - - + Saaleala suurus + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -754,4 +794,98 @@ Vajuta "Lõpeta", et taaskäivitada. Pärast taaskäivitamist võib pa See abiline aitab uut serverit seadistada. Vajuta "Edasi", et jätkata. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_eu.ts b/src-qt4/pc-installgui/i18n/SysInstaller_eu.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_eu.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_eu.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_fa.ts b/src-qt4/pc-installgui/i18n/SysInstaller_fa.ts index f4b0c3be4..39b090c64 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_fa.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_fa.ts @@ -275,6 +275,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -309,10 +354,6 @@ Available System Packages بسته های مهیا سیستم - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - برنامه ای را کنید قصد دارید نصب کنید را انتخاب کنید. یک دسکتاپ باید انتخاب شود و تغییرات باید ایجاد شود قبل از نصب. - &Save &ذخيره @@ -337,6 +378,10 @@ Package Listing for: ليست بسته ها براي: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -467,10 +512,6 @@ FreeBSD Experts (CLI manual mode) حرفه ای در FreeBSD(حالت خط فرمان) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - لطفا یک دیسک یا پارتیشنی را که قصد نصب برروی آنرا دارید انتخاب کنید. به این نکته توجه کنید که برای نصب BSD به کل دیسک یا یک پارتیشن اصلی نیاز داریدکه بزرگتر از 10 گیگابایت باشد. - Selected Disk دیسک انتخاب شده @@ -643,11 +684,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -658,6 +694,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -758,4 +818,98 @@ این ویزارد شما را برای راه اندازی یک سرور جدید همراهی می کند. برای شروع برروی گزینه بعدی کلیک کنید. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_fi.ts b/src-qt4/pc-installgui/i18n/SysInstaller_fi.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_fi.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_fi.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_fr.ts b/src-qt4/pc-installgui/i18n/SysInstaller_fr.ts index 8f1ca23af..a8aa417aa 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_fr.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_fr.ts @@ -199,7 +199,7 @@ Load config from USB - Charger configuration de de l'USB + Charger configuration de l'USB Desktop (PC-BSD) @@ -257,6 +257,51 @@ Start the install using this config file? Lancer l'installation en utilisant ce fichier de configuration? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Paquets système disponibles - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Veuillez sélectionner le logiciel que vous souhaitez installer. Au moins un ordinateur de bureau doit être sélectionné, et des modifications peuvent être apportées après l'installation. - &Save &Sauvegarder @@ -319,6 +360,10 @@ Package Listing for: Liste des paquets pour: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -439,7 +484,7 @@ Basic (New to BSD or disk partitioning) - Base (Nouveau BSD ou de partitionnement de disque) + Basique (Nouveau avec BSD ou avec le partitionnement de disque) Advanced (Experienced with file-systems) @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) Pour experts de FreeBSD (mode manuel en ligne de commande) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Veuillez sélectionner le disque ou la partition que vous souhaitez utiliser pour l'installation. Veuillez noter que BSD ne peut être installé que sur un disque entier ou une partition primaire supérieure à 10Go. - Selected Disk Disque sélectionné @@ -621,10 +662,6 @@ Force ZFS 4K block size ZFS force de la taille des blocs 4K - - Install GRUB boot-loader (Required for Boot-Environment support) - GRUB boot-loader (Requis pour le support Boot-Environnement) - (MB) (MB) @@ -633,6 +670,30 @@ Swap Size Swap Size + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -733,4 +794,98 @@ Cet Assistant vous guidera pour l'installation de votre nouveau serveur. Cliquez sur suivant pour commencer. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_fr_CA.ts b/src-qt4/pc-installgui/i18n/SysInstaller_fr_CA.ts index afb1a612d..4f428df5d 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_fr_CA.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_fr_CA.ts @@ -149,7 +149,7 @@ Launch the on-screen keyboard - Lancement du clavier à l'écran + Lancer du clavier à l'écran Cancel the installation @@ -257,6 +257,51 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Start the install using this config file? Lancer l'installation en utilisant ce fichier de configuration? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Available System Packages Paquets système disponibles - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - S'il vous plaît sélectionner le logiciel que vous souhaitez installer. Au moins un environnement bureau doit être sélectionné et les modifications peuvent aussi être apportées après l'installation. - &Save &Sauvegarder @@ -319,6 +360,10 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Package Listing for: Liste des paquets pour: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, FreeBSD Experts (CLI manual mode) Pour experts de FreeBSD (mode manuel en ligne de commande) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - S'il vous plaît sélectionner le disque ou la partition que vous souhaitez faire l'installation. Veillez noter que BSD ne peut-être installé que sur un disque entier ou une partition primaire supérieure à 10Go. - Selected Disk Disque sélectionné @@ -621,10 +662,6 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Force ZFS 4K block size ZFS force de la taille des blocs 4K - - Install GRUB boot-loader (Required for Boot-Environment support) - GRUB boot-loader (Requis pour le support Boot-Environnement) - (MB) (MB) @@ -633,6 +670,30 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Swap Size Swap Size + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -733,4 +794,98 @@ Cliquez sur Terminer pour redémarrer l'ordinateur. Après le redémarrage, Cet Assistant vous guidera pour l'installation de votre nouveau serveur. Cliquez sur suivant pour commencer. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_fur.ts b/src-qt4/pc-installgui/i18n/SysInstaller_fur.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_fur.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_fur.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_gl.ts b/src-qt4/pc-installgui/i18n/SysInstaller_gl.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_gl.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_gl.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_he.ts b/src-qt4/pc-installgui/i18n/SysInstaller_he.ts index 1339cdef6..431cddb4b 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_he.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_he.ts @@ -300,6 +300,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -340,11 +385,6 @@ Available System Packages חבילות מערכת זמינות - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -374,6 +414,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -519,11 +563,6 @@ FreeBSD Experts (CLI manual mode) מומחי FreeBSD (מצב שורת פקודה ידני) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk הדיסק הנבחר @@ -719,11 +758,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -734,6 +768,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -852,4 +910,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_hi.ts b/src-qt4/pc-installgui/i18n/SysInstaller_hi.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_hi.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_hi.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_hr.ts b/src-qt4/pc-installgui/i18n/SysInstaller_hr.ts index 6aaef3373..164cb0b61 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_hr.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_hr.ts @@ -287,6 +287,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -326,10 +371,6 @@ Available System Packages Dostupni sistemski paketi - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Molimo označite softver koji želite instalirati. Najmanje jedna radna površina mora biti označena, i promjene se mogu napraviti nakon instalacije. - &Save &Sačuvaj @@ -354,6 +395,10 @@ Package Listing for: Lista paketa za: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -484,10 +529,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD stručnjaci (ručni način u konzoli) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Molimo označite disk ili particiju u koju želite instalirati. Molimo primijetite da se BSD može instalirati samo na cijeli disk ili na primarnu particiju veću od 10GB. - Selected Disk Označeni disk @@ -664,11 +705,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -679,6 +715,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -779,4 +839,98 @@ Ovaj čarobnjak će vas pratiti kroz instalaciju vašeg novog poslužitelja. Kliknite dalje za početak. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_hu.ts b/src-qt4/pc-installgui/i18n/SysInstaller_hu.ts index 1e4e3eea0..9b0c0c55a 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_hu.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_hu.ts @@ -278,6 +278,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -312,10 +357,6 @@ Available System Packages Elérhető rendszercsomagok - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Válassza ki a telepíteni kívánt alkalmazásokat! Legalább egy asztali környezetet ki kell választani (a telepítés után más asztali környezetet is választhat). - &Save Menté&s @@ -340,6 +381,10 @@ Package Listing for: Csomaglista: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -470,10 +515,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD-szakértő (parancssoros felhasználói felületen) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Válassza ki a lemezt vagy partíciót, amelyre telepíteni szeretne. Vegye figyelembe, hogy a BSD-rendszerek csak 10 GB-nál nagyobb elsődleges partícióra, vagy teljes lemezre telepíthetőek! - Selected Disk Kiválasztott lemez @@ -646,11 +687,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -661,6 +697,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -761,4 +821,98 @@ A varázsló végigvezeti önt az új kiszolgáló beállításain. A Tovább gombra kattintva indul a folyamat. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_id.ts b/src-qt4/pc-installgui/i18n/SysInstaller_id.ts index 448b91ad2..8da19b480 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_id.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_id.ts @@ -299,6 +299,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -338,10 +383,6 @@ Available System Packages Paket Sistem yang Tersedia - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Silakan pilih aplikasi yang ingin Anda instal. Setidaknya satu desktop harus dipilih, dan perubahan dapat dilakukan setelah instalasi. - &Save &Simpan @@ -368,6 +409,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -517,11 +562,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -723,11 +763,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -738,6 +773,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -853,4 +912,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_is.ts b/src-qt4/pc-installgui/i18n/SysInstaller_is.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_is.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_is.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_it.ts b/src-qt4/pc-installgui/i18n/SysInstaller_it.ts index 529a05a9e..a0d04a084 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_it.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_it.ts @@ -292,6 +292,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -331,10 +376,6 @@ Available System Packages Pacchetti di sistema disponibili - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Per favore seleziona il software che desideri installare. Bisogna scegliere almeno un desktop, e ricorda che le scelte possono essere cambiate anche dopo l'installazione. - &Save &Salva @@ -360,6 +401,10 @@ Package Listing for: Lista pacchetti per: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -510,11 +555,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -716,11 +756,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -731,6 +766,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -846,4 +905,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ja.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ja.ts index fbadd1886..c6b99ccb0 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ja.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ja.ts @@ -153,7 +153,7 @@ System Selection - System Selection + システムの選択 TrueOS Package Selection @@ -195,7 +195,7 @@ Load config from USB - USB メモリーから設定の読み取り + USB メモリーから設定を読み取る Desktop (PC-BSD) @@ -251,12 +251,57 @@ Unable to suggest a partition for the detected disk. - このディスクではパーティションを作成できません。 + このディスクではパーティションを作成できません。 Please insert the USB stick now, and click OK to continue. USB メモリーを挿入してください。OK ボタンをクリックすると続行します。 + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages システムパッケージ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - インストールしたいソフトウェアを選択してください。デスクトップは最低でも1つ選択してください。インストール完了後の変更も可能です。 - &Save 保存(&S) @@ -319,6 +360,10 @@ No Desktop No Desktop + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD エキスパート(CLI マニュアルモード) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - インストール先となるディスクまたはパーティションを選択してください。BSD をインストールする場合にはディスク全体を使用するか、10GB 以上のプライマリーパーティションが必要です。 - Selected Disk 使用するディスク @@ -479,7 +520,7 @@ You have chosen Expert mode. In this mode you are able to launch a terminal window and use the command-line to manually partition your disk. When you are finished, make sure to mount your filesystems to /mnt to begin the installation. - エキスパートモードを選択しました。このモードでは、ターミナルを開いてコマンドラインを使用して手動でディスクにパーティションを作成します。作業が完了したら、作成したファイルシステムを /mnt にマウントしてインストールを開始してください。 + エキスパートモードを選択しました。このモードでは、ターミナルを開いてコマンドラインを使用して手動でディスクにパーティションを作成します。作業が完了したら、作成したファイルシステムを /mnt にマウントしてインストールを開始してください。  &Launch terminal @@ -619,22 +660,39 @@ Force ZFS 4K block size - ZFS のブロックサイズを 4K バイトに指定する - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + ZFS のブロックサイズを 4K バイトに指定する (MB) - - + (MB) Swap Size - - + スワップ領域のサイズ + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -736,4 +794,98 @@ このウィザードの指示通りにサーバーの設定を行います。設定を始めるには「次へ」をクリックします。 + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ka.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ka.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ka.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ka.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ko.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ko.ts index c43f0366f..220d9bd2f 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ko.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ko.ts @@ -317,6 +317,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -358,11 +403,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -393,6 +433,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -551,11 +595,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -766,11 +805,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -781,6 +815,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -902,4 +960,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_lt.ts b/src-qt4/pc-installgui/i18n/SysInstaller_lt.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_lt.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_lt.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_lv.ts b/src-qt4/pc-installgui/i18n/SysInstaller_lv.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_lv.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_lv.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_mk.ts b/src-qt4/pc-installgui/i18n/SysInstaller_mk.ts index 2c0835a27..ff0d7c33a 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_mk.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_mk.ts @@ -314,6 +314,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -355,11 +400,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -390,6 +430,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -547,11 +591,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -762,11 +801,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -777,6 +811,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -899,4 +957,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_mn.ts b/src-qt4/pc-installgui/i18n/SysInstaller_mn.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_mn.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_mn.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ms.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ms.ts index 19895897f..7ef55152f 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ms.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ms.ts @@ -315,6 +315,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -356,11 +401,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -391,6 +431,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -549,11 +593,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -764,11 +803,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -779,6 +813,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -901,4 +959,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_mt.ts b/src-qt4/pc-installgui/i18n/SysInstaller_mt.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_mt.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_mt.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_nb.ts b/src-qt4/pc-installgui/i18n/SysInstaller_nb.ts index 2ad4eff86..9c01af54a 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_nb.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_nb.ts @@ -317,6 +317,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -358,11 +403,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -393,6 +433,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -551,11 +595,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -766,11 +805,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -781,6 +815,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -904,4 +962,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ne.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ne.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ne.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ne.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_nl.ts b/src-qt4/pc-installgui/i18n/SysInstaller_nl.ts index a778001d5..01d88e986 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_nl.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_nl.ts @@ -33,7 +33,7 @@ Disk Selection - Schijf selectie + Schijfkeuze Installation @@ -93,7 +93,7 @@ Failed! - Mislukt! + Mislukt. The installer has encountered an error and has been halted. @@ -125,7 +125,7 @@ Display hardware compatibility diagnostic - Toon diagnose van apparaat-verenigbaarheid + Toon diagnose van apparatuurverenigbaarheid System Selection @@ -195,18 +195,15 @@ Load installation config file from USB stick - - + Laad instellingenbestand voor installatie vanaf USB-staafje Load config from USB - - + Instellingen laden vanaf USB-staafje Desktop (PC-BSD) - - + Bureaublad (PC-BSD) Server (TrueOS) @@ -226,48 +223,84 @@ Please enter the nickname you want to save this configuration as. - - + Voer a.u.b. de naam in waaronder u deze instellingen wil opslaan. Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Kon instellingen niet opslaan op USB-media. Doet het apparaat het wel en is het geformatteerd in MSDOSFS/FAT32? Configuration saved! You may now safely remove the USB media. - - + Instellingen opgeslagen. U kunt het USB-medium nu veilig verwijderen. This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + Dit zal een bestand met installatie-instellingen laden vanaf uw MSDOSFS/FAT32-geformatteerde USB-staafje. Doorgaan? Please insert the USB stick now, and click OK to continue. - - + Stop het USB-staafje a.u.b. nu erin, en klik op OK om door te gaan. Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Kon opgeslagen instellingenbestand niet laden vanaf het USB-medium. Doet het apparaat het wel en is het geformatteerd in MSDOSFS/FAT32? Configuration loaded! You may now safely remove the USB media. - - + Instellingen zijn geladen. U kunt het USB-medium nu veilig verwijderen. Config File: - - + Instellingenbestand: Start the install using this config file? - - + De installatie beginnen met gebruikmaking van dit instellingenbestand? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + @@ -303,10 +336,6 @@ Available System Packages Beschikbare systeempakketten - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Kies de programma's die u wilt installeren. Kies minimaal één werkomgeving. U kunt de werkomgeving na de installatie nog wijzigen. - &Save &Opslaan @@ -331,12 +360,16 @@ Package Listing for: Pakketten-opsomming voor: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware Detected hardware devices - Bespeurde apparaten + Ontdekte apparaten &Close @@ -352,7 +385,7 @@ No ethernet detected - Geen ethernet bespeurd + Geen ethernet bespeurd Ethernet device: @@ -368,7 +401,7 @@ No sound detected - Geen geluid bespeurd + Geen geluid bespeurd Sound device: @@ -416,7 +449,7 @@ Key Layout - Toetsen layout + Toetsindeling Variant @@ -424,7 +457,7 @@ Keyboard Model - Keyboard model + Toetsenbordmodel ( you may type into the space below to test your selected settings. ) @@ -443,23 +476,23 @@ wizardDisk This wizard will walk you through the disk setup process. Please choose the setup mode you wish to use. - Deze wizard neemt het schijfinrichtingsproces met u door. Kies de inrichtingsmethode die u wilt gebruiken. + Deze instelhulp neemt het schijfindelingsproces met u door. Kies de indelingsmethode die u wilt gebruiken. Setup Mode - Inrichtingsmethode + Indelingsmethode Basic (New to BSD or disk partitioning) - Basis (Onbekend met BSD of schijfpartitionering) + Basis (onbekend met BSD of schijfpartitionering) Advanced (Experienced with file-systems) - Geavanceerd (Ervaren met bestandssystemen) + Geavanceerd (ervaren met bestandssystemen) FreeBSD Experts (CLI manual mode) - FreeBSD experts (CLI handmatige methode) + FreeBSD-deskundigen (handmatige methode via de terminal) Selected Disk @@ -475,7 +508,7 @@ Below you may adjust the file-system mount points. For most users the defaults will work best. - Hieronder kunt u de bestandssysteem aankoppelpunten wijzigen. Voor de meeste gebruikers volstaat de standaard. + Hieronder kunt u de koppelpunten van het bestandssysteem wijzigen. Voor de meeste gebruikers volstaan de standaarden. &Add @@ -487,15 +520,15 @@ You have chosen Expert mode. In this mode you are able to launch a terminal window and use the command-line to manually partition your disk. When you are finished, make sure to mount your filesystems to /mnt to begin the installation. - U heeft de expert-modus gekozen. In deze modus kunt u een terminal venster openen en de command-line gebruiken om uw schijf handmatig te partitioneren. Zodra u klaar ben moet u de nieuwe bestandssystemen aankoppelen aan /mnt om de installatie te beginnen. + U heeft de expertmodus gekozen. In deze modus kunt u een terminalvenster openen en de opdrachtregel gebruiken om uw schijf handmatig te partitioneren. Wanneer u klaar bent moet u uw bestandssystemen aankoppelen aan /mnt om de installatie te beginnen. &Launch terminal - Termina&l starten + Termina&lvenster starten Please check the disk summary below and click finish to save your settings. - Controleer onderstaande samenvatting van de schijfindeling en klik klaar om uw instellingen op te slaan. + Controleer a.u.b. onderstaande samenvatting van de schijfindeling en klik op Voltooien om uw instellingen op te slaan. Use entire disk @@ -515,19 +548,19 @@ Remove mount-point - Verwijder aankoppelpunt + Verwijder koppelpunt Are you sure you want to remove this mount point? - Weet u zeker dat u dit aankoppelpunt wilt verwijderen? + Weet u zeker dat u dit koppelpunt wilt verwijderen? Enter mount-point - Voer aankoppelpunt in + Voer koppelpunt in Please enter the new mount-point: - Geef het nieuwe aankoppelpunt aan: + Geef a.u.b. het nieuwe koppelpunt op: Editing: @@ -581,10 +614,6 @@ Options: Opties: - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Kies a.u.b. de schijf of partitie waarop u wilt installeren. Let er a.u.b. op dat PC-BSD alleen geïnstalleerd kan worden op een hele schijf, of op een primaire partitie groter dan 10 GB. - If this is a single disk ZFS install, you can continue, otherwise please select the mirror / raid mode and disks below. Indien dit een ZFS-installatie op een enkele schijf betreft, dan kunt u doorgaan. Zo niet, kies dan hieronder a.u.b. de spiegel- of raidmodus en de schijven. @@ -627,28 +656,43 @@ ZFS pool name - - + Naam van ZFS-pool Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + Forceer ZFS-blokgrootte van 4K (MB) - - + (MB) Swap Size - - + Swapgrootte + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -683,11 +727,11 @@ Please enter a system hostname and remote login preference. - Voer a.u.b. een systeemhostnaam in en uw voorkeur voor aanmelden-op-afstand. + Voer a.u.b. een systeemnaam in en uw voorkeur voor aanmelden-op-afstand. Hostname - Hostnaam + Systeemnaam Enable remote SSH login @@ -719,15 +763,15 @@ IPv6 Address - IPv6 adres + IPv6-adres IPv6 Gateway - IPv6 Gateway + IPv6-Gateway IPv6 Nameserver - IPv6 naamserver + IPv6-naamserver 000.000.000.000; @@ -743,11 +787,105 @@ Install ports tree (/usr/ports) - Installeer ports tree (/usr/ports) + Installeer poortenboom (/usr/ports) This wizard will walk you though the setup of your new server. Click next to begin. Deze instelhulp zal u begeleiden bij het instellen van uw nieuwe server. Klik op 'volgende' om te beginnen. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_pa.ts b/src-qt4/pc-installgui/i18n/SysInstaller_pa.ts index c186bc04c..2ee806175 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_pa.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_pa.ts @@ -300,6 +300,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -341,11 +386,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save ਸੰਭਾਲੋ(&S) @@ -374,6 +414,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -528,11 +572,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -736,11 +775,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -751,6 +785,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -869,4 +927,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_pl.ts b/src-qt4/pc-installgui/i18n/SysInstaller_pl.ts index 8b8eda9a1..c0fe8346d 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_pl.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_pl.ts @@ -256,6 +256,51 @@ This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? Teraz nastąpi załadowanie konfiguracji instalacji ze sformatowanego jako MSDOSFS/FAT32 nośnika USB. Kontynuować? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -290,10 +335,6 @@ Available System Packages Dostępne pakiety systemowe - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Wybierz oprogramowanie, które chcesz zainstalować. Co najmniej jeden menadżer pulpitu musi zostać wybrany; zmiany mogą zostać dokonane także po zakończeniu instalacji. - &Save &Zapisz @@ -318,6 +359,10 @@ Package Listing for: Lista pakietów dla: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -448,10 +493,6 @@ FreeBSD Experts (CLI manual mode) Ekspert FreeBSD (tryb ręczny wiersza poleceń) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Proszę wybierz dysk lub partycję na której chcesz zainstalować system. Pamiętaj, że BSD może zostać zainstalowany jedynie na całym dysku lub na partycji podstawowej większej niż 10GB. - Selected Disk Wybrany dysk @@ -620,20 +661,37 @@ Force ZFS 4K block size Wymuś wielkość bloku 4K dla ZFS - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) - - + (MB) Swap Size - - + Rozmiar Swap + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -735,4 +793,98 @@ Ten kreator poprowadzi cię przez konfigurację nowego serwera. Kliknij Dalej aby rozpocząć. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_pt.ts b/src-qt4/pc-installgui/i18n/SysInstaller_pt.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_pt.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_pt.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_pt_BR.ts b/src-qt4/pc-installgui/i18n/SysInstaller_pt_BR.ts index 8e551ffdf..748c09c56 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_pt_BR.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_pt_BR.ts @@ -21,7 +21,7 @@ Welcome to PC-BSD! Please select your language and click next to continue. - Bem vindo ao PC-BSD! Favor selecionar sua língua e clique em próximo para continuar. + Bem vindo ao PC-BSD! Por favor, selecione o seu idioma e clique em próximo para continuar. &Customize @@ -41,7 +41,7 @@ Your system is now being installed! This process may take a while, depending upon the installation options chosen, and system speed. You will be notified when the installation is finished. - Seu sistema está sendo instalado! Este processo deve levar algum tempo, dependendo das opções de instalação escolhidas, e da velocidade do sistema. Você será avisado quando a instalação terminar. + Seu sistema está sendo instalado! Este processo deve levar algum tempo, dependendo das opções de instalação escolhidas e da velocidade do sistema. Você será avisado quando a instalação terminar. Installing to file-system mounted at /mnt @@ -77,7 +77,7 @@ The following meta-pkgs will be installed: - Os seguintees meta-pkgs serão instalados: + Os seguintes meta-pkgs serão instalados: PC-BSD Installer @@ -161,13 +161,13 @@ PC-BSD Package Selection - Seleção de pacotes do PC-BSD + Seleção de pacotes do PC-BSD Your system is now installed! Click Finish to reboot. After rebooting you may eject the install media. - Seu sistema está instalado! - Clique em Concluir para reiniciar. Após a reinicialização, você pode ejetar a mídia de instalação. + Seu sistema está instalado! + Clique em Finalizar para reiniciar. Após a reinicialização, você pode ejetar a mídia de instalação. &Cancel @@ -175,23 +175,23 @@ Extracting system... - Extraindo o sistema... + Extraindo o sistema... Unable to detect any disk drives! The install will now exit. - Incapaz de detectar quaisquer unidades de disco! A instalação será encerrada agora. + Não foi possível detectar quaisquer unidades de disco! A instalação será encerrada agora. Unable to suggest a partition for the detected disk. - Incapaz de sugerir uma partição para o disco detectado. + Não foi possível sugerir uma partição para o disco detectado. Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - Foi detectado que você está executando a versão de 32 bits. Se o seu sistema é de 64 bits (maioria dos sistemas fabricados após 2005), você deveria estar executando a versão de 64 bits + Foi detectado que você está executando a versão de 32 bits. Se o seu sistema é de 64 bits (maioria dos sistemas fabricados após 2005), você deveria usar a versão de 64 bits The selected disk / partition is less than recommended %1GB. The installation may fail... - O disco / partição selecionado é menor que o recomendado %1GB. A instalação pode falhar... + O disco / partição selecionado é menor que o recomendado %1GB. A instalação poderá falhar... Load installation config file from USB stick @@ -215,28 +215,27 @@ This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - Isto irá salvar a sua configuração de instalação em um dispositivo USB formatado em MSDOSFS/FAT32. Continuar? + Isto irá salvar a sua configuração de instalação em um dispositivo USB formatado em MSDOSFS/FAT32. Continuar? Please insert a USB stick now, and click OK to continue. - Por favor, insira agora um dispositivo USB e clique em OK para continuar. + Por favor, insira agora um dispositivo USB e clique em OK para continuar. Please enter the nickname you want to save this configuration as. - - + Por favor, digite o apelido para esta configuração que você deseja salvar. Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - Falhou ao salvar a configuração na mídia USB. O dispositivo está funcionando e formatado em MSDOSFS/FAT32? + Falhou ao salvar a configuração na mídia USB. O dispositivo está funcionando e formatado em MSDOSFS/FAT32? Configuration saved! You may now safely remove the USB media. - Configuração salva! Agora você pode remover a mídia USB com segurança. + Configuração salva! Agora pode remover a mídia USB com segurança. This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - Isto irá carregar o arquivo de configuração de instalação do seu dispositivo USB formatado em MSDOSFS/FAT32. Continuar? + Isto irá carregar o arquivo de configuração de instalação do seu dispositivo USB formatado em MSDOSFS/FAT32. Continuar? Please insert the USB stick now, and click OK to continue. @@ -244,11 +243,11 @@ Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - Falhou ao carregar o arquivo de configuração salvo na mídia USB. O dispositivo está funcionando e formatado em MSDOSFS/FAT32? + Falhou ao carregar o arquivo de configuração salvo da mídia USB. O dispositivo está funcionando e formatado em MSDOSFS/FAT32? Configuration loaded! You may now safely remove the USB media. - Configuração carregada! Agora você pode remover com segurança a mídia USB. + Configuração carregada! Agora pode remover a mídia USB com segurança. Config File: @@ -258,6 +257,51 @@ Start the install using this config file? Iniciar a instalação usando este arquivo de configuração? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -292,10 +336,6 @@ Available System Packages Sistema de pacotes disponíveis - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Por favor, selecione o software que você deseja ter instalado. Pelo menos uma área de trabalho deve ser selecionada, e as mudanças podem ser feitas após a instalação. - &Save &Salvar @@ -320,6 +360,10 @@ Package Listing for: Listando pacotes para: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -450,10 +494,6 @@ FreeBSD Experts (CLI manual mode) Especialista em FreeBSD (modo manual CLI) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Favor selecionar o disco ou partição na qual você deseja instalar. Favor notar que o BSD pode ser instalado apenas num disco inteiro, ou partição primária maior que 10GB. - Selected Disk Selecione o disco @@ -488,7 +528,7 @@ Please check the disk summary below and click finish to save your settings. - Favoer checar o resumo do disco abaixo e clique em finalizar para salvar suas configurações. + Favor checar o resumo do disco abaixo e clique em finalizar para salvar suas configurações. Use entire disk @@ -528,7 +568,7 @@ Installing to file-system mounted at /mnt - Instalando no sistema de arquivos montaod em /mnt + Instalando no sistema de arquivos montado em /mnt The disk will be setup with the following configuration: @@ -621,12 +661,7 @@ Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - Instalar o carregador de inicialização GRUB (necessário para o suporte ao ambiente de inicialização) + Forçar o tamanho de bloco do ZFS em 4k (MB) @@ -636,6 +671,30 @@ Swap Size Tamanho da Swap + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -736,4 +795,98 @@ Este facilitador de configuração permitirá para os passos através da configuração de seu novo servidor. Clique em próximo para começar. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ro.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ro.ts index 1c20039ac..3cb315b8e 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ro.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ro.ts @@ -317,6 +317,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -358,11 +403,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -393,6 +433,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -551,11 +595,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -766,11 +805,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -781,6 +815,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -905,4 +963,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ru.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ru.ts index 57f72c307..b9e809897 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ru.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ru.ts @@ -273,6 +273,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -307,10 +352,6 @@ Available System Packages Пакеты, доступные системе - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Пожалуйста, выберите программное обеспечение которое Вы хотите установить. По крайней мере один рабочий стол должен быть выбран, и изменения могут быть сделаны после установки. - &Save Сохранить [&S] @@ -335,6 +376,10 @@ Package Listing for: Список пакетов для: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -465,10 +510,6 @@ FreeBSD Experts (CLI manual mode) Эксперт (ручное разбиение из командной строки) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Выберите диск или раздел, предназначенный для установки. Обратите внимание, что BSD может быть установлена либо на весь диск целиком, либо только на основной (первичный) раздел, больший чем 10Гб. - Selected Disk Выбранный диск @@ -639,11 +680,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -654,6 +690,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -754,4 +814,98 @@ Этот мастер поможет Вам установить на Ваш новый сервер. Нажмите кнопку Далее, чтобы начать. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sa.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sa.ts index 5a085a30a..cf8784e34 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sa.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sa.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sk.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sk.ts index 0f50fd05a..4934f2d84 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sk.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sk.ts @@ -299,6 +299,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -340,11 +385,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save &Uložiť @@ -373,6 +413,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -527,11 +571,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -734,11 +773,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -749,6 +783,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -867,4 +925,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sl.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sl.ts index 9fb875252..f57fa4b4a 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sl.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sl.ts @@ -299,6 +299,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -340,11 +385,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save &Shrani @@ -373,6 +413,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -527,11 +571,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -734,11 +773,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -749,6 +783,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -867,4 +925,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sr.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sr.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sr.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sr.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sv.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sv.ts index 6aadd13b0..a7ea833de 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sv.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sv.ts @@ -195,83 +195,112 @@ Load installation config file from USB stick - - + Ladda installationskonfigurationsfil från USB minne Load config from USB - - + Ladda konfiguration från USB Desktop (PC-BSD) - - + Skrivbord (PC-BSD) Server (TrueOS) - - + Server (TrueOS) Save Config to USB - - + Spara konfiguration till USB This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - - + Detta kommer spara din installationskonfiguration till en MSDOSFS/FAT32 formaterat USB minne. Fortsätta? Please insert a USB stick now, and click OK to continue. - - + Vad god sätt i ett USB minne och klicka OK för att fortsätta. Please enter the nickname you want to save this configuration as. - - + Vad god ange smeknamnet du vill spara denna konfiguration som. Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Misslyckades spara konfigurationen till USB minnet. Fungerar denna enhet och är den formaterad med MSDOSFS/FAT32? Configuration saved! You may now safely remove the USB media. - - + Konfigurationen sparad! Du kan nu ta bort USB minnet säkert. This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + Detta kommer ladda en installationskonfiguration från ditt MSDOSFS/FAT32 formetade USB minn. Fortsätta? Please insert the USB stick now, and click OK to continue. - - + Vad god sätt i USB minnet nu, klicka sedan OK för att fortsätta. Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + Misslyckades ladda konfigurationsfilen från USB minnet. Fungerar denna enhet och är formared med MSDOSFS/FAT32? Configuration loaded! You may now safely remove the USB media. - - + Konfiguration laddad! Du kan nu ta bort USB minnet säkert. Config File: - - + Konfigurationsfil: Start the install using this config file? - - + Starta installationen med denna konfigurationsfil? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + @@ -307,10 +336,6 @@ Available System Packages Tillgängliga systempaket - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Välj de program du vill ska installeras. Minst en skrivbordsmiljö måste väljas, och ändringar kan göras efter installationen. - &Save &Spara @@ -335,6 +360,10 @@ Package Listing for: Paketlista för: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -465,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Expert (CLI manuellt läge) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Vad god välj enhet eller partition du vill installera till. Notera att BSD endast kan installeras på en hel disk eller en primär partition större än 10GB. - Selected Disk Vald enhet @@ -631,28 +656,43 @@ ZFS pool name - - + ZFS pool namn Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + Tvinga ZFS 4k block size (MB) - - + (MB) Swap Size - - + Swap storlek + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -754,4 +794,98 @@ Denna guide kommer att ta dig genom installationen av din nya server. Klicka på nästa för att börja. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_sw.ts b/src-qt4/pc-installgui/i18n/SysInstaller_sw.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_sw.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_sw.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_ta.ts b/src-qt4/pc-installgui/i18n/SysInstaller_ta.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_ta.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_ta.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_tg.ts b/src-qt4/pc-installgui/i18n/SysInstaller_tg.ts index c5cb9a39a..4052911c5 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_tg.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_tg.ts @@ -297,6 +297,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -336,11 +381,6 @@ Available System Packages Қуттиҳои системавии дастрас - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save &Захира кунед @@ -367,6 +407,10 @@ Package Listing for: Рӯйхати қуттиҳо барои: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -510,11 +554,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk Диски интихобшуда @@ -703,11 +742,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -718,6 +752,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -824,4 +882,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_th.ts b/src-qt4/pc-installgui/i18n/SysInstaller_th.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_th.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_th.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_tr.ts b/src-qt4/pc-installgui/i18n/SysInstaller_tr.ts index 0a0bc5deb..5b1cf6c9e 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_tr.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_tr.ts @@ -278,6 +278,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -312,10 +357,6 @@ Available System Packages Mevcut Sistem Paketleri - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Kurulmasını istediğiniz yazılımı seçin. En az bir masaüstü seçmelisiniz, kurulum sonrasında değişiklikler yapabilirsiniz. - &Save &Kaydet @@ -340,6 +381,10 @@ Package Listing for: Aranılan için Paket Listesi: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -470,10 +515,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD Uzmanları (komut satırı kipi) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Lütfen üzerine kurulum yapmak istediğiniz disk bölümünü seçiniz. BSD sadece 10GB 'tan büyük birincil disk bölümüne veya tüm diske kurulabilir. - Selected Disk Seçilen Disk @@ -646,11 +687,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -661,6 +697,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -761,4 +821,98 @@ Bu sihirbaz sizi yeni sunucunun kurulumunda yardımcı olacaktır. İleri tuşuna basarak kuruluma başlayın. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_uk.ts b/src-qt4/pc-installgui/i18n/SysInstaller_uk.ts index ce2313fe7..7b92e693a 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_uk.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_uk.ts @@ -257,6 +257,51 @@ Start the install using this config file? Почати встановлення з цими налаштуваннями? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Наявні системні пакунки - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Оберіть програмне забезпечення для встановлення. Принаймні одне стільничне оточення має бути вибране. Ви можете змінити налаштування після встановлення. - &Save Зберегти @@ -319,6 +360,10 @@ Package Listing for: Перелік пакунків для: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD експерт (розмітка з командного рядка) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Будь ласка, оберіть диск або розділ для встановлення. Будь ласка, зверніть увагу, що BSD можна встановити або на увесь диск, або на первинний розділ розміром більш ніж 10 Гб. - Selected Disk Обраний диск @@ -621,10 +662,6 @@ Force ZFS 4K block size Примусово встановити розмір ZFS блоку 4K - - Install GRUB boot-loader (Required for Boot-Environment support) - Встановити завантажувач GRUB (необхідно для підтримки оточень завантаження) - (MB) (МБ) @@ -633,6 +670,30 @@ Swap Size Розмір підкачки + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -733,4 +794,98 @@ Цей майстер допоможе Вам встановити та налаштувати Ваш новий сервер. Натисніть "Далі" щоб розпочати. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_uz.ts b/src-qt4/pc-installgui/i18n/SysInstaller_uz.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_uz.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_uz.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_vi.ts b/src-qt4/pc-installgui/i18n/SysInstaller_vi.ts index ed6183ee7..41b8657ff 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_vi.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_vi.ts @@ -257,6 +257,51 @@ Start the install using this config file? Bắt đầu cài đặt sử dụng tập tin cấu hình này? + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -291,10 +336,6 @@ Available System Packages Hệ thống trọn gói sẵn - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - Xin chọn phần mềm bạn muốn cài đặt. Ít nhất một phải được lựa chọn máy tính để bàn, và trao đổi có thể trở thành xứ cài đặt hiệu quả. - &Save &tiết kiệm @@ -319,6 +360,10 @@ Package Listing for: Gói Liệt kê cho: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -449,10 +494,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD chuyên gia (CLI Hướng dẫn sử dụng chế độ) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - Hãy chọn đĩa hoặc phân vùng mà bạn muốn cài đặt vào. Xin lưu ý rằng BSD chỉ có thể được cài đặt để toàn bộ đĩa, hoặc phân vùng chính lớn hơn 10GB. - Selected Disk trên đĩa chọn @@ -621,20 +662,37 @@ Force ZFS 4K block size Lực lượng ZFS kích thước khối 4K - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) - - + (MB) Swap Size - - + hoán đổi Kích + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -736,4 +794,98 @@ Wizard này sẽ hướng dẫn bạn mặc dù các thiết lập của máy chủ mới của bạn. Kích Next để bắt đầu. + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_zh_CN.ts b/src-qt4/pc-installgui/i18n/SysInstaller_zh_CN.ts index 1e77448fe..725233d97 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_zh_CN.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_zh_CN.ts @@ -121,7 +121,7 @@ ZFS Datasets:<br> - ZFS数据集:<br> + ZFS数据集:<br> Display hardware compatibility diagnostic @@ -133,7 +133,7 @@ Installing packages... This may take a while... - 正在安装软件包...可能需要一些时间... + 正在安装软件包...可能需要一些时间…… Change the installation language @@ -183,13 +183,11 @@ Unable to suggest a partition for the detected disk. - 无法为选定的磁盘提供分区建议。 - + 无法为选定的磁盘提供分区建议。 Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - 检查到你正在运行32位。如果你的系统支持64位(05年之前的绝大多数都支持),你应该运行64位 - + 检查到你正在运行32位。如果你的系统支持64位(05年之前的绝大多数都支持),你应该运行64位 The selected disk / partition is less than recommended %1GB. The installation may fail... @@ -197,134 +195,150 @@ Load installation config file from USB stick - - + 从USB中载入安装配置文件 Load config from USB - - + 从USB中载入配置 Desktop (PC-BSD) - - + 桌面(PC-BSD) Server (TrueOS) - - + 服务器(TrueOS) Save Config to USB - - + 将配置保存到USB This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - - + 此动作将把安装配置保存到MSDOSFS/FAT32格式的USB中。继续? Please insert a USB stick now, and click OK to continue. - - + 请插入USB,点击OK继续。 Please enter the nickname you want to save this configuration as. - - + 请为要保存的配置输入一个别名。 Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 将配置保存到USB介质失败。此设备正常工作并且是MSDOSFS/FAT32格式的吗? Configuration saved! You may now safely remove the USB media. - - + 配置已保存!你现在可以安全的移除USB介质了。 This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + 此动作会从你的MSDOSFS/FAT32格式的USB中载入安装配置文件。继续? Please insert the USB stick now, and click OK to continue. - - + 请插入USB,点击OK继续。 Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 从USB介质中载入配置失败。此设备正常工作并且是MSDOSFS/FAT32格式的吗? Configuration loaded! You may now safely remove the USB media. - - + 配置已载入!你现在可以安全的移除USB介质了。 Config File: - - + 配置文件: Start the install using this config file? - - + 依此配置文件开始安装? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + QObject This screen allows you to select the language you wish to perform the install with. - - + 此屏幕允许你选择安装时使用的语言。 This screen allows you to select the type of system you wish to install. Clicking customize will allow you to change the selected packages for your system. - - + 此屏幕允许你选择要安装的系统类型。点击定制可以允许你更改要安装的软件包。 This screen will display the currently selected disk options. Clicking customize will allow you to change the target disk, file-systems and more. - - + 此屏幕将显示当前选定的磁盘选项。点击定制将允许你更改目标磁盘,文件系统及其它。 Your system is now installing! Go grab a cup of coffee and relax, the installer will notify you when it is finished. - - + 你的系统正在安装!泡杯茶,放松一下,当安装完成时,安装程序会通知你。 The system is now finished installing! Click Finish to reboot, and be sure to eject any install media before booting into your new system. - - + 系统完成安装!点击完成以重启,在重启前确认安装文件已经弹出。 desktopSelection System Package Configuration - - + 系统软件包配置 Available System Packages - - - - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - + 可用的系统软件包 &Save - - + 保存(&S) &Cancel @@ -332,268 +346,221 @@ No Desktop - - + 没有桌面 No desktops have been selected! Please choose at least one desktop to continue. - - + 未选择任何桌面!请至少选择一个以继续。 View Packages - - + 查看软件包 Package Listing for: - - + 选定桌面的软件包列表: + + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + dialogCheckHardware Detected hardware devices - - + 检测到的硬件设备 &Close - - + 关闭(&C) Video driver: - - + 视频驱动: Video resolution: - - + 视频分辨率: No ethernet detected - - + 未检测到以太网 Ethernet device: - - + 以太网设备: No wifi detected - - + 未检测到无线 Wifi device: - - + 无线设备: No sound detected - - + 未检测到声卡 Sound device: - - + 声卡设备: dialogFSSize Size: - 大小: + 大小: MB - - + MB &Ok - - + Ok(&O) &Cancel - 取消(&C) + 取消(&C) dialogHelp &Close - - + 关闭(&C) dialogInfoBox &Close - - + 关闭(&C) widgetKeyboard Keyboard Settings - - + 键盘设置 Key Layout - - + 键盘布局 Variant - - + 分支 Keyboard Model - - + 键盘型号 ( you may type into the space below to test your selected settings. ) - - + (你可以在以下空白处输入字符以测试选定的设置) &Apply - - + 应用(&A) &Close - - + 关闭(&C) wizardDisk This wizard will walk you through the disk setup process. Please choose the setup mode you wish to use. - - + 此向导指引你创建磁盘。请选择要使用的创建模式。 Setup Mode - - + 创建模式 Basic (New to BSD or disk partitioning) - - + 基础(适合BSD或磁盘分区方面的新手) Advanced (Experienced with file-systems) - - + 高级(适合对文件系统有经验的人) FreeBSD Experts (CLI manual mode) - - + FreeBSD专家模式(命令行下的手工模式) ZFS pool name - - - - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - + ZFS池名称 Partition disk with GPT - - + 用GPT给磁盘分区 Selected Disk - - + 选定的磁盘 Selected Partition - - + 选定的分区 Force ZFS 4K block size - - + 强制ZFS使用4K块大小 If this is a single disk ZFS install, you can continue, otherwise please select the mirror / raid mode and disks below. - - + 如果这是一个单磁盘的ZFS安装,请继续,否则的话请在下面选择镜像/raid模式和磁盘。 Enable ZFS mirror/raidz mode - - + 启用ZFS镜像/raidz模式 ZFS Virtual Device Mode - - + ZFS虚拟设备模式 Please select at least 1 other drive for mirroring - - + 请至少再选一个其它磁盘做镜像 Note: Using ZFS mirror/raidz can only be enabled when doing full-disk installations - 注意:是否启用ZFS镜像/raidz只能在做全盘安装时选择 + 注意:是否启用ZFS镜像/raidz只能在做全盘安装时选择 Below you may adjust the file-system mount points. For most users the defaults will work best. - - + 你可以在下面对文件系统挂载点做调整。对大多数用户来说,保持默认的值就是最佳选择。 &Add - - + 添加(&A) &Remove - - + 删除(&R) You have chosen Expert mode. In this mode you are able to launch a terminal window and use the command-line to manually partition your disk. When you are finished, make sure to mount your filesystems to /mnt to begin the installation. - - + 你已选择专家模式。此模式下你可以启动一个终端窗口并使用命令行手动对磁盘分区。当结束后,请确保将你的文件系统挂载到/mnt下以开始安装。 &Launch terminal - - + 启动终端(&L) Please check the disk summary below and click finish to save your settings. - - + 请检查以下磁盘总结并点击完成以保存你的设置。 Use entire disk - - + 使用整个磁盘 Please select 2 or 4 additional drives for raidz1 @@ -609,38 +576,31 @@ ZFS Mounts - - + ZFS挂载 ZFS Options - - + ZFS选项 Resizing - - + 调整容量大小 Remove mount-point - - + 移除挂载点 Are you sure you want to remove this mount point? - - + 你确定要移除此挂载点? Enter mount-point - - + 输入挂载点 Please enter the new mount-point: - - + 请输入新的挂载点: Invalid Mount @@ -652,7 +612,7 @@ Editing: - 编辑: + 编辑: Enter SWAP size @@ -692,7 +652,7 @@ ZFS Datasets:<br> - ZFS数据集:<br> + ZFS数据集:<br> Mount: @@ -702,20 +662,37 @@ Options: 选项: - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) - - + (MB) Swap Size - - + 交换分区的大小 + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -817,4 +794,98 @@ 向导会指导你完成新服务器的安装。点击下一步来开始安装。 + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_zh_HK.ts b/src-qt4/pc-installgui/i18n/SysInstaller_zh_HK.ts index a57e17e0d..2d5cef24b 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_zh_HK.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_zh_HK.ts @@ -174,108 +174,132 @@ Extracting system... - - + 正在抽取系統... Unable to detect any disk drives! The install will now exit. - - + 偵測不到有磁碟!安裝馬上會結束。 Unable to suggest a partition for the detected disk. - - + 無法在偵測到的磁碟建議分割區。 Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - - + 偵測到運行的是32位元版本。若電腦可使用64位元系統 (大部份2005年之後的電腦都可以),您真的最好使用64位元版本 The selected disk / partition is less than recommended %1GB. The installation may fail... - - {1G?} + 所選磁碟 / 分割區少於建議的 %1GB。可能無法完成安裝... Load installation config file from USB stick - - + 自 USB 碟載入安裝設定檔 Load config from USB - - + 自 USB 載入設定 Desktop (PC-BSD) - - + 桌面 (PC-BSD) Server (TrueOS) - - + 伺服器 (TrueOS) Save Config to USB - - + 將設定儲存至 USB This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - - + 會將安裝設定儲存至以 MSDOSFS/FAT32 格式化的 USB 碟。是否繼續? Please insert a USB stick now, and click OK to continue. - - + 請插入 USB 碟,並按「好」繼續。 Please enter the nickname you want to save this configuration as. - - + 請輸入此設定存檔要使用的暱稱。 Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 未能將設定儲存至 USB 媒體。該裝置是否運作正常並以 MSDOSFS/FAT32 格式化? Configuration saved! You may now safely remove the USB media. - - + 設定已儲存!現在可安全移除該 USB 媒體。 This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + 會自以 MSDOSFS/FAT32 格式化的 USB 碟載入安裝設定檔。是否繼續? Please insert the USB stick now, and click OK to continue. - - + 請插入 USB 碟,並按「好」繼續。 Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 未能自 USB 媒體載入設定檔。該裝置是否運作正常?又或是否以 MSDOSFS/FAT32 格式化? Configuration loaded! You may now safely remove the USB media. - - + 設定已載入!現在可安全移除該 USB 媒體。 Config File: - - + 設定檔: Start the install using this config file? - - + 是否以此設定檔開始安裝? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + @@ -311,10 +335,6 @@ Available System Packages 可提供系統套件 - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - 請選擇要安裝的軟件。注意:最起碼必須安裝一個桌面環境;要更改桌面環境須在安裝完成後。 - &Save 儲存(&S) @@ -339,6 +359,10 @@ Package Listing for: 以下項目的套件清單: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -469,10 +493,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD 專家 (指令列介面手動模式) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - 請選取要用於安裝的磁碟或分割區。請注意:BSD 只能以整個磁碟安裝或安裝在大於 10GB 的主分割區。 - Selected Disk 所選磁碟 @@ -627,38 +647,51 @@ Enter SWAP size - - + 輸入置換區大小 Size (MB) - - + 大小 (MB) ZFS pool name - - + ZFS pool 名稱 Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + 強制使用 ZFS 4K 區塊大小 (MB) - - + (MB) Swap Size - - + 置換區大小 + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -760,4 +793,98 @@ 本精靈會引導您完成新伺服器的整個設置程序。按「下一步」開始。 + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_zh_TW.ts b/src-qt4/pc-installgui/i18n/SysInstaller_zh_TW.ts index 6f3bc76a5..978543504 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_zh_TW.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_zh_TW.ts @@ -174,108 +174,132 @@ Extracting system... - - + 正在抽取系統... Unable to detect any disk drives! The install will now exit. - - + 偵測不到有磁碟!安裝馬上會結束。 Unable to suggest a partition for the detected disk. - - + 無法在偵測到的磁碟建議分割區。 Detected that you are running the 32bit version. If your system is 64bit capable (most systems made after 2005), you really should be running the 64bit version - - + 偵測到運行的是32位元版本。若電腦可使用64位元系統 (大部份2005年之後的電腦都可以),您真的最好使用64位元版本 The selected disk / partition is less than recommended %1GB. The installation may fail... - - {1G?} + 所選磁碟 / 分割區少於建議的 %1GB。可能無法完成安裝... Load installation config file from USB stick - - + 自 USB 碟載入安裝設定檔 Load config from USB - - + 自 USB 載入設定 Desktop (PC-BSD) - - + 桌面 (PC-BSD) Server (TrueOS) - - + 伺服器 (TrueOS) Save Config to USB - - + 將設定儲存至 USB This will save your installation configuration to a MSDOSFS/FAT32 formatted USB stick. Continue? - - + 會將安裝設定儲存至以 MSDOSFS/FAT32 格式化的 USB 碟。是否繼續? Please insert a USB stick now, and click OK to continue. - - + 請插入 USB 碟,並按「確定」繼續。 Please enter the nickname you want to save this configuration as. - - + 請輸入此設定存檔要使用的暱稱。 Failed saving config to USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 未能將設定儲存至 USB 媒體。該裝置是否運作正常並以 MSDOSFS/FAT32 格式化? Configuration saved! You may now safely remove the USB media. - - + 設定已儲存!現在可安全移除該 USB 媒體。 This will load a installation configuration file your MSDOSFS/FAT32 formatted USB stick. Continue? - - + 會自以 MSDOSFS/FAT32 格式化的 USB 碟載入安裝設定檔。是否繼續? Please insert the USB stick now, and click OK to continue. - - + 請插入 USB 碟,並按「確定」繼續。 Failed loading saved config file from the USB media. Is the device working and formatted MSDOSFS/FAT32? - - + 未能自 USB 媒體載入設定檔。該裝置是否運作正常?又或是否以 MSDOSFS/FAT32 格式化? Configuration loaded! You may now safely remove the USB media. - - + 設定已載入!現在可安全移除該 USB 媒體。 Config File: - - + 設定檔: Start the install using this config file? - - + 是否以此設定檔開始安裝? + + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + @@ -311,10 +335,6 @@ Available System Packages 可用的系統套件 - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - 請選擇要安裝的軟體。注意:最起碼必須安裝一個桌面環境;要變更桌面環境須在安裝完成後。 - &Save 存檔(&S) @@ -339,6 +359,10 @@ Package Listing for: 正在為以下項目列出套件清單: + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -469,10 +493,6 @@ FreeBSD Experts (CLI manual mode) FreeBSD 專家 (指令列介面手動模式) - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - 請選取要用於安裝的磁碟或分割區。請注意:BSD 只能安裝於整個磁碟、或大於 10GB 的主分割區。 - Selected Disk 所選磁碟 @@ -627,38 +647,51 @@ Enter SWAP size - - + 輸入置換區大小 Size (MB) - - + 大小 (MB) ZFS pool name - - + ZFS pool 名稱 Force ZFS 4K block size - - - - - Install GRUB boot-loader (Required for Boot-Environment support) - - + 強制使用 ZFS 4K 區塊大小 (MB) - - + (MB) Swap Size - - + 置換區大小 + + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + @@ -673,7 +706,7 @@ Password (Repeat) - 密碼 (重覆) + 密碼 (再打一次) Please create a user for this server @@ -760,4 +793,98 @@ 本精靈會引導您完成新伺服器的整個設置程序。按「下一步」開始。 + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-installgui/i18n/SysInstaller_zu.ts b/src-qt4/pc-installgui/i18n/SysInstaller_zu.ts index bbb1d41a1..85c6d749c 100644 --- a/src-qt4/pc-installgui/i18n/SysInstaller_zu.ts +++ b/src-qt4/pc-installgui/i18n/SysInstaller_zu.ts @@ -319,6 +319,51 @@ + + Restore from Life-Preserver backup + + + + Manage network connectivity + + + + ZFS Datasets: + + + + The original ZFS layout will be restored + + + + Performing a restore from a Life-Preserver backup. Click next to start the restore wizard. + + + + Start the restore now? + + + + Your system is now restored! +Click Finish to reboot. After rebooting you may eject the install media. + + + + System Restore + + + + Your system is now being restored, this may take a while depending upon the size of your backup and network conditions. + + + + Installing meta-package: %1 + + + + Restoring system: %1 + + QObject @@ -360,11 +405,6 @@ - - Please select the software you wish to have installed. At least one desktop must be selected, and changes may be made after installation. - - - &Save @@ -395,6 +435,10 @@ + + Please select the software to install. Post-install you may also add / remove software via the Package Manager (desktop) or "pkg" command (server). + + dialogCheckHardware @@ -553,11 +597,6 @@ - - Please select the disk or partition you wish to install onto. Please note that BSD can only be installed to an entire disk, or primary partition larger than 10GB. - - - Selected Disk @@ -768,11 +807,6 @@ - - Install GRUB boot-loader (Required for Boot-Environment support) - - - (MB) @@ -783,6 +817,30 @@ + + Please select the disk or partition you wish to install onto. Please note that you must select either an entire disk or a primary partition that is at least 20GB for a server install or 50GB for a desktop install. + + + + Install GRUB (Required for Boot-Environment support) + + + + No boot-loader! + + + + You have chosen not to install GRUB on your MBR. You will need to manually setup your own MBR loader. + + + + Stamp GRUB on MBR + + + + The original system datasets / mount-points will be automatically restored. + + wizardFreeBSD @@ -907,4 +965,98 @@ + + wizardRestore + + This wizard will walk you though the process of restoring your system from a Life-Preserver backup. Click next to begin. + + + + To get started please enter the hostname, username and port of your backup server. + + + + Backup Server + + + + Host Name + + + + User Name + + + + SSH Port + + + + If you saved your Life-Preserver key onto a USB stick, select it below, otherwise you may wish to use password authentication. + + + + Server Authentication + + + + Use USB key + + + + Use password authentication + + + + The following systems are backed up on this server, select the one you wish to restore. + + + + Restore System Selection + + + + Restore Summary + + + + The system is ready to be restored, click Finish to continue. + + + + No keys found! + + + + No Auth keys could be found on that memory stick! +Please try another USB stick or use password authentication. + + + + Connection failed! + + + + Could not connect to the backup server! +Please check that the server is reachable and verify your user/password. + + + + Could not connect to the backup server! +Please check your hostname and that the backup server is reachable. + + + + Will restore from: + + + + Select the SSH key to use + + + + Key File: + + + diff --git a/src-qt4/pc-mounttray/i18n/MountTray_af.ts b/src-qt4/pc-mounttray/i18n/MountTray_af.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_af.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_af.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ar.ts b/src-qt4/pc-mounttray/i18n/MountTray_ar.ts index 3171fc83e..0b114fffe 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ar.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ar.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_az.ts b/src-qt4/pc-mounttray/i18n/MountTray_az.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_az.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_az.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_bg.ts b/src-qt4/pc-mounttray/i18n/MountTray_bg.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_bg.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_bg.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_bn.ts b/src-qt4/pc-mounttray/i18n/MountTray_bn.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_bn.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_bn.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_bs.ts b/src-qt4/pc-mounttray/i18n/MountTray_bs.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_bs.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_bs.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ca.ts b/src-qt4/pc-mounttray/i18n/MountTray_ca.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ca.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ca.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_cs.ts b/src-qt4/pc-mounttray/i18n/MountTray_cs.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_cs.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_cs.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_cy.ts b/src-qt4/pc-mounttray/i18n/MountTray_cy.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_cy.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_cy.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_da.ts b/src-qt4/pc-mounttray/i18n/MountTray_da.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_da.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_da.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_de.ts b/src-qt4/pc-mounttray/i18n/MountTray_de.ts index 8145ef38d..09ff9b102 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_de.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_de.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Die ISO-Datei wurde aus dem System ausgehängt. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray @@ -183,7 +195,7 @@ Kann den Dateimanager nicht mit root-Berechtigungen öffnen Apply - Übernehmen + Anwenden diff --git a/src-qt4/pc-mounttray/i18n/MountTray_el.ts b/src-qt4/pc-mounttray/i18n/MountTray_el.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_el.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_el.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_en_GB.ts b/src-qt4/pc-mounttray/i18n/MountTray_en_GB.ts index ce969c23c..40403d004 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_en_GB.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_en_GB.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. The ISO file has been completely detached from the system. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_en_ZA.ts b/src-qt4/pc-mounttray/i18n/MountTray_en_ZA.ts index ce969c23c..40403d004 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_en_ZA.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_en_ZA.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. The ISO file has been completely detached from the system. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_es.ts b/src-qt4/pc-mounttray/i18n/MountTray_es.ts index ead1fc8ff..dd5798e4f 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_es.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_es.ts @@ -91,8 +91,19 @@ The ISO file has been completely detached from the system. - - + El fichero ISO ha sido desconectado del sistema por completo. + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -149,18 +160,15 @@ No se puede abrir el administrador de archivos con permisos de root Load ISO File - - + Cargar un fichero ISO Select ISO File - - + Elegir un fichero ISO ISO Files (*.iso) - - + Ficheros ISO (*.iso) diff --git a/src-qt4/pc-mounttray/i18n/MountTray_et.ts b/src-qt4/pc-mounttray/i18n/MountTray_et.ts index 17905bc33..233837a83 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_et.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_et.ts @@ -91,8 +91,19 @@ The ISO file has been completely detached from the system. - - + ISO-fail on süsteemist täielikult lahti haagitud. + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -149,25 +160,22 @@ Failihaldurit ei saa juurkasutaja õigustega avada Load ISO File - - + Laadi ISO-fail Select ISO File - - + Vali ISO-fail ISO Files (*.iso) - - + ISO-failid (*.iso) SettingsDialog Mount Tray Settings - Süsteemisalve sätted + Süsteemisalve sätted Monitor disk storage space diff --git a/src-qt4/pc-mounttray/i18n/MountTray_eu.ts b/src-qt4/pc-mounttray/i18n/MountTray_eu.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_eu.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_eu.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_fa.ts b/src-qt4/pc-mounttray/i18n/MountTray_fa.ts index 8ec3e94a4..be7bf898f 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_fa.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_fa.ts @@ -106,6 +106,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_fi.ts b/src-qt4/pc-mounttray/i18n/MountTray_fi.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_fi.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_fi.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_fr.ts b/src-qt4/pc-mounttray/i18n/MountTray_fr.ts index 1f4f29f22..ebcdc68d8 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_fr.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_fr.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Le fichier ISO a été complètement détaché du système. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_fr_CA.ts b/src-qt4/pc-mounttray/i18n/MountTray_fr_CA.ts index 4b8abf86f..17e471a7e 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_fr_CA.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_fr_CA.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Le fichier ISO a été complètement détaché du système. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_gl.ts b/src-qt4/pc-mounttray/i18n/MountTray_gl.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_gl.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_gl.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_he.ts b/src-qt4/pc-mounttray/i18n/MountTray_he.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_he.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_he.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_hi.ts b/src-qt4/pc-mounttray/i18n/MountTray_hi.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_hi.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_hi.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_hr.ts b/src-qt4/pc-mounttray/i18n/MountTray_hr.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_hr.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_hr.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_hu.ts b/src-qt4/pc-mounttray/i18n/MountTray_hu.ts index c8ad8bae8..bfef406fb 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_hu.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_hu.ts @@ -102,6 +102,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_id.ts b/src-qt4/pc-mounttray/i18n/MountTray_id.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_id.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_id.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_is.ts b/src-qt4/pc-mounttray/i18n/MountTray_is.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_is.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_is.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_it.ts b/src-qt4/pc-mounttray/i18n/MountTray_it.ts index a2b428c9b..819a0bfdb 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_it.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_it.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ja.ts b/src-qt4/pc-mounttray/i18n/MountTray_ja.ts index 0f79a4a62..a0d2a3972 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ja.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ja.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. ISO ファイルはシステムから取り外されました。 + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray @@ -144,7 +156,7 @@ root 権限付きでファイルマネージャーを開くことはできませ More Options - オプション + オプション Load ISO File @@ -171,7 +183,7 @@ root 権限付きでファイルマネージャーを開くことはできませ Perform check on device notifications - デバイスの変更を通知する + デバイスの変更を通知する Maximum time between checks (minutes) diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ka.ts b/src-qt4/pc-mounttray/i18n/MountTray_ka.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ka.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ka.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ko.ts b/src-qt4/pc-mounttray/i18n/MountTray_ko.ts index d13c3e04c..cffc75fe7 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ko.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ko.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_lt.ts b/src-qt4/pc-mounttray/i18n/MountTray_lt.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_lt.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_lt.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_lv.ts b/src-qt4/pc-mounttray/i18n/MountTray_lv.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_lv.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_lv.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_mk.ts b/src-qt4/pc-mounttray/i18n/MountTray_mk.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_mk.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_mk.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_mn.ts b/src-qt4/pc-mounttray/i18n/MountTray_mn.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_mn.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_mn.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ms.ts b/src-qt4/pc-mounttray/i18n/MountTray_ms.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ms.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ms.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_mt.ts b/src-qt4/pc-mounttray/i18n/MountTray_mt.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_mt.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_mt.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_nb.ts b/src-qt4/pc-mounttray/i18n/MountTray_nb.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_nb.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_nb.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_nl.ts b/src-qt4/pc-mounttray/i18n/MountTray_nl.ts index 4e1404715..690d7adec 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_nl.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_nl.ts @@ -59,7 +59,7 @@ Error mounting %1 at %2 - Fout bij het aankoppelen van %1 op %2 + Fout bij het aankoppelen van %1 op %2 Error mounting %1 @@ -91,8 +91,19 @@ The ISO file has been completely detached from the system. - - + Het ISO-bestand is volledig losgekoppeld van het systeem. + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -103,7 +114,7 @@ Close Tray - Lade sluiten + Koppelvak sluiten User Detection Error @@ -113,7 +124,7 @@ Unable to determine the non-root user who started the application Can not open the file manager with root permissions Kan de niet-rootgebruiker niet vaststellen die de toepassing heeft gestart -Kan de bestandbeheerder niet openen met rootrechten +Kan de bestandbeheerder niet openen met rootrechten New Device @@ -149,25 +160,22 @@ Kan de bestandbeheerder niet openen met rootrechten Load ISO File - - + ISO-bestand laden Select ISO File - - + ISO-bestand kiezen ISO Files (*.iso) - - + ISO-bestanden (*.iso) SettingsDialog Mount Tray Settings - Systeemvak-instellingen voor aankoppelen + Instellingen van Koppelvak Monitor disk storage space diff --git a/src-qt4/pc-mounttray/i18n/MountTray_pa.ts b/src-qt4/pc-mounttray/i18n/MountTray_pa.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_pa.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_pa.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_pl.ts b/src-qt4/pc-mounttray/i18n/MountTray_pl.ts index bd32ba3ff..4b831395c 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_pl.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_pl.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Plik ISO został całkowicie odłączony od systemu. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_pt.ts b/src-qt4/pc-mounttray/i18n/MountTray_pt.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_pt.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_pt.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_pt_BR.ts b/src-qt4/pc-mounttray/i18n/MountTray_pt_BR.ts index 6cbb82405..2f6743252 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_pt_BR.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_pt_BR.ts @@ -5,7 +5,7 @@ FSDialog System Disk Capacity - Capacidade de disco do sistema + Capacidade de disco do sistema Mount Point @@ -21,7 +21,7 @@ Percent % - Porcentagem % + Percentual % Close @@ -32,7 +32,7 @@ FSWatcher Disk(s) Almost Full - Disco(s) quase cheio(s) + Disco(s) quase cheio(s) @@ -67,7 +67,7 @@ Could not create mount point at %1 - Não foi possível criar ponto de montagem em %1 + Não foi possível criar ponto de montagem em %1 %1 has been successfully unmounted. @@ -79,7 +79,7 @@ Error: %1 could not be unmounted - Erro: %1 não pôde ser desmontado + Erro: %1 não pôde ser desmontado %1 of disk space available @@ -91,7 +91,19 @@ The ISO file has been completely detached from the system. - O arquivo ISO foi completamente retirado do sistema. + O arquivo ISO foi desanexado completamente do sistema. + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -104,12 +116,6 @@ User Detection Error Erro de detecção de usuário - - Unable to determine the non-root user who started the application -Can not open the file manager with root permissions - Incapaz de determinar o usuário não-root que iniciou a aplicação -Não é possível abrir o gerenciador de arquivos com permissões de root - Open Media Directory Abrir diretório de mídia @@ -140,7 +146,7 @@ Não é possível abrir o gerenciador de arquivos com permissões de root View Disk Usage - Visualizar uso do disco + Visualizar o uso do disco Change Settings @@ -158,18 +164,21 @@ Não é possível abrir o gerenciador de arquivos com permissões de rootISO Files (*.iso) Arquivos ISO (*.iso) + + Unable to determine the non-root user who started the application +Can not open the file manager with root permissions + Incapaz de determinar qual usuário não-administrador que iniciou a aplicação Não é possível abrir o gerenciador de arquivos com permissões de administrador + SettingsDialog Mount Tray Settings - - + Configurações da Bandeja de Montagem Monitor disk storage space - - + Monitorar o espaço no disco de armazenamento Perform check on device notifications @@ -178,8 +187,7 @@ Não é possível abrir o gerenciador de arquivos com permissões de root Maximum time between checks (minutes) - - + Tempo máximo entre as verificações (minutos) Cancel diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ro.ts b/src-qt4/pc-mounttray/i18n/MountTray_ro.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ro.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ro.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ru.ts b/src-qt4/pc-mounttray/i18n/MountTray_ru.ts index 8e4861073..cc337612d 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ru.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ru.ts @@ -99,6 +99,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sa.ts b/src-qt4/pc-mounttray/i18n/MountTray_sa.ts index 27e419480..9dd390b35 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sa.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sa.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sk.ts b/src-qt4/pc-mounttray/i18n/MountTray_sk.ts index 261f7c2db..963828ef4 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sk.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sk.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sl.ts b/src-qt4/pc-mounttray/i18n/MountTray_sl.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sl.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sl.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sr.ts b/src-qt4/pc-mounttray/i18n/MountTray_sr.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sr.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sr.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sv.ts b/src-qt4/pc-mounttray/i18n/MountTray_sv.ts index 168bfa9b8..327f5da37 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sv.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sv.ts @@ -91,8 +91,19 @@ The ISO file has been completely detached from the system. - - + ISO filen har blivit helt frånkopplad från systemet. + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -149,18 +160,15 @@ Kan inte öppna filhanteraren med root rättigheter Load ISO File - - + Ladda ISO filen Select ISO File - - + Välj ISO fil ISO Files (*.iso) - - + ISO filer (*.iso) diff --git a/src-qt4/pc-mounttray/i18n/MountTray_sw.ts b/src-qt4/pc-mounttray/i18n/MountTray_sw.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_sw.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_sw.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_ta.ts b/src-qt4/pc-mounttray/i18n/MountTray_ta.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_ta.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_ta.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_tg.ts b/src-qt4/pc-mounttray/i18n/MountTray_tg.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_tg.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_tg.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_th.ts b/src-qt4/pc-mounttray/i18n/MountTray_th.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_th.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_th.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_tr.ts b/src-qt4/pc-mounttray/i18n/MountTray_tr.ts index 3707386cb..af4736830 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_tr.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_tr.ts @@ -111,6 +111,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_uk.ts b/src-qt4/pc-mounttray/i18n/MountTray_uk.ts index 0cc6e7080..344950814 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_uk.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_uk.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Файл ISO було повністю від'єднано. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_uz.ts b/src-qt4/pc-mounttray/i18n/MountTray_uz.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_uz.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_uz.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_vi.ts b/src-qt4/pc-mounttray/i18n/MountTray_vi.ts index 78275c85d..8880e1863 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_vi.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_vi.ts @@ -93,6 +93,18 @@ The ISO file has been completely detached from the system. Tập tin ISO đã được hoàn toàn tách rời khỏi hệ thống. + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-mounttray/i18n/MountTray_zh_CN.ts b/src-qt4/pc-mounttray/i18n/MountTray_zh_CN.ts index 3bc446a6d..fa7e22e22 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_zh_CN.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_zh_CN.ts @@ -5,41 +5,34 @@ FSDialog System Disk Capacity - 系统磁盘容量 - + 系统磁盘容量 Mount Point - 挂载点 - + 挂载点 Filesystem - 文件系统 - + 文件系统 Used/Total - 已使用/总共 - + 已使用/总共 Percent % - 百分比% - + 百分比% Close - 关闭 - + 关闭 FSWatcher Disk(s) Almost Full - 磁盘几乎已满 - + 磁盘几乎已满 @@ -70,7 +63,7 @@ Error mounting %1 - 挂载%1时发生错误 + 挂载%1时发生错误 Could not create mount point at %1 @@ -94,13 +87,24 @@ Mounted at %1 - 挂载于%1 - + 挂载于%1 The ISO file has been completely detached from the system. ISO文件已经彻底从系统上移除。 + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray @@ -120,7 +124,7 @@ Unable to determine the non-root user who started the application Can not open the file manager with root permissions 无法确定哪个非根用户启动了此程序 -无法使用根权限打开文件管理器 +无法使用根权限打开文件管理器 New Device @@ -144,18 +148,15 @@ Can not open the file manager with root permissions More Options - 更多选项 - + 更多选项 View Disk Usage - 查看磁盘使用情况 - + 查看磁盘使用情况 Change Settings - 改变设置 - + 改变设置 Load ISO File @@ -174,33 +175,27 @@ Can not open the file manager with root permissions SettingsDialog Mount Tray Settings - 托盘设置 - + 托盘设置 Monitor disk storage space - 监测磁盘存储空间 - + 监测磁盘存储空间 Perform check on device notifications - 对设备通知进行检查 - + 对设备通知进行检查 Maximum time between checks (minutes) - 两次检查间的最大时间间隔(分钟) - + 两次检查间的最大时间间隔(分钟) Cancel - 撤销 - + 撤销 Apply - 应用 - + 应用 diff --git a/src-qt4/pc-mounttray/i18n/MountTray_zh_HK.ts b/src-qt4/pc-mounttray/i18n/MountTray_zh_HK.ts index 50764f430..2af55b338 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_zh_HK.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_zh_HK.ts @@ -5,41 +5,34 @@ FSDialog System Disk Capacity - - + 系統碟容量 Mount Point - - + 掛載點 Filesystem - - + 檔案系統 Used/Total - - + 已用/總量 Percent % - - + 百份比 % Close - - + 關閉 FSWatcher Disk(s) Almost Full - - + 磁碟將滿 @@ -94,13 +87,23 @@ Mounted at %1 - - + 掛載於 %1 The ISO file has been completely detached from the system. - - + ISO 檔案已與系統完全分離。 + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -145,66 +148,54 @@ Can not open the file manager with root permissions More Options - - + 更多選項 View Disk Usage - - + 檢視磁碟用量 Change Settings - - + 更改設定 Load ISO File - - + 載入 ISO 檔案 Select ISO File - - + 選取 ISO 檔案 ISO Files (*.iso) - - + ISO 檔案 (*.iso) SettingsDialog Mount Tray Settings - - + 掛載匣設定 Monitor disk storage space - - + 監察磁碟儲存空間 Perform check on device notifications - - + 對裝置通知進行檢查 Maximum time between checks (minutes) - - + 兩次檢查之間最長的時間 (以分鐘計) Cancel - - + 取消 Apply - - + 套用 diff --git a/src-qt4/pc-mounttray/i18n/MountTray_zh_TW.ts b/src-qt4/pc-mounttray/i18n/MountTray_zh_TW.ts index 6031999dc..c6f43902c 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_zh_TW.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_zh_TW.ts @@ -5,41 +5,34 @@ FSDialog System Disk Capacity - - + 系統碟容量 Mount Point - - + 掛載點 Filesystem - - + 檔案系統 Used/Total - - + 已用/總量 Percent % - - + 百份比 % Close - - + 關閉 FSWatcher Disk(s) Almost Full - - + 磁碟將滿 @@ -94,13 +87,23 @@ Mounted at %1 - - + 掛載於 %1 The ISO file has been completely detached from the system. - - + ISO 檔案已與系統完全分離。 + + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + @@ -137,7 +140,7 @@ Can not open the file manager with root permissions Please Wait - 請稍候 + 請稍候 Rescanning devices attached to the system @@ -145,66 +148,54 @@ Can not open the file manager with root permissions More Options - - + 更多選項 View Disk Usage - - + 檢視磁碟用量 Change Settings - - + 變更設定 Load ISO File - - + 載入 ISO 檔案 Select ISO File - - + 選取 ISO 檔案 ISO Files (*.iso) - - + ISO 檔案 (*.iso) SettingsDialog Mount Tray Settings - - + 掛載匣設定 Monitor disk storage space - - + 監察磁碟儲存空間 Perform check on device notifications - - + 對裝置通知進行檢查 Maximum time between checks (minutes) - - + 兩次檢查之間最長的時間 (以分鐘計) Cancel - - + 取消 Apply - - + 套用 diff --git a/src-qt4/pc-mounttray/i18n/MountTray_zu.ts b/src-qt4/pc-mounttray/i18n/MountTray_zu.ts index d0b2d2f0d..5f1a281c2 100644 --- a/src-qt4/pc-mounttray/i18n/MountTray_zu.ts +++ b/src-qt4/pc-mounttray/i18n/MountTray_zu.ts @@ -114,6 +114,18 @@ + + Device Busy + + + + The device appears to be busy. Would you like to unmount it anyway? + + + + NOTE: This is generally not recommended unless you are sure that you don't have any applications using the device. + + MountTray diff --git a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_nl.ts b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_nl.ts index fb60699c7..f6cff6a8b 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_nl.ts +++ b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_nl.ts @@ -32,7 +32,7 @@ PC-BSD Network Manager - PC-BSD Netwerkbeheerder + PC-BSD-netwerkbeheerder Devices @@ -56,7 +56,7 @@ Display system tray icon - Pictogram in de systeembalk tonen + Pictogram in het systeemvak tonen DNS 1: @@ -152,7 +152,7 @@ Specify a Username / Password - Geef een gebruikersnaam / wachtwoord + Geef een gebruikersnaam / wachtwoord op Username @@ -196,11 +196,11 @@ Please enter a hostname - Geef a.u.b. een hostnaam + Voer a.u.b. een systeemnaam in Hostname may only contain letters and numbers - Hostnaam mag alleen letters en cijfers bevatten + Systeemnaam mag alleen letters en cijfers bevatten IPV6 DNS 1: @@ -232,7 +232,7 @@ You must restart your computer to finish changing your hostname - U dient uw computer te herstarten om het veranderen van uw hostnaam te voltooien. + U dient uw computer te herstarten om het veranderen van uw systeemnaam te voltooien Basic @@ -244,7 +244,7 @@ System Hostname - Hostnaam van systeem + Naam van systeem Enable Custom DNS @@ -260,7 +260,7 @@ Invalid IPv6 Gateway specified - Ongeldige IPv6 gateway opgegeven + Ongeldige IPv6-gateway opgegeven Invalid DNS specified diff --git a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_pt_BR.ts b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_pt_BR.ts index 4e093434e..c7f4abc53 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_pt_BR.ts +++ b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_pt_BR.ts @@ -244,40 +244,39 @@ System Hostname - - + Nome da máquina do sistema Enable Custom DNS - Habilitar DNS personalizado + Habilitar DNS personalizado Enable Custom Gateway - Habilitar Gateway personalizado + Habilitar Gateway personalizado Invalid IPv6 DNS specified - DNS IPv6 especificado inválido + DNS IPv6 especificado inválido Invalid IPv6 Gateway specified - Gateway IPv6 especificado inválido + Gateway IPv6 especificado inválido Invalid DNS specified - DNS especificado inválido + DNS especificado inválido Invalid Gateway specified - Gateway especificado inválido + Gateway especificado inválido Proxy enabled - Proxy habilitado + Proxy ativado You may need to re-login for proxy settings to take effect. - Você precisa logar novamente para que as configurações do proxy tenham efeito. + Você pode precisar logar novamente para que as configurações do proxy entrem em vigor. diff --git a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_CN.ts b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_CN.ts index 12c6872a2..8a5c57ca4 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_CN.ts +++ b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_CN.ts @@ -100,7 +100,7 @@ Configure - 配置 + 配置 Device Information @@ -272,13 +272,11 @@ Proxy enabled - 代理已启用 - + 代理已启用 You may need to re-login for proxy settings to take effect. - 需要重新登录以使代理设置生效。 - + 需要重新登录以使代理设置生效。 diff --git a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_HK.ts b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_HK.ts index 1c1c94657..ccce91ced 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_HK.ts +++ b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_HK.ts @@ -272,13 +272,11 @@ Proxy enabled - - + 啟用代理伺服器 You may need to re-login for proxy settings to take effect. - - + 可能要重新登入以讓代理設定生效。 diff --git a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_TW.ts b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_TW.ts index 0686332b8..13561b655 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_TW.ts +++ b/src-qt4/pc-netmanager/src/NetworkManager/i18n/NetworkManager_zh_TW.ts @@ -272,13 +272,11 @@ Proxy enabled - - + 啟用代理伺服器 You may need to re-login for proxy settings to take effect. - - + 可能要重新登入以讓代理設定生效。 diff --git a/src-qt4/pc-netmanager/src/NetworkManager/pcnetwork.desktop b/src-qt4/pc-netmanager/src/NetworkManager/pcnetwork.desktop index 04afe065e..009a4d44a 100644 --- a/src-qt4/pc-netmanager/src/NetworkManager/pcnetwork.desktop +++ b/src-qt4/pc-netmanager/src/NetworkManager/pcnetwork.desktop @@ -50,63 +50,6 @@ Keywords[zh_HK]=Network,DNS,routes,interfaces,網絡,路由,介面 Keywords[zh_TW]=網路,DNS,路由,介面 Categories=System; -Comment=Configure Network Settings -Comment[af]=Instel Netwerk Opset -Comment[ar]=اعداد خيارات الشبكة -Comment[bg]=Конфигуриране на мрежовите настройки -Comment[bn]=নেটওয়ার্ক মানসমূহ কনফিগার করে -Comment[br]=Kefluniañ dibarzhoù ar rouedad -Comment[bs]=Podešavanja mreže -Comment[ca]=Configurar les preferències de la xarxa -Comment[cs]=Nastavení sítě -Comment[da]=Konfiguration af netværksopsætning -Comment[de]=Konfiguriere Netzwerkeinstellungen -Comment[el]=Ρύθμιση παραμέτρων δικτύου -Comment[en_GB]=Configure Network Settings -Comment[en_ZA]=Configure Network Settings -Comment[es]=Herramienta para configurar su red -Comment[et]=Seadista võrk -Comment[eu]=Konfiguratu sareko ezarpenak -Comment[fa]=پیکربندی تنظیمات شبکه -Comment[fi]=Määritä verkkoasetukset -Comment[fr]=Configurer les paramètres réseau -Comment[fr_CA]=Configurer les paramètres réseau -Comment[ga]=Cumraigh na Socruithe Líonra -Comment[gl]=Configuración da Rede -Comment[he]=הגדר נתוני רשת -Comment[hr]=Postavi mrežne postavke -Comment[hu]=Hálózati beállítások megadása -Comment[id]=Mengkonfigurasi Aturan Jaringan -Comment[is]=Umsjón netstillinga -Comment[it]=Impostazioni di Rete -Comment[ja]=ネットワークを設定します -Comment[ko]=네트워크 설정 -Comment[lt]=Konfigūruoti tinklo nustatymus -Comment[mk]=Конфигурирајте ги поставуањата за мрежата -Comment[mn]=Сүлжээний Тохируулга Хийх -Comment[nb]=Sett opp nettverksinnstillinger -Comment[nds]=Nettwark-Instellen fastleggen -Comment[nl]=Configureer netwerkinstellingen -Comment[nn]=Set opp nettverket -Comment[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ ਸੰਰਚਨਾ -Comment[pl]=Konfiguruj ustawienia sieciowe -Comment[pt]=Configurar Opções de Rede -Comment[pt_BR]=Configurar Opções de rede -Comment[ro]=Configurare setari de retea -Comment[ru]=Настройка параметров сети -Comment[se]=Heivet fierpmádaga -Comment[sk]=Nastavenia konfigurácie siete -Comment[sl]=Nastavite omrežne nastavitve -Comment[sr@Latn]=Podešavanje postavki mreže -Comment[sr]=Podešavanja mreže -Comment[sv]=Konfigurera nätverksinställningar -Comment[tg]=Танзимоти шабака -Comment[tr]=Ağ Ayarlarını Yapılandır -Comment[uk]=Налаштувати параметри мережі -Comment[vi]=Cấu hình thiết lập mạng -Comment[zh_CN]=配置网络设置 -Comment[zh_HK]=配置網絡設定 -Comment[zh_TW]=設定網路組態 Name=System Network Configuration Name[af]=Stelsel Netwerk Opset Name[ar]=ضبط نظام الشبكة @@ -136,7 +79,7 @@ Name[hr]=Postavljanje sistemske mreže Name[hu]=Hálózat rendszerszintű beállítása Name[id]=Konfigurasi Sistem Jaringan Name[is]=Netstillingar -Name[it]=Configurazione di Rete +Name[it]=Configurazione di Rete del Sistema Name[ja]=システムのネットワーク設定 Name[ko]=시스템 네트워크 설정 Name[mk]=Поставувања на мрежа @@ -149,7 +92,7 @@ Name[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ Name[pl]=System - Konfiguracja sieci Name[pt]=Configuração da Rede Name[pt_BR]=Sistema de Configuração de Rede -Name[ro]=Configurare retea +Name[ro]=Configurare rețea Name[ru]=System Network Configuration Name[se]=Fierpmádatheivehusat Name[sk]=Systémová konfigurácia siete @@ -164,3 +107,60 @@ Name[vi]=Cấu hình hệ thống mạng Name[zh_CN]=系统网络配置 Name[zh_HK]=系統網絡配置 Name[zh_TW]=系統網路組態設定 +Comment=Configure Network Settings +Comment[af]=Instel Netwerk Opset +Comment[ar]=اعداد خيارات الشبكة +Comment[bg]=Конфигуриране на мрежовите настройки +Comment[bn]=নেটওয়ার্ক মানসমূহ কনফিগার করে +Comment[br]=Kefluniañ dibarzhoù ar rouedad +Comment[bs]=Podešavanja mreže +Comment[ca]=Configurar les preferències de la xarxa +Comment[cs]=Nastavení sítě +Comment[da]=Konfiguration af netværksopsætning +Comment[de]=Konfiguriere Netzwerkeinstellungen +Comment[el]=Ρύθμιση παραμέτρων δικτύου +Comment[en_GB]=Configure Network Settings +Comment[en_ZA]=Configure Network Settings +Comment[es]=Herramienta para configurar su red +Comment[et]=Seadista võrk +Comment[eu]=Konfiguratu sareko ezarpenak +Comment[fa]=پیکربندی تنظیمات شبکه +Comment[fi]=Määritä verkkoasetukset +Comment[fr]=Configurer les paramètres réseau +Comment[fr_CA]=Configurer les paramètres réseau +Comment[ga]=Cumraigh na Socruithe Líonra +Comment[gl]=Configuración da Rede +Comment[he]=הגדר נתוני רשת +Comment[hr]=Postavi mrežne postavke +Comment[hu]=Hálózati beállítások megadása +Comment[id]=Mengkonfigurasi Aturan Jaringan +Comment[is]=Umsjón netstillinga +Comment[it]=Configurare le Impostazioni di Rete +Comment[ja]=ネットワークを設定します +Comment[ko]=네트워크 설정 +Comment[lt]=Konfigūruoti tinklo nustatymus +Comment[mk]=Конфигурирајте ги поставуањата за мрежата +Comment[mn]=Сүлжээний Тохируулга Хийх +Comment[nb]=Sett opp nettverksinnstillinger +Comment[nds]=Nettwark-Instellen fastleggen +Comment[nl]=Configureer netwerkinstellingen +Comment[nn]=Set opp nettverket +Comment[pa]=ਨੈੱਟਵਰਕ ਸਥਾਪਨ ਸੰਰਚਨਾ +Comment[pl]=Konfiguruj ustawienia sieciowe +Comment[pt]=Configurar Opções de Rede +Comment[pt_BR]=Configurar Opções de rede +Comment[ro]=Configurare setări de retea +Comment[ru]=Настройка параметров сети +Comment[se]=Heivet fierpmádaga +Comment[sk]=Nastavenia konfigurácie siete +Comment[sl]=Nastavite omrežne nastavitve +Comment[sr@Latn]=Podešavanje postavki mreže +Comment[sr]=Podešavanja mreže +Comment[sv]=Konfigurera nätverksinställningar +Comment[tg]=Танзимоти шабака +Comment[tr]=Ağ Ayarlarını Yapılandır +Comment[uk]=Налаштувати параметри мережі +Comment[vi]=Cấu hình thiết lập mạng +Comment[zh_CN]=配置网络设置 +Comment[zh_HK]=配置網絡設定 +Comment[zh_TW]=設定網路組態 diff --git a/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_nl.ts b/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_nl.ts index d7028630b..5dd365814 100644 --- a/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_nl.ts +++ b/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_nl.ts @@ -73,7 +73,7 @@ Click here to configure wireless connections - Klik hier om draadloos netwerk in te stellen + Klik hier om draadloze verbindingen in te stellen No Wireless Network Connection diff --git a/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_zh_CN.ts b/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_zh_CN.ts index 7f8ec5b31..807abffc8 100644 --- a/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_zh_CN.ts +++ b/src-qt4/pc-netmanager/src/NetworkTray/i18n/NetworkTray_zh_CN.ts @@ -5,7 +5,7 @@ NetworkTray Configure - 配置 + 配置 Start the Network Manager @@ -37,7 +37,7 @@ No connection detected.<br> Check your cable connection and try again! - 无法检测到网络连接。<br>请检查网线后再重试! + 无法检测到网络连接。 <br> 请检查网线后再重试! SSID: @@ -53,7 +53,7 @@ No wireless connection detected.<br> Double-click to start the wireless configuration wizard. - 无法检测到无线网络。<br>请双击以启动无线配置向导。 + 无法检测到无线网络。 <br> 请双击以启动无线配置向导。 Unknown Wireless Device @@ -65,7 +65,7 @@ Unknown - 未知 + 未知 Close the Network Monitor @@ -85,7 +85,7 @@ Please Wait - 请等待 + 请等待 @@ -104,7 +104,7 @@ Network Key (Repeat) - 网络密钥(重复) + 网络密钥(重复) Apply diff --git a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_de.ts b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_de.ts index 1f96aa2ee..4b24639ad 100644 --- a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_de.ts +++ b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_de.ts @@ -183,11 +183,11 @@ &Apply - &Übernehmen + &Anwenden Alt+A - Alt+Ü + Alt+A &OK diff --git a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_nl.ts b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_nl.ts index c2d99a918..9e8bb4626 100644 --- a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_nl.ts +++ b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_nl.ts @@ -387,7 +387,7 @@ WPA Enterprise - WPA-Bedrijf + WPA-Zakelijk Configure diff --git a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_ro.ts b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_ro.ts index 19683ee93..5afaeb07e 100644 --- a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_ro.ts +++ b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_ro.ts @@ -278,23 +278,19 @@ Configured Network Profiles - - + Configurare profiluri de rețea Add &network - - + Adăugare & rețea WPA Configuration - - + Configurare WPA Set Country Code - - + Setare cod de țară diff --git a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_CN.ts b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_CN.ts index d868e03a5..c5bf8c747 100644 --- a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_CN.ts +++ b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_CN.ts @@ -279,18 +279,15 @@ Configured Network Profiles - 已配置的网络资料 - + 已配置的网络资料 Add &network - 添加网络(n) - + 添加网络(n) WPA Configuration - WPA配置 - + WPA配置 Set Country Code @@ -346,7 +343,8 @@ Error: You must select a network to connect! - 错误: 你必须选择一个网络才能连接! + 错误: 你必须选择一个网络才能连接! + @@ -406,7 +404,8 @@ Error: You must select a wireless network to connect! - 错误:你必须选择连接一个无线网络 + 错误:你必须选择连接一个无线网络! + Invalid BSSID! @@ -452,7 +451,7 @@ Please configure your WPA settings before saving! Save - 保存 + 保存 Network Security diff --git a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_TW.ts b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_TW.ts index 069650d9a..55406a4eb 100644 --- a/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_TW.ts +++ b/src-qt4/pc-netmanager/src/wificonfig/i18n/wificonfig_zh_TW.ts @@ -195,7 +195,7 @@ &OK - &OK + 確定(&O) Alt+O diff --git a/src-qt4/pc-pbigui/i18n/PBI_nl.ts b/src-qt4/pc-pbigui/i18n/PBI_nl.ts index 289e26397..d8c800b80 100644 --- a/src-qt4/pc-pbigui/i18n/PBI_nl.ts +++ b/src-qt4/pc-pbigui/i18n/PBI_nl.ts @@ -13,7 +13,7 @@ I Agree - Akkoord + Ik ga akkoord <Status> @@ -69,7 +69,7 @@ <b><font size="+1">Installation complete! </font></b><br><br>Click "Finish" to exit. - <b><font size="+1">Installatie afgerond. </font></b><br><br>Klik op "Voltooien" om dit programma te beëindigen. + <b><font size="+1">Installatie afgerond. </font></b><br><br>Klik op 'Voltooien' om dit programma te beëindigen. The program @@ -105,7 +105,7 @@ Cannot load meta data from this PBI. File corrupt / invalid. - Kan de metadata van deze PBI niet laden. Het bestand is beschadigd / ongeldig. + Kan de metagegevens van deze PBI niet laden. Het bestand is beschadigd / ongeldig. Click Next to begin the installation. diff --git a/src-qt4/pc-pbigui/i18n/PBI_pt_BR.ts b/src-qt4/pc-pbigui/i18n/PBI_pt_BR.ts index a79d436c6..e350bf4a7 100644 --- a/src-qt4/pc-pbigui/i18n/PBI_pt_BR.ts +++ b/src-qt4/pc-pbigui/i18n/PBI_pt_BR.ts @@ -105,11 +105,11 @@ Cannot load meta data from this PBI. File corrupt / invalid. - Não foi possível carregar meta data deste PBI. Arquivo corrompido / Inválido. + Não foi possível carregar metadados deste PBI. Arquivo corrompido / inválido. Click Next to begin the installation. - Clique em próximo para começar a instalação. + Clique em Próximo para começar a instalação. The pbi_add command returned an error, the source file may be corrupt or invalid. @@ -137,7 +137,7 @@ This application has no digital signature. Installing applications from unknown sources can be dangerous. Continue with the install? - Essa aplicação não tem assinatura digital. Instala aplicações de fontes desconhecidas pode ser perigoso. Continuar com a instalação? + Essa aplicação não tem assinatura digital. Instalar aplicações de fontes desconhecidas pode ser perigoso. Continuar com a instalação? Invalid digital signature diff --git a/src-qt4/pc-pbigui/i18n/PBI_zh_CN.ts b/src-qt4/pc-pbigui/i18n/PBI_zh_CN.ts index 1454595e6..e3e3d0b41 100644 --- a/src-qt4/pc-pbigui/i18n/PBI_zh_CN.ts +++ b/src-qt4/pc-pbigui/i18n/PBI_zh_CN.ts @@ -73,7 +73,7 @@ The program - 程序 + 程序 is already installed. Overwrite it? @@ -89,7 +89,7 @@ URL: - URL: + URL: Valid Digital Signature diff --git a/src-qt4/pc-pfmanager/i18n/PFManager_nl.ts b/src-qt4/pc-pfmanager/i18n/PFManager_nl.ts index ca3af606a..8c6d90c16 100644 --- a/src-qt4/pc-pfmanager/i18n/PFManager_nl.ts +++ b/src-qt4/pc-pfmanager/i18n/PFManager_nl.ts @@ -76,7 +76,7 @@ Start - Start + Starten Restart @@ -116,7 +116,7 @@ Interface - Interface + Netwerkkaart Edit entry diff --git a/src-qt4/pc-pfmanager/i18n/PFManager_pt_BR.ts b/src-qt4/pc-pfmanager/i18n/PFManager_pt_BR.ts index 972be2a02..ac68fe869 100644 --- a/src-qt4/pc-pfmanager/i18n/PFManager_pt_BR.ts +++ b/src-qt4/pc-pfmanager/i18n/PFManager_pt_BR.ts @@ -5,7 +5,7 @@ AddDlg Add a port - Adicionar uma port + Adicionar uma porta Add diff --git a/src-qt4/pc-pfmanager/i18n/PFManager_zh_TW.ts b/src-qt4/pc-pfmanager/i18n/PFManager_zh_TW.ts index 1cfeebaff..eba4cccb7 100644 --- a/src-qt4/pc-pfmanager/i18n/PFManager_zh_TW.ts +++ b/src-qt4/pc-pfmanager/i18n/PFManager_zh_TW.ts @@ -45,7 +45,7 @@ Ok - Ok + 確定 Cancel diff --git a/src-qt4/pc-pfmanager/pfmanager.desktop b/src-qt4/pc-pfmanager/pfmanager.desktop index 90410936d..e79bf4764 100644 --- a/src-qt4/pc-pfmanager/pfmanager.desktop +++ b/src-qt4/pc-pfmanager/pfmanager.desktop @@ -30,7 +30,7 @@ Name[he]=ניהול Name[hr]=Upravitelj vatrozida Name[hu]=Tűzfalkezelő Name[id]=Pengelola Firewall -Name[it]=Gestione Firewall +Name[it]=Gestore Firewall Name[ja]=ファイアーウォールマネージャー Name[ko]=방화벽 관리자 Name[lt]=Užkarda @@ -41,7 +41,7 @@ Name[nl]=Firewallbeheerder Name[pl]=Menadżer Zapory Sieciowej Name[pt]=Firewall Name[pt_BR]=Gerenciador do Firewall -Name[ro]=Firewall Director +Name[ro]=Managerul firewall Name[ru]=Управление брандмауэром Name[sk]=Správca zabezpečenia firewall Name[sr]=Upravljač zaštitnog zida diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_af.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_af.ts index 6d2c4e8bc..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_af.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_af.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ar.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ar.ts index e5c9b21dc..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ar.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ar.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_az.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_az.ts index 520fa7341..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_az.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_az.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_bg.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_bg.ts index 4fbd24d8a..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_bg.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_bg.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_bn.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_bn.ts index ee9cb3e7b..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_bn.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_bn.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_bs.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_bs.ts index 97b3dc086..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_bs.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_bs.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ca.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ca.ts index bf11df726..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ca.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ca.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_cs.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_cs.ts index 636e0981f..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_cs.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_cs.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_cy.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_cy.ts index d206d13c8..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_cy.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_cy.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_da.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_da.ts index e515790cb..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_da.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_da.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_de.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_de.ts index 23aa4ab4c..89aaebaa0 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_de.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_de.ts @@ -1,292 +1,270 @@ - + dialogConfirm - Confirm Package Changes - + Paketänderungen bestätigen - The following changes will be made to the system. Please confirm below and click OK to continue. - + Die folgenden Änderungen werden am System vorgenommen. Bitte bestätigen Sie dies und klicken Sie auf OK, um fortzufahren. - &Ok - + &Weiter - &Cancel - + &Abbruch mainWin - Available Updates - + Verfügbare Aktualisierungen - System Package Manager - + Systempaketverwaltung - Add / Remove Packages - + Pakete hinzufügen / entfernen - System Packages - + Systempakete - Package Information - + Paketinformationen - Description - + Beschreibung - 10 MB - + 10 MB - My Package 1.0 - + Mein Paket 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Optionen - &Apply - + Ü&bernehmen - - Package Updates - + Paketaktualisierungen - Re&scan packages - + &Neueinlesen der Pakete - &Update packages - + Pakete &Aktualisieren - Package - + Paket - Old Version - + Alte Version - New Version - + Neue Version - Installing updates - + Aktualisierungen installieren - &Close - + &Schließen - &File - + &Datei - &View - + &Anzeigen - &Quit - + &Beenden - &Basic - + &Elementar - &Advanced - + E&rweitert - Checking for updates - + Auf Aktualisierungen prüfen - Package Updates (%1) - + Paketaktualisierungen (%1) - Available updates - + Verfügbare Aktualisierungen - No available updates - + Keine Aktualisierungen vorhanden - Starting package updates... - + Beginne Paketaktualisierung... - required by: - + notwendig für - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + Bei folgenden Paketen kommt es zu Konflikten mit den ausgewählten Änderungen.Diese können automatisch entfernt werden. Weiter? - Package Conflicts - + Paketkonflikte - You may need to manually fix the conflicts before trying again. - + Möglicherweise müssen Sie die Konflikte manuell beheben bevor Sie es erneutt versuchen. - Downloading packages... - + Pakete herunterladen... - Failed! - + Fehlgeschlagen! - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + Der Paketbefehl ist fehlgeschlagen. Eine Kopie der Ausgabe wurde in /tmp/pkg-output.log gespeichert - Finished! - + Beendet! - Package changes complete! - + Paketänderungen sind erfolgt! - - Loading... Please wait... - + Lade... Bitte warten... - No changes - + Keine Änderungen - No changes to make! - + Keine Änderungen notwendig! - The following packages will be removed: - + Die folgenden Pakete werden entfernt: - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_el.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_el.ts index cfae6700d..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_el.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_el.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_en_GB.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_en_GB.ts index a94eb595a..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_en_GB.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_en_GB.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_en_ZA.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_en_ZA.ts index c7196ffe6..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_en_ZA.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_en_ZA.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_es.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_es.ts index 6c4c751d2..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_es.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_es.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_et.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_et.ts index 28017f690..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_et.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_et.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_eu.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_eu.ts index 354b80567..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_eu.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_eu.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_fa.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_fa.ts index 69690ce08..e4ae58baa 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_fa.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_fa.ts @@ -1,292 +1,314 @@ - + dialogConfirm - Confirm Package Changes - + تایید تغییرات بسته - The following changes will be made to the system. Please confirm below and click OK to continue. - + تغییرات زیر در سامانه ذخیره خواهد شد. لطفا این تغییرات را تایید کرده و دکمه OK را برای ادامه بزنید. - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_fi.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_fi.ts index 2eb7d4bce..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_fi.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_fi.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_fr.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_fr.ts index 92391bffb..5b6323e04 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_fr.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_fr.ts @@ -1,292 +1,261 @@ - + dialogConfirm - Confirm Package Changes - + Confirmation des modifications de l'emballage - The following changes will be made to the system. Please confirm below and click OK to continue. - + Les modifications suivantes seront apportées au système. Veillez confirmer ci-dessous et cliquez sur OK pour continuer. - &Ok - + &Ok - &Cancel - + &Annuler mainWin - Available Updates - + Mise à jour disponible - System Package Manager - + Système de Gestion de Paquet - Add / Remove Packages - + Ajout / Suppression de paquets - System Packages - + Système de Paquets - Package Information - + Paquet Information - Description - + Description - 10 MB - + 10 MB - My Package 1.0 - + Mon Paquet 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Options - &Apply - + &Appliquer - - Package Updates - + Mise à jour de Paquets - Re&scan packages - + Re&balayer les paquets - &Update packages - + &Mise à jour des paquets - Package - + Paquet - Old Version - + Ancienne Version - New Version - + Nouvelle Version - Installing updates - + Installer les mises à jour - &Close - + &Fermer - &File - + &Fichier - &View - + &Voir - &Quit - + &Quitter - &Basic - + &Basic - &Advanced - + &Avancé - Checking for updates - + Vérification des mises à jour - Package Updates (%1) - + Mises à jour des paquets (1%) - Available updates - + Mises à jour disponible - No available updates - + Aucune mise à jour disponible - Starting package updates... - + Démarrer les mises à jour de paquets... - required by: - + requis par: - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + Les paquets suivants sont à l'origine des conflits avec les changements sélectionnés et peuvent être supprimés automatiquement. Continuer? - Package Conflicts - + Conflits de paquets - You may need to manually fix the conflicts before trying again. - + Vous devrez peut-être corriger manuellement les conflits avant de réessayer. - Downloading packages... - + Télécharger un paquet... - Failed! - + Échec! - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + Les commandes de paquets ont échoué. Une copie de la sortie a été enregistré dans /tmp/pkg-output.log - Finished! - + Terminer! - Package changes complete! - + Changements des paquets completés! - - Loading... Please wait... - + Chargement en cours... S'il vous plaît patienter... - No changes - + Aucun changement - No changes to make! - + Aucun changement à faire! - The following packages will be removed: - + Les paquets suivants seront supprimés: - The following packages that require the above packages will also removed: - + Les paquets suivants qui nécessitent les forfaits ci-dessus seront également supprimés: - The following packages will be installed: - + Les paquets suivants seront installés: - The following dependances will also be installed: - + Les dépendances suivantes seront également installés: - Confirm package changes - + Confirmer les modifications du paquet - No Desktop - + Pas de bureau - No desktops have been selected! Please choose at least one desktop before saving. - + Aucun bureau n'a été sélectionné! S'il vous plaît choisir au moins un gestionnaire de bureau avant de l'enregistrer. - View Packages - + Afficher les packages - Package Listing for: - + Liste des paquets pour: - - Downloading: %1 + Téléchargement: %1 + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_fr_CA.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_fr_CA.ts index 87c211c69..b3897ce2d 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_fr_CA.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_fr_CA.ts @@ -1,292 +1,261 @@ - + dialogConfirm - Confirm Package Changes - + Confirmation des modifications de l'emballage - The following changes will be made to the system. Please confirm below and click OK to continue. - + Les modifications suivantes seront apportées au système. Veillez confirmer ci-dessous et cliquez sur OK pour continuer. - &Ok - + &Ok - &Cancel - + &Annuler mainWin - Available Updates - + Mise à jour disponible - System Package Manager - + Système de Gestion de Paquet - Add / Remove Packages - + Ajout / Suppression de paquets - System Packages - + Système de Paquets - Package Information - + Paquet Information - Description - + Description - 10 MB - + 10 MB - My Package 1.0 - + Mon Paquet 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Options - &Apply - + &Appliquer - - Package Updates - + Mise à jour de Paquets - Re&scan packages - + Re&balayer les paquets - &Update packages - + &Mise à jour des paquets - Package - + Paquet - Old Version - + Ancienne Version - New Version - + Nouvelle Version - Installing updates - + Installer les mises à jour - &Close - + &Fermer - &File - + &Fichier - &View - + &Voir - &Quit - + &Quitter - &Basic - + &Basic - &Advanced - + &Avancé - Checking for updates - + Vérification des mises à jour - Package Updates (%1) - + Mises à jour des paquets (1%) - Available updates - + mises à jour disponible - No available updates - + Aucune mise à jour disponible - Starting package updates... - + Démarrer les mises à jour de paquets... - required by: - + requis par: - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + Les paquets suivants sont à l'origine des conflits avec les changements sélectionnés et peuvent être supprimés automatiquement. Continuer? - Package Conflicts - + Conflits de paquets - You may need to manually fix the conflicts before trying again. - + Vous devrez peut-être corriger manuellement les conflits avant de réessayer. - Downloading packages... - + Télécharger un paquet... - Failed! - + Échec! - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + Les commandes de paquets ont échoué. Une copie de la sortie a été enregistré dans /tmp/pkg-output.log - Finished! - + Terminer! - Package changes complete! - + Changements des paquets completés! - - Loading... Please wait... - + Chargement en cours... S'il vous plaît patienter... - No changes - + Aucun changement - No changes to make! - + Aucun changement à faire! - The following packages will be removed: - + Les paquets suivants seront supprimés: - The following packages that require the above packages will also removed: - + Les paquets suivants qui nécessitent les forfaits ci-dessus seront également supprimés: - The following packages will be installed: - + Les paquets suivants seront installés: - The following dependances will also be installed: - + Les dépendances suivantes seront également installés: - Confirm package changes - + Confirmer les modifications du paquet - No Desktop - + Pas de bureau - No desktops have been selected! Please choose at least one desktop before saving. - + Aucun bureau n'a été sélectionné! S'il vous plaît choisir au moins un gestionnaire de bureau avant de l'enregistrer. - View Packages - + Afficher les packages - Package Listing for: - + Liste des paquets pour: - - Downloading: %1 + Téléchargement: %1 + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_gl.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_gl.ts index 34fdb4801..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_gl.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_gl.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_he.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_he.ts index f2f744357..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_he.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_he.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_hi.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_hi.ts index 4dff19441..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_hi.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_hi.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_hr.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_hr.ts index a7adeb712..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_hr.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_hr.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_hu.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_hu.ts index 6cdfe2ba7..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_hu.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_hu.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_id.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_id.ts index 49a89721b..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_id.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_id.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_is.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_is.ts index 6e8c03744..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_is.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_is.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_it.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_it.ts index 62a969b61..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_it.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_it.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ja.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ja.ts index 04f7dfe6e..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ja.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ja.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ka.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ka.ts index 9177666e2..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ka.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ka.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ko.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ko.ts index dfdc9c194..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ko.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ko.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_lt.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_lt.ts index 85dbac905..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_lt.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_lt.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_lv.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_lv.ts index 64543e0ec..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_lv.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_lv.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_mk.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_mk.ts index fb2840de7..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_mk.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_mk.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_mn.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_mn.ts index 7dc4bcdf1..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_mn.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_mn.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ms.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ms.ts index a7881f6bb..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ms.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ms.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_mt.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_mt.ts index 49066360b..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_mt.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_mt.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_nb.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_nb.ts index 23d7948f6..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_nb.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_nb.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_nl.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_nl.ts index b30e983aa..a2c0109eb 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_nl.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_nl.ts @@ -1,292 +1,261 @@ - + dialogConfirm - Confirm Package Changes - + Pakketveranderingen bevestigen - The following changes will be made to the system. Please confirm below and click OK to continue. - + De volgende veranderingen zullen in het systeem worden aangebracht. Bevestig ze a.u.b. hieronder en klik op OK om door te gaan. - &Ok - + &OK - &Cancel - + &Annuleren mainWin - Available Updates - + Beschikbare bijgewerkte pakketten - System Package Manager - + Systeempakkettenbeheerder - Add / Remove Packages - + Pakketten toevoegen/verwijderen - System Packages - + Systeempakketten - Package Information - + Pakketinformatie - Description - + Beschrijving - 10 MB - + 10 MB - My Package 1.0 - + Mijn pakket 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Opties - &Apply - + &Toepassen - - Package Updates - + Bijgewerkte pakketten - Re&scan packages - + Pakketten opnieuw doorzoeken - &Update packages - + Pakketten &bijwerken - Package - + Pakket - Old Version - + Oude versie - New Version - + Nieuwe versie - Installing updates - + Bijgewerkte pakketten installeren - &Close - + Sluiten - &File - + Bestand - &View - + Bekijken - &Quit - + Afsluiten - &Basic - + Eenvoudig - &Advanced - + Geavanceerd - Checking for updates - + Controleren op bijgewerkte pakketten - Package Updates (%1) - + Bijgewerkte pakketten (%1) - Available updates - + Beschikbare bijgewerkte pakketten - No available updates - + Geen bijgewerkte pakketten beschikbaar - Starting package updates... - + Bijwerken van pakketten aan het opstarten... - required by: - + vereist door: - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + De volgende pakketten veroorzaken conflicten met de gekozen veranderingen en kunnen automatisch worden verwijderd. Doorgaan? - Package Conflicts - + Pakketconflicten - You may need to manually fix the conflicts before trying again. - + Mogelijk zou u de conflicten handmatig moeten oplossen alvorens het opnieuw te proberen. - Downloading packages... - + Pakketten aan het binnenhalen... - Failed! - + Mislukt. - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + De pakketopdrachten zijn mislukt. Een kopie van de uitvoer werd opgeslagen in /tmp/pkg-output.log - Finished! - + Klaar. - Package changes complete! - + Pakketveranderingen voltooid. - - Loading... Please wait... - + Aan het laden... Even wachten a.u.b... - No changes - + Geen veranderingen - No changes to make! - + Geen veranderingen aan te brengen. - The following packages will be removed: - + De volgende pakketten zullen worden verwijderd: - The following packages that require the above packages will also removed: - + De volgende pakketten die de bovenstaande pakketten nodig hebben zullen eveneens worden verwijderd: - The following packages will be installed: - + De volgende pakketten zullen worden geïnstalleerd: - The following dependances will also be installed: - + De volgende afhankelijkheden zullen eveneens worden geïnstalleerd: - Confirm package changes - + Pakketveranderingen bevestigen - No Desktop - + Geen werkomgeving - No desktops have been selected! Please choose at least one desktop before saving. - + Er zijn geen werkomgevingen gekozen. Kies a.u.b. tenminste één werkomgeving alvorens op te slaan. - View Packages - + Pakketten bekijken - Package Listing for: - + Pakketlijst voor: - - Downloading: %1 + Aan het binnenhalen: %1 + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_pa.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_pa.ts index 374296c30..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_pa.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_pa.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_pl.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_pl.ts index a4458fe96..07cc70597 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_pl.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_pl.ts @@ -1,292 +1,261 @@ - + dialogConfirm - Confirm Package Changes - + Potwierdź zmiany pakietu - The following changes will be made to the system. Please confirm below and click OK to continue. - + Poniższe zmiany zostaną wykonane w systemie. Proszę potwierdzić poniżej i kliknąć OK aby kontynuować. - &Ok - + &Ok - &Cancel - + &Anuluj mainWin - Available Updates - + Dostępne aktualizacje - System Package Manager - + Systemowy menadżer pakietów - Add / Remove Packages - + Dodaj / Usuń pakiety - System Packages - + Pakiety systemowe - Package Information - + Informacja o pakiecie - Description - + Opis - 10 MB - + 10 MB - My Package 1.0 - + Mój pakiet 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Opcje - &Apply - + &Zatwierdź - - Package Updates - + Aktualizacje pakietu - Re&scan packages - + Ponownie przeskanuj pakiety - &Update packages - + &Aktualizuj pakiety - Package - + Pakiet - Old Version - + Stara wersja - New Version - + Nowa wersja - Installing updates - + Instalowanie aktualizacji - &Close - + &Zamknij - &File - + &Plik - &View - + &Podgląd - &Quit - + &Wyjście - &Basic - + &Podstawowy - &Advanced - + &Zaawansowane - Checking for updates - + Poszukiwanie aktualizacji - Package Updates (%1) - + Aktualizacje pakietów {%1} - Available updates - + Dostępne aktualizacje - No available updates - + Brak aktualnych aktualizacji - Starting package updates... - + Rozpoczynanie aktualizacji pakietu - required by: - + Wymagane przez: - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + Poniższe pakiety powodują konflikty z wybranymi zmianami i mogą być automatycznie usunięte. Kontynuować? - Package Conflicts - + Konflikty pakietów - You may need to manually fix the conflicts before trying again. - + Możesz ręcznie zlikwidować konflikty przed ponowną próbą. - Downloading packages... - + Pobieranie pakietów... - Failed! - + Niepowodzenie! - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + Polecenia pakietu nie powiodły się. Kopia wyjścia została zapisana w /tmp/pkg-output.log - Finished! - + Zakończono! - Package changes complete! - + Zakończono zmiany pakietów! - - Loading... Please wait... - + Ładowanie... Proszę czekać... - No changes - + Brak zmian - No changes to make! - + Brak zmian do wykonania! - The following packages will be removed: - + Poniższe pakiety będą usunięte: - The following packages that require the above packages will also removed: - + Poniższe pakiety które wymagają powyższych pakietów też będą usunięte: - The following packages will be installed: - + Poniższe pakiety będą zainstalowane: - The following dependances will also be installed: - + Poniższe zależności będą również zainstalowane: - Confirm package changes - + Potwierdź zmiany pakietu: - No Desktop - + Brak Pulpitu - No desktops have been selected! Please choose at least one desktop before saving. - + Nie wybrano Pulpitu! Proszę wybrać przynajmniej jeden Pulpit przez zapisaniem. - View Packages - + Pokaż pakiety - Package Listing for: - + Lista pakietów dla: - - Downloading: %1 + Pobieranie: %1 + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_pt.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_pt.ts index ba3ce623d..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_pt.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_pt.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_pt_BR.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_pt_BR.ts index 2117b829d..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_pt_BR.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_pt_BR.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ro.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ro.ts index a961452e4..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ro.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ro.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ru.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ru.ts index 8125a4b88..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ru.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ru.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sa.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sa.ts index 50d0be0d7..ad632a5dd 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sa.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sa.ts @@ -4,289 +4,313 @@ dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Available Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - - Downloading: %1 - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sk.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sk.ts index a681fc6c0..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sk.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sk.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sl.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sl.ts index 3e0f7f984..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sl.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sl.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sr.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sr.ts index 95291fcb1..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sr.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sr.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sv.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sv.ts index d82858f62..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sv.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sv.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_sw.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_sw.ts index f55fd22bb..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_sw.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_sw.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_ta.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_ta.ts index 25406eb93..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_ta.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_ta.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_tg.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_tg.ts index be7da49c7..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_tg.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_tg.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_th.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_th.ts index cc23c04c0..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_th.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_th.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_tr.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_tr.ts index a8c499cac..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_tr.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_tr.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_uk.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_uk.ts index 73c405fdc..5f129dffa 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_uk.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_uk.ts @@ -1,292 +1,261 @@ - + dialogConfirm - Confirm Package Changes - + Підтвердження зміни пакунків - The following changes will be made to the system. Please confirm below and click OK to continue. - + Наступні зміни будуть застосовані до Вашої системи. Натисніть ОК щоб підтвердити. - &Ok - + Ок - &Cancel - + Відміна mainWin - Available Updates - + Наявні оновлення - System Package Manager - + Керування пакунками - Add / Remove Packages - + Додати / Видалити пакунки - System Packages - + Системні пакунки - Package Information - + Інформація пакунку - Description - + Опис - 10 MB - + 10 MB - My Package 1.0 - + Мій пакунок 1.0 - http://www.pcbsd.org - + http://www.pcbsd.org - Options - - - - - Dependances - + Налаштування - &Apply - + Застосувати - - Package Updates - + Оновлення пакунків - Re&scan packages - + Перевірити на оновлення - &Update packages - + Оновити пакунки - Package - + Пакунок - Old Version - + Встановлена версія - New Version - + Нова версія - Installing updates - + Встановлення оновленнь - &Close - + Закрити - &File - + Файл - &View - + Перегляд - &Quit - + Вийти - &Basic - + Простий - &Advanced - + Розширений - Checking for updates - + Перевірка оновленнь - Package Updates (%1) - + Оновлення пакунків (%1) - Available updates - + Наявні оновлення - No available updates - + Пакунки повністю оновлені - Starting package updates... - + Запуск оновлення пакунків... - required by: - + вимагається: - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + Наступні пакунки конфліктують з обраними змінами та можуть бути автоматично видалені. Продовжити? - Package Conflicts - + Конфлікт пакунків - You may need to manually fix the conflicts before trying again. - + Ви можете самостійно вирішити конфлікти перед тим як спробувати ще раз. - Downloading packages... - + Завантаження пакунків... - Failed! - + Невдача! - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + Невдача при виконанні команд. Копія виведення на консоль було збережено у /tmp/pkg-output.log - Finished! - + Завершено! - Package changes complete! - + Зміни до пакунків було застосовано вдало! - - Loading... Please wait... - + Завантаження... Будь ласка зачекайте... - No changes - + Зміни відсутні - No changes to make! - + Відсутні зміни для застосування! - The following packages will be removed: - + Наступні пакунки буде видалено: - The following packages that require the above packages will also removed: - + Наступні пакунки, що вимагаються вищезгаданим пакунком також буде видалено: - The following packages will be installed: - + Наступні пакунки будуть встановлені: - The following dependances will also be installed: - + Наступні залежності також будуть встановлені: - Confirm package changes - + Підтвердження зміни пакунків - No Desktop - + Стільницю не обрано - No desktops have been selected! Please choose at least one desktop before saving. - + Не обрано жодної стільниці! Будь ласка оберіть принаймні одне оточення стільниці перед збереженням. - View Packages - + Перегляд пакунків - Package Listing for: - + Список пакунків для: - - Downloading: %1 + Завантаження: %1 + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_uz.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_uz.ts index b88174578..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_uz.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_uz.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_vi.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_vi.ts index b75af0529..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_vi.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_vi.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_CN.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_CN.ts index 751bc140a..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_CN.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_CN.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_HK.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_HK.ts index 0fa7ef80d..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_HK.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_HK.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_TW.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_TW.ts index b15f8739c..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_TW.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_zh_TW.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/i18n/PackageManager_zu.ts b/src-qt4/pc-pkgmanager/i18n/PackageManager_zu.ts index 3648da782..44bb91485 100644 --- a/src-qt4/pc-pkgmanager/i18n/PackageManager_zu.ts +++ b/src-qt4/pc-pkgmanager/i18n/PackageManager_zu.ts @@ -1,292 +1,316 @@ - + dialogConfirm - Confirm Package Changes - + + - The following changes will be made to the system. Please confirm below and click OK to continue. - + + - &Ok - + + - &Cancel - + + mainWin - Available Updates - + + - System Package Manager - + + - Add / Remove Packages - + + - System Packages - + + - Package Information - + + - Description - + + - 10 MB - + + - My Package 1.0 - + + - http://www.pcbsd.org - + + - Options - - - - - Dependances - + + - &Apply - + + - - Package Updates - + + - Re&scan packages - + + - &Update packages - + + - Package - + + - Old Version - + + - New Version - + + - Installing updates - + + - &Close - + + - &File - + + - &View - + + - &Quit - + + - &Basic - + + - &Advanced - + + - Checking for updates - + + - Package Updates (%1) - + + - Available updates - + + - No available updates - + + - Starting package updates... - + + - required by: - + + - The following packages are causing conflicts with the selected changes and can be automatically removed. Continue? - + + - Package Conflicts - + + - You may need to manually fix the conflicts before trying again. - + + - Downloading packages... - + + - Failed! - + + - The package commands failed. A copy of the output was saved to /tmp/pkg-output.log - + + - Finished! - + + - Package changes complete! - + + - - Loading... Please wait... - + + - No changes - + + - No changes to make! - + + - The following packages will be removed: - + + - The following packages that require the above packages will also removed: - + + - The following packages will be installed: - + + - The following dependances will also be installed: - + + - Confirm package changes - + + - No Desktop - + + - No desktops have been selected! Please choose at least one desktop before saving. - + + - View Packages - + + - Package Listing for: - + + - - Downloading: %1 + + + + + Dependencies + + + + Find Packages + + + + Search + + + + No Search Results + + + + Do you want to continue the search from the top? + + + + No packages could be found with that search term. Please adjust it and try again. + + + + Processes Running + + + + Packages are currently being changed. Are you sure you want to quit? diff --git a/src-qt4/pc-pkgmanager/pc-pkgmanager.desktop b/src-qt4/pc-pkgmanager/pc-pkgmanager.desktop index 99bc29294..72ef68568 100644 --- a/src-qt4/pc-pkgmanager/pc-pkgmanager.desktop +++ b/src-qt4/pc-pkgmanager/pc-pkgmanager.desktop @@ -7,7 +7,7 @@ Categories=System; Name=Package Manager Name[af]=Pakket Bestuurder Name[bs]=Upravljač paketa -Name[de]=Paketverwalter +Name[de]=Paketverwaltung Name[el]=Διαχειριστής πακέτων Name[en_GB]=Package Manager Name[en_ZA]=Package Manager @@ -16,12 +16,16 @@ Name[et]=Pakihaldur Name[fr]=Gestionnaire de Paquets Name[fr_CA]=Gestionnaire de Paquet Name[hr]=Upravljač paketa +Name[it]=Gestore Pacchetti Name[ja]=パッケージマネージャー Name[nl]=Pakketbeheerder Name[pl]=Menadżer Pakietów Name[pt_BR]=Gerenciador de pacotes +Name[ro]=Manager de pachete Name[sr]=Upravljač paketa Name[sv]=Pakethanterare -Name[uk]=Менеджер пакунків +Name[uk]=Керування пакунками Name[vi]=Trình quản lý gói Name[zh_CN]=包管理器 +Name[zh_HK]=套件管理員 +Name[zh_TW]=套件管理員 diff --git a/src-qt4/pc-servicemanager/i18n/ServiceManager_nl.ts b/src-qt4/pc-servicemanager/i18n/ServiceManager_nl.ts index aabb953af..d066bd694 100644 --- a/src-qt4/pc-servicemanager/i18n/ServiceManager_nl.ts +++ b/src-qt4/pc-servicemanager/i18n/ServiceManager_nl.ts @@ -69,14 +69,14 @@ Checking... - Aan het controleren... + Aan het controleren... progressUI Service - Service + Dienst Service Action in progress... diff --git a/src-qt4/pc-servicemanager/i18n/ServiceManager_ro.ts b/src-qt4/pc-servicemanager/i18n/ServiceManager_ro.ts index 46735cbd1..d59ec90a4 100644 --- a/src-qt4/pc-servicemanager/i18n/ServiceManager_ro.ts +++ b/src-qt4/pc-servicemanager/i18n/ServiceManager_ro.ts @@ -5,126 +5,102 @@ ServiceManager Service Manager - - + Managerul de servicii Service Name - - + Nume serviciu Start - - + Start Stop - - + Oprire Restart - - + Repornire Running - - + Rulare Stopped - - + Oprite SDIR - - + SDIR TAG - - + TAG Enabled - - + Activat Enable Service - - + Activare serviciu Disable Service - - + Dezactivare serviciu Disabled - - + Dezactivat Unknown - - + Necunoscut The following services are available on this system - - + Următoarele servicii sunt disponibile pe acest sistem Managing services for Warden IP: - - + Managementul serviciilor IP pentru Warden: Checking... - - + Verifică... progressUI Service - - + Serviciu Service Action in progress... - - + Acțiune de serviciu în curs &Cancel - - + &Anulare Failed - - + Eșuat The specified command failed. - - + Comanda specificată a eșuat. Finished - - + Terminat Close - - + Închide diff --git a/src-qt4/pc-servicemanager/i18n/ServiceManager_zh_CN.ts b/src-qt4/pc-servicemanager/i18n/ServiceManager_zh_CN.ts index 6776ead37..db82f4e2b 100644 --- a/src-qt4/pc-servicemanager/i18n/ServiceManager_zh_CN.ts +++ b/src-qt4/pc-servicemanager/i18n/ServiceManager_zh_CN.ts @@ -65,7 +65,7 @@ Managing services for Warden IP: - 管理Warden IP的服务: + 管理Warden IP的服务: Checking... diff --git a/src-qt4/pc-servicemanager/pc-servicemanager.desktop b/src-qt4/pc-servicemanager/pc-servicemanager.desktop index 403c1696b..ce3eed282 100644 --- a/src-qt4/pc-servicemanager/pc-servicemanager.desktop +++ b/src-qt4/pc-servicemanager/pc-servicemanager.desktop @@ -28,7 +28,7 @@ Name[he]=מנהל שירותים Name[hr]=Upravitelj servisa Name[hu]=Szolgáltatáskezelő Name[id]=Pengelola Layanan -Name[it]=Gestione Servizi +Name[it]=Gestore Servizi Name[ja]=サービスマネージャー Name[ko]=서비스 관리자 Name[mn]=Үйлчилгээ Удирдагч @@ -36,7 +36,7 @@ Name[nb]=Tjeneste behandler Name[nl]=Dienstenbeheerder Name[pl]=Menadżer Usług Name[pt_BR]=Gerenciador de Serviços -Name[ro]=director de servicii +Name[ro]=Managerul de servicii Name[ru]=Управление службами Name[sk]=Správca úloh Name[sr]=Upravljač servisa diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_af.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_af.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_af.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_af.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ar.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ar.ts index db9d20788..d0d15c456 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ar.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ar.ts @@ -267,11 +267,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -592,6 +587,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_az.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_az.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_az.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_az.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bg.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bg.ts index 9924d2d6f..3551a93c3 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bg.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bg.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bn.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bn.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bn.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bn.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bs.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bs.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bs.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_bs.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ca.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ca.ts index 120b34bcf..ea849273a 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ca.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ca.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cs.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cs.ts index 16fae8e55..ff7a791be 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cs.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cs.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cy.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cy.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cy.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_cy.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_da.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_da.ts index 03286d7ed..bab4c9ec0 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_da.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_da.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_de.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_de.ts index 2f398f1ae..e78466b39 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_de.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_de.ts @@ -188,7 +188,7 @@ Shortcuts: - Abkürzungen: + Verknüpfungen: Cancel any actions for this application @@ -222,10 +222,6 @@ Open the browser page for the selected application Die Browser-Seite für das ausgewählte Programm öffnen - - Open Browser - Browser öffnen - Automatically update the selected application when an update is available Dieses Programm automatisch aktualisieren, wenn eine neue Version vorhanden ist @@ -296,11 +292,11 @@ File - Datei + &Datei Configure - Konfigurieren + &Einstellungen Import PBI List @@ -328,7 +324,7 @@ The AppCafe must be run as root when in Warden compatibility mode - Das AppCafe muss als Administrator (root) ausgeführt werden, wenn Warden im Kompatiblitätsmodus ausgeführt wird. + Das AppCafe muss als Administrator (root) ausgeführt werden, wenn Warden im Kompatiblitätsmodus ausgeführt wird. The AppCafe must be started with user permissions! @@ -432,7 +428,7 @@ None - Nichts + Keine Verify PBI Removal @@ -456,7 +452,7 @@ Downgrade - Downgrade + Downgrade Searching the application database. Please Wait.... @@ -480,12 +476,24 @@ Downloading %1 file: - Lade %1: + Herunterladen Datei %1: Start the application Programm starten + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend @@ -623,7 +631,7 @@ Starting Update - Starte Update + Starte Aktualisierung Starting Download diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_el.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_el.ts index e4b67e981..2c96c3d89 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_el.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_el.ts @@ -5,28 +5,23 @@ ConfigDialog AppCafe Configuration - - + Ρύθμιση του AppCafe Configuration - - + Ρύθμιση Post-Install Actions - - + Ενέργειες μετά την εγκατάσταση Create Desktop Icons - - + Δημιουργία εικονιδίων στην Επιφάνεια Εργασίας Create Menu Icons - - + Δημιουργία Εικονιδίων στο Μενού Register File Associations @@ -45,23 +40,19 @@ Download Dir - - + Κατάλογος Λήψεων Download Directory - - + Κατάλογος Λήψεων Repositories - - + Αποθετήρια Add - - + Προσθήκη ... @@ -73,73 +64,59 @@ Move Up - - + Μετακίνηση προς τα πάνω Move Down - - + Μετακίνηση προς τα κάτω Remove - - + Αφαίρεση Add PBI Repository - - + Προσθήκη Αποθετηρίου PBI Repository File (*.rpo) - - + Αρχείο Αποθετηρίου (*.rpo) Repo Successfully Added - - + Επιτυχής προσθήκη αποθετηρίου This repo should be ready to use in a short time (depending on your internet connection speed). - - + Αυτό το αποθετήριο θα είναι σύντομα έτοιμο για χρήση (εξαρτάται από την ταχύτητα σύνδεσή σας στο internet) Repo Failure - - + Αποτυχία αποθετηρίου This repo could not be added. - - + Αυτό το αποθετήριο δεν είναι δυνατόν να προστεθεί. Please run the command '%1' manually to see the full error message. - - + Παρακαλώ τρέξτε χειροκίνητα την εντολή '%1' για να δείτε το πλήρες μήνυμα λάθους. Verify Removal - - + Επιβεβαίωση αφαίρεσης Are you sure you wish to remove this PBI repository? - - + Θέλετε σίγουρα να αφαιρέσετε αυτό το αποθετήριο; This repo could not be removed. - - + Αυτό το αποθετήριο δεν μπορεί να αφαιρεθεί. New Mirror URL - - + Νεό Mirror URL Please enter the URL for the new repo mirror: @@ -178,8 +155,7 @@ Version - - + Έκδοση Status @@ -187,13 +163,11 @@ Check/Uncheck all applications - - + Επιλογή/αποεπιλογή όλων των εφαρμογών All - - + Όλα Perform actions on checked applications @@ -202,13 +176,11 @@ Actions - - + Ενέργειες Application Details - - + Λεπτομέρειες εφαρμογής Version: @@ -225,13 +197,11 @@ Shortcuts: - - + Συντομεύσεις: Cancel any actions for this application - - + Ακύρωση οποιασδήποτε ενέργειας για την εφαρμογή ... @@ -239,8 +209,7 @@ Remove the selected application - - + Αφαίρεση της εφαρμογής Uninstall @@ -248,8 +217,7 @@ Update the application to the most recent version - - + Αναβάθμιση της εφαρμογής στην πιο πρόσφατη έκδοση Update the selected application @@ -266,11 +234,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -278,8 +241,7 @@ Auto-Update - - + Αυτόματη αναβάθμιση Browse For Apps @@ -303,8 +265,7 @@ Search Here - - + Αναζήτηση εδώ Search @@ -312,18 +273,15 @@ View Recent Additions - - + Πρόσφατες προσθήκες Browse By Category - - + Πλοήγηση ανά κατηρορία Size: - - + Μέγεθος: Application Information @@ -380,13 +338,11 @@ Repositories - - + Αποθετήρια AppCafe Settings - - + Ρυθμίσεις AppCafe Error! @@ -399,13 +355,11 @@ The AppCafe must be started with user permissions! - - + Το AppCafe πρέπει να ξεκινήσει με δικαιώματα χρήστη! The user must also be a part of the "operator" group - - + Ο χρήστης πρέπει να ανήκει και στο group "operator" AppCafe Processes Running @@ -468,28 +422,23 @@ Desktop Icons - - + Εικονίδια επιφάνειας εργασίας Add - - + Προσθήκη Remove - - + Αφαίρεση Menu Icons - - + Εικονίδια Μενού Add (All Users) - - + Προσθήκη (Για όλους τους χρήστες) Path Links @@ -591,6 +540,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_GB.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_GB.ts index bd16e7286..4f6178307 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_GB.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_GB.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Open the browser page for the selected application - - Open Browser - Open Browser - Automatically update the selected application when an update is available Automatically update the selected application when an update is available @@ -486,6 +482,18 @@ Start the application Start the application + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_ZA.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_ZA.ts index bd16e7286..4f6178307 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_ZA.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_en_ZA.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Open the browser page for the selected application - - Open Browser - Open Browser - Automatically update the selected application when an update is available Automatically update the selected application when an update is available @@ -486,6 +482,18 @@ Start the application Start the application + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_es.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_es.ts index 096e03f87..ce516e833 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_es.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_es.ts @@ -243,10 +243,6 @@ - - Open Browser - Abrir navegador - Automatically update the selected application when an update is available Actualizar automáticamente la aplicación seleccionada cuando esté disponible una actualización @@ -521,6 +517,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_et.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_et.ts index 0c6d21b10..c3763b0a1 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_et.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_et.ts @@ -5,707 +5,593 @@ ConfigDialog AppCafe Configuration - - + AppCafe seadistus Configuration - - + Seadistus Post-Install Actions - - + Paigaldamisjärgsed tegevused Create Desktop Icons - - + Loo töölaua ikoonid Create Menu Icons - - + Loo menüü ikoonid Register File Associations - - + Registreeri failiseosed Create Path Links - - + Loo raja lingid Keep Downloaded Files - - + Hoia alles alla laaditud failid Download Dir - - + Allalaadimiste kaust Download Directory - - + Allalaadimiste kaust Repositories - - + Varamud Add - - + Lisa ... - ... + ... Repository Mirrors - Varamu peegelsaidid + Varamute peegelsaidid Move Up - - + Liiguta üles Move Down - - + Liiguta alla Remove - - + Eemalda Add PBI Repository - - + Lisa PBI varamu Repository File (*.rpo) - - + Varamu fail (*.rpo) Repo Successfully Added - - + Varamu sai edukalt lisatud This repo should be ready to use in a short time (depending on your internet connection speed). - - + See varamu peaks varsti kasutamiseks valmis olema (sõltuvalt internetiühenduse kiirusest) Repo Failure - - + Varamu tõrge This repo could not be added. - - + Seda varamut ei õnnestunud lisada. Please run the command '%1' manually to see the full error message. - - + Käivita käsk '%1', et näha tervet veateadet Verify Removal - - + Kinnita eemaldamine Are you sure you wish to remove this PBI repository? - - + Kas soovid kindlasti selle varamu eemaldada? This repo could not be removed. - - + Seda varamut ei saanud eemaldada. New Mirror URL - - + Uus peegelsaidi URL Please enter the URL for the new repo mirror: - - + Sisesta uue peegelsaidi URL: Mirror Change Error - - + Peegelsaidi muutmise viga The full error is displayed in the AppCafe terminal output. - - + Terve veateade on näha AppCafe terminali väljundis. Select Download Directory - - + Vali allalaadimiste kaust MainUI AppCafe - AppCafe + AppCafe Installed - Paigaldatud + Paigaldatud Program Name - Programmi nimi + Programmi nimi Version - - + Versioon Status - Olek + Olek Check/Uncheck all applications - - + Vali kõik rakendused All - - + Kõik Perform actions on checked applications - - + Soorita tegevused valitud rakendustel Actions - - + Tegevused Application Details - - + Rakenduse üksikasjad Version: - Versioon: + Versioon: Author: - Autor: + Autor: License: - Litsents: + Litsents: Shortcuts: - - + Otseteed: Cancel any actions for this application - - + Tühista selle rakenduse tegevused ... - ... + ... Remove the selected application - - + Eemalda valitud rakendus Uninstall - Eemalda + Eemalda Update the application to the most recent version - - + Paigalda rakenduse uusim versioon Update the selected application - - + Uuenda valitud rakendus Update Application - - + Uuenda rakendust Open the browser page for the selected application - - - - - Open Browser - - + Ava valitud rakenduse veebileht brauseris Automatically update the selected application when an update is available - - + Uuenda valitud rakendus automaatselt, kui uuendus on saadaval Auto-Update - - + Automaatne uuendus Browse For Apps - - + Sirvi rakendusi Home - - + Kodu Category - - + Kategooria App - - + Rakendus Search Here - - + Otsi siit Search - Otsi + Otsi View Recent Additions - - + Vaata uusi rakendusi Browse By Category - - + Sirvi kategooriaid Size: - Suurus: + Suurus: Application Information - - + Rakenduse info Platform: - Platvorm: + Platvorm: Type: - Tüüp: + Tüüp: Similar Applications - - + Sarnased rakendused Best Matches - Täpsemad vasted + Täpsemad vasted Other Results - - + Muud tulemused File - - + Fail Configure - - + Seadista Import PBI List - - + Impordi PBI nimekiri Export PBI List - - + Ekspordi PBI nimekiri &Quit - &Välju + &Välju Repositories - - + Varamud AppCafe Settings - - + AppCafe sätted Error! - Viga! + Viga! The AppCafe must be run as root when in Warden compatibility mode - - + AppCafe tuleb Wardeni ühilduvusrežiimis käivitada juurkasutajana The AppCafe must be started with user permissions! - - + AppCafe tuleb käivitada kasutaja õigustega! The user must also be a part of the "operator" group - - + Kasutaja peab olema grupis "operator" AppCafe Processes Running - - + Jooksvad AppCafe protsessid The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + AppCafel on tegevused pooleli. Kas katkestada need ja väljuda ikkagi? Import PBI File List - - + Impordi PBI failide nimekiri PBI List (*.pbilist) - - + PBI nimekiri (*.pbilist) Import Error - - + Importimise viga There was an error importing the PBI list - - + PBI nimekirja importimisel esines viga Please make sure that the file has not been corrupted and try again - - + Veendu, et fail ei oleks vigane ja proovi uuesti Export PBI File List - - + Ekspordi PBI failide nimekiri Export Error - - + Eksportimise viga There was an error exporting the PBI list - - + PBI nimekirja eksportimisel esines viga Please make sure that you have the proper directory permissions and try again - - + Veendu, et kaustale on piisavad õigused ja proovi uuesti Update - Uuendus + Uuendus Desktop Icons - - + Töölaua ikoonid Add - - + Lisa Remove - - + Eemalda Menu Icons - - + Menüü ikoonid Add (All Users) - - + Lisa (kõigile kasutajatele) Path Links - - + Raja lingid File Associations - - + Failiseosed Cancel Actions - - + Tühista tegevused Desktop/Menu - - + Töölaud/menüü Desktop - - + Töölaud Menu - - + Menüü None - - + Puudub Verify PBI Removal - - + Kinnita PBI eemaldamine Are you sure you wish to remove this application? - - + Oled kindel, et soovid rakendust eemaldada? Are you sure you wish to remove these applications? - - + Oled kindel, et soovid neid rakendusi eemaldada? Unknown - Teadmata + Teadmata Install Now! - - + Paigalda kohe! Downgrade - - + Taasta eelmine versioon Searching the application database. Please Wait.... - - + Otsitakse rakenduste andmebaasist. Palun oota... No Search Results Found for the term: %1 - - + Ei leitud vasteid otsingule: %1 Installed: %1 - - + Paigaldatud: %1 Available: %2 - - + Saadaval %2 Downloading file: - - + Faili allalaadimine: Downloading %1 file: - - + Faili %1 allalaadimine: Start the application - - + Käivita rakendus + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + PBIBackend Installing - Paigaldamine + Paigaldamine Removing - - + Eemaldamine Updating - Uuendamine + Uuendamine Pending Download - - + Allalaadimine ootel Pending Install - - + Paigaldamine ootel Pending Removal - - + Eemaldamine ootel Pending Update - - + Uuendamine ootel No applications to install from this list. - - + Sellest nimekirjast pole ühtegi rakendust paigaldada. Results: - - + Tulemused: Unavailable Apps: %1 - - + Rakendused, mida pole saadaval: %1 Currently Installed: %1 - - + Hetkel paigaldatud: %1 Import Results - - + Impordi tulemused Are you sure you wish to install these applications? - - + Kas soovid kindlasti need rakendused paigaldada? %1 Download Error: - - + %1 allalaadimise viga: The PBI could not be downloaded, please try again later - - + PBI-d ei õnnestunud alla laadida, palun proovi hiljem uuesti %1 Update Error: - - + %1 uuendamise viga: The update process experienced an error and could not be completed - - + Uuendamisel esines viga ja seda ei saanud lõpule viia %1 Installation Error: - - + %1 paigaldamise viga: The installation process experienced an error and could not be completed - - + Paigaldamisel esines viga ja seda ei saanud lõpule viia %1 Removal Error: - - + %1 eemaldamise viga: The removal process experienced an error and could not be completed - - + Eemaldamisel esines viga ja seda ei saanud lõpule viia The download process experienced an error and could not be completed - - + Allalaadimisel esines viga ja seda ei saanud lõpule viia %1 PBI Error: - - + %1 PBI viga: The process experienced an error and could not be completed - - + Tegevusel esines viga ja seda ei saanud lõpule viia Unknown @@ -713,8 +599,7 @@ Download Canceled - - + Allalaadimine peatatud Downloading: %1% @@ -723,28 +608,23 @@ Download Finished - - + Allalaadimine valmis Download Starting - - + Allalaadimine algab Install Canceled (will remove) - - + Paigaldamine peatatud (rakendus eemaldatakse) Removal Canceled (will reinstall) - - + Eemaldamine peatatud (paigaldatakse uuesti) Update's cannot be canceled - - + Uuendamisi ei saa peatada Update Downloading: %1% @@ -753,26 +633,22 @@ Starting Update - - + Uuendamine algab Starting Download - - + Allalaadimine algab Update Available: %1 - - + Saadaval uuendus: %1 ProcessManager Unknown Error - - + Teadmata viga diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_eu.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_eu.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_eu.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_eu.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fa.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fa.ts index 4aa6103c6..704b2a7db 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fa.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fa.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fi.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fi.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fi.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fi.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr.ts index 67b6ca863..4acc48086 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Ouvrez la page du navigateur pour l'application sélectionnée - - Open Browser - Ouvrez le navigateur - Automatically update the selected application when an update is available Mettre à jour automatiquement l'application sélectionnée lorsqu'une mise à jour est disponible @@ -486,6 +482,18 @@ Start the application Démarrer l'application + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr_CA.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr_CA.ts index f2585f0fb..4ae78f1da 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr_CA.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fr_CA.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Ouvrez la page du navigateur pour l'application sélectionnée - - Open Browser - Ouvrez le navigateur - Automatically update the selected application when an update is available Mettre à jour automatiquement l'application sélectionnée lorsqu'une mise à jour est disponible @@ -486,6 +482,18 @@ Start the application Démarrer l'application + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fur.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fur.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fur.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_fur.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_gl.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_gl.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_gl.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_gl.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_he.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_he.ts index a86d503a4..41895b77f 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_he.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_he.ts @@ -270,11 +270,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -597,6 +592,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hi.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hi.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hi.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hi.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hr.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hr.ts index 33eafe0a0..f09e67a18 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hr.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hr.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hu.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hu.ts index 653b39a9a..6c4302562 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hu.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_hu.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_id.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_id.ts index 3b75f3d14..5eeac793d 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_id.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_id.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -591,6 +586,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_is.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_is.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_is.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_is.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_it.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_it.ts index 43c4c5612..254437cfa 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_it.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_it.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ja.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ja.ts index 4ad744909..c05ca1eed 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ja.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ja.ts @@ -164,18 +164,15 @@ Perform actions on checked applications - - + 選択したアプリケーションに対してアクションを実行します Actions - - + アクション Application Details - - + アプリケーションの詳細 Version: @@ -191,13 +188,11 @@ Shortcuts: - - + ショートカット: Cancel any actions for this application - - + このアプリケーションに対するアクションをキャンセルします ... @@ -205,8 +200,7 @@ Remove the selected application - - + 選択したアプリケーションを削除します Uninstall @@ -226,13 +220,7 @@ Open the browser page for the selected application - - - - - Open Browser - - + 選択したアプリケーションの説明用ページを開きます Automatically update the selected application when an update is available @@ -244,13 +232,11 @@ Browse For Apps - - + アプリケーションの説明 Home - - + ホーム Category @@ -258,13 +244,11 @@ App - - + アプリ Search Here - - + ここで検索 Search @@ -272,13 +256,11 @@ View Recent Additions - - + 最近追加されたアプリケーション Browse By Category - - + カテゴリーごとの表示 Size: @@ -306,8 +288,7 @@ Other Results - - + その他の検索結果 File @@ -403,63 +384,43 @@ Desktop Icons - - - - - Add - - - - - Remove - - + デスクトップアイコン Menu Icons - - + メニューアイコン Add (All Users) - - + 追加 (全ユーザー対象) Path Links - - + パスへのリンク File Associations - - + ファイルの関連付け Cancel Actions - - + アクションをキャンセルする Desktop/Menu - - + デスクトップ/メニュー Desktop - - + デスクトップ Menu - - + メニュー None - - + 無し Verify PBI Removal @@ -475,8 +436,7 @@ Install Now! - - + インストールする! Downgrade @@ -500,20 +460,39 @@ Start the application - - + アプリケーションを起動します Are you sure you wish to remove these applications? - このアプリケーションを削除しますか? + このアプリケーションを削除しますか? Installed: %1 - インストール済み: %1 + インストール済み: %1 + + + Add + 追加 + + + Remove + 削除 Available: %2 - 利用可能: %2 + 利用可能: %2 + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + @@ -532,19 +511,19 @@ Pending Download - ダウンロードを保留しています + ダウンロード待ち Pending Install - インストールを保留しています + インストール待ち Pending Removal - 削除を保留しています + 削除待ち Pending Update - アップデートを保留しています + アップデート待ち No applications to install from this list. @@ -616,7 +595,7 @@ Unknown - 不明 + 不明 Download Canceled diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ka.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ka.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ka.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ka.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ko.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ko.ts index 4b011add7..c48c58492 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ko.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ko.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lt.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lt.ts index 4ca08d2e8..88a1d1bc7 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lt.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lt.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -605,6 +600,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lv.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lv.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lv.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_lv.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mk.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mk.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mk.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mk.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mn.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mn.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mn.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mn.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ms.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ms.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ms.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ms.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mt.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mt.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mt.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_mt.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nb.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nb.ts index 10549c957..d2c40ea65 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nb.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nb.ts @@ -274,11 +274,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -602,6 +597,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ne.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ne.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ne.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ne.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nl.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nl.ts index 3b361a6f5..b087b5fb0 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nl.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_nl.ts @@ -5,774 +5,648 @@ ConfigDialog AppCafe Configuration - - + Instellingen van AppCafé Configuration - - + Instellingen Post-Install Actions - - + Acties na installatie Create Desktop Icons - - + Maak bureaubladpictogrammen Create Menu Icons - - + Maak menupictogrammen Register File Associations - - + Registreer bestandassociaties Create Path Links - - + Maak padkoppelingen Keep Downloaded Files - - + Behoud binnengehaalde bestanden Download Dir - - + Map voor binnengehaalde bestanden Download Directory - - + Map voor binnengehaalde bestanden Repositories - - + Pakketbronnen Add - - + Toevoegen ... - ... + ... Repository Mirrors - Spiegelservers voor pakketbron + Spiegelservers voor pakketbron Move Up - - + Omhoog verplaatsen Move Down - - + Omlaag verplaatsen Remove - - + Verwijderen Add PBI Repository - - + PBI-pakketbron toevoegen Repository File (*.rpo) - - + Pakketbronbestand (*.rpo) Repo Successfully Added - - + Pakketbron met succes toegevoegd This repo should be ready to use in a short time (depending on your internet connection speed). - - + Deze pakketbron zou zo dadelijk gebruiksklaar moeten zijn (afhankelijk van uw verbindingssnelheid). Repo Failure - - + Mislukking van pakketbron This repo could not be added. - - + Deze pakketbron kon niet worden toegevoegd. Please run the command '%1' manually to see the full error message. - - + Voer a.u.b. de opdracht '%1' uit in een terminalvenster, om de volledige foutmelding te zien. Verify Removal - - + Verwijdering verifiëren Are you sure you wish to remove this PBI repository? - - + Weet u zeker dat u deze PBI-pakketbron wil verwijderen? This repo could not be removed. - - + Deze pakketbron kon niet worden verwijderd. New Mirror URL - - + Internetadres van nieuwe spiegelserver Please enter the URL for the new repo mirror: - - + Voer a.u.b. het internetadres in van de nieuwe pakketbron-spiegelserver: Mirror Change Error - - + Fout bij veranderen van spiegelserver The full error is displayed in the AppCafe terminal output. - - + De volledige foutmelding wordt getoond in de terminaluitvoer van AppCafé. Select Download Directory - - + Kies map voor binnen te halen bestanden MainUI AppCafe - AppCafé + AppCafé Installed - Geïnstalleerd + Geïnstalleerd Program Name - Programmanaam + Programmanaam Version - - + Versie Status - Status + Status Check/Uncheck all applications - - + Vink alle toepassingen aan of uit All - - + Alle Perform actions on checked applications - - + Voer acties uit op aangevinkte toepassingen Actions - - + Acties Application Details - - + Bijzonderheden van toepassing Version: - Versie: + Versie: Author: - Auteur: + Auteur: License: - Licentie: + Licentie: Shortcuts: - - + Sneltoetsen: Cancel any actions for this application - - + Annuleer alle acties voor deze toepassing ... - ... + ... Remove the selected application - - + Verwijder de gekozen toepassing Uninstall - Deïnstalleren + Deïnstalleren Update the application to the most recent version - - + Werk de toepassing bij naar de meest recente versie Update the selected application - - + Werk de gekozen toepassing bij Update Application - - + Toepassing bijwerken Open the browser page for the selected application - - - - - Open Browser - - + Open de verkennerpagina voor de gekozen toepassing Automatically update the selected application when an update is available - - + Werk de gekozen toepassing automatisch bij wanneer er een bijgewerkt pakket voorhanden is Auto-Update - - + Automatisch bijwerken Browse For Apps - - + Zoek naar toepassingen Home - - + Thuismap Category - - + Categorie App - - + Toepassing Search Here - - + Zoek hier Search - Zoeken + Zoeken View Recent Additions - - + Bekijk recente toevoegingen Browse By Category - - + Zoek op categorie Size: - Grootte: + Grootte: Application Information - - + Informatie over de toepassing Platform: - Platform: + Platform: Type: - Type: + Type: Similar Applications - - + Vergelijkbare toepassingen Best Matches - Beste overeenkomsten + Beste overeenkomsten Other Results - - + Andere resultaten File - - + Bestand Configure - - + Instellen Import PBI List - - + Importeer PBI-lijst Export PBI List - - + Exporteer PBI-lijst &Quit - &Afsluiten + &Afsluiten Repositories - - + Pakketbronnen AppCafe Settings - - + Instellingen van AppCafé Error! - Fout. + Fout. The AppCafe must be run as root when in Warden compatibility mode - - + Het AppCafé moet als systeembeheerder worden gedraaid wanneer in Cipier-verenigbare modus The AppCafe must be started with user permissions! - - + Het AppCafé moet worden gestart met gebruikersrechten. The user must also be a part of the "operator" group - - + De gebruiker moet ook deel uitmaken van de 'bediener'-groep AppCafe Processes Running - - + AppCafé-processen draaiende The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + Het AppCafé heeft thans nog uit te voeren acties. Wilt u toch alle draaiende processen afbreken en afsluiten? Import PBI File List - - + Importeer PBI-bestandenlijst PBI List (*.pbilist) - - + PBI-lijst (*.pbilist) Import Error - - + Importeerfout There was an error importing the PBI list - - + Er is een fout opgetreden bij het invoeren van de PBI-lijst Please make sure that the file has not been corrupted and try again - - + Zorg er a.u.b. voor dat het bestand niet gecorrumpeerd is en probeer het opnieuw Export PBI File List - - + PBI-lijst exporteren Export Error - - + Exporteerfout There was an error exporting the PBI list - - + Er is een fout opgetreden bij het exporteren van de PBI-lijst Please make sure that you have the proper directory permissions and try again - - + Zorg er a.u.b. voor dat u de juiste maprechten heeft en probeer het opnieuw Update - Update + Bijwerken Desktop Icons - - + Bureaubladpictogrammen Add - - + Toevoegen Remove - - + Verwijderen Menu Icons - - + Menupictogrammen Add (All Users) - - + Toevoegen (alle gebruikers) Path Links - - + Padkoppelingen File Associations - - + Bestandassociaties Cancel Actions - - + Acties annuleren Desktop/Menu - - + Bureaublad/menu Desktop - - + Bureaublad Menu - - + Menu None - - + Geen Verify PBI Removal - - + Verifieer verwijdering van PBI Are you sure you wish to remove this application? - - + Weet u zeker dat u deze toepassing wil verwijderen? Are you sure you wish to remove these applications? - - + Weet u zeker dat u deze toepassingen wil verwijderen? Unknown - Onbekend + Onbekend Install Now! - - + Nu installeren. Downgrade - - + Afwaarderen naar vorige versie Searching the application database. Please Wait.... - - + Gegevensbank voor toepassingen aan het doorzoeken. Een ogenblik geduld a.u.b.. No Search Results Found for the term: %1 - - + Geen zoekresultaten gevonden voor de bewoording: %1 Installed: %1 - - + Geïnstalleerd: %1 Available: %2 - - + Beschikbaar: %2 Downloading file: - - + Bestand aan het binnenhalen: Downloading %1 file: - - + %1 bestand aan het binnenhalen: Start the application - - + Start de toepassing + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + PBIBackend Installing - Aan het installeren + Installeren Removing - - + Verwijderen Updating - Aan het bijwerken + Bijwerken Pending Download - - + Binnen te halen bestand in wachtrij Pending Install - - + Te installeren bestand in wachtrij Pending Removal - - + Te verwijderen bestand in wachtrij Pending Update - - + Bij te werken bestand in wachtrij No applications to install from this list. - - + Geen toepassingen om te installeren vanuit deze lijst. Results: - - + Resultaten: Unavailable Apps: %1 - - + Niet-beschikbare toepassingen: %1 Currently Installed: %1 - - + Thans geïnstalleerd: %1 Import Results - - + Importresultaten Are you sure you wish to install these applications? - - + Weet u zeker dat u deze toepassingen wil installeren? %1 Download Error: - - + %1 foutmelding bij binnenhalen: The PBI could not be downloaded, please try again later - - + De PBI kon niet worden binnengehaald, probeer het a.u.b. straks nog eens %1 Update Error: - - + %1 foutmelding voor bijwerken: The update process experienced an error and could not be completed - - + Het bijwerkproces onderging een fout en kon niet worden voltooid %1 Installation Error: - - + %1 installatiefout: The installation process experienced an error and could not be completed - - + Het installatieproces onderging een fout en kon niet worden voltooid %1 Removal Error: - - + %1 verwijderingsfout: The removal process experienced an error and could not be completed - - + Het verwijderingsproces onderging een fout en kon niet worden voltooid The download process experienced an error and could not be completed - - + Het binnenhaalproces onderging een fout en kon niet worden voltooid %1 PBI Error: - - + %1 PBI-fout: The process experienced an error and could not be completed - - + Het proces onderging een fout en kon niet worden voltooid Unknown - Onbekend + Onbekend Download Canceled - - + Binnenhalen geannuleerd Downloading: %1% - - {1%?} + Aan het binnenhalen: %1% Download Finished - - + Binnenhalen voltooid Download Starting - - + Binnenhalen vangt aan Install Canceled (will remove) - - + Installatie geannuleerd (zal verwijderen) Removal Canceled (will reinstall) - - + Verwijdering geannuleerd (zal herinstalleren) Update's cannot be canceled - - + Bijwerken kan niet worden geannuleerd Update Downloading: %1% - - {1%?} + Bijgewerkt pakket aan het binnenhalen: %1% Starting Update - - + Bijwerken vangt aan Starting Download - - + Binnenhalen vangt aan Update Available: %1 - - + Bijgewerkt pakket beschikbaar: %1 ProcessManager Unknown Error - - + Onbekende fout diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pa.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pa.ts index c03b7aed0..5d2abe669 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pa.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pa.ts @@ -271,11 +271,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -599,6 +594,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pl.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pl.ts index 0c976787d..377c9b0b3 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pl.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pl.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Otwórz stronę przeglądarki dla wybranej aplikacji - - Open Browser - Otwórz przeglądarkę - Automatically update the selected application when an update is available Automatycznie aktualizuj wybraną aplikację gdy aktualizacja jest dostępna @@ -486,6 +482,18 @@ Start the application Uruchom aplikację + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt_BR.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt_BR.ts index e0c2edfbf..172babd7d 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt_BR.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_pt_BR.ts @@ -29,22 +29,19 @@ Create Path Links - - + Criar atalhos Keep Downloaded Files - Manter arquivos baixados + Manter arquivos baixados Download Dir - - + Dir. de download Download Directory - - + Diretório de download Repositories @@ -60,7 +57,7 @@ Repository Mirrors - Espelhos de repositórios + Espelhos de repositórios Move Up @@ -84,7 +81,7 @@ Repo Successfully Added - Repositório adicionado com sucesso + Repositório adicionado com sucesso This repo should be ready to use in a short time (depending on your internet connection speed). @@ -92,25 +89,23 @@ Repo Failure - - + Falha do repositório This repo could not be added. - Este repositório não pôde ser adicionado. + Este repositório não pôde ser adicionado. Please run the command '%1' manually to see the full error message. - Por favor execute o manualmente o comando '%1' para ver a mensagem de erro completa. + Por favor execute o manualmente o comando '%1' para ver a mensagem completa de erro. Verify Removal - - + Verificar remoção Are you sure you wish to remove this PBI repository? - Tem certeza que deseja remover este repositório PBI? + Tem certeza que deseja remover este repositório PBI? This repo could not be removed. @@ -118,25 +113,23 @@ New Mirror URL - Nova URL de espelho + Nova URL de espelho Please enter the URL for the new repo mirror: - Por favor, digite a URL para o novo espelho de repositório: + Por favor, digite a URL para o novo espelho de repositório: Mirror Change Error - Erro ao mudar o espelho + Erro ao mudar espelho The full error is displayed in the AppCafe terminal output. - - + A mensagem completa de erro é exibida na saída do terminal do AppCafe Select Download Directory - - + Selecione o diretório de download @@ -159,7 +152,7 @@ Status - Estado + Estado Check/Uncheck all applications @@ -171,7 +164,7 @@ Perform actions on checked applications - Executar ações em aplicativos marcados + Executar ações em aplicativos marcados Actions @@ -199,7 +192,7 @@ Cancel any actions for this application - Cancelar todas as ações para este aplicativo + Cancelar todas as ações para este aplicativo ... @@ -207,7 +200,7 @@ Remove the selected application - Remover o aplicativo selecionado + Remover o aplicativo selecionado Uninstall @@ -215,28 +208,23 @@ Update the application to the most recent version - Atualizar o aplicativo para a versão mais recente + Atualizar o aplicativo para a versão mais recente Update the selected application - Atualizar o aplicativo selecionado + Atualizar o aplicativo selecionado Update Application - Atualizar o aplicativo + Atualizar aplicativo Open the browser page for the selected application - - - - - Open Browser - Abrir navegador + Abrir a página de navegação para o aplicativo selecionado Automatically update the selected application when an update is available - Atualizar automaticamente o aplicativo selecionado quando a atualização estiver disponível + Atualiza automaticamente o aplicativo selecionado quando a atualização estiver disponível Auto-Update @@ -244,12 +232,11 @@ Browse For Apps - - + Procurar aplicativos Home - Página inicial + Início Category @@ -257,7 +244,7 @@ App - Aplicativos + Aplicativos Search Here @@ -273,7 +260,7 @@ Browse By Category - Navegar por categoria + Procurar por categoria Size: @@ -293,11 +280,11 @@ Similar Applications - Aplicativos similares + Aplicativos similares Best Matches - Melhores resultados + Melhores resultados Other Results @@ -309,15 +296,15 @@ Configure - Configurar + Configurar Import PBI List - Importar lista PBI + Importar lista PBI Export PBI List - Exportar lista PBI + Exportar lista PBI &Quit @@ -337,7 +324,7 @@ The AppCafe must be run as root when in Warden compatibility mode - O AppCafe deve ser executado como root quando estiver em modo de compatibilidade com Warden + O AppCafe deve ser executado como root quando estiver em modo de compatibilidade com Warden The AppCafe must be started with user permissions! @@ -345,63 +332,55 @@ The user must also be a part of the "operator" group - O usuário também deve fazer parte do grupo "operator" + O usuário também deve fazer parte do grupo "operator" AppCafe Processes Running - Processos do AppCafe em execução + Processos do AppCafe em execução The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + O AppCafe tem ações pendentes no momento. Deseja cancelar todos os processos em execução e sair de qualquer forma? Import PBI File List - - + Importar arquivo de lista PBI PBI List (*.pbilist) - - + Lista PBI (*.pbilist) Import Error - Erro ao importar + Erro ao importar There was an error importing the PBI list - - + Ocorreu um erro ao importar a lista PBI Please make sure that the file has not been corrupted and try again - - + Por favor, certifique-se de que o arquivo não está corrompido e tente novamente Export PBI File List - - + Exportar arquivo de lista PBI Export Error - Erro ao exportar + Erro ao exportar There was an error exporting the PBI list - - + Ocorreu um erro ao exportar a lista PBI Please make sure that you have the proper directory permissions and try again - - + Por favor, certifique-se de que você tem as permissões adequadas para o diretório e tente novamente Update - Atualizar + Atualizar Desktop Icons @@ -417,7 +396,7 @@ Menu Icons - Ícones de Menu + Ícones de Menu Add (All Users) @@ -425,12 +404,11 @@ Path Links - - + Atalhos File Associations - Associações de arquivo + Associações de arquivo Cancel Actions @@ -450,12 +428,11 @@ None - Nenhum + Nenhum Verify PBI Removal - - + Verificar a remoção do PBI Are you sure you wish to remove this application? @@ -475,16 +452,15 @@ Downgrade - - + Desatualizar Searching the application database. Please Wait.... - Buscando dados do aplicativo. Por favor aguarde... + Pesquisando dados do aplicativo. Por favor aguarde... No Search Results Found for the term: %1 - Nenhum resultado de pesquisa foi encontrado para o termo: %1 + Nenhum resultado de pesquisa foi encontrado para o termo: %1 Installed: %1 @@ -496,16 +472,27 @@ Downloading file: - Baixando arquivo: + Baixando arquivo: + + + Start the application + Iniciar o aplicativo Downloading %1 file: - - + Baixando arquivo de %1: - Start the application - Iniciar o aplicativo + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + @@ -516,7 +503,7 @@ Removing - Removendo + Removendo Updating @@ -524,19 +511,19 @@ Pending Download - Downloads pendentes + Download pendente Pending Install - Instalações pendentes + Instalação pendente Pending Removal - Remoções pendentes + Remoção pendente Pending Update - Atualizações pendentes + Atualização pendente No applications to install from this list. @@ -548,20 +535,19 @@ Unavailable Apps: %1 - Aplicativos indisponíveis: %1 + Aplicativos indisponíveis: %1 Currently Installed: %1 - Instalados no momento: %1 + Instalados no momento: %1 Import Results - - + Importar resultados Are you sure you wish to install these applications? - Tem certeza que deseja instalar estes aplicativos? + Tem certeza que deseja instalar estes aplicativos? %1 Download Error: @@ -570,7 +556,7 @@ The PBI could not be downloaded, please try again later - O PBI não pôde ser baixado, por favor tente novamente + O PBI não pôde ser baixado, por favor tente novamente %1 Update Error: @@ -579,8 +565,7 @@ The update process experienced an error and could not be completed - - + O processo de atualização apresentou um erro e não pôde ser concluído %1 Installation Error: @@ -589,8 +574,7 @@ The installation process experienced an error and could not be completed - - + O processo de instalação apresentou um erro e não pôde ser concluído %1 Removal Error: @@ -599,13 +583,11 @@ The removal process experienced an error and could not be completed - - + O processo de remoção apresentou um erro e não pôde ser concluído The download process experienced an error and could not be completed - - + O processo de download apresentou um erro e não pôde ser concluído %1 PBI Error: @@ -614,8 +596,7 @@ The process experienced an error and could not be completed - - + O processo apresentou um erro e não pôde ser concluído Unknown @@ -623,50 +604,47 @@ Download Canceled - Download cancelado + Download cancelado Downloading: %1% - Baixando: %1% + Baixando: %1% Download Finished - - + O download terminou Download Starting - - + Iniciando download Install Canceled (will remove) - Instalação cancelada (será removido) + Instalação cancelada (irá remover) Removal Canceled (will reinstall) - Remoção cancelada (será reinstalado) + Remoção cancelada (irá reinstalar) Update's cannot be canceled - - + A atualização não pode ser cancelada Update Downloading: %1% - Baixando atualização: %1% + Baixando atualização: %1% Starting Update - Iniciando atualização + Iniciando a atualização Starting Download - Iniciando download + Iniciando o download Update Available: %1 - Atualização disponível: %1 + Atualização disponível: %1 diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ro.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ro.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ro.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ro.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ru.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ru.ts index 1293f7a1a..6024cb53c 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ru.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ru.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sa.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sa.ts index 7aacaccf5..7af3ae240 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sa.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sa.ts @@ -571,11 +571,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sk.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sk.ts index 02ee1e276..54d216be4 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sk.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sk.ts @@ -271,11 +271,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -599,6 +594,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sl.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sl.ts index a5ac1187e..6091dac98 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sl.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sl.ts @@ -271,11 +271,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -599,6 +594,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sr.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sr.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sr.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sr.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sv.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sv.ts index bce63ce92..73204b0cb 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sv.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sv.ts @@ -5,774 +5,648 @@ ConfigDialog AppCafe Configuration - - + AppCafe konfiguration Configuration - - + Konfiguration Post-Install Actions - - + Åtgärder efter installation Create Desktop Icons - - + Skapa skrivbordsikoner Create Menu Icons - - + Skapa menyikoner Register File Associations - - + Registrera filassociationer Create Path Links - - + Skapa mapp länkar Keep Downloaded Files - - + Behåll nerladdade filer Download Dir - - + Nerladdningsmapp Download Directory - - + Nerladdningsmapp Repositories - - + Arkiv Add - - + Lägg till ... - ... + ... Repository Mirrors - Repositorie Speglar + Arkiv mirrors Move Up - - + Gå upp Move Down - - + Gå ner Remove - - + Ta bort Add PBI Repository - - + Lägg till PBI arkiv Repository File (*.rpo) - - + Arkivfil (*.rpo) Repo Successfully Added - - + Arkivet lades till This repo should be ready to use in a short time (depending on your internet connection speed). - - + Detta arkiv borde vara redo att användas inom en snar framtid (beroende på din internetanslutning). Repo Failure - - + Arkivfel This repo could not be added. - - + Detta arkiv kunde inte läggas till. Please run the command '%1' manually to see the full error message. - - + Var snäll kör kommandot '%1' manuellt för att se hela felmeddelandet. Verify Removal - - + Verifiera borttagning Are you sure you wish to remove this PBI repository? - - + Är du säker på att du vill ta bort detta PBI arkiv? This repo could not be removed. - - + Detta arkiv kunde inte tas bort. New Mirror URL - - + Ny spegel URL Please enter the URL for the new repo mirror: - - + Var god ange URL för den nya arkivspegeln: Mirror Change Error - - + Fel vid byte av spegel The full error is displayed in the AppCafe terminal output. - - + Hela felmeddelandet visas i AppCafes terminal output. Select Download Directory - - + Välj nerladdningsmapp MainUI AppCafe - AppCafe + AppCafe Installed - Installerade + Installerade Program Name - Program Namn + Programnamn Version - - + Version Status - Status + Status Check/Uncheck all applications - - + Kryssa i/Kryssa ur alla program All - - + Alla Perform actions on checked applications - - + Utför åtgärder på valda program Actions - - + Åtgärder Application Details - - + Programdetaljer Version: - Version: + Version: Author: - Skapare: + Skapare: License: - Licens: + Licens: Shortcuts: - - + Genvägar: Cancel any actions for this application - - + Avbryt alla åtgärder för detta program ... - ... + ... Remove the selected application - - + Ta bort valt program Uninstall - Avinstallera + Avinstallera Update the application to the most recent version - - + Uppdatera programmet till senaste versionen Update the selected application - - + Uppdatera valt program Update Application - - + Uppdatera program Open the browser page for the selected application - - - - - Open Browser - - + Öppna webbsidan för valt program Automatically update the selected application when an update is available - - + Uppdatera valt program automatiskt när det finns en uppdatering tillgänglig Auto-Update - - + Auto uppdatera Browse For Apps - - + Bläddra efter Appar Home - - + Hem Category - - + Kategori App - - + App Search Here - - + Sök här Search - Sök + Sök View Recent Additions - - + Visa nyligen tillagda Browse By Category - - + Bläddra efter kategori Size: - Storlek: + Storlek: Application Information - - + Programinformation Platform: - Plattform: + Plattform: Type: - Typ: + Typ: Similar Applications - - + Liknande program Best Matches - Bästa Träffar + Bästa träffarna Other Results - - + Andra resultat File - - + Fil Configure - - + Konfiguera Import PBI List - - + Importera PBI lista Export PBI List - - + Exportera PBI lista &Quit - &Avsluta + &Avsluta Repositories - - + Arkiv AppCafe Settings - - + AppCafe inställningar Error! - Fel! + Fel! The AppCafe must be run as root when in Warden compatibility mode - - + AppCafe måste köras som root i Warden kompatibilitetsläge The AppCafe must be started with user permissions! - - + AppCafe måste startas med användarrättigheter! The user must also be a part of the "operator" group - - + Användaren måste också vara med i "operator" gruppen AppCafe Processes Running - - + AppCafe processer körandes The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + AppCafe har åtgärder väntandes. Vill du avbryta alla pågående processer och avsluta ändå? Import PBI File List - - + Importera PBI fillista PBI List (*.pbilist) - - + PBI lista (*.pbilist) Import Error - - + Importeringsfel There was an error importing the PBI list - - + Det uppstod ett fel vid importeringen av PBI listan Please make sure that the file has not been corrupted and try again - - + Var god kontrollera att filen inte har blivit korrupt och försök igen Export PBI File List - - + Exportera PBI fillista Export Error - - + Exporteringsfel There was an error exporting the PBI list - - + Det uppstod ett fel vid exporten av PBI listan Please make sure that you have the proper directory permissions and try again - - + Vad god kontrollera att du har korrekta mapprättigheter och försök igen Update - Uppdatera + Uppdatera Desktop Icons - - + Skrivbordsikoner Add - - + Lägg till Remove - - + Ta bort Menu Icons - - + Menyikoner Add (All Users) - - + Lägg till (Alla användare) Path Links - - + Mapplänkar File Associations - - + Filassociationer Cancel Actions - - + Avbryt åtgärder Desktop/Menu - - + Skrivbord/Meny Desktop - - + Skrivbord Menu - - + Meny None - - + Inget Verify PBI Removal - - + Verifiera PBI borttagning Are you sure you wish to remove this application? - - + Är du säker på att du vill ta bort detta program? Are you sure you wish to remove these applications? - - + Är du säker på att du vill ta bort dessa program? Unknown - Okänd + Okänd Install Now! - - + Installera nu! Downgrade - - + Nedgradera Searching the application database. Please Wait.... - - + Söker i programdatabasen. Vad god vänta... No Search Results Found for the term: %1 - - + Inga sökresultat hittades för: %1 Installed: %1 - - + Installerade: %1 Available: %2 - - + Tillgänglig: %2 Downloading file: - - + Laddar ner fil: Downloading %1 file: - - + Laddar ner %1 fil: Start the application - - + Starta programmet + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + PBIBackend Installing - Installerar + Installerar Removing - - + Tar bort Updating - Uppdaterar + Uppdaterar Pending Download - - + Väntar på nedladdning Pending Install - - + Väntar på installation Pending Removal - - + Väntar på borttagning Pending Update - - + Väntar på uppdatering No applications to install from this list. - - + Inga program att installera från denna listan. Results: - - + Resultat: Unavailable Apps: %1 - - + Otillgängliga appar: %1 Currently Installed: %1 - - + Installerade just nu: %1 Import Results - - + Importera resultat Are you sure you wish to install these applications? - - + Är du säker på att du vill installera dessa program? %1 Download Error: - - + %1 Nerladdningsfel: The PBI could not be downloaded, please try again later - - + PBIn kunde inte laddas ner, vad god försök igen senare %1 Update Error: - - + %1 Uppdateringsfel: The update process experienced an error and could not be completed - - + Uppdateringsprocessen stötte på ett fel och kunde inte slutföras %1 Installation Error: - - + %1 Installationsfel: The installation process experienced an error and could not be completed - - + Installationsprocessen stötte på ett fel och kunde inte slutföras %1 Removal Error: - - + %1 Borttagningsfel: The removal process experienced an error and could not be completed - - + Borttagningsprocessen stötte på ett fel och kunde inte slutföras The download process experienced an error and could not be completed - - + Nerladdningsprocessen stötte på ett fel och kunde inte slutföras %1 PBI Error: - - + %1 PBI fel: The process experienced an error and could not be completed - - + Processen stötte på ett fel och kunde inte slutföras Unknown - Okänd + Okänt Download Canceled - - + Nerladdning avbruten Downloading: %1% - - {1%?} + Laddar ner: %1% Download Finished - - + Nerladdning slutförd Download Starting - - + Nerladdning startar Install Canceled (will remove) - - + Installationen avbruten (kommer ta bort) Removal Canceled (will reinstall) - - + Borttagning avbruten (kommer installera om) Update's cannot be canceled - - + Uppdateringar kan inte avbrytas Update Downloading: %1% - - {1%?} + Uppdatering laddas ner: %1% Starting Update - - + Startar uppdatering Starting Download - - + Startar nerladdning Update Available: %1 - - + Uppdatering tillgänglig: %1 ProcessManager Unknown Error - - + Okänt fel diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sw.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sw.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sw.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_sw.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ta.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ta.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ta.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_ta.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tg.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tg.ts index 7f917ff12..f9e87ff95 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tg.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tg.ts @@ -266,11 +266,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -588,6 +583,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_th.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_th.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_th.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_th.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tr.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tr.ts index 05eb6ec8f..6a1529ab1 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tr.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_tr.ts @@ -265,11 +265,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -586,6 +581,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uk.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uk.ts index 550fd78ab..07de0cd49 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uk.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uk.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Відкрити сторінку огляду для обраного додатку - - Open Browser - Відкрити огляд - Automatically update the selected application when an update is available Автоматично оновлювати обраний додаток за наявності нової версії @@ -486,6 +482,18 @@ Start the application Запустити додаток + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uz.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uz.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uz.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_uz.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_vi.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_vi.ts index ea479f4fe..06bfc5066 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_vi.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_vi.ts @@ -222,10 +222,6 @@ Open the browser page for the selected application Mở trang trình duyệt cho các ứng dụng được chọn - - Open Browser - Mở trình duyệt - Automatically update the selected application when an update is available Tự động cập nhật các ứng dụng được chọn khi có bản cập nhật @@ -486,6 +482,18 @@ Start the application Bắt đầu ứng dụng + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_CN.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_CN.ts index ce2e6dd99..21dfab1f9 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_CN.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_CN.ts @@ -25,749 +25,628 @@ Register File Associations - - + 注册文件关联 Create Path Links - - + 创建路径链接 Keep Downloaded Files - - + 保存已下载文件 Download Dir - - + 下载目录 Download Directory - - + 下载目录 Repositories - - + 软件仓库 Add - - + 添加 ... - ... + ... Repository Mirrors - 仓库镜像 + 仓库镜像 Move Up - - + 向上移动 Move Down - - + 向下移动 Remove - - + 删除 Add PBI Repository - - + 添加PBI软件仓库 Repository File (*.rpo) - - + 软件仓库文件(*.rpo) Repo Successfully Added - - + 软件仓库成功添加 This repo should be ready to use in a short time (depending on your internet connection speed). - - + 此软件仓库应该很快就可以使用了(要依你的网络连接速度而定)。 Repo Failure - - + 软件仓库失败 This repo could not be added. - - + 此软件仓库无法被添加。 Please run the command '%1' manually to see the full error message. - - + 请手动运行命令'%1'查看全部错误信息。 Verify Removal - - + 确认删除 Are you sure you wish to remove this PBI repository? - - + 你确定删除些PBI软件仓库? This repo could not be removed. - - + 此软件仓库无法被删除。 New Mirror URL - - + 新镜像URL Please enter the URL for the new repo mirror: - - + 请为新软件仓库镜像输入URL: Mirror Change Error - - + 镜像更改错误 The full error is displayed in the AppCafe terminal output. - - + 全部错误信息显示在了AppCafe终端输出上。 Select Download Directory - - + 选择下载目录 MainUI AppCafe - AppCafe + AppCafe Installed - 已安装 + 已安装 Program Name - 程序名称 + 程序名称 Version - - + 版本 Status - 状态 + 状态 Check/Uncheck all applications - - + 点选/取消选择所有程序 All - - + 全部 Perform actions on checked applications - - + 对已点选的程序做出处理 Actions - - + 动作 Application Details - - + 程序细节 Version: - 版本: + 版本: Author: - 作者: + 作者: License: - 许可证: + 许可证: Shortcuts: - - + 捷径: Cancel any actions for this application - - + 取消此程序的任何动作 ... - ... + ... Remove the selected application - - + 删除选定的程序 Uninstall - 卸载 + 卸载 Update the application to the most recent version - - + 将程序更新到最新版本 Update the selected application - - + 更新选定的程序 Update Application - - + 更新程序 Open the browser page for the selected application - - - - - Open Browser - - + 打开选定程序的浏览器页面 Automatically update the selected application when an update is available - - + 当选定的程序有更新时自动更新 Auto-Update - - + 自动更新 Browse For Apps - - + 浏览程序 Home - - + 主目录 Category - - + 类型 App - - + 程序 Search Here - - + 在此搜索 Search - 搜索 + 搜索 View Recent Additions - - + 浏览最近新添加的程序 Browse By Category - - + 以类型浏览 Size: - 大小: + 大小: Application Information - - + 程序信息 Platform: - 平台: + 平台: Type: - 类型: + 类型: Similar Applications - - + 相似的程序 Best Matches - 最匹配的 + 最匹配的 Other Results - - + 其它结果 File - - + 文件 Configure - - + 配置 Import PBI List - - + 导入PBI列表 Export PBI List - - + 导出PBI列表 &Quit - 退出(&Q) + 退出(&Q) Repositories - - + 软件仓库 AppCafe Settings - - + AppCafe设置 Error! - 错误! + 错误! The AppCafe must be run as root when in Warden compatibility mode - - + 在兼容Warden模式下,AppCafe必须以根用户运行 The AppCafe must be started with user permissions! - - + AppCafe必须以用户权限启动! The user must also be a part of the "operator" group - - + 用户必须是"operator"组成员 AppCafe Processes Running - - + AppCafe进程正在运行 The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + AppCafe当前有正在等待的动作。你一定要取消当前所有运行进程并退出吗? Import PBI File List - - + 导入PBI文件列表 PBI List (*.pbilist) - - + PBI列表(*.pbilist) Import Error - - + 导入错误 There was an error importing the PBI list - - + 导入PBI列表时发生错误 Please make sure that the file has not been corrupted and try again - - + 请确保文件未崩溃并重试 Export PBI File List - - + 导出PBI文件列表 Export Error - - + 导出错误 There was an error exporting the PBI list - - + 导出PBI列表时发生错误 Please make sure that you have the proper directory permissions and try again - - + 请确认你有相应目录的权限并重试 Update - 更新 + 更新 Desktop Icons - - + 桌面图标 Add - - + 添加 Remove - - + 删除 Menu Icons - - + 菜单图标 Add (All Users) - - + 添加(所有用户) Path Links - - + 路径链接 File Associations - - + 文件关联 Cancel Actions - - + 取消动作 Desktop/Menu - - + 桌面/菜单 Desktop - - + 桌面 Menu - - + 菜单 None - - + Verify PBI Removal - - + 确认PBI删除 Are you sure you wish to remove this application? - - + 你确定删除此程序? Are you sure you wish to remove these applications? - - + 你确定删除这些程序? Unknown - 未知 + 未知 Install Now! - - + 现在安装! Downgrade - - + 降级 Searching the application database. Please Wait.... - - + 正在搜索程序数据库。请等待…… No Search Results Found for the term: %1 - - + 未发现关于关键词:%1的搜索结果 Installed: %1 - - + 已安装:%1 Available: %2 - - + 可用:%2 Downloading file: - - + 正在下载文件: Downloading %1 file: - - + 正在下载文件%1: Start the application - - + 启动程序 + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + PBIBackend Installing - 安装中 + 安装中 Removing - - + 正在删除 Updating - 更新 + 正在更新 Pending Download - - + 等待下载 Pending Install - - + 等待安装 Pending Removal - - + 等待删除 Pending Update - - + 等待更新 No applications to install from this list. - - + 此列表中没有要安装的程序 Results: - - + 结果: Unavailable Apps: %1 - - + 不可用的程序:%1 Currently Installed: %1 - - + 当前安装的:%1 Import Results - - + 导入结果 Are you sure you wish to install these applications? - - + 你确定要安装这些程序? %1 Download Error: - - + %1下载错误: The PBI could not be downloaded, please try again later - - + 此PBI文件无法被下载,请稍后再尝试 %1 Update Error: - - + %1更新错误: The update process experienced an error and could not be completed - - + 更新进程发生错误,无法完成 %1 Installation Error: - - + %1安装错误: The installation process experienced an error and could not be completed - - + 安装进程发生错误,无法完成 %1 Removal Error: - - + %1删除错误: The removal process experienced an error and could not be completed - - + 删除进程发生错误,无法完成 The download process experienced an error and could not be completed - - + 下载进程发生错误,无法完成 %1 PBI Error: - - + %1PBI错误: The process experienced an error and could not be completed - - + 此进程发生错误,无法完成 Unknown - 未知 + 未知 Download Canceled - - + 下载已取消 Downloading: %1% - - {1%?} + 正在下载:%1% Download Finished - - + 下载已完成 Download Starting - - + 下载已开始 Install Canceled (will remove) - - + 下载已取消(将删除) Removal Canceled (will reinstall) - - + 删除已取消(将重装) Update's cannot be canceled - - + 更新无法被取消 Update Downloading: %1% - - {1%?} + 正在下载更新:%1% Starting Update - - + 开始更新 Starting Download - - + 开始下载 Update Available: %1 - - + 可用更新:%1 ProcessManager Unknown Error - - + 未知错误 diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_HK.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_HK.ts index 84a57592e..631732841 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_HK.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_HK.ts @@ -5,161 +5,131 @@ ConfigDialog AppCafe Configuration - - + AppCafe 設定 Configuration - - + 設定 Post-Install Actions - - + 安裝後動作 Create Desktop Icons - - + 建立桌面圖示 Create Menu Icons - - + 建立選單圖示 Register File Associations - - + 註冊檔案關聯 Create Path Links - - + 建立路徑連結 Keep Downloaded Files - - + 保留下載檔案 Download Dir - - + 下載目錄 Download Directory - - + 下載目錄 Repositories - - + 套件庫 Add - - + 添加 ... - ... + ... Repository Mirrors - 軟件庫鏡像站 + 套件庫鏡像站 Move Up - - + 上移 Move Down - - + 下移 Remove - - + 移除 Add PBI Repository - - + 添加 PBI 套件庫 Repository File (*.rpo) - - + 套件庫檔案 (*.rpo) Repo Successfully Added - - + 成功添加套件庫 This repo should be ready to use in a short time (depending on your internet connection speed). - - + 此套件庫會在短時間內生效 (視乎您的互聯網連線速度)。 Repo Failure - - + 套件庫失敗 This repo could not be added. - - + 無法添加套件庫。 Please run the command '%1' manually to see the full error message. - - + 請手動執行 %1 指令以檢視完整出錯訊息。 Verify Removal - - + 驗證移除動作 Are you sure you wish to remove this PBI repository? - - + 是否確定移除此 PBI 套件庫? This repo could not be removed. - - + 無法移除此套件庫。 New Mirror URL - - + 新鏡像站網址 Please enter the URL for the new repo mirror: - - + 請輸入新套件庫鏡像站的網址: Mirror Change Error - - + 更改鏡像站時出錯 The full error is displayed in the AppCafe terminal output. - - + 完整出錯資訊顯示在 AppCafe 終端機輸出。 Select Download Directory - - + 選取下載目錄 @@ -170,176 +140,147 @@ Installed - 已安裝 + 已安裝 Program Name - 程式名稱 + 程式名稱 Version - - + 版本 Status - 狀態 + 狀態 Check/Uncheck all applications - - + 勾選/取消勾選所有應用程式 All - - + 全部 Perform actions on checked applications - - + 在勾選的應用程式進行動作 Actions - - + 動作 Application Details - - + 應用程式詳情 Version: - 版本: + 版本: Author: - 作者: + 作者: License: - 授權: + 授權條款: Shortcuts: - - + 快捷鍵: Cancel any actions for this application - - + 取消此應用程式所有動作 ... - ... + ... Remove the selected application - - + 移除所選應用程式 Uninstall - 卸除 + 卸除 Update the application to the most recent version - - + 將應用程式更新為最新版本 Update the selected application - - + 更新所選應用程式 Update Application - - + 更新應用程式 Open the browser page for the selected application - - - - - Open Browser - - + 為所選應用程式開啟瀏覽頁 Automatically update the selected application when an update is available - - + 當有更新提供時自動更新所選應用程式 Auto-Update - - + 自動更新 Browse For Apps - - + 瀏覽應用程式 Home - - + Category - - + 分類 App - - + 應用程式 Search Here - - + 在此搜尋 Search - 搜尋 + 搜尋 View Recent Additions - - + 檢視最近新增項目 Browse By Category - - + 按分類瀏覽 Size: - 大小: + 大小: Application Information - - + 應用程式資訊 Platform: - 平台: + 平台: Type: - 類型: + 類型: Similar Applications - - + 相似應用程式 Best Matches @@ -347,432 +288,365 @@ Other Results - - + 其他結果 File - - + 檔案 Configure - - + 設定 Import PBI List - - + 匯入 PBI 清單 Export PBI List - - + 匯出 PBI 清單 &Quit - 結束(&Q) + 結束(&Q) Repositories - - + 套件庫 AppCafe Settings - - + AppCafe 設定 Error! - 出錯! + 出錯! The AppCafe must be run as root when in Warden compatibility mode - - + 當在 Warden 兼容模式,AppCafe 必須以 root 身分運行 The AppCafe must be started with user permissions! - - + AppCafe 必須以用戶權限啟動! The user must also be a part of the "operator" group - - + 用戶必須屬於「operator」羣組 AppCafe Processes Running - - + 正在運行 AppCafe 程序 The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + AppCafe 當前有待處理的動作。是否確定取消所有運行中的程序並結束? Import PBI File List - - + 匯入 PBI 檔案清單 PBI List (*.pbilist) - - + PBI 清單 (*.pbilist) Import Error - - + 匯入出錯 There was an error importing the PBI list - - + 匯入 PBI 清單時出錯 Please make sure that the file has not been corrupted and try again - - + 請確定檔案並未毀壞,然後再試 Export PBI File List - - + 匯出 PBI 檔案清單 Export Error - - + 匯出出錯 There was an error exporting the PBI list - - + 匯出 PBI 清單時出錯 Please make sure that you have the proper directory permissions and try again - - + 請確定有合適目錄權限並再試 Update - 更新 + 更新 Desktop Icons - - + 桌面圖示 Add - - + 添加 Remove - - + 移除 Menu Icons - - + 選單圖示 Add (All Users) - - + 添加 (所有用戶) Path Links - - + 路徑連結 File Associations - - + 檔案關聯 Cancel Actions - - + 取消動作 Desktop/Menu - - + 桌面/選單 Desktop - - + 桌面 Menu - - + 選單 None - - + Verify PBI Removal - - + 驗證移除 PBI 動作 Are you sure you wish to remove this application? - - + 是否確定要移除此應用程式? Are you sure you wish to remove these applications? - - + 是否確定要移除此等應用程式? Unknown - 不詳 + 不詳 Install Now! - - + 立即安裝! Downgrade - - + 降級 Searching the application database. Please Wait.... - - + 正在搜尋應用程式資料庫。請稍候.... No Search Results Found for the term: %1 - - + 搜尋項目沒有結果:%1 Installed: %1 - - + 已安裝:%1 Available: %2 - - + 可提供:%2 Downloading file: - - + 正在下載檔案: Downloading %1 file: - - + 正在下載 %1 檔案: Start the application - - + 啟動應用程式 + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + PBIBackend Installing - 安裝 + 正在安裝 Removing - - + 正在移除 Updating - 更新 + 正在更新 Pending Download - - + 待處理下載 Pending Install - - + 待處理安裝 Pending Removal - - + 待處理移除 Pending Update - - + 待處理更新 No applications to install from this list. - - + 此清單無應用程式要安裝。 Results: - - + 結果: Unavailable Apps: %1 - - + 未提供應用程式:%1 Currently Installed: %1 - - + 當前已安裝:%1 Import Results - - + 匯入結果 Are you sure you wish to install these applications? - - + 確定要安裝此等應用程式嗎? %1 Download Error: - - + %1 下載出錯: The PBI could not be downloaded, please try again later - - + 無法下載 PBI,請稍後再試 %1 Update Error: - - + %1 更新出錯: The update process experienced an error and could not be completed - - + 更新程序出錯,無法完成 %1 Installation Error: - - + %1 安裝出錯: The installation process experienced an error and could not be completed - - + 安裝程序出錯,無法完成 %1 Removal Error: - - + %1 移除出錯: The removal process experienced an error and could not be completed - - + 移除程序出錯,無法完成 The download process experienced an error and could not be completed - - + 下載程序出錯,無法完成 %1 PBI Error: - - + %1 PBI 出錯: The process experienced an error and could not be completed - - + 處理程序出錯,無法完成 Unknown - 不詳 + 不詳 Download Canceled - - + 取消下載 Downloading: %1% - - {1%?} + 正在下載:%1% Download Finished - - + 完成下載 Download Starting - - + 開始下載 Install Canceled (will remove) - - + 取消安裝 (會移除) Removal Canceled (will reinstall) - - + 取消移除 (會重新安裝) Update's cannot be canceled - - + 無法取消更新 Update Downloading: %1% - - {1%?} + 正在下載更新:%1% Starting Update - - + 開始更新 Starting Download - - + 開始下載 Update Available: %1 - - + 有更新提供:%1 ProcessManager Unknown Error - - + 不明錯誤 diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_TW.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_TW.ts index 1e9f85b6e..55613ba17 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_TW.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zh_TW.ts @@ -5,168 +5,138 @@ ConfigDialog AppCafe Configuration - - + AppCafe 設定 Configuration - - + 設定 Post-Install Actions - - + 安裝後動作 Create Desktop Icons - - + 建立桌面圖示 Create Menu Icons - - + 建立選單圖示 Register File Associations - - + 註冊檔案關聯 Create Path Links - - + 建立路徑連結 Keep Downloaded Files - - + 保留下載檔案 Download Dir - - + 下載目錄 Download Directory - - + 下載目錄 Repositories - - + 套件庫 Add - - + 添加 ... - ... + ... Repository Mirrors - 程式庫鏡像站 + 套件庫鏡像站 Move Up - - + 上移 Move Down - - + 下移 Remove - - + 移除 Add PBI Repository - - + 添加 PBI 套件庫 Repository File (*.rpo) - - + 套件庫檔案 (*.rpo) Repo Successfully Added - - + 成功添加套件庫 This repo should be ready to use in a short time (depending on your internet connection speed). - - + 此套件庫會在短時間內生效 (視乎您的網際網路連線速度)。 Repo Failure - - + 套件庫失敗 This repo could not be added. - - + 無法添加套件庫。 Please run the command '%1' manually to see the full error message. - - + 請手動執行 %1 指令以檢視完整出錯訊息。 Verify Removal - - + 驗證移除動作 Are you sure you wish to remove this PBI repository? - - + 是否確定移除此 PBI 套件庫? This repo could not be removed. - - + 無法移除此套件庫。 New Mirror URL - - + 新鏡像站網址 Please enter the URL for the new repo mirror: - - + 請輸入新套件庫鏡像站的網址: Mirror Change Error - - + 變更鏡像站時出錯 The full error is displayed in the AppCafe terminal output. - - + 完整出錯資訊顯示在 AppCafe 終端機輸出。 Select Download Directory - - + 選取下載目錄 MainUI AppCafe - AppCafe + AppCafe Installed @@ -174,72 +144,63 @@ Program Name - 程式名稱 + 程式名稱 Version - - + 版本 Status - 狀態 + 狀態 Check/Uncheck all applications - - + 勾選/取消勾選全部應用程式 All - - + 全部 Perform actions on checked applications - - + 在勾選的應用程式進行動作 Actions - - + 動作 Application Details - - + 應用程式詳情 Version: - 版本: + 版本: Author: - 作者: + 作者: License: - 許可證: + 授權條款: Shortcuts: - - + 快捷鍵: Cancel any actions for this application - - + 取消此應用程式所有動作 ... - ... + ... Remove the selected application - - + 移除所選應用程式 Uninstall @@ -247,344 +208,291 @@ Update the application to the most recent version - - + 將應用程式更新為最新版本 Update the selected application - - + 更新所選應用程式 Update Application - - + 更新應用程式 Open the browser page for the selected application - - - - - Open Browser - - + 為所選應用程式開啟瀏覽頁 Automatically update the selected application when an update is available - - + 當有更新提供時自動更新所選應用程式 Auto-Update - - + 自動更新 Browse For Apps - - + 瀏覽應用程式 Home - - + Category - - + 分類 App - - + 應用程式 Search Here - - + 在此搜尋 Search - 搜尋 + 搜尋 View Recent Additions - - + 檢視最近新增項目 Browse By Category - - + 按分類瀏覽 Size: - 大小: + 大小: Application Information - - + 應用程式資訊 Platform: - 平台: + 平台: Type: - 類型: + 類型: Similar Applications - - + 相似應用程式 Best Matches - 最佳配對 + 最佳配對 Other Results - - + 其他結果 File - - + 檔案 Configure - - + 設定 Import PBI List - - + 匯入 PBI 清單 Export PBI List - - + 匯出 PBI 清單 &Quit - 結束(&Q) + 結束(&Q) Repositories - - + 套件庫 AppCafe Settings - - + AppCafe 設定 Error! - 錯誤! + 出錯! The AppCafe must be run as root when in Warden compatibility mode - - + 當在 Warden 兼容模式,AppCafe 必須以 root 身分運行 The AppCafe must be started with user permissions! - - + AppCafe 必須以使用者權限啟動! The user must also be a part of the "operator" group - - + 使用者必須屬於「operator」群組 AppCafe Processes Running - - + 正在運行 AppCafe 程序 The AppCafe currently has actions pending. Do you want to cancel all running processes and quit anyway? - - + AppCafe 當前有待處理的動作。是否確定取消所有運行中的程序並結束? Import PBI File List - - + 匯入 PBI 檔案清單 PBI List (*.pbilist) - - + PBI 清單 (*.pbilist) Import Error - - + 匯入出錯 There was an error importing the PBI list - - + 匯入 PBI 清單時出錯 Please make sure that the file has not been corrupted and try again - - + 請確定檔案並未毀壞,然後再試 Export PBI File List - - + 匯出 PBI 檔案清單 Export Error - - + 匯出出錯 There was an error exporting the PBI list - - + 匯出 PBI 清單時出錯 Please make sure that you have the proper directory permissions and try again - - + 請確定有合適目錄權限並再試 Update - 更新 + 更新 Desktop Icons - - + 桌面圖示 Add - - + 添加 Remove - - + 移除 Menu Icons - - + 選單圖示 Add (All Users) - - + 添加 (全部使用者) Path Links - - + 路徑連結 File Associations - - + 檔案關聯 Cancel Actions - - + 取消動作 Desktop/Menu - - + 桌面/選單 Desktop - - + 桌面 Menu - - + 選單 None - - + Verify PBI Removal - - + 驗證移除 PBI 動作 Are you sure you wish to remove this application? - - + 是否確定要移除此應用程式? Are you sure you wish to remove these applications? - - + 是否確定要移除此等應用程式? Unknown - 不詳 + 不詳 Install Now! - - + 馬上安裝! Downgrade - - + 降級 Searching the application database. Please Wait.... - - + 正在搜尋應用程式資料庫。請稍候.... No Search Results Found for the term: %1 - - + 搜尋項目沒有結果:%1 Installed: %1 - - + 已安裝:%1 Available: %2 - - + 可提供:%2 Downloading file: - - + 正在下載檔案: Downloading %1 file: - - + 正在下載 %1 檔案: Start the application - - + 啟動應用程式 + + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + @@ -595,8 +503,7 @@ Removing - - + 移除 Updating @@ -604,175 +511,142 @@ Pending Download - - + 待處理下載 Pending Install - - + 待處理安裝 Pending Removal - - + 待處理移除 Pending Update - - + 待處理更新 No applications to install from this list. - - + 此清單無應用程式要安裝。 Results: - - + 結果: Unavailable Apps: %1 - - + 未提供應用程式:%1 Currently Installed: %1 - - + 當前已安裝:%1 Import Results - - + 匯入結果 Are you sure you wish to install these applications? - - + 確定要安裝此等應用程式嗎? %1 Download Error: - - + %1 下載出錯: The PBI could not be downloaded, please try again later - - + 無法下載 PBI,請稍後再試 %1 Update Error: - - + %1 更新出錯: The update process experienced an error and could not be completed - - + 更新程序出錯,無法完成 %1 Installation Error: - - + %1 安裝出錯: The installation process experienced an error and could not be completed - - + 安裝程序出錯,無法完成 %1 Removal Error: - - + %1 移除出錯: The removal process experienced an error and could not be completed - - + 移除程序出錯,無法完成 The download process experienced an error and could not be completed - - + 下載程序出錯,無法完成 %1 PBI Error: - - + %1 PBI 出錯: The process experienced an error and could not be completed - - + 處理程序出錯,無法完成 Unknown - 不詳 + 不詳 Download Canceled - - + 取消下載 Downloading: %1% - - {1%?} + 正在下載:%1% Download Finished - - + 完成下載 Download Starting - - + 開始下載 Install Canceled (will remove) - - + 取消安裝 (會移除) Removal Canceled (will reinstall) - - + 取消移除 (會重新安裝) Update's cannot be canceled - - + 無法取消更新 Update Downloading: %1% - - {1%?} + 正在下載更新:%1% Starting Update - - + 開始更新 Starting Download - - + 開始下載 Update Available: %1 - - + 有更新提供:%1 ProcessManager Unknown Error - - + 不明錯誤 diff --git a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zu.ts b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zu.ts index 43d0a8e0a..be7d861cc 100644 --- a/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zu.ts +++ b/src-qt4/pc-softwaremanager/i18n/SoftwareManager_zu.ts @@ -276,11 +276,6 @@ - - Open Browser - - - Automatically update the selected application when an update is available @@ -606,6 +601,18 @@ + + Product Page + + + + Verify Installation + + + + Are you sure you want to install this application? + + PBIBackend diff --git a/src-qt4/pc-soundconfig/i18n/SoundConfig_nl.ts b/src-qt4/pc-soundconfig/i18n/SoundConfig_nl.ts index f8022267a..4111f7d7f 100644 --- a/src-qt4/pc-soundconfig/i18n/SoundConfig_nl.ts +++ b/src-qt4/pc-soundconfig/i18n/SoundConfig_nl.ts @@ -5,7 +5,7 @@ sndDialog Sound Configuration - Geluidinstelling + Geluidinstellingen Below you may change the default sound device, and test sound playback @@ -25,7 +25,7 @@ No sound devices detected! - Er zijn geen geluidapparaten bespeurd. + Er zijn geen geluidapparaten aangetroffen. diff --git a/src-qt4/pc-soundconfig/i18n/SoundConfig_zh_CN.ts b/src-qt4/pc-soundconfig/i18n/SoundConfig_zh_CN.ts index 63bacdb2c..33df23388 100644 --- a/src-qt4/pc-soundconfig/i18n/SoundConfig_zh_CN.ts +++ b/src-qt4/pc-soundconfig/i18n/SoundConfig_zh_CN.ts @@ -5,7 +5,7 @@ sndDialog Sound Configuration - 声音配置 + 声音配置 Below you may change the default sound device, and test sound playback diff --git a/src-qt4/pc-sysmanager/i18n/PBSystem_nl.ts b/src-qt4/pc-sysmanager/i18n/PBSystem_nl.ts index c5d1b4982..e6209cc79 100644 --- a/src-qt4/pc-sysmanager/i18n/PBSystem_nl.ts +++ b/src-qt4/pc-sysmanager/i18n/PBSystem_nl.ts @@ -65,11 +65,11 @@ System Tasks - Systeemtaken + Systeemtaken Fetch P&orts Tree - P&orts boom ophalen + P&oortenboom ophalen @@ -92,7 +92,7 @@ Update Failed! - Update is mislukt! + Bijwerken is mislukt. Unable to connect to server. Possible causes: @@ -104,7 +104,7 @@ Fetching Ports, this may take a while... - Ports ophalen, dit kan even duren... + Poorten ophalen, dit kan even duren... Downloading FreeBSD sources... diff --git a/src-qt4/pc-sysmanager/i18n/PBSystem_pt_BR.ts b/src-qt4/pc-sysmanager/i18n/PBSystem_pt_BR.ts index 8683b2a70..1930f5fde 100644 --- a/src-qt4/pc-sysmanager/i18n/PBSystem_pt_BR.ts +++ b/src-qt4/pc-sysmanager/i18n/PBSystem_pt_BR.ts @@ -49,7 +49,7 @@ You may also generate a diagnostic sheet, with information about your system. This sheet can be used by technicians for troubleshooting purposes. - Você pode também gerar um relatório, com informações sobre o seu sistema. Este relatório pode também ser útil para técnicos para resoluções de problemas do seu sistema. + Você pode também gerar um relatório com informações sobre o seu sistema. Este relatório pode ser usado por técnicos para resolução de problemas. &Save diff --git a/src-qt4/pc-sysmanager/i18n/PBSystem_zh_CN.ts b/src-qt4/pc-sysmanager/i18n/PBSystem_zh_CN.ts index 718c9185e..f22a0fe0f 100644 --- a/src-qt4/pc-sysmanager/i18n/PBSystem_zh_CN.ts +++ b/src-qt4/pc-sysmanager/i18n/PBSystem_zh_CN.ts @@ -121,11 +121,11 @@ Update - 更新 + 更新 Size - 大小 + 大小 Status @@ -141,9 +141,7 @@ of - - of - + of diff --git a/src-qt4/pc-sysmanager/pc-sysmanager.desktop b/src-qt4/pc-sysmanager/pc-sysmanager.desktop index 2c48d0cc1..bfdf20304 100644 --- a/src-qt4/pc-sysmanager/pc-sysmanager.desktop +++ b/src-qt4/pc-sysmanager/pc-sysmanager.desktop @@ -31,7 +31,7 @@ Name[he]=מנהל מערכת Name[hr]=Upravitelj sustava Name[hu]=Rendszerkezelő Name[id]=Pengelola Sistem -Name[it]=Gestione del Sistema +Name[it]=Gestore del Sistema Name[ja]=システムマネージャー Name[ko]=시스템 관리자 Name[lt]=Sistemos tvarkytuvė @@ -42,7 +42,7 @@ Name[nl]=Systeembeheerder Name[pl]=Menadżer systemu Name[pt]=Gestor do sistema Name[pt_BR]=Gerenciador do Sistema -Name[ro]=director de sistem +Name[ro]=Director de sistem Name[ru]=Управление системой Name[sk]=Správca systému Name[sl]=Upravljanje sistema diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_el.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_el.ts index 214e4bcae..a848f8629 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_el.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_el.ts @@ -33,17 +33,15 @@ PBI updates available - Διαθέσιμες ενημερώσεις PBI + Διαθέσιμες ενημερώσεις PBI Start the AppCafe - - + Εκκίνηση AppCafe Quit - - + Έξοδος System Updates Available diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_et.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_et.ts index d57bd2e64..34f3e0cea 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_et.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_et.ts @@ -105,13 +105,11 @@ Start the Package Manager - - + Käivita pakihaldur Package Updates Available - - + Pakkide uuendused on saadaval diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_ko.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_ko.ts index 1290794e1..77dbcde38 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_ko.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_ko.ts @@ -93,28 +93,23 @@ Display notifications - - + 알림사항 표시하기 Package updates available - - + 패키지 업데이트 사용가능함 Important package updates are available. Click here to install them! - - + 중요한 패키지 업데이트가 준비됐습니다. 설치하려면 여길 누르세요! Start the Package Manager - - + 패키지 관리자 시작하기 Package Updates Available - - + 패키지 업데이트 사용하능함 diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_nl.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_nl.ts index 4a6189931..123ed4a85 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_nl.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_nl.ts @@ -5,7 +5,7 @@ UpdaterTray Check for updates - Controleer op updates + Controleer op bijgewerkte pakketten Run at startup @@ -17,7 +17,7 @@ Checking for updates... - Aan het controleren op updates... + Aan het controleren op bijgewerkte pakketten... Failed to contact the update server! @@ -29,11 +29,11 @@ System updates available - Systeemupdates beschikbaar + Bijgewerkte systeempakketten beschikbaar PBI updates available - PBI-updates beschikbaar + Bijgewerkte PBI's beschikbaar Start the AppCafe @@ -45,11 +45,11 @@ System Updates Available - Systeemupdates beschikbaar + Bijgewerkte systeempakketten beschikbaar Software Updates Available - Software-updates beschikbaar + Bijgewerkte programmatuur beschikbaar Start the Update Manager @@ -61,7 +61,7 @@ Software updates are available. Click here to install them! - Er zijn programma-updates beschikbaar. Klik hier om ze te installeren. + Er zijn bijgewerkte programmatuurbestanden beschikbaar. Klik hier om ze te installeren. Restart Required @@ -69,11 +69,11 @@ Please restart your computer to complete the pending updates - Herstart a.u.b. uw computer, om de wachtende updates te voltooien + Herstart a.u.b. uw computer, om de wachtende bijgewerkte pakketten te voltooien System restart required to finish updates - Herstart van systeem vereist om updates te voltooien + Herstart van systeem vereist om bijwerken van pakketten te voltooien Start the Warden @@ -81,15 +81,15 @@ Jail updates available - Gevangenisupdates beschikbaar + Bijgewerkte Gevangenispakketten beschikbaar Jail Updates Available - Gevangenisupdates beschikbaar + Bijgewerkte Gevangenispakketten beschikbaar Important jail updates are available. Click here to launch the Warden! - Er zijn belangrijke gevangenisupdates beschikbaar. Klik hier om de Cipier te starten. + Er zijn belangrijke bijgewerkte Gevangenispakketten beschikbaar. Klik hier om de Cipier te starten. Display notifications @@ -105,13 +105,11 @@ Start the Package Manager - - + Start de pakketbeheerder Package Updates Available - - + Er zijn bijgewerkte pakketten beschikbaar diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_pt_BR.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_pt_BR.ts index dd892411f..01c64c639 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_pt_BR.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_pt_BR.ts @@ -25,15 +25,15 @@ Your system is fully updated - O seu sistema está completamente actualizado + O seu sistema está completamente atualizado System updates available - Actualizações para o sistema estão disponíveis + As atualizações para o sistema estão disponíveis PBI updates available - As actualizações PBI estão disponíveis + As atualizações PBI estão disponíveis Start the AppCafe @@ -57,11 +57,11 @@ Important system updates are available. Click here to install them! - Atualizações importante do sistema estão disponívies. Clique aqui para instalar! + Atualizações importantes do sistema estão disponíveis. Clique aqui para instalá-los! Software updates are available. Click here to install them! - Atualizações de aplicativos disponívies. Clique aqui para instalar! + Atualizações de aplicativos estão disponíveis. Clique aqui para instalá-los! Restart Required @@ -101,11 +101,11 @@ Important package updates are available. Click here to install them! - As atualizações importantes de pacotes estão disponíveis. Clique aqui para instalá-los! + As atualizações importantes de pacotes estão disponíveis. Clique aqui para instalá-los! Start the Package Manager - Iniciar o Gerenciador de Pacotes + Iniciar o Gerenciador de Pacotes Package Updates Available diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_sv.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_sv.ts index 9d03761e9..77f9f0bc0 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_sv.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_sv.ts @@ -105,13 +105,11 @@ Start the Package Manager - - + Starta pakethanteraren Package Updates Available - - + Paketuppdateringar tillgängliga diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_CN.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_CN.ts index db848bab1..31ea91380 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_CN.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_CN.ts @@ -97,13 +97,11 @@ Package updates available - 有可用的软件更新 - + 有可用的软件更新 Important package updates are available. Click here to install them! - 有重新的软件更新。点击此处安装! - + 有重新的软件更新。点击此处安装! Start the Package Manager diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_HK.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_HK.ts index 896624a74..171f2f426 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_HK.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_HK.ts @@ -97,23 +97,19 @@ Package updates available - - + 有套件更新提供 Important package updates are available. Click here to install them! - - + 有重要套件更新提供。按此安裝! Start the Package Manager - - + 啟動套件管理員 Package Updates Available - - + 有套件更新提供 diff --git a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_TW.ts b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_TW.ts index 4ecff0d49..67c4fc3a5 100644 --- a/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_TW.ts +++ b/src-qt4/pc-systemupdatertray/i18n/SystemUpdaterTray_zh_TW.ts @@ -97,23 +97,19 @@ Package updates available - - + 有套件更新提供 Important package updates are available. Click here to install them! - - + 有重要套件更新提供。按此安裝! Start the Package Manager - - + 啟動套件管理員 Package Updates Available - - + 有套件更新提供 diff --git a/src-qt4/pc-systemupdatertray/pcbsdpbu.desktop b/src-qt4/pc-systemupdatertray/pcbsdpbu.desktop index be4afd674..798bf335e 100644 --- a/src-qt4/pc-systemupdatertray/pcbsdpbu.desktop +++ b/src-qt4/pc-systemupdatertray/pcbsdpbu.desktop @@ -19,13 +19,14 @@ Name[fr]=Mettre à jour le gestionnaire de plateau Name[fr_CA]=Mettre à jour le gestionnaire de plateau Name[hr]=Traka upravitelja ažuriranja Name[hu]=Frissítéskezelő tálcaikon -Name[it]=Pannello del Manager Aggiornamenti +Name[it]=Pannello del Gestore Aggiornamenti Name[ja]=マネージャ トレイを更新 Name[ko]=업데이트 관리자 트레이 Name[mn]=Шинэчлэлтийн удирдагчийн тавиур Name[nl]=Systeemvak van updatebeheerder Name[pl]=Aktualizuj Menedżera tacki systemowej Name[pt_BR]=Bandeja do Gerenciador de Atualização +Name[ro]=Panou manager de actualizări Name[ru]=Менеджер обновления в лотке Name[sr]=Update Manager Tray Name[sv]=Uppdateringshanterare Systembricka diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_af.ts b/src-qt4/pc-updategui/i18n/UpdateGui_af.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_af.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_af.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ar.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ar.ts index 602c27594..0db92090e 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ar.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ar.ts @@ -165,5 +165,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_az.ts b/src-qt4/pc-updategui/i18n/UpdateGui_az.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_az.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_az.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_bg.ts b/src-qt4/pc-updategui/i18n/UpdateGui_bg.ts index c9e602107..739bee2bb 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_bg.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_bg.ts @@ -160,5 +160,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_bn.ts b/src-qt4/pc-updategui/i18n/UpdateGui_bn.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_bn.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_bn.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_bs.ts b/src-qt4/pc-updategui/i18n/UpdateGui_bs.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_bs.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_bs.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ca.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ca.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ca.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ca.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_cs.ts b/src-qt4/pc-updategui/i18n/UpdateGui_cs.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_cs.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_cs.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_cy.ts b/src-qt4/pc-updategui/i18n/UpdateGui_cy.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_cy.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_cy.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_da.ts b/src-qt4/pc-updategui/i18n/UpdateGui_da.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_da.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_da.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_de.ts b/src-qt4/pc-updategui/i18n/UpdateGui_de.ts index 351b08475..0b3ca5d83 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_de.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_de.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Da ein anderer Prozeß läuft, kann die freebsd-update nicht ausgeführt werden! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_el.ts b/src-qt4/pc-updategui/i18n/UpdateGui_el.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_el.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_el.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_en_GB.ts b/src-qt4/pc-updategui/i18n/UpdateGui_en_GB.ts index 2d0375c95..e65853148 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_en_GB.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_en_GB.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Could not run freebsd-update, another process is already running! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_en_ZA.ts b/src-qt4/pc-updategui/i18n/UpdateGui_en_ZA.ts index 2d0375c95..e65853148 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_en_ZA.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_en_ZA.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Could not run freebsd-update, another process is already running! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_es.ts b/src-qt4/pc-updategui/i18n/UpdateGui_es.ts index 057844542..7ab58da17 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_es.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_es.ts @@ -156,5 +156,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_et.ts b/src-qt4/pc-updategui/i18n/UpdateGui_et.ts index 4e6cce977..2444f49d0 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_et.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_et.ts @@ -137,28 +137,27 @@ Update Details - - + Uuenduse üksikasjad Base System Updates - - + Baassüsteemi uuendused The following files will be updated: - - + Uuendatakse järgmisi faile: Update Details: - - + Uuenduse üksikasjad: Could not run freebsd-update, another process is already running! - - + Programm freebsd-update on juba käivitatud! + + + Reboot required for update to finish! + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_eu.ts b/src-qt4/pc-updategui/i18n/UpdateGui_eu.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_eu.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_eu.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_fa.ts b/src-qt4/pc-updategui/i18n/UpdateGui_fa.ts index 5e2552ce8..59a9e20de 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_fa.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_fa.ts @@ -160,5 +160,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_fi.ts b/src-qt4/pc-updategui/i18n/UpdateGui_fi.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_fi.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_fi.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_fr.ts b/src-qt4/pc-updategui/i18n/UpdateGui_fr.ts index 03f7f4ced..7e76b6338 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_fr.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_fr.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Impossible de démarrer freebsd-update, un autre processus est déjà en marche! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_fr_CA.ts b/src-qt4/pc-updategui/i18n/UpdateGui_fr_CA.ts index 98cbb164a..ce24881b1 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_fr_CA.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_fr_CA.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Impossible de démarrer freebsd-update, un autre processus est déjà en marche! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_gl.ts b/src-qt4/pc-updategui/i18n/UpdateGui_gl.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_gl.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_gl.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_he.ts b/src-qt4/pc-updategui/i18n/UpdateGui_he.ts index 386d2e7c5..1fa92edc1 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_he.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_he.ts @@ -174,5 +174,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_hi.ts b/src-qt4/pc-updategui/i18n/UpdateGui_hi.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_hi.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_hi.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_hr.ts b/src-qt4/pc-updategui/i18n/UpdateGui_hr.ts index a61cb5451..892a3dd60 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_hr.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_hr.ts @@ -170,5 +170,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_hu.ts b/src-qt4/pc-updategui/i18n/UpdateGui_hu.ts index 23762919c..88fc96ff4 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_hu.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_hu.ts @@ -164,5 +164,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_id.ts b/src-qt4/pc-updategui/i18n/UpdateGui_id.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_id.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_id.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_is.ts b/src-qt4/pc-updategui/i18n/UpdateGui_is.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_is.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_is.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_it.ts b/src-qt4/pc-updategui/i18n/UpdateGui_it.ts index 39a48ccd8..15bad5d7b 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_it.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_it.ts @@ -165,5 +165,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ja.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ja.ts index 32a2bf941..83357bc81 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ja.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ja.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! freebsd-update を実行できません。他のプロセスが実行しています。 + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ka.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ka.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ka.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ka.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ko.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ko.ts index d44f0ecf5..fd3814897 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ko.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ko.ts @@ -166,5 +166,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_lt.ts b/src-qt4/pc-updategui/i18n/UpdateGui_lt.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_lt.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_lt.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_lv.ts b/src-qt4/pc-updategui/i18n/UpdateGui_lv.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_lv.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_lv.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_mk.ts b/src-qt4/pc-updategui/i18n/UpdateGui_mk.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_mk.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_mk.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_mn.ts b/src-qt4/pc-updategui/i18n/UpdateGui_mn.ts index 384441bf1..9db7deb80 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_mn.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_mn.ts @@ -192,5 +192,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ms.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ms.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ms.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ms.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_mt.ts b/src-qt4/pc-updategui/i18n/UpdateGui_mt.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_mt.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_mt.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_nb.ts b/src-qt4/pc-updategui/i18n/UpdateGui_nb.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_nb.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_nb.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_nl.ts b/src-qt4/pc-updategui/i18n/UpdateGui_nl.ts index 7cd02f737..05fac1fa3 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_nl.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_nl.ts @@ -9,11 +9,11 @@ Preparing to check for updates... Please Wait... - Aan het voorbereiden om te controleren op updates... Even geduld a.u.b... + Aan het voorbereiden om te controleren op bijgewerkte pakketten... Even geduld a.u.b... Available Updates - Beschikbare updates + Beschikbare bijgewerkte pakketten Select / Deselect All @@ -21,15 +21,15 @@ Update Conflict - Updateconflict + Conflict met bijwerken More than one stand-alone update has been selected! Please unselect all other updates and try again. - Er is meer dan één afzonderlijk te installeren update geselecteerd. Deselecteer a.u.b. alle andere updates en probeer het opnieuw. + Er is meer dan één afzonderlijk te installeren bijgewerkt pakket geselecteerd. Deselecteer a.u.b. alle andere bijgewerkte pakketten en probeer het opnieuw. Update Failed! - Update is mislukt. + Installeren van bijgewerkt pakket is mislukt. Failed to install: @@ -37,7 +37,7 @@ Update Ready - Update gereed + Bijwerken gereed Please reboot to start the update to PC-BSD version " @@ -53,7 +53,7 @@ Checking for updates... Please Wait... - Aan het controleren op updates... Even geduld a.u.b... + Aan het controleren op bijgewerkte pakketten... Even geduld a.u.b... Your system is fully updated! @@ -65,7 +65,7 @@ This update must be installed by itself. - Deze update moet door zichzelf worden geïnstalleerd. + Dit bijgewerkte pakket moet door zichzelf worden geïnstalleerd. Creating a backup of your data first is recommended. @@ -81,23 +81,23 @@ System Package Updates - Updates voor systeempakket + Bijgewerkte systeempakketten The following package updates are available: - De volgende pakketupdates zijn beschikbaar: + De volgende bijgewerkte pakketten zijn beschikbaar: Updates for Jail: - Updates voor Gevangenis: + Bijgewerkte pakketten voor Gevangenis: Starting Update: %1 (%2 of %3) - Bezig met starten van de update: %1 (%2 van %3) + Bezig met starten van bijwerken: %1 (%2 van %3) Downloading: %1 (Update %2 of %3) - Aan het binnenhalen: %1 (update %2 van %3) + Aan het binnenhalen: %1 (bijgewerkt pakket %2 van %3) Updating: %1 (%2 of %3) @@ -121,11 +121,11 @@ Re&scan for Updates - Opnieuw zoeken naar updates + Opnieuw zoeken naar bijgewerkte pakketten &Install selected updates - Gekozen updates installeren + Gekozen bijgewerkte pakketten installeren &Close @@ -133,32 +133,31 @@ System updates available! - Er zijn systeemupdates beschikbaar. + Er zijn bijgewerkte systeempakketten beschikbaar. Update Details - - + Details van bijgewerkt pakket Base System Updates - - + Bijgewerkte pakketten voor basissysteem The following files will be updated: - - + De volgende pakketten zullen worden bijgewerkt: Update Details: - - + Bijzonderheden van bijgewerkt pakket: Could not run freebsd-update, another process is already running! - - + Kon freebsd-update niet draaien, er is al een ander draaiend proces. + + + Reboot required for update to finish! + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_pa.ts b/src-qt4/pc-updategui/i18n/UpdateGui_pa.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_pa.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_pa.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_pl.ts b/src-qt4/pc-updategui/i18n/UpdateGui_pl.ts index c9b0131c7..bd740b4bb 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_pl.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_pl.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Nie można uruchomić freebsd-update,inny proces już działa! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_pt.ts b/src-qt4/pc-updategui/i18n/UpdateGui_pt.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_pt.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_pt.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_pt_BR.ts b/src-qt4/pc-updategui/i18n/UpdateGui_pt_BR.ts index 4699a79be..559ce59dc 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_pt_BR.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_pt_BR.ts @@ -85,7 +85,7 @@ The following package updates are available: - As seguintes atualizações de pacotes estão disponívies: + As seguintes atualizações de pacotes estão disponíveis: Updates for Jail: @@ -156,5 +156,9 @@ Could not run freebsd-update, another process is already running! Não foi possível executar freebsd-update, outro processo está em execução! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ro.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ro.ts index b0642aecb..da9ef2ecb 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ro.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ro.ts @@ -171,5 +171,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ru.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ru.ts index 2abacbc8a..c5879db8a 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ru.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ru.ts @@ -160,5 +160,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sa.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sa.ts index 5240e0274..87a74c0ff 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sa.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sa.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sk.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sk.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sk.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sk.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sl.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sl.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sl.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sl.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sr.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sr.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sr.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sr.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sv.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sv.ts index f7e5c30e2..8a4e121b2 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sv.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sv.ts @@ -137,28 +137,27 @@ Update Details - - + Uppdateringsdetaljer Base System Updates - - + Huvudsystemsuppdateringar The following files will be updated: - - + Följande filer kommer uppdateras: Update Details: - - + Uppdateringsdetaljer: Could not run freebsd-update, another process is already running! - - + Kunde inte köra freebsd-update, en annan process körs redan! + + + Reboot required for update to finish! + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_sw.ts b/src-qt4/pc-updategui/i18n/UpdateGui_sw.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_sw.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_sw.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_ta.ts b/src-qt4/pc-updategui/i18n/UpdateGui_ta.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_ta.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_ta.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_tg.ts b/src-qt4/pc-updategui/i18n/UpdateGui_tg.ts index 60c760088..2604e35d0 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_tg.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_tg.ts @@ -171,5 +171,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_th.ts b/src-qt4/pc-updategui/i18n/UpdateGui_th.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_th.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_th.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_tr.ts b/src-qt4/pc-updategui/i18n/UpdateGui_tr.ts index a6b9379a3..e5bb25863 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_tr.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_tr.ts @@ -164,5 +164,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_uk.ts b/src-qt4/pc-updategui/i18n/UpdateGui_uk.ts index c5dc44e79..0ea64d372 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_uk.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_uk.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Неможливо запустити freebsd-update, інший процес уже запущено! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_uz.ts b/src-qt4/pc-updategui/i18n/UpdateGui_uz.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_uz.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_uz.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_vi.ts b/src-qt4/pc-updategui/i18n/UpdateGui_vi.ts index 4e23249c3..6f305ceb8 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_vi.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_vi.ts @@ -155,5 +155,9 @@ Could not run freebsd-update, another process is already running! Không thể chạy freebsd cập nhật, quá trình khác đang chạy! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_zh_CN.ts b/src-qt4/pc-updategui/i18n/UpdateGui_zh_CN.ts index 4213c995b..597cc56ae 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_zh_CN.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_zh_CN.ts @@ -93,11 +93,11 @@ Starting Update: %1 (%2 of %3) - 开始更新:%1 (%2 / %3) + 开始更新:%1 (%2 / %3) Downloading: %1 (Update %2 of %3) - 下载:%1 (更新 %2 / %3) + 下载:%1 (更新 %2 / %3) Updating: %1 (%2 of %3) @@ -113,31 +113,27 @@ A system upgrade is waiting to be installed. Please reboot to begin! - 系统升级正在准备安装。请重启来进行! + 系统升级正在准备安装。请重启来进行! An unknown error occured! - 发生了未知错误! + 发生了未知错误! Re&scan for Updates - 重新扫描(&S)更新 - + 重新扫描(&S)更新 &Install selected updates - 安装(&I)选定的更新 - + 安装(&I)选定的更新 &Close - 关闭(&C) - + 关闭(&C) System updates available! - 有可用的系统更新! - + 有可用的系统更新! Update Details @@ -159,5 +155,9 @@ Could not run freebsd-update, another process is already running! 无法运行freebsd-update,已有另一进程正在运行! + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_zh_HK.ts b/src-qt4/pc-updategui/i18n/UpdateGui_zh_HK.ts index f630a12f1..b4a6b64b9 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_zh_HK.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_zh_HK.ts @@ -121,48 +121,43 @@ Re&scan for Updates - - + 重新掃描有否更新(&S) &Install selected updates - - + 安裝所選更新(&I) &Close - - + 關閉(&C) System updates available! - - + 有系統更新提供! Update Details - - + 更新詳情 Base System Updates - - + 基礎系統更新 The following files will be updated: - - + 會更新以下檔案: Update Details: - - + 更新詳情: Could not run freebsd-update, another process is already running! - - + 無法運行 freebsd-update,另一個進程(process)已在運行! + + + Reboot required for update to finish! + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_zh_TW.ts b/src-qt4/pc-updategui/i18n/UpdateGui_zh_TW.ts index 9f0ba52ab..25be9cecc 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_zh_TW.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_zh_TW.ts @@ -121,48 +121,43 @@ Re&scan for Updates - - + 重新掃描有否更新(&S) &Install selected updates - - + 安裝所選更新(&I) &Close - - + 關閉(&C) System updates available! - - + 有系統更新提供! Update Details - - + 更新詳情 Base System Updates - - + 基礎系統更新 The following files will be updated: - - + 會更新以下檔案: Update Details: - - + 更新詳情: Could not run freebsd-update, another process is already running! - - + 無法運行 freebsd-update,另一個進程(process)已在運行! + + + Reboot required for update to finish! + diff --git a/src-qt4/pc-updategui/i18n/UpdateGui_zu.ts b/src-qt4/pc-updategui/i18n/UpdateGui_zu.ts index ce1abeb85..7fa982836 100644 --- a/src-qt4/pc-updategui/i18n/UpdateGui_zu.ts +++ b/src-qt4/pc-updategui/i18n/UpdateGui_zu.ts @@ -193,5 +193,9 @@ + + Reboot required for update to finish! + + diff --git a/src-qt4/pc-updategui/pc-updategui.desktop b/src-qt4/pc-updategui/pc-updategui.desktop index 8654c68e0..838f2d3ec 100644 --- a/src-qt4/pc-updategui/pc-updategui.desktop +++ b/src-qt4/pc-updategui/pc-updategui.desktop @@ -30,6 +30,7 @@ Name[mn]=Шинэчлэлтийг удирдагч Name[nl]=Updatebeheerder Name[pl]=Manadżer Aktualizacji Name[pt_BR]=Gerenciador de atualização +Name[ro]=Manager de actualizări Name[ru]=Менеджер обновлений Name[sk]=Správca aktualizácii Name[sr]=Upravljač obnavljanja diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_de.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_de.ts index 817ab46d7..0f0f975c0 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_de.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_de.ts @@ -285,7 +285,7 @@ MainDlg PC-BSD User Manager - PC-BSD Benutzer-Manager + PC-BSD Benutzerverwaltung &Users @@ -353,7 +353,7 @@ PC-BSD User Manager - Advanced Mode - PC-BSD Benutzer-Manager - Erweiterter Modus + PC-BSD-Benutzerverwaltung - Erweiterter Modus Alt+V @@ -372,15 +372,15 @@ PCBSDUserManager PC-BSD User Manager - PC-BSD Benutzer-Manager + PC-BSD-Benutzerverwaltung Close - Schließen + &Beenden Apply - Übernehmen + &Anwenden Apply pending changes? diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_et.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_et.ts index 8b64a6cd1..96c508fc3 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_et.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_et.ts @@ -208,8 +208,7 @@ Encrypt Files: - - + Krüpteeri failid: @@ -543,8 +542,7 @@ Encrypt Files: - - + Krüpteeri failid: diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_nl.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_nl.ts index ff30dfc83..f36871208 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_nl.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_nl.ts @@ -9,7 +9,7 @@ Good Input - Correcte invoer + Goede invoer This field can only accept letters and numbers @@ -29,7 +29,7 @@ Invalid input - Verkeerde invoer + Ongeldige invoer This field may not contain ! @ or : @@ -129,7 +129,7 @@ - A file was selected as 'Home Directory', this value must be a directory. - - U koos een bestand als 'Persoonlijke Map', het moet een map zijn. + - U koos een bestand als 'Persoonlijke map', dit moet een map zijn. The following errors occurred while trying to add a new user: @@ -208,8 +208,7 @@ Encrypt Files: - - + Bestanden versleutelen: @@ -306,7 +305,7 @@ Alt+R - Alt+R + Alt+V Home Directory: @@ -480,7 +479,7 @@ Warning! - Waarschuwing! + Waarschuwing. The field is empty @@ -543,8 +542,7 @@ Encrypt Files: - - + Bestanden versleutelen: @@ -693,7 +691,7 @@ Placing home directory outside '/home/' can cause compatibility problems with some programs. NOT RECOMMENDED - De persoonlijke map buiten '/home/' plaatsen kan compatibiliteitsproblemen veroorzaken met sommige programma's. NIET AANBEVOLEN + De persoonlijke map buiten '/home/' plaatsen kan verenigbaarheidsproblemen veroorzaken met sommige programma's. NIET AANBEVOLEN Delete Home Directory? diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_sv.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_sv.ts index 51ac01b2d..c53766eed 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_sv.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_sv.ts @@ -208,8 +208,7 @@ Encrypt Files: - - + Kryptera filer: @@ -543,8 +542,7 @@ Encrypt Files: - - + Kryptera filer: diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_CN.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_CN.ts index 3cab44918..cf591482e 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_CN.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_CN.ts @@ -348,7 +348,7 @@ Available: - 可用: + 可用: Members: @@ -493,8 +493,7 @@ The following non-critical errors occurred while trying to add a new user, do you wish to continue? - 在尝试添加新用户时发生了如下非致命错误,是否继续? - + 在尝试添加新用户时发生了如下非致命错误,是否继续? @@ -623,7 +622,7 @@ Delete the home directory for - 将以下用户的家目录删除 + 将以下用户的家目录删除 @@ -698,7 +697,7 @@ Delete the home directory for - 将以下用户的家目录删除 + 将以下用户的家目录删除 diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_HK.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_HK.ts index a79f3fb6d..6a1e94d70 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_HK.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_HK.ts @@ -208,8 +208,7 @@ Encrypt Files: - - + 加密檔案: @@ -543,8 +542,7 @@ Encrypt Files: - - + 加密檔案: diff --git a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_TW.ts b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_TW.ts index 6ad2ae75a..1ce6ef454 100644 --- a/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_TW.ts +++ b/src-qt4/pc-usermanager/i18n/pcbsdusermanager_zh_TW.ts @@ -192,7 +192,7 @@ &Ok - &OK + 確定(&O) Alt+O @@ -208,8 +208,7 @@ Encrypt Files: - - + 加密檔案: @@ -543,8 +542,7 @@ Encrypt Files: - - + 加密檔案: diff --git a/src-qt4/pc-usermanager/pcusermanager.desktop b/src-qt4/pc-usermanager/pcusermanager.desktop index f2cc23be3..9426821e3 100644 --- a/src-qt4/pc-usermanager/pcusermanager.desktop +++ b/src-qt4/pc-usermanager/pcusermanager.desktop @@ -31,7 +31,7 @@ Name[he]=מנהל המשתמשים Name[hr]=Upravitelj korisnika Name[hu]=Felhasználó-kezelő Name[id]=Pengelola Pengguna -Name[it]=Gestione Utente +Name[it]=Gestore Utente Name[ja]=ユーザー管理 Name[ko]=사용자 관리자 Name[mn]=Хэрэглэгчийн хэрэгсэл @@ -74,7 +74,7 @@ Comment[he]=ניהול משתמשים וקבוצות Comment[hr]=Upravlja korisnicima i grupama Comment[hu]=Felhasználók és csoportok kezelése Comment[id]=Mengelola user dan grup -Comment[it]=Gestisci gli utenti e i gruppi +Comment[it]=Gestione utenti e gruppi Comment[ja]=ユーザーとグループの管理 Comment[ko]=사용자와 그룹 관리 Comment[lt]=Administruoti vartotojus ir grupes diff --git a/src-qt4/pc-welcome/i18n/PCWelcome_el.ts b/src-qt4/pc-welcome/i18n/PCWelcome_el.ts index a5621c468..3fbef0660 100644 --- a/src-qt4/pc-welcome/i18n/PCWelcome_el.ts +++ b/src-qt4/pc-welcome/i18n/PCWelcome_el.ts @@ -5,8 +5,7 @@ welcomeWizard Welcome to PC-BSD - - + Καλώς ήρθατε στο PC-BSD <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -14,13 +13,15 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Welcome!</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Καλώς ήρθατε!</span></p></body></html> If you are new to PC-BSD, please take a few moments to read through the following getting started pages for a quick introduction of your new Operating System. - - + Αν είσαστε νέος χρήστης του PC-BSD, θα ήταν καλό να διαθέσετε λίγα λεπτά για να διαβάσετε τις επόμενες σελίδες για μια σύντομη εισαγωγή στο νέο σας Λειτουργικό Σύστημα. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -56,8 +57,11 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Configure your system</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Ρύθμιση συστήματος</span></p></body></html> Need to add a new user? Configure the firewall? Add a printer? The PC-BSD control panel is your one-stop shop for managing your system. diff --git a/src-qt4/pc-welcome/i18n/PCWelcome_nl.ts b/src-qt4/pc-welcome/i18n/PCWelcome_nl.ts index ae461c0b7..e6ea00e78 100644 --- a/src-qt4/pc-welcome/i18n/PCWelcome_nl.ts +++ b/src-qt4/pc-welcome/i18n/PCWelcome_nl.ts @@ -77,7 +77,7 @@ p, li { white-space: pre-wrap; } Accidents happen. Disk drives can crash, files can be lost forever. PC-BSD includes the Life-Preserver application, which makes it easy to synchronize your user data to a remote FreeNAS system or other networked data server. - Een ongeluk zit in een klein hoekje. Schijven kunnen stuk gaan en bestanden kunnen zoek raken. Daarom heeft PC-BSD "Reddingsvest", een programma dat het makkelijk maakt uw gegevens te synchroniseren met een FreeNAS of met een ander soort netwerkopslag. + Een ongeluk zit in een klein hoekje. Schijven kunnen stuk gaan en bestanden kunnen zoek raken. Daarom heeft PC-BSD "Reddingsboei", een programma dat het makkelijk maakt uw gegevens te synchroniseren met een FreeNAS of met een ander soort netwerkopslag. Stay up to date @@ -85,7 +85,7 @@ p, li { white-space: pre-wrap; } Keep your computer current and secure with the online updater tool. When the icon changes to yellow there are important system updates ready to be installed. If it turns blue, then applications you have downloaded from the AppCafe are ready to be updated. - Met het Updategereedschap zorgt u ervoor dat uw computer bijgewerkt en veilig blijft. Wordt het pictogram geel, dan zijn er belangrijke systeemupdates beschikbaar. Wordt het pictogram blauw, dan staat er een nieuwe versie van een toepassing uit het AppCafe voor u klaar. + Met het Updategereedschap zorgt u ervoor dat uw computer bijgewerkt en veilig blijft. Wordt het pictogram geel, dan zijn er belangrijke bijgewerkte systeempakketten beschikbaar. Wordt het pictogram blauw, dan staat er een nieuwe versie van een toepassing uit het AppCafe voor u klaar. Get involved diff --git a/src-qt4/pc-welcome/i18n/PCWelcome_pt_BR.ts b/src-qt4/pc-welcome/i18n/PCWelcome_pt_BR.ts index d1110627f..857c46be0 100644 --- a/src-qt4/pc-welcome/i18n/PCWelcome_pt_BR.ts +++ b/src-qt4/pc-welcome/i18n/PCWelcome_pt_BR.ts @@ -17,11 +17,11 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Welcome!</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Bem vindo!</span></p></body></html> If you are new to PC-BSD, please take a few moments to read through the following getting started pages for a quick introduction of your new Operating System. - Se você é novo no PC-BSD por favor reserve uns poucos momentos para ler as páginas do Guia do Iniciante para uma rápida introdução ao seu novo Sistema Operaional. + Se você é novo no PC-BSD por favor reserve uns poucos momentos para ler as páginas do Guia do Iniciante para uma rápida introdução ao seu novo Sistema Operacional. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -97,7 +97,7 @@ p, li { white-space: pre-wrap; } Don't show on next startup - Não exibir na próxima inicilaização + Não exibir na próxima inicialização <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> diff --git a/src-qt4/pc-welcome/i18n/PCWelcome_ro.ts b/src-qt4/pc-welcome/i18n/PCWelcome_ro.ts index a5621c468..f688071a9 100644 --- a/src-qt4/pc-welcome/i18n/PCWelcome_ro.ts +++ b/src-qt4/pc-welcome/i18n/PCWelcome_ro.ts @@ -5,8 +5,7 @@ welcomeWizard Welcome to PC-BSD - - + Bine ați venit la PC-BSD <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -14,13 +13,15 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Welcome!</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Bine ați venit!</span></p></body></html> If you are new to PC-BSD, please take a few moments to read through the following getting started pages for a quick introduction of your new Operating System. - - + Dacă sunteți începător în PC-BSD, vă rugăm să acordați câteva momente pentru a citi în următoare pagini noțiuni de bază pentru o introducere rapidă în noului dumneavoastră sistem de operare. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -28,13 +29,15 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Getting Connected</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Conectarea</span></p></body></html> If your computer is connected via network cable it will be auto-configured with DHCP. Wireless users may search for and connect to wifi networks by clicking the wireless tray icon: - - + Dacă computerul este conectat printr-un cablu de rețea va fi automat configurat cu serverul DHCP. Utilizatorii rețelelor wireless pot căuta și se pot conecta la rețele WiFi, făcând click pe pictograma din panoul wireless: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -42,13 +45,15 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Install Applications</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Instalare aplicații</span></p></body></html> Looking for additional software? PC-BSD includes the "AppCafe" which lets you search for and install applications with ease. - - + Căutați software suplimentar? PC-BSD include "AppCafe" care vă permite să căutați și să instalați aplicații cu ușurință. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -56,48 +61,43 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Configure your system</span></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">Configurați sistemului dumneavoastră</span></p></body></html> Need to add a new user? Configure the firewall? Add a printer? The PC-BSD control panel is your one-stop shop for managing your system. - - + Trebuie să adăugați un utilizator nou? Configurați firewall? Adăugare imprimantă? Panoul de control PC-BSD este birou unic pentru gestionarea sistemului dumneavoastră. Preserve your files - - + Conservarea fișierele Accidents happen. Disk drives can crash, files can be lost forever. PC-BSD includes the Life-Preserver application, which makes it easy to synchronize your user data to a remote FreeNAS system or other networked data server. - - + Accidente se întâmplă. Unitățile de disc pot se prăbuși, fișierele pot fi pierdute pentru totdeauna. PC-BSD include aplicația Life-Preserver, ceea ce face ușor sincronizarea datelor utilizatorului cu un sistem FreeNAS la distanță sau alt server de date din rețea. Stay up to date - - + Fii informat! Keep your computer current and secure with the online updater tool. When the icon changes to yellow there are important system updates ready to be installed. If it turns blue, then applications you have downloaded from the AppCafe are ready to be updated. - - + Mențineți computerul actualizat și sigur folosind instrumentul de actualizare online. Când pictograma se va schimba în galben există actualizări importante de sistem gata să fie instalate. Dacă se coloreaza în albastru, atunci aplicațiile pe care le-ați descărcat din AppCafe sunt gata să fie actualizate. Get involved - - + Implică-te PC-BSD is a community effort, with releases being made possible by a variety of your neighbors in the open-source community. From helping with development, to asking and answering questions on our forums, there are plenty of ways to help contribute. The websites below provide a great place to get started. - - + PC-BSD este un efortul al comunității, cu versiuni care sunt posibile datorită unei varietăți ale vecinilor dvs. din comunitatea open-source.Poți ajuta cu dezvoltarea, poți cere și răspunde la întrebări pe forumurile noastre, există o mulțime de moduri prin care poți contribui. Site-urile de mai jos oferă un loc minunat pentru a începe. Don't show on next startup - - + Numai afișa la următoarea pornire <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -107,23 +107,25 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://www.pcbsd.org</span></a></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://wiki.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://wiki.pcbsd.org</span></a></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://forums.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://forums.pcbsd.org</span></a></p></body></html> - - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://www.pcbsd.org</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://wiki.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://wiki.pcbsd.org</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://forums.pcbsd.org"><span style=" text-decoration: underline; color:#1b78bf;">http://forums.pcbsd.org</span></a></p></body></html> &Next - - + &Următorul &Back - - + &Inapoi &Finish - - + &Sfârșit diff --git a/src-qt4/pc-welcome/i18n/PCWelcome_zh_CN.ts b/src-qt4/pc-welcome/i18n/PCWelcome_zh_CN.ts index 501047eef..86bd5499e 100644 --- a/src-qt4/pc-welcome/i18n/PCWelcome_zh_CN.ts +++ b/src-qt4/pc-welcome/i18n/PCWelcome_zh_CN.ts @@ -53,13 +53,11 @@ p, li { white-space: pre-wrap; } Looking for additional software? PC-BSD includes the "AppCafe" which lets you search for and install applications with ease. - 苦于寻找软件?PC-BSD拥有“APPCafe”,它可以让你很轻松的搜寻到并安装软件。 - + 苦于寻找软件?PC-BSD拥有“APPCafe”,它可以让你很轻松的搜寻到并安装软件。 Need to add a new user? Configure the firewall? Add a printer? The PC-BSD control panel is your one-stop shop for managing your system. - 添加用户?配置防火墙?增加打印机?PC-BSD的控制面板可以为你提供一站式服务解决所有这些苦恼的问题。 - + 添加用户?配置防火墙?增加打印机?PC-BSD的控制面板可以为你提供一站式服务解决所有这些苦恼的问题。 Preserve your files @@ -115,8 +113,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Bitstream Vera Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">配置您的系统</span></p></body></html> - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt;">配置您的系统</span></p></body></html> &Next diff --git a/src-qt4/pc-welcome/pc-welcome.desktop b/src-qt4/pc-welcome/pc-welcome.desktop index fcd225b99..72a3ccc56 100644 --- a/src-qt4/pc-welcome/pc-welcome.desktop +++ b/src-qt4/pc-welcome/pc-welcome.desktop @@ -23,13 +23,14 @@ Name[he]=PC-BSD - ברוכים הבאים Name[hr]=PC-BSD Dobrodošli Name[hu]=PC–BSD üdvözlő Name[id]=PC-BSD Selamat Datang -Name[it]=Benvenuto a PC-BSD +Name[it]=Benvenuto in PC-BSD Name[ja]=PC-BSD のご案内 Name[ko]=PC-BSD 안내 Name[mn]=PC-BSD Тавтай морил Name[nl]=PC-BSD Welkom Name[pl]=PC-BSD Wita Name[pt_BR]=Boas vindas do PC-BSD +Name[ro]=PC-BSD Bine ați venit Name[ru]=Добро пожаловать в PC-BSD Name[sk]=PC-BSD Welcome Name[sr]=PC-BSD dobrodošli diff --git a/src-qt4/pc-xgui/i18n/XGUISource_de.ts b/src-qt4/pc-xgui/i18n/XGUISource_de.ts index d0ced3030..8d452aa44 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_de.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_de.ts @@ -26,7 +26,7 @@ Diese Einstellungen beibehalten? Apply - Übernehmen + &Anwenden Skip diff --git a/src-qt4/pc-xgui/i18n/XGUISource_es.ts b/src-qt4/pc-xgui/i18n/XGUISource_es.ts index d095d7bc7..eee69ea27 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_es.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_es.ts @@ -108,7 +108,7 @@ Si no ve nada, espere un poco y volverá a esta pantalla. Warning! - ¡Aviso! + ¡Advertencia! PC-BSD was unable to autodetect your monitor. You may need to specify this monitor's Horizontal and Vertical refresh rates in the 'Advanced' tab. diff --git a/src-qt4/pc-xgui/i18n/XGUISource_et.ts b/src-qt4/pc-xgui/i18n/XGUISource_et.ts index 0094cf769..cc05b4552 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_et.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_et.ts @@ -15,7 +15,7 @@ Your display has been configured. Keep these settings? Kuva on seadistatud. -Kas hoida need sätted alles? +Kas jätkata nende sätetega? diff --git a/src-qt4/pc-xgui/i18n/XGUISource_nl.ts b/src-qt4/pc-xgui/i18n/XGUISource_nl.ts index db35b7ecb..51c25098d 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_nl.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_nl.ts @@ -84,7 +84,7 @@ Deze instellingen behouden? The settings you have specified will now be tested. If your screen does not appear, please wait and you will be returned to this screen. De instellingen die u opgegeven heeft, zullen nu beproefd worden. -Als er niets gebeurt, wacht dan a.u.b. even en u komt weer in dit scherm terug. +Als er niets gebeurt, wacht dan a.u.b. even en u komt vanzelf weer in dit scherm terug. Video Card: diff --git a/src-qt4/pc-xgui/i18n/XGUISource_ro.ts b/src-qt4/pc-xgui/i18n/XGUISource_ro.ts index 1d9d96235..603281de3 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_ro.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_ro.ts @@ -14,8 +14,7 @@ Your display has been configured. Keep these settings? - - + Afișajul a fost configurat. Păstrați aceste setări? @@ -151,18 +150,15 @@ Dacă ecranul nu apare, vă rugăm să aşteptaţi şi vă veţi întoarce la ac &Ok - - + &Ok Resolution: - - + Rezoluție: Driver: - - + Driver: diff --git a/src-qt4/pc-xgui/i18n/XGUISource_zh_CN.ts b/src-qt4/pc-xgui/i18n/XGUISource_zh_CN.ts index 04e2c094a..b4db24b76 100644 --- a/src-qt4/pc-xgui/i18n/XGUISource_zh_CN.ts +++ b/src-qt4/pc-xgui/i18n/XGUISource_zh_CN.ts @@ -143,7 +143,7 @@ If your screen does not appear, please wait and you will be returned to this scr Auto-close in - 自动关闭于 + 自动关闭于 seconds... diff --git a/src-qt4/port-files/pkg-plist b/src-qt4/port-files/pkg-plist index fcc737a33..37dc40d15 100644 --- a/src-qt4/port-files/pkg-plist +++ b/src-qt4/port-files/pkg-plist @@ -178,7 +178,6 @@ share/lifePreserver/i18n/LifePreserver_et.qm share/lifePreserver/i18n/LifePreserver_es.qm share/lifePreserver/i18n/LifePreserver_en_ZA.qm share/lifePreserver/i18n/LifePreserver_en_GB.qm -share/lifePreserver/i18n/LifePreserver_en_US.qm share/lifePreserver/i18n/LifePreserver_el.qm share/lifePreserver/i18n/LifePreserver_de.qm share/lifePreserver/i18n/LifePreserver_da.qm diff --git a/src-qt4/qsudo/i18n/qsudo_af.ts b/src-qt4/qsudo/i18n/qsudo_af.ts index ad6f0c0d9..0363a920e 100644 --- a/src-qt4/qsudo/i18n/qsudo_af.ts +++ b/src-qt4/qsudo/i18n/qsudo_af.ts @@ -23,5 +23,10 @@ Invalid Password! Tries Left: %1 Ongeldig wagwoord! probeer steeds links:% 1 + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ar.ts b/src-qt4/qsudo/i18n/qsudo_ar.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ar.ts +++ b/src-qt4/qsudo/i18n/qsudo_ar.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_az.ts b/src-qt4/qsudo/i18n/qsudo_az.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_az.ts +++ b/src-qt4/qsudo/i18n/qsudo_az.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_bg.ts b/src-qt4/qsudo/i18n/qsudo_bg.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_bg.ts +++ b/src-qt4/qsudo/i18n/qsudo_bg.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_bn.ts b/src-qt4/qsudo/i18n/qsudo_bn.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_bn.ts +++ b/src-qt4/qsudo/i18n/qsudo_bn.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_bs.ts b/src-qt4/qsudo/i18n/qsudo_bs.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_bs.ts +++ b/src-qt4/qsudo/i18n/qsudo_bs.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ca.ts b/src-qt4/qsudo/i18n/qsudo_ca.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ca.ts +++ b/src-qt4/qsudo/i18n/qsudo_ca.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_cs.ts b/src-qt4/qsudo/i18n/qsudo_cs.ts index 1c4f5ee28..bda5e6b8f 100644 --- a/src-qt4/qsudo/i18n/qsudo_cs.ts +++ b/src-qt4/qsudo/i18n/qsudo_cs.ts @@ -23,5 +23,10 @@ Invalid Password! Tries Left: %1 Chybné heslo! Zbývá %1 pokusů. + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_cy.ts b/src-qt4/qsudo/i18n/qsudo_cy.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_cy.ts +++ b/src-qt4/qsudo/i18n/qsudo_cy.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_da.ts b/src-qt4/qsudo/i18n/qsudo_da.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_da.ts +++ b/src-qt4/qsudo/i18n/qsudo_da.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_de.ts b/src-qt4/qsudo/i18n/qsudo_de.ts index dca5a37d9..75fc458ac 100644 --- a/src-qt4/qsudo/i18n/qsudo_de.ts +++ b/src-qt4/qsudo/i18n/qsudo_de.ts @@ -21,7 +21,11 @@ Invalid Password! Tries Left: %1 - Ungültiges Passwort! Verbleibende Versuche: %1 + Ungültiges Passwort! Verbleibende Versuche: %1 + + + Toggle command details + Befehlsdetails umschlalten diff --git a/src-qt4/qsudo/i18n/qsudo_el.ts b/src-qt4/qsudo/i18n/qsudo_el.ts index 6f0980407..6465835c5 100644 --- a/src-qt4/qsudo/i18n/qsudo_el.ts +++ b/src-qt4/qsudo/i18n/qsudo_el.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + Εισαγωγή κωδικού χρήστη για εκτέλεση του προγράμματος με δικαιώματα συστήματος Requesting System Permissions - - + Αίτηση δικαιωμάτων για όλο το σύστημα Access Denied - - + Απαγορεύεται η πρόσβαση This user does not have administrator permissions on this system! - - + Ο χρήστης δεν έχει δικαιώματα διαχειριστή στο σύστημα! Invalid Password! Tries Left: %1 - - + Λάθος Κωδικός! Μένουν %1 προσπάθειες. + + + Toggle command details + Λεπτομέρειες εντολής diff --git a/src-qt4/qsudo/i18n/qsudo_en_GB.ts b/src-qt4/qsudo/i18n/qsudo_en_GB.ts index 4a442aced..0ab2a2012 100644 --- a/src-qt4/qsudo/i18n/qsudo_en_GB.ts +++ b/src-qt4/qsudo/i18n/qsudo_en_GB.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Invalid Password! Tries Left: %1 + + Toggle command details + Toggle command details + diff --git a/src-qt4/qsudo/i18n/qsudo_en_ZA.ts b/src-qt4/qsudo/i18n/qsudo_en_ZA.ts index 4a442aced..0ab2a2012 100644 --- a/src-qt4/qsudo/i18n/qsudo_en_ZA.ts +++ b/src-qt4/qsudo/i18n/qsudo_en_ZA.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Invalid Password! Tries Left: %1 + + Toggle command details + Toggle command details + diff --git a/src-qt4/qsudo/i18n/qsudo_es.ts b/src-qt4/qsudo/i18n/qsudo_es.ts index 6b28a494a..34e3fb580 100644 --- a/src-qt4/qsudo/i18n/qsudo_es.ts +++ b/src-qt4/qsudo/i18n/qsudo_es.ts @@ -23,5 +23,10 @@ Invalid Password! Tries Left: %1 ¡Contraseña no válida! Intentos restantes: %1 + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_et.ts b/src-qt4/qsudo/i18n/qsudo_et.ts index 6f0980407..669eb4048 100644 --- a/src-qt4/qsudo/i18n/qsudo_et.ts +++ b/src-qt4/qsudo/i18n/qsudo_et.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + Sisesta enda kasutaja parool, et seda käsku süsteemi õigustega käivitada Requesting System Permissions - - + Süsteemi õiguste pärimine Access Denied - - + Ligipääs keelatud This user does not have administrator permissions on this system! - - + Sellel kasutajal ei ole süsteemis administraatori õigusi! Invalid Password! Tries Left: %1 - - + Vigane parool! Proovimisi järel: %1 + + + Toggle command details + Käsu üksikasjade näitamine diff --git a/src-qt4/qsudo/i18n/qsudo_eu.ts b/src-qt4/qsudo/i18n/qsudo_eu.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_eu.ts +++ b/src-qt4/qsudo/i18n/qsudo_eu.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_fa.ts b/src-qt4/qsudo/i18n/qsudo_fa.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_fa.ts +++ b/src-qt4/qsudo/i18n/qsudo_fa.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_fi.ts b/src-qt4/qsudo/i18n/qsudo_fi.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_fi.ts +++ b/src-qt4/qsudo/i18n/qsudo_fi.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_fr.ts b/src-qt4/qsudo/i18n/qsudo_fr.ts index f57d7b283..36a7fecad 100644 --- a/src-qt4/qsudo/i18n/qsudo_fr.ts +++ b/src-qt4/qsudo/i18n/qsudo_fr.ts @@ -21,7 +21,11 @@ Invalid Password! Tries Left: %1 - Mot de passe invalide! Tries à gauche: %1 + Mot de passe invalide! Essais restants : %1 + + + Toggle command details + Basculer les détails d'une commande diff --git a/src-qt4/qsudo/i18n/qsudo_fr_CA.ts b/src-qt4/qsudo/i18n/qsudo_fr_CA.ts index f57d7b283..a38032682 100644 --- a/src-qt4/qsudo/i18n/qsudo_fr_CA.ts +++ b/src-qt4/qsudo/i18n/qsudo_fr_CA.ts @@ -21,7 +21,11 @@ Invalid Password! Tries Left: %1 - Mot de passe invalide! Tries à gauche: %1 + Mot de passe invalide! Essais restants: %1 + + + Toggle command details + Basculer les détails d'une commande diff --git a/src-qt4/qsudo/i18n/qsudo_fur.ts b/src-qt4/qsudo/i18n/qsudo_fur.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_fur.ts +++ b/src-qt4/qsudo/i18n/qsudo_fur.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_gl.ts b/src-qt4/qsudo/i18n/qsudo_gl.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_gl.ts +++ b/src-qt4/qsudo/i18n/qsudo_gl.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_he.ts b/src-qt4/qsudo/i18n/qsudo_he.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_he.ts +++ b/src-qt4/qsudo/i18n/qsudo_he.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_hi.ts b/src-qt4/qsudo/i18n/qsudo_hi.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_hi.ts +++ b/src-qt4/qsudo/i18n/qsudo_hi.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_hr.ts b/src-qt4/qsudo/i18n/qsudo_hr.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_hr.ts +++ b/src-qt4/qsudo/i18n/qsudo_hr.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_hu.ts b/src-qt4/qsudo/i18n/qsudo_hu.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_hu.ts +++ b/src-qt4/qsudo/i18n/qsudo_hu.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_id.ts b/src-qt4/qsudo/i18n/qsudo_id.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_id.ts +++ b/src-qt4/qsudo/i18n/qsudo_id.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_is.ts b/src-qt4/qsudo/i18n/qsudo_is.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_is.ts +++ b/src-qt4/qsudo/i18n/qsudo_is.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_it.ts b/src-qt4/qsudo/i18n/qsudo_it.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_it.ts +++ b/src-qt4/qsudo/i18n/qsudo_it.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ja.ts b/src-qt4/qsudo/i18n/qsudo_ja.ts index c8383c1ff..3ce9d8414 100644 --- a/src-qt4/qsudo/i18n/qsudo_ja.ts +++ b/src-qt4/qsudo/i18n/qsudo_ja.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 パスワードが間違っています。残り試行回数: %1 + + Toggle command details + コマンド内容を表示/隠す + diff --git a/src-qt4/qsudo/i18n/qsudo_ka.ts b/src-qt4/qsudo/i18n/qsudo_ka.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ka.ts +++ b/src-qt4/qsudo/i18n/qsudo_ka.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ko.ts b/src-qt4/qsudo/i18n/qsudo_ko.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ko.ts +++ b/src-qt4/qsudo/i18n/qsudo_ko.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_lt.ts b/src-qt4/qsudo/i18n/qsudo_lt.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_lt.ts +++ b/src-qt4/qsudo/i18n/qsudo_lt.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_lv.ts b/src-qt4/qsudo/i18n/qsudo_lv.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_lv.ts +++ b/src-qt4/qsudo/i18n/qsudo_lv.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_mk.ts b/src-qt4/qsudo/i18n/qsudo_mk.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_mk.ts +++ b/src-qt4/qsudo/i18n/qsudo_mk.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_mn.ts b/src-qt4/qsudo/i18n/qsudo_mn.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_mn.ts +++ b/src-qt4/qsudo/i18n/qsudo_mn.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ms.ts b/src-qt4/qsudo/i18n/qsudo_ms.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ms.ts +++ b/src-qt4/qsudo/i18n/qsudo_ms.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_mt.ts b/src-qt4/qsudo/i18n/qsudo_mt.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_mt.ts +++ b/src-qt4/qsudo/i18n/qsudo_mt.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_nb.ts b/src-qt4/qsudo/i18n/qsudo_nb.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_nb.ts +++ b/src-qt4/qsudo/i18n/qsudo_nb.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ne.ts b/src-qt4/qsudo/i18n/qsudo_ne.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ne.ts +++ b/src-qt4/qsudo/i18n/qsudo_ne.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_nl.ts b/src-qt4/qsudo/i18n/qsudo_nl.ts index 6f0980407..1ced55fbc 100644 --- a/src-qt4/qsudo/i18n/qsudo_nl.ts +++ b/src-qt4/qsudo/i18n/qsudo_nl.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + Voer a.u.b. uw gebruikerswachtwoord in om deze opdracht uit te voeren met systeemrechten Requesting System Permissions - - + Systeemrechten vragen Access Denied - - + Toegang geweigerd This user does not have administrator permissions on this system! - - + Deze gebruiker heeft geen beheerdersrechten op dit systeem. Invalid Password! Tries Left: %1 - - + Ongeldig wachtwoord. Overgebleven pogingen: %1 + + + Toggle command details + Opdrachtdetails omschakelen diff --git a/src-qt4/qsudo/i18n/qsudo_pa.ts b/src-qt4/qsudo/i18n/qsudo_pa.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_pa.ts +++ b/src-qt4/qsudo/i18n/qsudo_pa.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_pl.ts b/src-qt4/qsudo/i18n/qsudo_pl.ts index ea894fbb1..77a7f93d4 100644 --- a/src-qt4/qsudo/i18n/qsudo_pl.ts +++ b/src-qt4/qsudo/i18n/qsudo_pl.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Błędne hasło! Pozostało prób: %1 + + Toggle command details + Przełącz szczegóły polecenia + diff --git a/src-qt4/qsudo/i18n/qsudo_pt.ts b/src-qt4/qsudo/i18n/qsudo_pt.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_pt.ts +++ b/src-qt4/qsudo/i18n/qsudo_pt.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_pt_BR.ts b/src-qt4/qsudo/i18n/qsudo_pt_BR.ts index df0fd22f2..56b3154a5 100644 --- a/src-qt4/qsudo/i18n/qsudo_pt_BR.ts +++ b/src-qt4/qsudo/i18n/qsudo_pt_BR.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Senha inválida! Tentativas restantes: %1 + + Toggle command details + Detalhes do comando de alternância + diff --git a/src-qt4/qsudo/i18n/qsudo_ro.ts b/src-qt4/qsudo/i18n/qsudo_ro.ts index 6f0980407..e87b4d324 100644 --- a/src-qt4/qsudo/i18n/qsudo_ro.ts +++ b/src-qt4/qsudo/i18n/qsudo_ro.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + Vă rugăm să introduceți parola de utilizator pentru a rula această comandă cu permisiuni de sistem Requesting System Permissions - - + Solicită permisiuni de sistem Access Denied - - + Acces refuzat This user does not have administrator permissions on this system! - - + Acest utilizator nu are permisiuni de administrator pe acest sistem! Invalid Password! Tries Left: %1 - - + Parolă invalidă! Încecări rămase: %1 + + + Toggle command details + Comutare detalii comandă diff --git a/src-qt4/qsudo/i18n/qsudo_ru.ts b/src-qt4/qsudo/i18n/qsudo_ru.ts index 0f04fd955..e04e9fbd7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ru.ts +++ b/src-qt4/qsudo/i18n/qsudo_ru.ts @@ -27,5 +27,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_sa.ts b/src-qt4/qsudo/i18n/qsudo_sa.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_sa.ts +++ b/src-qt4/qsudo/i18n/qsudo_sa.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_sk.ts b/src-qt4/qsudo/i18n/qsudo_sk.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_sk.ts +++ b/src-qt4/qsudo/i18n/qsudo_sk.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_sl.ts b/src-qt4/qsudo/i18n/qsudo_sl.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_sl.ts +++ b/src-qt4/qsudo/i18n/qsudo_sl.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_sr.ts b/src-qt4/qsudo/i18n/qsudo_sr.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_sr.ts +++ b/src-qt4/qsudo/i18n/qsudo_sr.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_sv.ts b/src-qt4/qsudo/i18n/qsudo_sv.ts index 6f0980407..a25ca6344 100644 --- a/src-qt4/qsudo/i18n/qsudo_sv.ts +++ b/src-qt4/qsudo/i18n/qsudo_sv.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + Var god ange din användares lösenord för att köra detta kommando med systemprivilegier Requesting System Permissions - - + Begär systemprivilegier Access Denied - - + Åtkomst nekad This user does not have administrator permissions on this system! - - + Denna användaren har inte administratörprivilegier på detta system! Invalid Password! Tries Left: %1 - - + Ogitligt lösenord! Försök kvar: %1 + + + Toggle command details + Växla kommando detaljer diff --git a/src-qt4/qsudo/i18n/qsudo_sw.ts b/src-qt4/qsudo/i18n/qsudo_sw.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_sw.ts +++ b/src-qt4/qsudo/i18n/qsudo_sw.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_ta.ts b/src-qt4/qsudo/i18n/qsudo_ta.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_ta.ts +++ b/src-qt4/qsudo/i18n/qsudo_ta.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_tg.ts b/src-qt4/qsudo/i18n/qsudo_tg.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_tg.ts +++ b/src-qt4/qsudo/i18n/qsudo_tg.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_th.ts b/src-qt4/qsudo/i18n/qsudo_th.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_th.ts +++ b/src-qt4/qsudo/i18n/qsudo_th.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_tr.ts b/src-qt4/qsudo/i18n/qsudo_tr.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_tr.ts +++ b/src-qt4/qsudo/i18n/qsudo_tr.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_uk.ts b/src-qt4/qsudo/i18n/qsudo_uk.ts index 7c7263d0c..46435ff1d 100644 --- a/src-qt4/qsudo/i18n/qsudo_uk.ts +++ b/src-qt4/qsudo/i18n/qsudo_uk.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Невірний пароль! Лишилося спроб: %1 + + Toggle command details + Показати команду + diff --git a/src-qt4/qsudo/i18n/qsudo_uz.ts b/src-qt4/qsudo/i18n/qsudo_uz.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_uz.ts +++ b/src-qt4/qsudo/i18n/qsudo_uz.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/qsudo/i18n/qsudo_vi.ts b/src-qt4/qsudo/i18n/qsudo_vi.ts index 65b24ea2b..c17c004d0 100644 --- a/src-qt4/qsudo/i18n/qsudo_vi.ts +++ b/src-qt4/qsudo/i18n/qsudo_vi.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 Mật khẩu không hợp lệ! Cố gắng trái: %1 + + Toggle command details + Chi tiết lệnh Chuyển chế độ + diff --git a/src-qt4/qsudo/i18n/qsudo_zh_CN.ts b/src-qt4/qsudo/i18n/qsudo_zh_CN.ts index ff7f2fe30..3cdbd9167 100644 --- a/src-qt4/qsudo/i18n/qsudo_zh_CN.ts +++ b/src-qt4/qsudo/i18n/qsudo_zh_CN.ts @@ -23,5 +23,9 @@ Invalid Password! Tries Left: %1 密码无效!还可尝试1%次 + + Toggle command details + 打开/关闭命令细节 + diff --git a/src-qt4/qsudo/i18n/qsudo_zh_HK.ts b/src-qt4/qsudo/i18n/qsudo_zh_HK.ts index 6f0980407..da9338066 100644 --- a/src-qt4/qsudo/i18n/qsudo_zh_HK.ts +++ b/src-qt4/qsudo/i18n/qsudo_zh_HK.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + 請輸入密碼並以系統權限執行此指令 Requesting System Permissions - - + 正在要求取得系統權限 Access Denied - - + 存取被拒 This user does not have administrator permissions on this system! - - + 此用戶在此系統並無管理員權限! Invalid Password! Tries Left: %1 - - + 密碼無效!還可再嘗試 %1 次 + + + Toggle command details + 切換指令詳情 diff --git a/src-qt4/qsudo/i18n/qsudo_zh_TW.ts b/src-qt4/qsudo/i18n/qsudo_zh_TW.ts index 6f0980407..245f0953a 100644 --- a/src-qt4/qsudo/i18n/qsudo_zh_TW.ts +++ b/src-qt4/qsudo/i18n/qsudo_zh_TW.ts @@ -5,28 +5,27 @@ MainWindow Please enter your user password to run this command with system permissions - - + 請輸入密碼並以系統權限執行此指令 Requesting System Permissions - - + 正在要求取得系統權限 Access Denied - - + 存取被拒 This user does not have administrator permissions on this system! - - + 此使用者在此系統並無管理員權限! Invalid Password! Tries Left: %1 - - + 密碼無效!還可再嘗試 %1 次 + + + Toggle command details + 切換指令詳情 diff --git a/src-qt4/qsudo/i18n/qsudo_zu.ts b/src-qt4/qsudo/i18n/qsudo_zu.ts index 6f0980407..68168dbe7 100644 --- a/src-qt4/qsudo/i18n/qsudo_zu.ts +++ b/src-qt4/qsudo/i18n/qsudo_zu.ts @@ -28,5 +28,10 @@ + + Toggle command details + + + diff --git a/src-qt4/warden-gui/i18n/Warden_af.ts b/src-qt4/warden-gui/i18n/Warden_af.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_af.ts +++ b/src-qt4/warden-gui/i18n/Warden_af.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ar.ts b/src-qt4/warden-gui/i18n/Warden_ar.ts index d05af009c..57923865a 100644 --- a/src-qt4/warden-gui/i18n/Warden_ar.ts +++ b/src-qt4/warden-gui/i18n/Warden_ar.ts @@ -168,11 +168,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -283,6 +278,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_az.ts b/src-qt4/warden-gui/i18n/Warden_az.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_az.ts +++ b/src-qt4/warden-gui/i18n/Warden_az.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_bg.ts b/src-qt4/warden-gui/i18n/Warden_bg.ts index 8017b77c5..0bdea7ef1 100644 --- a/src-qt4/warden-gui/i18n/Warden_bg.ts +++ b/src-qt4/warden-gui/i18n/Warden_bg.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_bn.ts b/src-qt4/warden-gui/i18n/Warden_bn.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_bn.ts +++ b/src-qt4/warden-gui/i18n/Warden_bn.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_bs.ts b/src-qt4/warden-gui/i18n/Warden_bs.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_bs.ts +++ b/src-qt4/warden-gui/i18n/Warden_bs.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ca.ts b/src-qt4/warden-gui/i18n/Warden_ca.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ca.ts +++ b/src-qt4/warden-gui/i18n/Warden_ca.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_cs.ts b/src-qt4/warden-gui/i18n/Warden_cs.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_cs.ts +++ b/src-qt4/warden-gui/i18n/Warden_cs.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_cy.ts b/src-qt4/warden-gui/i18n/Warden_cy.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_cy.ts +++ b/src-qt4/warden-gui/i18n/Warden_cy.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_da.ts b/src-qt4/warden-gui/i18n/Warden_da.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_da.ts +++ b/src-qt4/warden-gui/i18n/Warden_da.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_de.ts b/src-qt4/warden-gui/i18n/Warden_de.ts index f71ce8f53..be392c8c1 100644 --- a/src-qt4/warden-gui/i18n/Warden_de.ts +++ b/src-qt4/warden-gui/i18n/Warden_de.ts @@ -29,11 +29,11 @@ Jail Directory - Jail Verzeichnis + Jail-Verzeichnis Temp Directory - Temp Verzeichnis + Temp-Verzeichnis Select Jail Directory @@ -137,10 +137,6 @@ Permissions Berechtigungen - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Für diese Jail können die folgenden Berechtigungen aktiviert oder deaktiviert werden. Für weitere Details die Maus über das jeweilige Element gehen oder die Jail-Manpage zu Rate ziehen. - A process within the jail has access to System V IPC primitives. Prozesse innerhalb einer Jail haben Zugriff auf die System V IPC-Grundfunktionen. @@ -209,8 +205,7 @@ Options - - + Optionen Enable VNET / VIMAGE support @@ -237,6 +232,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport @@ -277,25 +276,23 @@ dialogTemplates Jail Templates - - + Jail-Vorlagen Add a new Jail - Neue Jail hinzufügen + Neue Jail hinzufügen Remove the selected Jail - Entferne die ausgewählte Jail + Entferne die ausgewählte Jail &Close - &Schließen + &Schließen System Version - - + Systemversion What version do you wish to fetch? @@ -669,12 +666,11 @@ Package Manager - Paketverwalter + Paketverwaltung Template Manager - - + Vorlagenverwaltung @@ -792,22 +788,19 @@ Jail Version - - + Jail Version Use system version (default) - - + Verwende Systemversion (Standard) Invalid IPv6 address! - Ungültige IPv6-Adresse! + Ungültige IPv6-Adresse! This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + Dieser Assistent begleitet Sie durch die Erstellung einer neuen Jail. Zuerst geben Sie einen Hostnamen und eine IP-Adresse ein, die aktuell im Netzwerk nicht verwendet wird. Wenn sie per IPv6 auf die Jail zugreifen wollen, wählen Sie die IPv6 Adressbox an und geben eine gültige IPv6-Adresse ein. Wenn Sie fertig sind klicken sie Weiter um fortzufahren. diff --git a/src-qt4/warden-gui/i18n/Warden_el.ts b/src-qt4/warden-gui/i18n/Warden_el.ts index 2c4e4ff7b..5bb9d2960 100644 --- a/src-qt4/warden-gui/i18n/Warden_el.ts +++ b/src-qt4/warden-gui/i18n/Warden_el.ts @@ -165,11 +165,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -280,6 +275,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_en_GB.ts b/src-qt4/warden-gui/i18n/Warden_en_GB.ts index 8544e85b8..1bb2bac5b 100644 --- a/src-qt4/warden-gui/i18n/Warden_en_GB.ts +++ b/src-qt4/warden-gui/i18n/Warden_en_GB.ts @@ -137,10 +137,6 @@ Permissions Permissions - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - A process within the jail has access to System V IPC primitives. A process within the jail has access to System V IPC primitives. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 Default Router (Requires VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_en_ZA.ts b/src-qt4/warden-gui/i18n/Warden_en_ZA.ts index 8544e85b8..1bb2bac5b 100644 --- a/src-qt4/warden-gui/i18n/Warden_en_ZA.ts +++ b/src-qt4/warden-gui/i18n/Warden_en_ZA.ts @@ -137,10 +137,6 @@ Permissions Permissions - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - A process within the jail has access to System V IPC primitives. A process within the jail has access to System V IPC primitives. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 Default Router (Requires VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_es.ts b/src-qt4/warden-gui/i18n/Warden_es.ts index 61e0945c6..10c62ceeb 100644 --- a/src-qt4/warden-gui/i18n/Warden_es.ts +++ b/src-qt4/warden-gui/i18n/Warden_es.ts @@ -137,10 +137,6 @@ Permissions Permisos - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Los siguientes permisos pueden ser activados o desactivados para esta jaula. Para más detalles mueva el puntero sobre cada ítem o refiérase al manual de las jaulas. - A process within the jail has access to System V IPC primitives. Un proceso dentro de la jaula tiene acceso a primitivas IPC de System V. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 Router por defecto (Requiere VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_et.ts b/src-qt4/warden-gui/i18n/Warden_et.ts index b25bec1ae..30d630163 100644 --- a/src-qt4/warden-gui/i18n/Warden_et.ts +++ b/src-qt4/warden-gui/i18n/Warden_et.ts @@ -137,11 +137,6 @@ Permissions Load - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -252,6 +247,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_eu.ts b/src-qt4/warden-gui/i18n/Warden_eu.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_eu.ts +++ b/src-qt4/warden-gui/i18n/Warden_eu.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_fa.ts b/src-qt4/warden-gui/i18n/Warden_fa.ts index f0efff055..7631dcabc 100644 --- a/src-qt4/warden-gui/i18n/Warden_fa.ts +++ b/src-qt4/warden-gui/i18n/Warden_fa.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_fi.ts b/src-qt4/warden-gui/i18n/Warden_fi.ts index 9d18045f4..c17b3d4cd 100644 --- a/src-qt4/warden-gui/i18n/Warden_fi.ts +++ b/src-qt4/warden-gui/i18n/Warden_fi.ts @@ -156,11 +156,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -271,6 +266,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_fr.ts b/src-qt4/warden-gui/i18n/Warden_fr.ts index 173f17dad..ca02a6920 100644 --- a/src-qt4/warden-gui/i18n/Warden_fr.ts +++ b/src-qt4/warden-gui/i18n/Warden_fr.ts @@ -137,10 +137,6 @@ Permissions Permissions - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Les autorisations suivantes peuvent être activées ou désactivées pour ce jail. Pour plus de détails survoler chaques articles ou reportez-vous à la page du manuel de Jail. - A process within the jail has access to System V IPC primitives. Un processus au sein de ce Jail a accès à V IPC primitive système. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 Routeur par défaut (Nécessite VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_fr_CA.ts b/src-qt4/warden-gui/i18n/Warden_fr_CA.ts index b1315c9d6..df026ac70 100644 --- a/src-qt4/warden-gui/i18n/Warden_fr_CA.ts +++ b/src-qt4/warden-gui/i18n/Warden_fr_CA.ts @@ -137,10 +137,6 @@ Permissions Permissions - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Les autorisations suivantes peuvent être activées ou désactivées pour ce Jail. Pour plus de détails survoler sur chaque article ou reportez-vous à la page du manuel de Jail.. - A process within the jail has access to System V IPC primitives. Un processus au sein de ce Jail a accès à V IPC système primitif. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) Routeur par défaut IPv6 (Nécessite VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_fur.ts b/src-qt4/warden-gui/i18n/Warden_fur.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_fur.ts +++ b/src-qt4/warden-gui/i18n/Warden_fur.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_gl.ts b/src-qt4/warden-gui/i18n/Warden_gl.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_gl.ts +++ b/src-qt4/warden-gui/i18n/Warden_gl.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_he.ts b/src-qt4/warden-gui/i18n/Warden_he.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_he.ts +++ b/src-qt4/warden-gui/i18n/Warden_he.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_hi.ts b/src-qt4/warden-gui/i18n/Warden_hi.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_hi.ts +++ b/src-qt4/warden-gui/i18n/Warden_hi.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_hr.ts b/src-qt4/warden-gui/i18n/Warden_hr.ts index 3590889a4..43e8bb64d 100644 --- a/src-qt4/warden-gui/i18n/Warden_hr.ts +++ b/src-qt4/warden-gui/i18n/Warden_hr.ts @@ -154,11 +154,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -269,6 +264,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_hu.ts b/src-qt4/warden-gui/i18n/Warden_hu.ts index 7d3e9d2bc..2b7c72377 100644 --- a/src-qt4/warden-gui/i18n/Warden_hu.ts +++ b/src-qt4/warden-gui/i18n/Warden_hu.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_id.ts b/src-qt4/warden-gui/i18n/Warden_id.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_id.ts +++ b/src-qt4/warden-gui/i18n/Warden_id.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_is.ts b/src-qt4/warden-gui/i18n/Warden_is.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_is.ts +++ b/src-qt4/warden-gui/i18n/Warden_is.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_it.ts b/src-qt4/warden-gui/i18n/Warden_it.ts index 3af3ac8ab..89ca38baf 100644 --- a/src-qt4/warden-gui/i18n/Warden_it.ts +++ b/src-qt4/warden-gui/i18n/Warden_it.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ja.ts b/src-qt4/warden-gui/i18n/Warden_ja.ts index 4fa3f9985..21bc23e15 100644 --- a/src-qt4/warden-gui/i18n/Warden_ja.ts +++ b/src-qt4/warden-gui/i18n/Warden_ja.ts @@ -95,173 +95,139 @@ Jail Configuration - - + Jail の設定 IPv4 - - + IPv4 IPv4 Address - - + IPv4 アドレス IPv6 - - + IPv6 IPv6 Address - - + IPv6 アドレス Aliases - - + エイリアス IPv4 Aliases - - + IPv4 エイリアス IPv4 Bridge Aliases - - + IPv4 ブリッジのエイリアス IPv6 Aliases - - + IPv6 エイリアス IPv6 Bridge Aliases - - + IPv6 ブリッジのエイリアス Permissions - - - - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - + パーミッション A process within the jail has access to System V IPC primitives. - - + jail 内のプロセスを System V IPC 基本関数にアクセスできるようにします。 The prison root is allowed to create raw sockets. Enables ping / traceroute. - - - - - When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - - + jail 内の root が生のソケットを生成できるようにします。ping / traceroute が利用できるようになります。 Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - - + jail の内側の特権ユーザーは、jail-friendly としてマークされた種類のファイルシステムをマウントして、アンマウントすることができます。 Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + jail の内側の特権ユーザーは、devfs ファイルシステムをマウントして、アンマウントがすることができます。 Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + jail の内側の特権ユーザーは、nullfs ファイルシステムをマウントして、アンマウントがすることができます。 Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + jail の内側の特権ユーザーは、procfs ファイルシステムをマウントして、アンマウントがすることができます。 Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + jail の内側の特権ユーザーは、zfs ファイルシステムをマウントして、アンマウントがすることができます。 The prison root may administer quotas on the jail's filesystem(s). - - + jail 内の root は jail が利用するファイルシステムにクオータを設定することができます。 This allows access to other protocol stacks that have not had jail functionality added to them. - - + jail で通常認められていないプロトコルへのアクセスを認めます。 Invalid IPv4 address! - - + 無効な IPv4 アドレスです Invalid IPv4 bridge address! - - + 無効な IPv4 ブリッジのアドレスです Invalid IPv4 router address! - - + 無効な IPv4 ルーターのアドレスです Invalid IPv6 address! - - + 無効な IPv6 アドレスです Invalid IPv6 bridge address! - - + 無効な IPv6 ブリッジのアドレスです Invalid IPv6 router address! - - + 無効な IPv6 ルーターのアドレスです Options - - + オプション Enable VNET / VIMAGE support - - + VNET / VIMAGE サポートを有効にする IPv4 Bridge Address (Requires VNET) - - + IPv4 ブリッジのアドレス (VNET が必要) IPv4 Default Router (Requires VNET) - - + デフォルトの IPv4 ルーター (VNET が必要) IPv6 Bridge Address (Requires VNET) - - + IPv6 ブリッジのアドレス (VNET が必要) IPv6 Default Router (Requires VNET) - - + デフォルトの IPv6 ルーター (VNET が必要) + + + When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. + このパラメーターが設定されると、jail 内の特権ユーザーが通常の kern.securelevel による制限の範囲でシステムファイルを操作することが可能になります。 + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -272,7 +238,7 @@ You have the option to change the IP / Hostname of the imported jail. Any internal references to the old IP / hostname may still need to be changed after importing. - インポートした Jail の IP アドレス/ホスト名を変更した場合には、Jail 内にある全ての旧 IP アドレス/ホスト名の設定を変更する必要があります。 + インポートした Jail の IP アドレス/ホスト名を変更した場合には、Jail 内にある全ての旧 IP アドレス/ホスト名の設定を変更する必要があります。 999\.999\.999\.999; @@ -303,40 +269,35 @@ dialogTemplates Jail Templates - - + jail のテンプレート Add a new Jail - 新しい Jail を追加 + 新しい Jail を追加 Remove the selected Jail - 選択した Jail を削除 + 選択した Jail を削除 &Close - 閉じる(&C) + 閉じる(&C) System Version - - + システムのバージョン What version do you wish to fetch? - - + どのバージョンを取得しますか? Template Nickname - - + テンプレートのニックネーム Enter a nickname for this template: - - + テンプレートのニックネームを入力してください: @@ -687,23 +648,19 @@ IPs: - - + IP: Configure the jail - - + jail の設定 Package Manager - - + パッケージマネージャー Template Manager - - + テンプレートマネージャー @@ -805,43 +762,35 @@ IPv4 Address - - + IPv4 アドレス IPv6 Address - - + IPv6 アドレス Traditional Jail (Secure, best for services) - - + 伝統的な jail (セキュアでサービスの提供に最適) Install PKGNG and PC-BSD utilities - - + PKGNG と PC-BSD のユーティリティーをインストールする Jail Version - - + jail のバージョン Use system version (default) - - + 使用するシステムのバージョン (デフォルト) Invalid IPv6 address! - - + 無効な IPv6 アドレスです This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + このウィザードの指示通りに Jail の新規作成を行います。最初に現在ネットワーク上で使用していない IP アドレスとホスト名を入力します。もし IPv6 アドレスを利用する場合にはチェックを入れて正しい IPv6 アドレスを入力して、「次へ」をクリックします。 diff --git a/src-qt4/warden-gui/i18n/Warden_ka.ts b/src-qt4/warden-gui/i18n/Warden_ka.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ka.ts +++ b/src-qt4/warden-gui/i18n/Warden_ka.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ko.ts b/src-qt4/warden-gui/i18n/Warden_ko.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ko.ts +++ b/src-qt4/warden-gui/i18n/Warden_ko.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_lt.ts b/src-qt4/warden-gui/i18n/Warden_lt.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_lt.ts +++ b/src-qt4/warden-gui/i18n/Warden_lt.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_lv.ts b/src-qt4/warden-gui/i18n/Warden_lv.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_lv.ts +++ b/src-qt4/warden-gui/i18n/Warden_lv.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_mk.ts b/src-qt4/warden-gui/i18n/Warden_mk.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_mk.ts +++ b/src-qt4/warden-gui/i18n/Warden_mk.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_mn.ts b/src-qt4/warden-gui/i18n/Warden_mn.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_mn.ts +++ b/src-qt4/warden-gui/i18n/Warden_mn.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ms.ts b/src-qt4/warden-gui/i18n/Warden_ms.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ms.ts +++ b/src-qt4/warden-gui/i18n/Warden_ms.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_mt.ts b/src-qt4/warden-gui/i18n/Warden_mt.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_mt.ts +++ b/src-qt4/warden-gui/i18n/Warden_mt.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_nb.ts b/src-qt4/warden-gui/i18n/Warden_nb.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_nb.ts +++ b/src-qt4/warden-gui/i18n/Warden_nb.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ne.ts b/src-qt4/warden-gui/i18n/Warden_ne.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ne.ts +++ b/src-qt4/warden-gui/i18n/Warden_ne.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_nl.ts b/src-qt4/warden-gui/i18n/Warden_nl.ts index 5c80975ea..7d44ea185 100644 --- a/src-qt4/warden-gui/i18n/Warden_nl.ts +++ b/src-qt4/warden-gui/i18n/Warden_nl.ts @@ -137,119 +137,97 @@ Permissions Rechten - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - De volgende rechten kunnen worden in- of uitgeschakeld voor deze gevangenis. Laat de muispijl rusten op een element voor meer bijzonderheden, of gebruik de handleidingpagina van Gevangenis (manpage). - A process within the jail has access to System V IPC primitives. - - + Een proces binnen de gevangenis heeft toegang tot System V IPC primitives. The prison root is allowed to create raw sockets. Enables ping / traceroute. - - + De root van de gevangenis mag ruwe sockets maken. Schakelt ping / traceroute in. When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - - + Wanneer deze parameter is ingesteld, worden gebruikers behandeld als bevoorrecht, en mogen zij vlaggen van systeembestanden veranderen onder de gebruikelijke beperkingen voor kern.securelevel. Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - - + Bevoorrechte gebruikers binnen de gevangenis zullen in staat zijn om bestandssysteemtypes te koppelen en te ontkoppelen, wanneer die zijn aangemerkt als gevangenis-vriendelijk. Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + Bevoorrechte gebruikers binnen de gevangenis zullen in staat zijn om het devfs-bestandssysteem te koppelen en te ontkoppelen. Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + Bevoorrechte gebruikers binnen de gevangenis zullen in staat zijn om het nullfs-bestandssysteem te koppelen en te ontkoppelen. Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + Bevoorrechte gebruikers binnen de gevangenis zullen in staat zijn om het procfs-bestandssysteem te koppelen en te ontkoppelen. Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + Bevoorrechte gebruikers binnen de gevangenis zullen in staat zijn om het zfs-bestandssysteem te koppelen en te ontkoppelen. The prison root may administer quotas on the jail's filesystem(s). - - + De root van de gevangenis mag quota beheren op de bestandssystemen van de gevangenis. This allows access to other protocol stacks that have not had jail functionality added to them. - - + Dit maakt toegang mogelijk tot andere protocollen die geen gevangenisfunctionaliteit hebben gekregen. Invalid IPv4 address! - - + Ongeldig IPv4-adres. Invalid IPv4 bridge address! - - + Ongeldig IPv4-brugadres. Invalid IPv4 router address! - - + Ongeldig IPv4-routeradres. Invalid IPv6 address! - - + Ongeldig IPv6-adres. Invalid IPv6 bridge address! - - + Ongeldig IPv6-brugadres. Invalid IPv6 router address! - - + Ongeldig IPv6-routeradres. Options - - + Opties Enable VNET / VIMAGE support - - + Schakel ondersteuning in voor VNET / VIMAGE IPv4 Bridge Address (Requires VNET) - - + IPv4-brugadres (vereist VNET) IPv4 Default Router (Requires VNET) - - + IPv4-standaardrouter (vereist VNET) IPv6 Bridge Address (Requires VNET) - - + IPv6-brugadres (vereist VNET) IPv6 Default Router (Requires VNET) - - + IPv6-standaardrouter (vereist VNET) + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -260,7 +238,7 @@ You have the option to change the IP / Hostname of the imported jail. Any internal references to the old IP / hostname may still need to be changed after importing. - U hebt de optie om de IP / hostnaam van de geimporteerde Gevangenis te veranderen. Eventuele interne verwijzingen naar de oude IP / hostnaam moeten mogelijk nog steeds worden veranderd na de import. + U hebt de optie om de IP / systeemnaam van de geïmporteerde Gevangenis te veranderen. Eventuele interne verwijzingen naar de oude IP / systeemnaam moeten mogelijk nog steeds worden veranderd na de import. Change IP Address @@ -276,7 +254,7 @@ Change Hostname - Hostnaam veranderen + Systeemnaam veranderen &Ok @@ -291,40 +269,35 @@ dialogTemplates Jail Templates - - + Gevangenissjablonen Add a new Jail - Een nieuwe Gevangenis toevoegen + Een nieuwe Gevangenis toevoegen Remove the selected Jail - De gekozen Gevangenis verwijderen + De gekozen Gevangenis verwijderen &Close - &Sluiten + &Sluiten System Version - - + Systeemversie What version do you wish to fetch? - - + Welke versie wilt u ophalen? Template Nickname - - + Bijnaam van sjabloon Enter a nickname for this template: - - + Voer een bijnaam in voor deze sjabloon: @@ -515,7 +488,7 @@ Check for Updates - Controleer op updates + Controleer op bijgewerkte pakketten Start at boot: @@ -523,7 +496,7 @@ No jail selected! - Geen Gevangenis gekozen! + Geen Gevangenis gekozen. Snapshots @@ -603,7 +576,7 @@ (Cloned) - (Gekloond) + (Gekloond) Loading clones... @@ -675,23 +648,19 @@ IPs: - - + IPs: Configure the jail - - + Stel de Gevangenis in Package Manager - - + Pakketbeheerder Template Manager - - + Sjabloonbeheerder @@ -705,7 +674,7 @@ wizardNewJail Hostname - Hostnaam + Systeemnaam Jailbird @@ -713,7 +682,7 @@ Please select the type of jail you want to create. - Kies a.u.b. het type Gevangenis dat u wil aanmaken. + Kies a.u.b. het type Gevangenis dat u wil maken. Jail Type @@ -745,7 +714,7 @@ Include ports tree - Ports tree opnemen + Poortenboom opnemen Start jail at system bootup @@ -773,7 +742,7 @@ Hostname already used! - Hostnaam is reeds in gebruik. + Systeemnaam is reeds in gebruik. IP already used! @@ -793,43 +762,35 @@ IPv4 Address - - + IPv4-adres IPv6 Address - - + IPv6-adres Traditional Jail (Secure, best for services) - - + Traditionele Gevangenis (veilig, beste voor diensten) Install PKGNG and PC-BSD utilities - - + Installeer PKGNG- en PC-BSD-hulpmiddelen Jail Version - - + Gevangenisversie Use system version (default) - - + Gebruik systeemversie (standaard) Invalid IPv6 address! - - + Ongeldig IPv6-adres. This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + Deze instelhulp zal u begeleiden bij het maken van een nieuwe Gevangenis. Voer eerst een systeemnaam en IP-adres in, die nog niet in gebruik zijn op het netwerk. Indien u voornemens bent om IPv6 te gebruiken bij het benaderen van de Gevangenis, vink dan het vakje aan voor IPv6-adres en voer een geldig IPv6-adres in. Wanneer u gereed bent klikt u op Volgende om door te gaan. diff --git a/src-qt4/warden-gui/i18n/Warden_pa.ts b/src-qt4/warden-gui/i18n/Warden_pa.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_pa.ts +++ b/src-qt4/warden-gui/i18n/Warden_pa.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_pl.ts b/src-qt4/warden-gui/i18n/Warden_pl.ts index 8daa59207..ccb391b49 100644 --- a/src-qt4/warden-gui/i18n/Warden_pl.ts +++ b/src-qt4/warden-gui/i18n/Warden_pl.ts @@ -137,10 +137,6 @@ Permissions Uprawnienia - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Następujące uprawnienia będą włączone lub wyłączone dla tej celi. Więcej szczegółów po podniesieniu każdej z nich lub w instrukcji dla Celi. - A process within the jail has access to System V IPC primitives. Proces w celi ma dostęp do System V IPC primitives. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) Domyślny router IPv6 ( wymaga VNET ) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_pt.ts b/src-qt4/warden-gui/i18n/Warden_pt.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_pt.ts +++ b/src-qt4/warden-gui/i18n/Warden_pt.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_pt_BR.ts b/src-qt4/warden-gui/i18n/Warden_pt_BR.ts index a6dbfc0ff..77ecd4cf2 100644 --- a/src-qt4/warden-gui/i18n/Warden_pt_BR.ts +++ b/src-qt4/warden-gui/i18n/Warden_pt_BR.ts @@ -115,13 +115,11 @@ Aliases - - + Apelidos IPv4 Aliases - - + Apelidos IPv4 IPv4 Bridge Aliases @@ -130,8 +128,7 @@ IPv6 Aliases - - + Apelidos IPv6 IPv6 Bridge Aliases @@ -142,11 +139,6 @@ Permissions Permissões - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -169,23 +161,19 @@ Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + Usuários privilegiados dentro do jail poderão montar e desmontar o sistema de arquivos devfs. Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + Usuários privilegiados dentro do jail poderão montar e desmontar o sistema de arquivos nullfs. Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + Usuários privilegiados dentro do jail poderão montar e desmontar o sistema de arquivos procfs. Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + Usuários privilegiados dentro do jail poderão montar e desmontar o sistema de arquivos zfs. The prison root may administer quotas on the jail's filesystem(s). @@ -203,13 +191,11 @@ Invalid IPv4 bridge address! - - + Endereço de ponte IPv4 inválido! Invalid IPv4 router address! - - + Endereço de roteador IPv4 inválido! Invalid IPv6 address! @@ -217,13 +203,11 @@ Invalid IPv6 bridge address! - - + Endereço de ponte IPv6 inválido! Invalid IPv6 router address! - - + Endereço de roteador IPv6 inválido! Options @@ -231,27 +215,27 @@ Enable VNET / VIMAGE support - Habilitar suporte VNET / VIMAGE + Habilitar suporte ao VNET / VIMAGE IPv4 Bridge Address (Requires VNET) - - + Endereço de ponte IPv4 (Requer VNET) IPv4 Default Router (Requires VNET) - - + Roteador padrão IPv4 (Requer VNET) IPv6 Bridge Address (Requires VNET) - - + Endereço de ponte IPv6 (Requer VNET) IPv6 Default Router (Requires VNET) - - + Roteador padrão IPv6 (Requer VNET) + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -262,7 +246,7 @@ You have the option to change the IP / Hostname of the imported jail. Any internal references to the old IP / hostname may still need to be changed after importing. - Você tem a opção de alterar o IP / nome de host do jail importado. Quaisquer referências internas ao antigo IP / nome de host ainda precisarão ser alteradas depois da importação. + Você tem a opção de alterar o IP / nome da máquina do jail importado. Quaisquer referências internas ao antigo IP / nome da máquina ainda precisarão ser alteradas depois da importação. Change IP Address @@ -278,7 +262,7 @@ Change Hostname - Alterar nome de host + Alterar nome da máquina &Ok @@ -293,8 +277,7 @@ dialogTemplates Jail Templates - - + Modelos de jail Add a new Jail @@ -319,13 +302,11 @@ Template Nickname - - + Apelido do modelo Enter a nickname for this template: - - + Digite um apelido para este modelo: @@ -368,7 +349,7 @@ Toggle Autostart - Alternar o auto início + Alternar o início automático Export jail to .wdn file @@ -672,7 +653,7 @@ The Warden - O Warden + The Warden IPs: @@ -680,18 +661,15 @@ Configure the jail - - + Configurar o jail Package Manager - - + Gerenciador de Pacotes Template Manager - - + Gerenciador de Modelos @@ -705,7 +683,7 @@ wizardNewJail Hostname - Nome do host + Nome da máquina Jailbird @@ -785,13 +763,11 @@ Please take a moment and set any other options for this jail. Note that including the system source option requires that they be present in /usr/src. - - + Por favor, reserve um momento e configure todas as outras opções para este jail. Note que incluindo a opção fonte do sistema requer que este esteja presente em /usr/src. Please take a moment and set any other options for this jail. - - + Por favor, reserve um momento e configure todas as outras opções para este jail. IPv4 Address @@ -803,11 +779,11 @@ Traditional Jail (Secure, best for services) - Jail tradicional (Seguro, melhor para serviços) + Jail tradicional (Seguro, melhor para serviços) Install PKGNG and PC-BSD utilities - Instalar PKGNG e utilitários do PC-BSD + Instalar PKGNG e utilitários do PC-BSD Jail Version @@ -823,7 +799,7 @@ This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - Este assistente irá guiá-lo na criação de um novo jail. Primeiro, digite um nome de host e um endereço IP que não esteja em uso na rede. Se planeja usar IPv6 para acessar o jail, verifique a caixa do endereço IPv6 e insira um endereço IPv6 válido. Quando terminar, clique em Próximo para continuar. + Este assistente irá guiá-lo na criação de um novo jail. Primeiro, digite um nome da máquina e um endereço IP que não esteja em uso na rede. Se planeja usar IPv6 para acessar o jail, verifique a caixa do endereço IPv6 e insira um endereço IPv6 válido. Quando terminar, clique em Próximo para continuar. diff --git a/src-qt4/warden-gui/i18n/Warden_ro.ts b/src-qt4/warden-gui/i18n/Warden_ro.ts index ccf80e3cb..58ee49c2a 100644 --- a/src-qt4/warden-gui/i18n/Warden_ro.ts +++ b/src-qt4/warden-gui/i18n/Warden_ro.ts @@ -150,11 +150,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -265,6 +260,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ru.ts b/src-qt4/warden-gui/i18n/Warden_ru.ts index 6101bd5c6..c130fa6e3 100644 --- a/src-qt4/warden-gui/i18n/Warden_ru.ts +++ b/src-qt4/warden-gui/i18n/Warden_ru.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_sa.ts b/src-qt4/warden-gui/i18n/Warden_sa.ts index c793aa89d..f22f7fbca 100644 --- a/src-qt4/warden-gui/i18n/Warden_sa.ts +++ b/src-qt4/warden-gui/i18n/Warden_sa.ts @@ -139,11 +139,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - &Save @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_sk.ts b/src-qt4/warden-gui/i18n/Warden_sk.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_sk.ts +++ b/src-qt4/warden-gui/i18n/Warden_sk.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_sl.ts b/src-qt4/warden-gui/i18n/Warden_sl.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_sl.ts +++ b/src-qt4/warden-gui/i18n/Warden_sl.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_sr.ts b/src-qt4/warden-gui/i18n/Warden_sr.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_sr.ts +++ b/src-qt4/warden-gui/i18n/Warden_sr.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_sv.ts b/src-qt4/warden-gui/i18n/Warden_sv.ts index 0753de2ce..70cb1f688 100644 --- a/src-qt4/warden-gui/i18n/Warden_sv.ts +++ b/src-qt4/warden-gui/i18n/Warden_sv.ts @@ -95,173 +95,139 @@ Jail Configuration - - + Jail konfiguration IPv4 - - + IPv4 IPv4 Address - - + IPv4 adress IPv6 - - + IPv6 IPv6 Address - - + IPv6 adress Aliases - - + Alias IPv4 Aliases - - + IPv4 alias IPv4 Bridge Aliases - - + IPv4 bryggalias IPv6 Aliases - - + IPv6 alias IPv6 Bridge Aliases - - + IPv6 bryggalias Permissions - - - - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - + Rättigheter A process within the jail has access to System V IPC primitives. - - + En process i ett jail har tillgång till System V IPC primitiver The prison root is allowed to create raw sockets. Enables ping / traceroute. - - + Ett fängelse root är tillåten att skapa råa sockets. Tillåter ping / traceroute. When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - - + När denna parameter är satt så räknas dessa användare som privilegerade och kan manipulera systemfilers flaggor villkorade av begränsningarna i kern.securelevel. Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - - + Priviligerade använadre i ett jail kommer kunna montera och demontera filsystemstyper markerade som jail-vänliga. Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + Priviligerade användare i ett jail kommer kunna montera och demontera devfs filsystem. Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + Priviligerade användare i ett jail kommer kunna montera och demontera nullfs filsystem. Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + Priviligerade användare i ett jail kommer kunna montera och demontera procfs filsystem. Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + Priviligerade användare i ett jail kommer kunna montera och demontera zfs filsystem. The prison root may administer quotas on the jail's filesystem(s). - - + Fängelse root kan administrera kvoter på jailets filsystem. This allows access to other protocol stacks that have not had jail functionality added to them. - - + Detta ger tillgång till andra protokoll stackar som inte har jail funktionalitet tillagt. Invalid IPv4 address! - - + Ogiltigt IPv4 adress! Invalid IPv4 bridge address! - - + Ogiltig IPv4 bryggadress! Invalid IPv4 router address! - - + Ogiltig IPv4 routeradress! Invalid IPv6 address! - - + Ogiltig IPv6 adress! Invalid IPv6 bridge address! - - + Ogiltig IPv6 bryggadress! Invalid IPv6 router address! - - + Ogiltig IPv6 routeradress! Options - - + Alternativ Enable VNET / VIMAGE support - - + Aktivera VNET / VIMAGE support IPv4 Bridge Address (Requires VNET) - - + IPv4 bryggadress (Kräver VNET) IPv4 Default Router (Requires VNET) - - + IPv4 standardrouter (Kräver VNET) IPv6 Bridge Address (Requires VNET) - - + IPv6 bryggadress (Kräver VNET) IPv6 Default Router (Requires VNET) - - + IPv6 standardrouter (Kräver VNET) + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -303,40 +269,35 @@ dialogTemplates Jail Templates - - + Jail mallar Add a new Jail - Lägg till nytt Jail + Lägg till ett nytt Jail Remove the selected Jail - Ta bort valt Jail + Ta bort valt Jail &Close - &Stäng + &Stäng System Version - - + Systemversion What version do you wish to fetch? - - + Vilken version vill du hämta? Template Nickname - - + Smeknamn för mall Enter a nickname for this template: - - + Ange ett smeknamn för denna mall: @@ -687,23 +648,19 @@ IPs: - - + IPn: Configure the jail - - + Konfiguera jail'et Package Manager - - + Pakethanterare Template Manager - - + Mallhanterare @@ -805,43 +762,35 @@ IPv4 Address - - + IPv4 adress IPv6 Address - - + IPv6 adress Traditional Jail (Secure, best for services) - - + Traditionellt Jail (Säkert, bäst för tjänster) Install PKGNG and PC-BSD utilities - - + Installera PKGNG och PC-BSD verktyg Jail Version - - + Jail version Use system version (default) - - + Använd systemversion (standard) Invalid IPv6 address! - - + Ogiltig IPv6 adress! This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + Denna guide kommer gå igenom skapandet av ett nytt jail. Först, ange ett hostname och IP adress som inte används på nätverket. Om du planerar att använda IPv6 för att komma åt jailet, kryssa i IPv6 adress boxen och ange en giltig IPv6 adress. När du är klar, klicka på nästa för att fortsätta. diff --git a/src-qt4/warden-gui/i18n/Warden_sw.ts b/src-qt4/warden-gui/i18n/Warden_sw.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_sw.ts +++ b/src-qt4/warden-gui/i18n/Warden_sw.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_ta.ts b/src-qt4/warden-gui/i18n/Warden_ta.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_ta.ts +++ b/src-qt4/warden-gui/i18n/Warden_ta.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_tg.ts b/src-qt4/warden-gui/i18n/Warden_tg.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_tg.ts +++ b/src-qt4/warden-gui/i18n/Warden_tg.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_th.ts b/src-qt4/warden-gui/i18n/Warden_th.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_th.ts +++ b/src-qt4/warden-gui/i18n/Warden_th.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_tr.ts b/src-qt4/warden-gui/i18n/Warden_tr.ts index a358a1a8f..35b6cde6f 100644 --- a/src-qt4/warden-gui/i18n/Warden_tr.ts +++ b/src-qt4/warden-gui/i18n/Warden_tr.ts @@ -148,11 +148,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -263,6 +258,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_uk.ts b/src-qt4/warden-gui/i18n/Warden_uk.ts index 941a4e5ad..8e1386876 100644 --- a/src-qt4/warden-gui/i18n/Warden_uk.ts +++ b/src-qt4/warden-gui/i18n/Warden_uk.ts @@ -137,10 +137,6 @@ Permissions Дозволи - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Наступні дозволи можуть бути увімкненими або вимкненими для цієї В'язниці. Для підказки наведіть вказівником на елемент, або зверніться до відповідної man-сторінки. - A process within the jail has access to System V IPC primitives. Процес у В'язниці має доступ до примітивів System V IPC. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 шлюз за замовчуванням (Вимагає VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_uz.ts b/src-qt4/warden-gui/i18n/Warden_uz.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_uz.ts +++ b/src-qt4/warden-gui/i18n/Warden_uz.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_vi.ts b/src-qt4/warden-gui/i18n/Warden_vi.ts index b1514bbb9..29fbf8673 100644 --- a/src-qt4/warden-gui/i18n/Warden_vi.ts +++ b/src-qt4/warden-gui/i18n/Warden_vi.ts @@ -137,10 +137,6 @@ Permissions Sự chấp nhận - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - Các quyền sau đây có thể được kích hoạt hay diabled cho các này jail. Để biết thêm chi tiết về di chuột qua mỗi mục hoặc tham khảo các trang hướng dẫn tù. - A process within the jail has access to System V IPC primitives. Một quá trình trong vòng nhà jail có quyền truy cập vào hệ thống V IPC nguyên thủy. @@ -229,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6 Mặc định Router (yêu cầu vnet) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/i18n/Warden_zh_CN.ts b/src-qt4/warden-gui/i18n/Warden_zh_CN.ts index ce454ddbb..6d236d0ae 100644 --- a/src-qt4/warden-gui/i18n/Warden_zh_CN.ts +++ b/src-qt4/warden-gui/i18n/Warden_zh_CN.ts @@ -95,143 +95,111 @@ Jail Configuration - Jail配置 - + Jail配置 IPv4 - IPv4 - + IPv4 IPv4 Address - IPv4地址 - + IPv4地址 IPv6 - IPv6 - + IPv6 IPv6 Address - IPv6地址 - + IPv6地址 Aliases - 别名 - + 别名 IPv4 Aliases - IPv4别名 - + IPv4别名 IPv4 Bridge Aliases - IPv4桥接别名 - + IPv4桥接别名 IPv6 Aliases - IPv6别名 - + IPv6别名 IPv6 Bridge Aliases - IPv6桥接别名 - + IPv6桥接别名 Permissions - 权限 - - - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - 以下是此jail可以启用或禁用的权限。可通过在每个条目上悬念鼠标或查看jail的manpage以了解更多信息。 - + 权限 A process within the jail has access to System V IPC primitives. - jail内有一进程有System V的进程间通信元。 - + jail内有一进程有System V的进程间通信元。 The prison root is allowed to create raw sockets. Enables ping / traceroute. - 狱根用户允许创建原始套接字。启用ping / traceroute。 - + 狱根用户允许创建原始套接字。启用ping / traceroute。 When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - 当参数设定好,此类用户被视为高权限用户,可以在不违反kern.securelevel的常用限制情况下控制系统文件的标识。 - + 当参数设定好,此类用户被视为高权限用户,可以在不违反kern.securelevel的常用限制情况下控制系统文件的标识。 Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - jail内的高权限用户可以挂载和卸载对jail友好的文件系统类型。 - + jail内的高权限用户可以挂载和卸载对jail友好的文件系统类型。 Privileged users inside the jail will be able to mount and unmount the devfs file system. - jail内的高权限用户可以挂载或卸载devfs文件系统。 - + jail内的高权限用户可以挂载或卸载devfs文件系统。 Privileged users inside the jail will be able to mount and unmount the nullfs file system. - jail内的高权限用户可以挂载和卸载nullfs文件系统。 - + jail内的高权限用户可以挂载和卸载nullfs文件系统。 Privileged users inside the jail will be able to mount and unmount the procfs file system. - Jail内的高权限用户可以挂载和卸载procfs文件系统。 - + Jail内的高权限用户可以挂载和卸载procfs文件系统。 Privileged users inside the jail will be able to mount and unmount the zfs file system. - Jail内的高权限用户可以挂载和卸载zfs文件系统。 - + Jail内的高权限用户可以挂载和卸载zfs文件系统。 The prison root may administer quotas on the jail's filesystem(s). - 狱根用户可以管理jail文件系统的配额。 - + 狱根用户可以管理jail文件系统的配额。 This allows access to other protocol stacks that have not had jail functionality added to them. - 此动作允许访问那些还没将jail功能添加上去的协议栈 - + 此动作允许访问那些还没将jail功能添加上去的协议栈。 Invalid IPv4 address! - 无效的IPv4地址! - + 无效的IPv4地址! Invalid IPv4 bridge address! - 无效的IPv4桥接地址! - + 无效的IPv4桥接地址! Invalid IPv4 router address! - 无效的IPv4路由地址! - + 无效的IPv4路由地址! Invalid IPv6 address! - 无效的IPv6地址! - + 无效的IPv6地址! Invalid IPv6 bridge address! - 无效的IPv6桥接地址! - + 无效的IPv6桥接地址! Invalid IPv6 router address! - 无效的IPv6路由地址! - + 无效的IPv6路由地址! Options @@ -257,6 +225,10 @@ IPv6 Default Router (Requires VNET) IPv6默认路由(需要启用VNET) + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport @@ -274,7 +246,7 @@ 999\.999\.999\.999; - 999\.999\.999\.999; + 999\.999\.999\.999; ... @@ -372,7 +344,7 @@ Toggle Autostart - 是否自启动 + 是否自启动 Export jail to .wdn file @@ -452,7 +424,7 @@ <- Please select a jail - <-请选择一个jail + <-请选择一个jail Working on jail: @@ -576,7 +548,7 @@ Are you sure you want to remove the snapshot: - 确定要删除快照: + 确定要删除快照: Updates available! @@ -592,7 +564,7 @@ Create a new snapshot - 创建新快照 + 创建新快照 Mount the snapshot @@ -600,11 +572,11 @@ Unmount the snapshot - 卸载快照 + 卸载快照 (Cloned) - (已复制) + (已复制) Loading clones... @@ -616,11 +588,11 @@ Snapshot not mounted - 快照未挂载 + 快照未挂载 R&estore - 恢复(&E) + 恢复(&E) &Mount @@ -676,18 +648,15 @@ IPs: - IP: - + IP: Configure the jail - 配置此jail - + 配置此jail Package Manager - 软件管理器 - + 软件管理器 Template Manager @@ -793,23 +762,19 @@ IPv4 Address - IPv4地址 - + IPv4地址 IPv6 Address - IPv6地址 - + IPv6地址 Traditional Jail (Secure, best for services) - 传统的Jail(安全,适用于服务) - + 传统的Jail(安全,适用于服务) Install PKGNG and PC-BSD utilities - 安装PKGNG和PC-BSD工具 - + 安装PKGNG和PC-BSD工具 Jail Version diff --git a/src-qt4/warden-gui/i18n/Warden_zh_HK.ts b/src-qt4/warden-gui/i18n/Warden_zh_HK.ts index 61d00a291..ad41c8e27 100644 --- a/src-qt4/warden-gui/i18n/Warden_zh_HK.ts +++ b/src-qt4/warden-gui/i18n/Warden_zh_HK.ts @@ -95,108 +95,83 @@ Jail Configuration - - + Jail 設定 IPv4 - - + IPv4 IPv4 Address - - + IPv4 位址 IPv6 - - + IPv6 IPv6 Address - - + IPv6 位址 Aliases - - + 別名 IPv4 Aliases - - + IPv4 別名 IPv4 Bridge Aliases - - + IPv4 橋接器別名 IPv6 Aliases - - + IPv6 別名 IPv6 Bridge Aliases - - + IPv6 橋接器別名 Permissions - - - - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - + 權限 A process within the jail has access to System V IPC primitives. - - + jail 內的進程(process)可存取 System V IPC primitives。 The prison root is allowed to create raw sockets. Enables ping / traceroute. - - + 該 prison root 可以建立原始 socket,並會啟用 ping / traceroute。 When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - - + 設定此參數之後,該等使用者會視為擁有特權,並在受 kern.securelevel 通常的限制情況下變動系統檔案旗標。 Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - - + jail 內的特權使用者可掛載或卸載標記為 jail-friendly 的檔案系統類型。 Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 devfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 nullfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 procfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 zfs 檔案系統。 The prison root may administer quotas on the jail's filesystem(s). - - + prison root 可管理該 jail 的檔案系統的磁碟配額。 This allows access to other protocol stacks that have not had jail functionality added to them. @@ -205,63 +180,55 @@ Invalid IPv4 address! - - + IPv4 位址無效! Invalid IPv4 bridge address! - - + IPv4 橋接器位址無效! Invalid IPv4 router address! - - + IPv4 路由器位址無效! Invalid IPv6 address! - - + IPv6 位址無效! Invalid IPv6 bridge address! - - + IPv6 橋接器位址無效! Invalid IPv6 router address! - - + IPv6 路由器位址無效! Options - - + 選項 Enable VNET / VIMAGE support - - + 啟用 VNET / VIMAGE 支援 IPv4 Bridge Address (Requires VNET) - - + IPv4 橋接器位址 (需要 VNET) IPv4 Default Router (Requires VNET) - - + IPv4 預設路由器 (需要 VNET) IPv6 Bridge Address (Requires VNET) - - + IPv6 橋接器位址 (需要 VNET) IPv6 Default Router (Requires VNET) - - + IPv6 預設路由器 (需要 VNET) + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -303,40 +270,35 @@ dialogTemplates Jail Templates - - + Jail 模版 Add a new Jail - 添加新 Jail + 添加新 Jail Remove the selected Jail - 移除所選 Jail + 移除所選 Jail &Close - 關閉(&C) + 關閉(&C) System Version - - + 系統版本 What version do you wish to fetch? - - + 要擷取哪個版本? Template Nickname - - + 模版暱稱 Enter a nickname for this template: - - + 輸入此模版的暱稱: @@ -671,7 +633,7 @@ No valid network interface specified! Select one now? - 尚未指定有效的網絡介面。是否要現在指定? + 尚未指定有效的網絡介面!是否要現在指定? Scheduled Snapshots @@ -687,23 +649,19 @@ IPs: - - + IP: Configure the jail - - + 設定 jail Package Manager - - + 套件管理員 Template Manager - - + 模版管理員 @@ -805,43 +763,35 @@ IPv4 Address - - + IPv4 位址 IPv6 Address - - + IPv6 位址 Traditional Jail (Secure, best for services) - - + 傳統 Jail (較安全,適合用來提供服務) Install PKGNG and PC-BSD utilities - - + 安裝 PKGNG 和 PC-BSD 工具程式 Jail Version - - + Jail 版本 Use system version (default) - - + 使用系統版本 (預設) Invalid IPv6 address! - - + IPv6 位址無效! This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + 本精靈會引領您創建新的 jail。首先輸入當前未在在網絡使用的主機名稱和 IP 位址。如計劃以 IPv6 存取該 jail,請勾選 IPv6 位址方塊並輸入有效的 IPv6 位址。完成後按「下一步」繼續。 diff --git a/src-qt4/warden-gui/i18n/Warden_zh_TW.ts b/src-qt4/warden-gui/i18n/Warden_zh_TW.ts index f8a991bfe..32040bbea 100644 --- a/src-qt4/warden-gui/i18n/Warden_zh_TW.ts +++ b/src-qt4/warden-gui/i18n/Warden_zh_TW.ts @@ -95,108 +95,83 @@ Jail Configuration - - + Jail 設定 IPv4 - - + IPv4 IPv4 Address - - + IPv4 位址 IPv6 - - + IPv6 IPv6 Address - - + IPv6 位址 Aliases - - + 別名 IPv4 Aliases - - + IPv4 別名 IPv4 Bridge Aliases - - + IPv4 橋接器別名 IPv6 Aliases - - + IPv6 別名 IPv6 Bridge Aliases - - + IPv6 橋接器別名 Permissions - - - - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - + 權限 A process within the jail has access to System V IPC primitives. - - + jail 內的進程(process)可存取 System V IPC primitives。 The prison root is allowed to create raw sockets. Enables ping / traceroute. - - + 該 prison root 可以建立原始 socket,並會啟用 ping / traceroute。 When this parameter is set, such users are treated as privileged, and may manipulate system file flags subject to the usual constraints on kern.securelevel. - - + 設定此參數之後,該等使用者會視為擁有特權,並在受 kern.securelevel 通常的限制情況下變動系統檔案旗標。 Privileged users inside the jail will be able to mount and unmount file system types marked as jail-friendly. - - + jail 內的特權使用者可掛載或卸載標記為 jail-friendly 的檔案系統類型。 Privileged users inside the jail will be able to mount and unmount the devfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 devfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the nullfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 nullfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the procfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 procfs 檔案系統。 Privileged users inside the jail will be able to mount and unmount the zfs file system. - - + jail 內的特權使用者可掛載或卸載標記為 zfs 檔案系統。 The prison root may administer quotas on the jail's filesystem(s). - - + prison root 可管理該 jail 的檔案系統的磁碟配額。 This allows access to other protocol stacks that have not had jail functionality added to them. @@ -205,63 +180,55 @@ Invalid IPv4 address! - - + IPv4 位址無效! Invalid IPv4 bridge address! - - + IPv4 橋接器位址無效! Invalid IPv4 router address! - - + IPv4 路由器位址無效! Invalid IPv6 address! - - + IPv6 位址無效! Invalid IPv6 bridge address! - - + IPv6 橋接器位址無效! Invalid IPv6 router address! - - + IPv6 路由器位址無效! Options - - + 選項 Enable VNET / VIMAGE support - - + 啟用 VNET / VIMAGE 支援 IPv4 Bridge Address (Requires VNET) - - + IPv4 橋接器位址 (需要 VNET) IPv4 Default Router (Requires VNET) - - + IPv4 預設路由器 (需要 VNET) IPv6 Bridge Address (Requires VNET) - - + IPv6 橋接器位址 (需要 VNET) IPv6 Default Router (Requires VNET) - - + IPv6 預設路由器 (需要 VNET) + + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + @@ -292,7 +259,7 @@ &Ok - 好(&O) + 確定(&O) &Cancel @@ -303,40 +270,35 @@ dialogTemplates Jail Templates - - + Jail 模版 Add a new Jail - 添加新 Jail + 添加新 Jail Remove the selected Jail - 移除所選 Jail + 移除所選 Jail &Close - 關閉(&C) + 關閉(&C) System Version - - + 系統版本 What version do you wish to fetch? - - + 要擷取哪個版本? Template Nickname - - + 模版暱稱 Enter a nickname for this template: - - + 輸入此模版的暱稱: @@ -539,7 +501,7 @@ Snapshots - Snapshots + 快照 Start the selected jail @@ -551,43 +513,43 @@ Restore existing snapshot - 回存既有 snapshot + 回存既有快照 Delete the snapshot - 刪除 snapshot + 刪除快照 Loading snapshots... - 正在載入 snapshots... + 正在載入快照... For snapshot support you must be using ZFS - 必須正在使用 ZFS 才支援 snapshot + 必須正在使用 ZFS 才支援快照 No snapshots available. You may create one below. - 無可用 snapshots。可在下面建立新的。 + 無可用快照。可在下面建立新的。 Creating new snapshot... Please wait... - 正在建立新 snapshot... 請稍候... + 正在建立新快照... 請稍候... Reverting snapshot... Please wait... - 正在恢復 snapshot... 請稍候... + 正在恢復快照... 請稍候... Are you sure you want to revert to the snapshot: - 是否確定恢復至 snapshot: + 是否確定恢復至快照: Removing snapshot... Please wait... - 正在移除 snapshot... 請稍候... + 正在移除快照... 請稍候... Are you sure you want to remove the snapshot: - 是否確定移除 snapshot: + 是否確定移除快照: Updates available! @@ -599,19 +561,19 @@ Service Manager - 服務管理 + 服務管理器 Create a new snapshot - 建立新 snapshot + 建立新快照 Mount the snapshot - 掛載該 snapshot + 掛載該快照 Unmount the snapshot - 卸載該 snapshot + 卸載該快照 (Cloned) @@ -627,7 +589,7 @@ Snapshot not mounted - 未掛載 Snapshot + 未掛載快照 R&estore @@ -651,7 +613,7 @@ Cloning snapshot... Please wait... - 正在為 snapshot 製作複本... 請稍候... + 正在為快照製作複本... 請稍候... Removing clone... Please wait... @@ -659,19 +621,19 @@ Any newer snapshots and mounted clones will be lost, and the jail will be restarted! - 會失去所有較新的 snapshots 和已掛載的複本,並且該 jail 會重新啟動! + 會失去所有較新的快照和已掛載的複本,並且該 jail 會重新啟動! Reverting snapshot - 恢復 snapshot + 恢復快照 Reverting to snapshot: - 恢復至 snapshot: + 恢復至快照: No valid network interface specified! Select one now? - 尚未指定有效的網路介面。您是否要現在指定? + 尚未指定有效的網路介面! 您是否要現在指定? Scheduled Snapshots @@ -687,23 +649,19 @@ IPs: - - + IP: Configure the jail - - + 設定 jail Package Manager - - + 套件管理員 Template Manager - - + 模版管理員 @@ -753,7 +711,7 @@ Include system source - 包含 system source + 包含系統源碼 Include ports tree @@ -797,7 +755,7 @@ Please take a moment and set any other options for this jail. Note that including the system source option requires that they be present in /usr/src. - 請花一點時間為此 jail 設定其他選項。注意:若要「包含 system source」選項需要 /usr/src 有系統源碼才有效。 + 請花一點時間為此 jail 設定其他選項。注意:/usr/src 要有系統源碼,「包含系統源碼」選項才生效。 Please take a moment and set any other options for this jail. @@ -805,43 +763,35 @@ IPv4 Address - - + IPv4 位址 IPv6 Address - - + IPv6 位址 Traditional Jail (Secure, best for services) - - + 傳統 Jail (較安全,適合用來提供服務) Install PKGNG and PC-BSD utilities - - + 安裝 PKGNG 和 PC-BSD 工具程式 Jail Version - - + Jail 版本 Use system version (default) - - + 使用系統版本 (預設) Invalid IPv6 address! - - + IPv6 位址無效! This wizard will walk you through creating a new jail. First, enter a hostname and IP address not currently in use on the network. If you plan to use IPv6 to access the jail, check the IPv6 Address box and input a valid IPv6 address. When finished, click Next to continue. - - + 本精靈會引領您創建新的 jail。首先輸入當前未在在網路使用的主機名稱和 IP 位址。如計劃以 IPv6 存取該 jail,請勾選 IPv6 位址方塊並輸入有效的 IPv6 位址。完成後按「下一步」繼續。 diff --git a/src-qt4/warden-gui/i18n/Warden_zu.ts b/src-qt4/warden-gui/i18n/Warden_zu.ts index a0bc8dcae..dd36c114f 100644 --- a/src-qt4/warden-gui/i18n/Warden_zu.ts +++ b/src-qt4/warden-gui/i18n/Warden_zu.ts @@ -169,11 +169,6 @@ - - The following permissions can be enabled or diabled for this jail. For more details hover over each item or refer to the jail manpage. - - - A process within the jail has access to System V IPC primitives. @@ -284,6 +279,10 @@ + + The following permissions can be enabled or disabled for this jail. For more details hover over each item or refer to the jail manpage. + + dialogImport diff --git a/src-qt4/warden-gui/warden.desktop b/src-qt4/warden-gui/warden.desktop index 397573386..266eec102 100644 --- a/src-qt4/warden-gui/warden.desktop +++ b/src-qt4/warden-gui/warden.desktop @@ -35,10 +35,10 @@ Name[it]=Warden Name[ja]=Warden Name[ko]=Warden Name[mn]=Сахиул -Name[nl]=Bewaker +Name[nl]=Cipier Name[pl]=Warden Name[pt_BR]=Warden -Name[ro]=Gardian +Name[ro]=Warden Name[ru]=Надзиратель Name[sk]=Warden Name[sl]=Warden diff --git a/src-qt4/xtrafiles/local/share/wallpapers/pcbsd9-default/metadata.desktop b/src-qt4/xtrafiles/local/share/wallpapers/pcbsd9-default/metadata.desktop index 89171c0a3..1c6ed9b5e 100644 --- a/src-qt4/xtrafiles/local/share/wallpapers/pcbsd9-default/metadata.desktop +++ b/src-qt4/xtrafiles/local/share/wallpapers/pcbsd9-default/metadata.desktop @@ -11,16 +11,21 @@ Name[de]=Voreinstellung: PC-BSD Name[el]=Προεπιλογή: PC-BSD Name[en_GB]=Default: PC-BSD Name[en_ZA]=Default: PC-BSD +Name[es]=Por defecto: PC-BSD Name[et]=Vaikimisi: PC-BSD Name[fr]=Par défaut: PC-BSD Name[fr_CA]=Par défaut: PC-BSD Name[hr]=Default: PC-BSD +Name[it]=Default: PC-BSD Name[ja]=デフォルト: PC-BSD Name[nl]=Standaard: PC-BSD Name[pl]=Domyślnie: PC-BSD Name[pt_BR]=Padrão: PC-BSD +Name[ro]=Implicit: PC-BSD Name[sr]=Default: PC-BSD Name[sv]=Standard: PC-BSD Name[uk]=Типово: PC-BSD Name[vi]=Mặc định: PC-BSD Name[zh_CN]=默认:PC-BSD +Name[zh_HK]=預設:PC-BSD +Name[zh_TW]=預設:PC-BSD diff --git a/src-sh/Makefile b/src-sh/Makefile index 3a9fbedcb..87bf181a9 100644 --- a/src-sh/Makefile +++ b/src-sh/Makefile @@ -36,6 +36,7 @@ SUBTARGETS = \ sub-pcfirst \ sub-pbi \ sub-pbi10 \ + sub-install \ sub-deinfo \ sub-meta \ sub-warden \ @@ -250,6 +251,19 @@ sub-pcrunx-clean: pc-runxgui/$(MAKEFILE) FORCE sub-pcrunx-install_subtargets: pc-runxgui/$(MAKEFILE) FORCE cd pc-runxgui/ && $(MAKE) -f $(MAKEFILE) install +sub-install: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) +sub-install-make_default: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) +sub-install-make_first: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) first +sub-install-all: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) all +sub-install-clean: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) clean +sub-install-install_subtargets: pc-installdialog/$(MAKEFILE) FORCE + cd pc-installdialog/ && $(MAKE) -f $(MAKEFILE) install + sub-pbi: pbi-manager/$(MAKEFILE) FORCE cd pbi-manager/ && $(MAKE) -f $(MAKEFILE) sub-pbi-make_default: pbi-manager/$(MAKEFILE) FORCE @@ -320,6 +334,7 @@ make_default: sub-libsh-make_default \ sub-pbi-make_default \ sub-pbi10-make_default \ sub-about-make_default \ + sub-install-make_default \ sub-meta-make_default \ sub-warden-make_default \ sub-pcrunx-make_default \ @@ -343,6 +358,7 @@ make_first: sub-libsh-make_first \ sub-pbi-make_first \ sub-pbi10-make_first \ sub-about-make_first \ + sub-install-make_first \ sub-meta-make_first \ sub-warden-make_first \ sub-pcrunx-make_first \ @@ -366,6 +382,7 @@ all: sub-libsh-all \ sub-pbi-all \ sub-pbi10-all \ sub-about-all \ + sub-install-all \ sub-meta-all \ sub-warden-all \ sub-pcrunx-all \ @@ -389,6 +406,7 @@ clean: sub-pbi-clean \ sub-libsh-clean \ sub-lpreserver-clean \ sub-about-clean \ + sub-install-clean \ sub-meta-clean \ sub-warden-clean \ sub-pcrunx-clean \ @@ -412,6 +430,7 @@ install_subtargets: sub-libsh-install_subtargets \ sub-pbi10-install_subtargets \ sub-lpreserver-install_subtargets \ sub-about-install_subtargets \ + sub-install-install_subtargets \ sub-meta-install_subtargets \ sub-warden-install_subtargets \ sub-pcrunx-install_subtargets \ diff --git a/src-sh/lpreserver/backend/functions.sh b/src-sh/lpreserver/backend/functions.sh index 6af9d7137..fe1b85107 100755 --- a/src-sh/lpreserver/backend/functions.sh +++ b/src-sh/lpreserver/backend/functions.sh @@ -355,7 +355,7 @@ save_rep_props() { # If we are not doing a recursive backup / complete dataset we can skip this if [ "$RECURMODE" != "ON" ] ; then return 0; fi if [ "`basename $DATASET`" != "$DATASET" ] ; then return 0; fi - hName=`hostname` + hName="`hostname`" echo_log "Saving dataset properties for: ${DATASET}" queue_msg "`date`: Saving dataset properties for: ${DATASET}\n" @@ -364,7 +364,7 @@ save_rep_props() { rProp=".lp-props-`echo ${REPRDATA}/${hName} | sed 's|/|#|g'`" zfs get -r all $DATASET | grep ' local$' | awk '{$1=$1}1' OFS=" " | sed 's| local$||g' \ - | ssh -p ${REPPORT} ${REPUSER}@${REPHOST} "cat > $rProp" + | ssh -p ${REPPORT} ${REPUSER}@${REPHOST} "cat > \"$rProp\"" if [ $? -eq 0 ] ; then echo_log "Successful save of dataset properties for: ${DATASET}" queue_msg "`date`: Successful save of dataset properties for: ${DATASET}\n" diff --git a/src-sh/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop b/src-sh/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop index a9c499391..f1435d0f3 100644 --- a/src-sh/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop +++ b/src-sh/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop @@ -26,13 +26,14 @@ Name[he]=פיירפוקס Name[hr]=FireFox Name[hu]=FireFox internetböngésző Name[id]=FireFox -Name[it]=Firefox +Name[it]=FireFox Name[ja]=Firefox Name[ko]=Firefox Name[mn]=ГалтҮнэг Name[nl]=Firefox Name[pl]=Firefox Name[pt_BR]=FireFox +Name[ro]=FireFox Name[ru]=FireFox Name[sk]=FireFox Name[sl]=FireFox @@ -66,13 +67,14 @@ GenericName[he]=פיירפוקס GenericName[hr]=FireFox GenericName[hu]=FireFox internetböngésző GenericName[id]=FireFox -GenericName[it]=Firefox +GenericName[it]=FireFox GenericName[ja]=Firefox GenericName[ko]=Firefox GenericName[mn]=ГалтҮнэг GenericName[nl]=Firefox GenericName[pl]=Firefox GenericName[pt_BR]=FireFox +GenericName[ro]=FireFox GenericName[ru]=FireFox GenericName[sk]=FireFox GenericName[sl]=FireFox diff --git a/src-sh/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop b/src-sh/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop index 762134bd5..27ccabd71 100644 --- a/src-sh/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop +++ b/src-sh/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop @@ -27,13 +27,14 @@ Name[he]=פיירפוקס Name[hr]=FireFox Name[hu]=FireFox internetböngésző Name[id]=FireFox -Name[it]=Firefox +Name[it]=FireFox Name[ja]=Firefox Name[ko]=Firefox Name[mn]=ГалтҮнэг Name[nl]=Firefox Name[pl]=Firefox Name[pt_BR]=FireFox +Name[ro]=FireFox Name[ru]=FireFox Name[sk]=FireFox Name[sl]=FireFox @@ -67,13 +68,14 @@ GenericName[he]=פיירפוקס GenericName[hr]=FireFox GenericName[hu]=FireFox internetböngésző GenericName[id]=FireFox -GenericName[it]=Firefox +GenericName[it]=FireFox GenericName[ja]=Firefox GenericName[ko]=Firefox GenericName[mn]=ГалтҮнэг GenericName[nl]=Firefox GenericName[pl]=Firefox GenericName[pt_BR]=FireFox +GenericName[ro]=FireFox GenericName[ru]=FireFox GenericName[sk]=FireFox GenericName[sl]=FireFox diff --git a/src-sh/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop b/src-sh/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop index 698a560db..87dd79955 100644 --- a/src-sh/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop +++ b/src-sh/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop @@ -5,46 +5,6 @@ Exec=%%PBI_EXEDIR%%/gimp Path=%%PBI_APPDIR%% Icon=%%PBI_APPDIR%%/gimp.png X-KDE-StartupNotify=true -Name=gimp -Name[af]=gimp -Name[ar]=gimp -Name[bg]=gimp -Name[bs]=gimp -Name[ca]=gimp -Name[da]=Gimp -Name[de]=gimp -Name[el]=gimp -Name[en_GB]=gimp -Name[en_ZA]=gimp -Name[es]=gimp -Name[et]=gimp -Name[fa]=برنامه gimp -Name[fi]=gimp -Name[fr]=gimp -Name[fr_CA]=gimp -Name[he]=גימפ -Name[hr]=gimp -Name[hu]=GIMP képszerkesztő -Name[id]=gimp -Name[it]=gimp -Name[ja]=gimp -Name[ko]=김프 -Name[mn]=гимп -Name[nl]=gimp -Name[pl]=gimp -Name[pt_BR]=gimp -Name[ru]=gimp -Name[sk]=gimp -Name[sl]=gimp -Name[sr]=gimp -Name[sv]=gimp -Name[tg]=gimp -Name[tr]=gimp -Name[uk]=gimp -Name[vi]=gimp -Name[zh_CN]=GIMP图形软件 -Name[zh_HK]=GIMP -Name[zh_TW]=GIMP GenericName=Gimp GenericName[af]=Gimp GenericName[ar]=جمب @@ -86,3 +46,44 @@ GenericName[vi]=Gimp GenericName[zh_CN]=Gimp GenericName[zh_HK]=Gimp GenericName[zh_TW]=Gimp +Name=gimp +Name[af]=gimp +Name[ar]=gimp +Name[bg]=gimp +Name[bs]=gimp +Name[ca]=gimp +Name[da]=Gimp +Name[de]=gimp +Name[el]=gimp +Name[en_GB]=gimp +Name[en_ZA]=gimp +Name[es]=gimp +Name[et]=gimp +Name[fa]=برنامه gimp +Name[fi]=gimp +Name[fr]=gimp +Name[fr_CA]=gimp +Name[he]=גימפ +Name[hr]=gimp +Name[hu]=GIMP képszerkesztő +Name[id]=gimp +Name[it]=gimp +Name[ja]=gimp +Name[ko]=김프 +Name[mn]=гимп +Name[nl]=gimp +Name[pl]=gimp +Name[pt_BR]=gimp +Name[ro]=gimp +Name[ru]=gimp +Name[sk]=gimp +Name[sl]=gimp +Name[sr]=gimp +Name[sv]=gimp +Name[tg]=gimp +Name[tr]=gimp +Name[uk]=gimp +Name[vi]=gimp +Name[zh_CN]=GIMP图形软件 +Name[zh_HK]=GIMP +Name[zh_TW]=GIMP diff --git a/src-sh/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop b/src-sh/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop index e34fa2abe..65ba52fcd 100644 --- a/src-sh/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop +++ b/src-sh/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop @@ -7,46 +7,6 @@ Icon=%%PBI_APPDIR%%/gimp.png MimeType=application/x-gimp X-KDE-StartupNotify=true Categories=Qt;Graphics; -Name=gimp -Name[af]=gimp -Name[ar]=gimp -Name[bg]=gimp -Name[bs]=gimp -Name[ca]=gimp -Name[da]=Gimp -Name[de]=gimp -Name[el]=gimp -Name[en_GB]=gimp -Name[en_ZA]=gimp -Name[es]=gimp -Name[et]=gimp -Name[fa]=برنامه gimp -Name[fi]=gimp -Name[fr]=gimp -Name[fr_CA]=gimp -Name[he]=גימפ -Name[hr]=gimp -Name[hu]=GIMP képszerkesztő -Name[id]=gimp -Name[it]=gimp -Name[ja]=gimp -Name[ko]=김프 -Name[mn]=гимп -Name[nl]=gimp -Name[pl]=gimp -Name[pt_BR]=gimp -Name[ru]=gimp -Name[sk]=gimp -Name[sl]=gimp -Name[sr]=gimp -Name[sv]=gimp -Name[tg]=gimp -Name[tr]=gimp -Name[uk]=gimp -Name[vi]=gimp -Name[zh_CN]=GIMP图形软件 -Name[zh_HK]=GIMP -Name[zh_TW]=GIMP GenericName=Gimp GenericName[af]=Gimp GenericName[ar]=جمب @@ -88,3 +48,44 @@ GenericName[vi]=Gimp GenericName[zh_CN]=Gimp GenericName[zh_HK]=Gimp GenericName[zh_TW]=Gimp +Name=gimp +Name[af]=gimp +Name[ar]=gimp +Name[bg]=gimp +Name[bs]=gimp +Name[ca]=gimp +Name[da]=Gimp +Name[de]=gimp +Name[el]=gimp +Name[en_GB]=gimp +Name[en_ZA]=gimp +Name[es]=gimp +Name[et]=gimp +Name[fa]=برنامه gimp +Name[fi]=gimp +Name[fr]=gimp +Name[fr_CA]=gimp +Name[he]=גימפ +Name[hr]=gimp +Name[hu]=GIMP képszerkesztő +Name[id]=gimp +Name[it]=gimp +Name[ja]=gimp +Name[ko]=김프 +Name[mn]=гимп +Name[nl]=gimp +Name[pl]=gimp +Name[pt_BR]=gimp +Name[ro]=gimp +Name[ru]=gimp +Name[sk]=gimp +Name[sl]=gimp +Name[sr]=gimp +Name[sv]=gimp +Name[tg]=gimp +Name[tr]=gimp +Name[uk]=gimp +Name[vi]=gimp +Name[zh_CN]=GIMP图形软件 +Name[zh_HK]=GIMP +Name[zh_TW]=GIMP diff --git a/src-sh/pbi-manager10/module-examples/firefox/xdg-desktop/firefox.desktop b/src-sh/pbi-manager10/module-examples/firefox/xdg-desktop/firefox.desktop index a9c499391..f1435d0f3 100644 --- a/src-sh/pbi-manager10/module-examples/firefox/xdg-desktop/firefox.desktop +++ b/src-sh/pbi-manager10/module-examples/firefox/xdg-desktop/firefox.desktop @@ -26,13 +26,14 @@ Name[he]=פיירפוקס Name[hr]=FireFox Name[hu]=FireFox internetböngésző Name[id]=FireFox -Name[it]=Firefox +Name[it]=FireFox Name[ja]=Firefox Name[ko]=Firefox Name[mn]=ГалтҮнэг Name[nl]=Firefox Name[pl]=Firefox Name[pt_BR]=FireFox +Name[ro]=FireFox Name[ru]=FireFox Name[sk]=FireFox Name[sl]=FireFox @@ -66,13 +67,14 @@ GenericName[he]=פיירפוקס GenericName[hr]=FireFox GenericName[hu]=FireFox internetböngésző GenericName[id]=FireFox -GenericName[it]=Firefox +GenericName[it]=FireFox GenericName[ja]=Firefox GenericName[ko]=Firefox GenericName[mn]=ГалтҮнэг GenericName[nl]=Firefox GenericName[pl]=Firefox GenericName[pt_BR]=FireFox +GenericName[ro]=FireFox GenericName[ru]=FireFox GenericName[sk]=FireFox GenericName[sl]=FireFox diff --git a/src-sh/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop b/src-sh/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop index 762134bd5..27ccabd71 100644 --- a/src-sh/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop +++ b/src-sh/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop @@ -27,13 +27,14 @@ Name[he]=פיירפוקס Name[hr]=FireFox Name[hu]=FireFox internetböngésző Name[id]=FireFox -Name[it]=Firefox +Name[it]=FireFox Name[ja]=Firefox Name[ko]=Firefox Name[mn]=ГалтҮнэг Name[nl]=Firefox Name[pl]=Firefox Name[pt_BR]=FireFox +Name[ro]=FireFox Name[ru]=FireFox Name[sk]=FireFox Name[sl]=FireFox @@ -67,13 +68,14 @@ GenericName[he]=פיירפוקס GenericName[hr]=FireFox GenericName[hu]=FireFox internetböngésző GenericName[id]=FireFox -GenericName[it]=Firefox +GenericName[it]=FireFox GenericName[ja]=Firefox GenericName[ko]=Firefox GenericName[mn]=ГалтҮнэг GenericName[nl]=Firefox GenericName[pl]=Firefox GenericName[pt_BR]=FireFox +GenericName[ro]=FireFox GenericName[ru]=FireFox GenericName[sk]=FireFox GenericName[sl]=FireFox diff --git a/src-sh/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop b/src-sh/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop index 698a560db..87dd79955 100644 --- a/src-sh/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop +++ b/src-sh/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop @@ -5,46 +5,6 @@ Exec=%%PBI_EXEDIR%%/gimp Path=%%PBI_APPDIR%% Icon=%%PBI_APPDIR%%/gimp.png X-KDE-StartupNotify=true -Name=gimp -Name[af]=gimp -Name[ar]=gimp -Name[bg]=gimp -Name[bs]=gimp -Name[ca]=gimp -Name[da]=Gimp -Name[de]=gimp -Name[el]=gimp -Name[en_GB]=gimp -Name[en_ZA]=gimp -Name[es]=gimp -Name[et]=gimp -Name[fa]=برنامه gimp -Name[fi]=gimp -Name[fr]=gimp -Name[fr_CA]=gimp -Name[he]=גימפ -Name[hr]=gimp -Name[hu]=GIMP képszerkesztő -Name[id]=gimp -Name[it]=gimp -Name[ja]=gimp -Name[ko]=김프 -Name[mn]=гимп -Name[nl]=gimp -Name[pl]=gimp -Name[pt_BR]=gimp -Name[ru]=gimp -Name[sk]=gimp -Name[sl]=gimp -Name[sr]=gimp -Name[sv]=gimp -Name[tg]=gimp -Name[tr]=gimp -Name[uk]=gimp -Name[vi]=gimp -Name[zh_CN]=GIMP图形软件 -Name[zh_HK]=GIMP -Name[zh_TW]=GIMP GenericName=Gimp GenericName[af]=Gimp GenericName[ar]=جمب @@ -86,3 +46,44 @@ GenericName[vi]=Gimp GenericName[zh_CN]=Gimp GenericName[zh_HK]=Gimp GenericName[zh_TW]=Gimp +Name=gimp +Name[af]=gimp +Name[ar]=gimp +Name[bg]=gimp +Name[bs]=gimp +Name[ca]=gimp +Name[da]=Gimp +Name[de]=gimp +Name[el]=gimp +Name[en_GB]=gimp +Name[en_ZA]=gimp +Name[es]=gimp +Name[et]=gimp +Name[fa]=برنامه gimp +Name[fi]=gimp +Name[fr]=gimp +Name[fr_CA]=gimp +Name[he]=גימפ +Name[hr]=gimp +Name[hu]=GIMP képszerkesztő +Name[id]=gimp +Name[it]=gimp +Name[ja]=gimp +Name[ko]=김프 +Name[mn]=гимп +Name[nl]=gimp +Name[pl]=gimp +Name[pt_BR]=gimp +Name[ro]=gimp +Name[ru]=gimp +Name[sk]=gimp +Name[sl]=gimp +Name[sr]=gimp +Name[sv]=gimp +Name[tg]=gimp +Name[tr]=gimp +Name[uk]=gimp +Name[vi]=gimp +Name[zh_CN]=GIMP图形软件 +Name[zh_HK]=GIMP +Name[zh_TW]=GIMP diff --git a/src-sh/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop b/src-sh/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop index e34fa2abe..65ba52fcd 100644 --- a/src-sh/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop +++ b/src-sh/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop @@ -7,46 +7,6 @@ Icon=%%PBI_APPDIR%%/gimp.png MimeType=application/x-gimp X-KDE-StartupNotify=true Categories=Qt;Graphics; -Name=gimp -Name[af]=gimp -Name[ar]=gimp -Name[bg]=gimp -Name[bs]=gimp -Name[ca]=gimp -Name[da]=Gimp -Name[de]=gimp -Name[el]=gimp -Name[en_GB]=gimp -Name[en_ZA]=gimp -Name[es]=gimp -Name[et]=gimp -Name[fa]=برنامه gimp -Name[fi]=gimp -Name[fr]=gimp -Name[fr_CA]=gimp -Name[he]=גימפ -Name[hr]=gimp -Name[hu]=GIMP képszerkesztő -Name[id]=gimp -Name[it]=gimp -Name[ja]=gimp -Name[ko]=김프 -Name[mn]=гимп -Name[nl]=gimp -Name[pl]=gimp -Name[pt_BR]=gimp -Name[ru]=gimp -Name[sk]=gimp -Name[sl]=gimp -Name[sr]=gimp -Name[sv]=gimp -Name[tg]=gimp -Name[tr]=gimp -Name[uk]=gimp -Name[vi]=gimp -Name[zh_CN]=GIMP图形软件 -Name[zh_HK]=GIMP -Name[zh_TW]=GIMP GenericName=Gimp GenericName[af]=Gimp GenericName[ar]=جمب @@ -88,3 +48,44 @@ GenericName[vi]=Gimp GenericName[zh_CN]=Gimp GenericName[zh_HK]=Gimp GenericName[zh_TW]=Gimp +Name=gimp +Name[af]=gimp +Name[ar]=gimp +Name[bg]=gimp +Name[bs]=gimp +Name[ca]=gimp +Name[da]=Gimp +Name[de]=gimp +Name[el]=gimp +Name[en_GB]=gimp +Name[en_ZA]=gimp +Name[es]=gimp +Name[et]=gimp +Name[fa]=برنامه gimp +Name[fi]=gimp +Name[fr]=gimp +Name[fr_CA]=gimp +Name[he]=גימפ +Name[hr]=gimp +Name[hu]=GIMP képszerkesztő +Name[id]=gimp +Name[it]=gimp +Name[ja]=gimp +Name[ko]=김프 +Name[mn]=гимп +Name[nl]=gimp +Name[pl]=gimp +Name[pt_BR]=gimp +Name[ro]=gimp +Name[ru]=gimp +Name[sk]=gimp +Name[sl]=gimp +Name[sr]=gimp +Name[sv]=gimp +Name[tg]=gimp +Name[tr]=gimp +Name[uk]=gimp +Name[vi]=gimp +Name[zh_CN]=GIMP图形软件 +Name[zh_HK]=GIMP +Name[zh_TW]=GIMP diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gksu.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gksu.desktop index e43ddda54..d5f813d08 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gksu.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gksu.desktop @@ -29,7 +29,7 @@ Name[gl]=Terminal de root Name[he]=מסוף שורש Name[hr]=Root Terminal Name[hu]=Root terminál -Name[it]=Terminale Superutente +Name[it]=Terminale Root Name[ja]=システムターミナル・スーパーユーザーモード Name[ko]=루트 터미널 Name[lt]=Administratoriaus terminalas @@ -37,6 +37,7 @@ Name[mn]=Ёзоорын терминал Name[nl]=Terminal met rootbevoegdheid Name[pl]=Terminal administratora Name[pt_BR]=Terminal do Super Usuário +Name[ro]=Terminalul root Name[ru]=Терминал Администратора Name[sk]=Terminál užívateľa root Name[sr]=Root Terminal @@ -79,6 +80,7 @@ Comment[mn]=Терминалыг ёзоор хэрэглэгч шиг нээх, Comment[nl]=Opent een terminalvenster als rootgebruiker, met gksu om naar het wachtwoord te vragen Comment[pl]=Otwiera terminal jako użytkownik root, używając gksu aby wczytać hasło Comment[pt_BR]=Abra um terminal como super usuário, usando gksu para solicitar a senha +Comment[ro]=Deschide un terminal ca root, utilizând gksu pentru a solicita parola Comment[ru]=Открытие терминала в качестве пользователя Администратор, используя gksu с запросом пароля Comment[sk]=Otvorí terminál užívaťeľa root použijúc gksu pre získanie prístupového hesla Comment[sr]=Otvara terminal kao administrator, koristeći gksu za unos šifre diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gmplayer.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gmplayer.desktop index c07c42356..8a626df1f 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gmplayer.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/gmplayer.desktop @@ -33,6 +33,7 @@ Name[mn]=Mplayer Name[nl]=MPlayer Name[pl]=MPlayer Name[pt_BR]=MPlayer +Name[ro]=MPlayer Name[ru]=MPlayer Name[sk]=MPlayer Name[sl]=MPlayer @@ -72,6 +73,7 @@ Comment[mn]=Өндөр боломж бүхий олон төрлийн файл Comment[nl]=Hoogwaardige mediaspeler Comment[pl]=Wysoce wydajny odtwarzacz mediów Comment[pt_BR]=Reprodutor de mídia de alta performance +Comment[ro]=Dispozitiv de redare media de înaltă performanță Comment[ru]=Высокопроизводительный медиа проигрыватель Comment[sk]=Výkonný prehrávač multimédií Comment[sr]=Izvrstan izvođač medija diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/hplip.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/hplip.desktop index 9a8fdd52e..85c63fcad 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/hplip.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/hplip.desktop @@ -46,12 +46,12 @@ Comment[he]=בדיקת מצב, מצב מלאי הדיו וביצוע פעולו Comment[hr]=Pogledaj stanje uređaja, nivo tinte i obavi održavanje. Comment[hu]=Eszközállapot és tintaszint felmérése, karbantartás Comment[id]=Melihat kondisi perangkat, level tinta dan melakukan pemeliharaan. -Comment[it]=Controlla lo stato della periferica, i livelli di inchiostro e la manutenzione. +Comment[it]=Controllare lo stato della periferica, i livelli di inchiostro ed eseguire manutenzione. Comment[ja]=インク残量の確認やメンテナンスを行います。 Comment[ko]=장치 상태, 잉크 수준을 확인하고 유지 보수를 수행합니다. Comment[mn]=Төхөөрөмжийн төлөв байдал, хэвлэлийн нунтагын төвшинг харах болон ашиглалт үйлчилгээ хийх Comment[nb]=Se enheters status, blekknivå og utfør vedlikehold. -Comment[nl]=Bekijk apparaatstatus, inktniveau's en voer onderhoud uit. +Comment[nl]=Bekijk apparaatstatus en inktniveaus en voer onderhoud uit. Comment[pl]=Podgląd statusu urządzenia, poziomu tuszu i kontroli stanu urządzenia. Comment[pt_BR]=Exibir o status do dispositivo, níveis de tinta e realizar a manutenção. Comment[ro]=Vizualizaţi starea dispozitivului, nivelurile de cerneală şi efectuati lucrări de întreţinere. diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/amor.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/amor.desktop index 3926b664a..ac54d35b4 100755 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/amor.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/amor.desktop @@ -114,7 +114,7 @@ GenericName[hr]=Beštija na vašem zaslonu GenericName[hu]=Animált figurák GenericName[id]=Makhluk Pada Layar GenericName[is]=Skjámyndataka -GenericName[it]=Creatura On-Screen +GenericName[it]=On-Screen Creature GenericName[ja]=画面キャプチャー GenericName[kk]=Экрандағы мақұлық GenericName[km]=ការច្នៃ​ប្រឌិត​លើ​អេក្រង់ @@ -127,12 +127,12 @@ GenericName[ms]=Makhluk di atas Skrin GenericName[nb]=Vesen på skjermen GenericName[nds]=Schriefdisch-Maskottje GenericName[ne]=पर्दा क्रिएचर -GenericName[nl]=Een scherm-huisdiertje +GenericName[nl]=Een schermhuisdiertje GenericName[nn]=Skjermvesen GenericName[pl]=Obiekt ekranowy GenericName[pt]=Criatura no Ecrã GenericName[pt_BR]=Criatura na tela -GenericName[ro]=Creatură pe ecran +GenericName[ro]=Creatura de pe ecran GenericName[ru]=Существо на экране GenericName[sk]=Príšerka pre vašu plochu GenericName[sl]=Zaslonska živalca diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/kcmgtk4.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/kcmgtk4.desktop index a1c42250c..cfc62a814 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/kcmgtk4.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/kde4/kcmgtk4.desktop @@ -33,13 +33,14 @@ Name[he]=GTK - סגנונות וגופנים Name[hr]=GTK stilovi i fontovi Name[hu]=GTK-stílusok és betűtípusok Name[id]=Tampilan dan Huruf GTK -Name[it]=Stili e font GTK +Name[it]=Stili e Caratteri GTK Name[ja]=GTK スタイルとフォント Name[ko]=GTK 스타일과 글꼴 Name[mn]=GTK Загварууд болон Үсгийн хэвүүд -Name[nl]=GTK Stijlen en Lettertypen +Name[nl]=GTK-stijlen en -lettertypen Name[pl]=Style i fonty GTK Name[pt_BR]=Fontes e estilos do GTK +Name[ro]=Stiluri și fonturi GTK Name[ru]=Стили и шрифты GTK Name[sk]=Štýly a fonty GTK Name[sr]=GTK stilovi i fontovi @@ -71,13 +72,14 @@ Comment[he]=בקרת סגנון וגופנים לשימוש תוכנות מבו Comment[hr]=Upravljanje stilovima i fontovima koje koriste GTK aplikacije Comment[hu]=Meghatározza a GTK alkalmazások által használt stílust és betűtípusokat Comment[id]=Mengatur tampilan dan huruf yang digunakan oleh aplikasi GTK -Comment[it]=Controlla lo stile e i font usati dalle applicazioni GTK +Comment[it]=Controlla lo stile e i font utilizzati dalle applicazioni GTK Comment[ja]=GTK アプリケーションのスタイルとフォントを設定する Comment[ko]=GTK 응용 프로그램에서 사용되는 스타일과 글꼴을 제어 Comment[mn]=GTK хэрэглээний програмын загвар болон үсгийн хэвүүдийг удирдах Comment[nl]=Beheer de stijl en lettertypen van GTK-toepassingen Comment[pl]=Kotrola stylów i czcionek aplikacji używających GTK Comment[pt_BR]=Controla as fontes e os estilos usados em aplicações GTK +Comment[ro]=Controlează stilul și fonturile utilizate de aplicații GTK Comment[ru]=Управление стилями и шрифтами, используемыми в приложениях GTK Comment[sk]=Ǔprava štýlu a fontov aplikácii GTK Comment[sr]=Podesite stilove i fontove za GTK programe diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/mythtv.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/mythtv.desktop index 6d78efc68..550cc052e 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/mythtv.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/mythtv.desktop @@ -34,6 +34,7 @@ Name[mn]=MythTV Name[nl]=MythTV Name[pl]=MythTV Name[pt_BR]=MythTV +Name[ro]=MythTV Name[ru]=MythTV Name[sk]=MythTV Name[sl]=MythTV @@ -73,6 +74,7 @@ GenericName[mn]=MythTV GenericName[nl]=MythTV GenericName[pl]=MythTV GenericName[pt_BR]=MythTV +GenericName[ro]=MythTV GenericName[ru]=MythTV GenericName[sk]=MythTV GenericName[sl]=MythTV diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/system-config-printer.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/system-config-printer.desktop index 96f8670a5..01167ce4c 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/system-config-printer.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/system-config-printer.desktop @@ -55,7 +55,7 @@ Name[pa]=ਛਾਪਣਾ Name[pl]=Drukowanie Name[pt]=Impressão Name[pt_BR]=Impressão -Name[ro]=Tipărire +Name[ro]=Imprimare Name[ru]=Печать Name[si]=මුද්‍රණය කරමින් Name[sk]=Tlač @@ -118,7 +118,7 @@ Comment[pa]=ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ Comment[pl]=Konfiguracja drukarek Comment[pt]=Configurar as impressoras Comment[pt_BR]=Configurar impressoras -Comment[ro]=Configurează imprimantele +Comment[ro]=Configurarea imprimantelor Comment[ru]=Настройка принтеров Comment[si]=මුද්‍රකයන් මානකරන්න Comment[sk]=Nastavenie tlače diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/time.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/time.desktop index 17445786e..9389afed8 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/time.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/time.desktop @@ -70,7 +70,7 @@ Name[ms]=Masa dan Tarikh Name[nb]=Tid og dato Name[nds]=Tied un Dag Name[ne]=समय र मिती -Name[nl]=Datum en Tijd +Name[nl]=Datum en tijd Name[nn]=Tid og dato Name[oc]=Ora e data Name[or]=ସମୟ ଏବଂ ତାରିଖ @@ -79,7 +79,7 @@ Name[pl]=Data i czas Name[ps]=مهال او نېټه Name[pt]=Data e Hora Name[pt_BR]=Hora e Data -Name[ro]=Oră și dată +Name[ro]=Ora și data Name[ru]=Время и дата Name[si]=දිනය සහ වේලාව Name[sk]=Dátum a čas @@ -157,7 +157,7 @@ Comment[mr]=प्रणाली वेळ, दिनांक, व वेळ Comment[ms]=Tukar masa , tarikh dan zonwaktu sistem Comment[nb]=Endre systemets tid, dato og tidssone Comment[ne]=प्रणाली समय,मिती र समय क्षेत्रलाई परिवर्तन गर्नुहोस् -Comment[nl]=Wijzig systeemtijd, datum of tijdzone +Comment[nl]=Wijzig systeemtijd, datum en tijdzone Comment[nn]=Endra systemets tid, dato og tidssone Comment[oc]=Cambiar la data, l'ora e lo fus orari Comment[or]=ତନ୍ତ୍ରର ସମୟ, ତାରିଖ, ଏବଂ ସମୟ ମଣ୍ଡଳକୁ ପରିବର୍ତନ କରନ୍ତୁ @@ -165,7 +165,7 @@ Comment[pa]=ਸਿਸਟਮ ਸਮਾਂ, ਤਾਰੀਖ ਅਤੇ ਸਮਾਂ Comment[pl]=Zmiana czasu systemowego, daty i strefy czasowej Comment[pt]=Alterar a hora, data e zona horária do sistema Comment[pt_BR]=Ajustar hora do sistema, data e fuso horário -Comment[ro]=Schimbarea datei ,orei si a fusului orar +Comment[ro]=Schimbarea datei, orei și a fusului orar Comment[ru]=Изменение системного времени, даты и часового пояса Comment[si]=පද්ධතියේ වේලාව, දිනය සහ වේලා කළාපය වෙනස් කරන්න Comment[sk]=Zmeniť systémový dátum, čas a časové pásmo diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/vim.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/vim.desktop index dbf34f9e7..3dd62c26f 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/vim.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/vim.desktop @@ -76,7 +76,7 @@ GenericName[it]=Editor Vim GenericName[ja]=Vim エディター GenericName[ko]=Vim 편집기 GenericName[mn]=Вим засварлагч -GenericName[nl]=Vim Tekstverwerker +GenericName[nl]=Vim tekstverwerker GenericName[pl]=Edytor Vim GenericName[pt_BR]=Editor Vim GenericName[ro]=Vim Editior diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/virtualbox.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/virtualbox.desktop index 8cf36f946..0d062bc9b 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/virtualbox.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/applications/virtualbox.desktop @@ -8,45 +8,65 @@ Icon=VBox Categories=Emulator;System; Name=Oracle VM VirtualBox Name[af]=Oracle VM VirtualBox -Name[de]=Oracle VM VirtualBox +Name[de]=Oracle VM-VirtualBox Name[en_GB]=Oracle VM VirtualBox Name[en_ZA]=Oracle VM VirtualBox +Name[es]=Oracle VM VirtualBox +Name[et]=Oracle VM VirtualBox Name[fr]=Oracle VM VirtualBox Name[fr_CA]=Oracle VM VirtualBox +Name[it]=Oracle VM VirtualBox Name[ja]=Oracle VM VirtualBox +Name[nl]=Oracle VM VirtualBox Name[pl]=Oracle VM VirtualBox Name[pt_BR]=Oracle VM VirtualBox +Name[ro]=Oracle VM VirtualBox +Name[sv]=Oracle VM VirtualBox Name[uk]=Oracle VM VirtualBox Name[vi]=Oracle VM VirtualBox Name[zh_CN]=Oracle VM VirtualBox +Name[zh_HK]=Oracle VM VirtualBox +Name[zh_TW]=Oracle VM VirtualBox GenericName=Virtual Machine GenericName[af]=Virtuele Masjien GenericName[de]=Virtuelle Maschine GenericName[en_GB]=Virtual Machine GenericName[en_ZA]=Virtual Machine GenericName[es]=Maquina Virtual +GenericName[et]=Virtuaalmasin GenericName[fr]=Machine Virtuelle GenericName[fr_CA]=Machine Virtuelle +GenericName[it]=Virtual Machine GenericName[ja]=仮想マシン +GenericName[nl]=Virtuele machine GenericName[pl]=Maszyna wirtualna GenericName[pt_BR]=Máquina virtual +GenericName[ro]=Mașină virtuală +GenericName[sv]=Virtuell Maskin GenericName[uk]=Віртуальна машина GenericName[vi]=máy tính ảo Machine GenericName[zh_CN]=虚拟机 +GenericName[zh_HK]=虛擬機 +GenericName[zh_TW]=虛擬機 Comment=Run several virtual systems on a single host computer Comment[af]=Begin verskeie virtuele stelsels op 'n enkele gasheer rekenaar +Comment[ar]=تشغيل العديد من الانظمة الوهمية على كمبيوتر مضيف واحد Comment[de]=Einige virtuelle Systeme auf einem Wirtssystem laufen lassen Comment[en_GB]=Run several virtual systems on a single host computer Comment[en_ZA]=Run several virtual systems on a single host computer Comment[es]=Correr varios sistemas virtuales en una sola computadora Comment[fr]=Exécuter plusieurs systèmes virtuels sur un seul ordinateur hôte Comment[fr_CA]=Exécuter plusieurs systèmes virtuels sur un seul ordinateur hôte -Comment[it]=Esegui più macchine virtuali su un singolo computer +Comment[it]=Esegui più sistemi virtuali su un unico computer ospite Comment[ja]=仮想システムをホストコンピューター上で実行します Comment[ko]=가상 머신 +Comment[nl]=Draai verscheidene virtuele systemen op een enkel systeem Comment[pl]=Używaj kilku systemów wirtualnych na jednym komputerze - matce -Comment[pt_BR]=Rode diversas máquinas virtuais em um único computador hospedeiro -Comment[sv]=Kör flera virtuella system på en enda värddator +Comment[pt_BR]=Rode diversos sistemas virtuais em um único computador hospedeiro +Comment[ro]=Rulaează mai multe sisteme virtuale pe un singur calculator gazdă +Comment[sv]=Kör flera virtuella system på en dator Comment[uk]=Запуск декількох віртуальних машин на Вашому комп'ютері Comment[vi]=Chạy một số hệ thống ảo trên một máy chủ duy nhất Comment[zh_CN]=在单个主机上运行几个虚拟系统 +Comment[zh_HK]=在同一電腦運行多個虛擬系統 +Comment[zh_TW]=在同一電腦運行多個虛擬系統 diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/01kde4.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/01kde4.desktop index bd130f07c..4da596110 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/01kde4.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/01kde4.desktop @@ -66,14 +66,14 @@ Comment[he]=סביבת העבודה K Comment[hr]=K grafičko sučelje Comment[hu]=A K asztali környezet (K Desktop Environment) Comment[id]=K Desktop Environment -Comment[it]=K Desktop Environment +Comment[it]=L'Ambiente Desktop K Comment[ja]=Kデスクトップ環境 Comment[ko]=K 데스크탑 환경 Comment[mn]=К Десктоп Орчин Comment[nl]=De K-werkomgeving Comment[pl]=Środowisko Graficzne KDE Comment[pt_BR]=Ambiente de trabalho KDE -Comment[ro]=Mediul K Desktop +Comment[ro]=Mediul grafic K Comment[ru]=Окружение рабочего стола KDE Comment[sk]=K Desktop Environment Comment[sr]=KDE grafičko okruženje diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/02gnome.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/02gnome.desktop index e3610aba8..8cd074392 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/02gnome.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/02gnome.desktop @@ -151,7 +151,7 @@ Comment[pl]=Ta sesja zaloguje cię do środowiska GNOME Comment[ps]=دا ناسته تاسو ګنوم ته ننباسي Comment[pt]=Esta é uma sessão no GNOME Comment[pt_BR]=Esta sessão loga você no GNOME -Comment[ro]=Aceasta sesiune va logheaza în GNOME +Comment[ro]=Această sesiune vă loghează în GNOME Comment[ru]=В этой сессии вы войдете в GNOME Comment[sk]=Toto sedenie Vás prihlási do GNOME Comment[sl]=Seja vas prijavi v GNOME namizje diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/03lxde.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/03lxde.desktop index 5954a6ae4..8f630a42c 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/03lxde.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/03lxde.desktop @@ -67,7 +67,7 @@ Comment[he]=LXDE - סביבת עבודה קלילה Comment[hr]=LXDE - Lagano X11 grafičko sučelje Comment[hu]=LXDE – könnyű X11 asztali környezet Comment[id]=LXDE - Lingkungan desktop X11 yang ringan -Comment[it]=LXDE - Sistema desktop X11 rapido e leggero +Comment[it]=LXDE - Lightweight X11 desktop environment Comment[ja]=LXDE - 軽量X11デスクトップ環境 Comment[ko]=LXDE - 가벼운 X11 데스크탑 환경 Comment[mn]=LXDE - Авсаархан Х11 десктоп орчин @@ -75,6 +75,7 @@ Comment[nl]=LXDE - Lichtgewicht X11-werkomgeving Comment[pl]=LXDE - środowisko graficzne X11 o niskich wymaganiach sprzętowych Comment[pt]=LXDE - Ambiente de trabalho X11 leve Comment[pt_BR]=LXDE - Ambiente desktop X11 leve +Comment[ro]=LXDE - un mediu grafic X11 cu un consum de resurse redus Comment[ru]=LXDE - нетребовательная X11 среда рабочего стола Comment[sk]=LXDE - Lightweight X11 desktop environment Comment[sr]=LXDE - lagano X11 grafičko okruženje diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/04xfce.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/04xfce.desktop index fd1df53cd..884f525b8 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/04xfce.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/04xfce.desktop @@ -43,7 +43,7 @@ Name[pa]=Xfce ਸ਼ੈਸ਼ਨ Name[pl]=Xfce Name[pt]=Sessão Xfce Name[pt_BR]=Xfce -Name[ro]=Sesiune Xfce +Name[ro]=Xfce Name[ru]=Xfce Name[si]=Xfce සැසිය Name[sk]=Xfce @@ -87,19 +87,19 @@ Comment[he]=בחר כדי להריץ את Xfce כסביבת העבודה Comment[hr]=Koristite ovu sesiju za pokretanje Xfce kao vaše grafičko sučelje Comment[hu]=Ezen munkamenet használatával indítható az Xfce asztali környezet Comment[id]=Ini digunakan untuk menjalankan sesi Xfce sebagai lingkungan desktop Anda -Comment[it]=Usa questa sessione per utilizzare Xfce come sistema Desktop +Comment[it]=Usa questa sessione per utilizzare Xfce come ambiente Desktop Comment[ja]=Xfce をデスクトップ環境としてセッションを開始する Comment[kk]=Өзіңіздің жұмыс үстел ортасы ретінде Xfce жіберу үшін осы сессияны қолданыңыз Comment[ko]=Xfce를 데스크탑 환경으로 세션을 시작 Comment[lv]=Izmantot šo sesiju, lai palaistu Xfce darbvirsmas vidi Comment[mn]=Xfce десктоп орчныг болгохын тулд энэ горимыг ашигла Comment[nb]=Bruk denne økten for å kjøre Xfce som ditt skrivebordsmiljø -Comment[nl]=Gebruik deze sessie om Xfce te gebruiken als uw werkomgeving +Comment[nl]=Gebruik deze sessie om Xfce te draaien als uw werkomgeving Comment[pa]=ਇਹ ਸ਼ੈਸ਼ਨ ਨੂੰ Xfce ਨੂ ਆਪਣੇ ਡੈਸਕਟਾਪ ਇੰਵਾਇਰਨਮੈਂਟ ਵਜੋਂ ਚਲਾਣਉ ਲਈ ਵਰਤੋਂ Comment[pl]=Użyj tej sesji do uruchomienia Xfce jako środowiska graficznego Comment[pt]=Utilizar esta sessão para executar o Xfce como ambiente de trabalho Comment[pt_BR]=Use esta sessão para carregar o XFCE como seu ambiente Desktop -Comment[ro]=Alegeți această sesiune pentru a utiliza mediul desktop Xfce +Comment[ro]=Utilizați această sesiune pentru a rula Xfce ca mediul grafic Comment[ru]=Используйте эту сессию для запуска Xfce в качестве среды рабочего стола Comment[si]=Xfce ඔබගේ වැඩතලය ලෙස ක්‍රියාත්මක කිරීමට මෙම සැසිය භාවිතා කරන්න Comment[sk]=Spustiť sedenie Xfce diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/05icewm.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/05icewm.desktop index 87942b94d..a8cc017bb 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/05icewm.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/05icewm.desktop @@ -30,7 +30,7 @@ Name[mn]=IceWM Name[nl]=IceWM Name[pl]=IceWM Name[pt_BR]=IceWM -Name[ro]=Icewm +Name[ro]=IceWM Name[ru]=IceWM Name[sk]=IceWM Name[sl]=IceWM @@ -63,14 +63,14 @@ Comment[he]=מנהל חלונות שתוכנן למהירות, שמישות וע Comment[hr]=Upravljač prozora projektiran za brzinu, uporabnost i postojanost Comment[hu]=Gyorsaságra, használhatóságra és következetességre tervezett ablakkezelő Comment[id]=Window Manager yang dirancang untuk kecepatan, kegunaan dan konsistensi -Comment[it]=Un window manager orientato alla velocità, semplicità di uso e coerenza +Comment[it]=Gestione di finestre progettato per velocità, facilità d'uso e consistenza Comment[ja]=高速・使いやすさ・一貫性を重視したウインドウマネージャー Comment[ko]=속도, 가용성 및 일관성을 위해 설계된 창 관리자 Comment[mn]=Цонх удирдагч нь хурдтай, тухтай болон таарамжтай байдалд зориулагдсан Comment[nl]=Vensterbeheerder ontworpen voor snelheid, gebruiksgemak en samenhang Comment[pl]=Menadżer okien stworzony z myślą o szybkości, funkcjonalności i spójności Comment[pt_BR]=Gerenciador de janelas desenhado visando velocidade, usabilidado e consistência -Comment[ro]=Managerul de ferestre concepute pentru viteza, gradul de utilizare şi coerenţa +Comment[ro]=Manager de ferestre conceput pentru viteză, uzabilitate și coerență Comment[ru]=Оконный менеджер предназначенный для скорости и удобства использования. Comment[sk]=Správca okien určený pre rýchlosť, použiteľnosť a jednotnosť Comment[sr]=Upravljač prozora projektovan da bude brz, upotrebljiv i postojan diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/06wmaker.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/06wmaker.desktop index 33b5a24f8..69d5fbf67 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/06wmaker.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/06wmaker.desktop @@ -61,13 +61,14 @@ Comment[he]=מנהל חלונות תואם GNUstep המבוסס על NeXTstep Comment[hr]=GNUstep usuglašeni NeXTstep klon upravljač prozora Comment[hu]=Egy, a GNUstepnek megfelelő NeXTstep-ablakkezelő klón Comment[id]=GNUstep-compliant kembaran NeXTstep Window Manager -Comment[it]=Un clone GNUstep del Window Manager NeXTstep +Comment[it]=Un clone GNUstep compatibile con NeXTstep Window Manager Comment[ja]=GNUstep に準拠した NeXTstep ウインドウマネージャーのクローン Comment[ko]=GNUstep과 호환되는 NeXTstep 창 관리자 클론 Comment[mn]=GNUstep-таарамжтай NeXТstep Цонх Удирдагчийн дуураймал Comment[nl]=Een GNUstep-compatibele NeXTstep vensterbeheerder-kloon Comment[pl]=Zgodny z GNUstep klon menedżera okien NeXTstep Comment[pt_BR]=Um clone do gerenciado de janelas do NeXTstep, compatível com o GNUstep +Comment[ro]=O clonă GNUstep a managerului de ferestre NeXTstep Comment[ru]=GNUstep-совместимый клон оконного менеджера NeXTstep Comment[sk]=Spravca okien, klon NeXTstep kompatibilny s GNUStep prostredim Comment[sr]=GNUstep usaglašeni NeXTstep klon upravljač prozora kopija diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/07awesome.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/07awesome.desktop index 370a35d16..8e05932b6 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/07awesome.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/07awesome.desktop @@ -31,7 +31,7 @@ Name[mn]=Сэтгэл догдлуулсан Name[nl]=Geweldig Name[pl]=Niesamowity Name[pt_BR]=Awesome -Name[ro]=Minunat +Name[ro]=Awesome Name[ru]=Awesome Name[sk]=Desivý Name[sl]=Awesome @@ -63,14 +63,14 @@ Comment[he]=תשתית ניהול חלונות גמישה במיוחד Comment[hr]=Veoma prilagodljiv okvirni upravljač prozora Comment[hu]=Jól konfigurálható ablakkezelő keretrendszer Comment[id]=Kerangka kerja window manager yang bisa dikonfigurasi -Comment[it]=Window manager estremamente flessibile +Comment[it]=Gestore di finestre dalla struttura altamente configurabile Comment[ja]=高機能フレームワークウインドウマネージャー Comment[ko]=고도로 구성 가능한 프레임워크 창 관리자 Comment[mn]=Маш нарийн тохируулга бүхий цонч удирдагч Comment[nl]=Goed te configureren framework-vensterbeheerder Comment[pl]=Wysoce konfigurowalna struktura menedżera okien Comment[pt_BR]=Framework de gerenciadores de janelas altamente configurável -Comment[ro]=Cadru manager de ferestre extrem de configurabil +Comment[ro]=Un manager de ferestre foarte configurabil Comment[ru]=Сильно настраиваемый оконный менеджер Comment[sk]=Vysoko konfigurovateľný framework správcu okien Comment[sr]=Veoma prilagodljiv okvirni upravljač prozora diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/08enlightenment.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/08enlightenment.desktop index 88c024609..f0737fe38 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/08enlightenment.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/08enlightenment.desktop @@ -32,6 +32,7 @@ Name[mn]=Нэмэлт гоёо Name[nl]=Enlightenment Name[pl]=Enlightenment Name[pt_BR]=Enlightenment +Name[ro]=Enlightenment Name[ru]=Enlightenment Name[sk]=Enlightenment Name[sl]=Enlightenment @@ -71,6 +72,7 @@ Comment[mn]=Нэмэлт гоёог ашиглан нэврэх (Version 0.16.99 Comment[nl]=Gebruik Enlightenment (Versie 0.16.999.52995) Comment[pl]=Zaloguj się używając Enlightenment (wersja 0.16.999.52995) Comment[pt_BR]=Entre usando o Enlightenment (Versão 0.16.999.52995) +Comment[ro]=Vă conectați utilizând Enlightenment (Version 0.16.999.52995) Comment[ru]=Войти используя Enlightenment (версия 0.16.999.52995) Comment[sk]=Spustiť sedenie Enlightenment (Verzia 0.16.999.52995) Comment[sr]=Prijavite se koristeći Enligtenment (Verzija 0.16.999.52995) diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/09spectrwm.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/09spectrwm.desktop index 517260eac..5b2b5f178 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/09spectrwm.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/09spectrwm.desktop @@ -24,6 +24,7 @@ Name[ko]=Spectrwm Name[nl]=Spectrwm Name[pl]=Spectrwm Name[pt_BR]=Spectrwm +Name[ro]=Spectrwm Name[ru]=Spectrwm Name[sr]=Spectrwm Name[sv]=Spectrwm @@ -51,13 +52,14 @@ Comment[fr_CA]=Un petit gestionnaire de fenêtre de type mosaïque Comment[hr]=Mali dinamički popločavajući upravljač prozora Comment[hu]=Egy kicsi, dinamikus mozaikozó ablakkezelő Comment[id]=Sebuah window manager kecil dan dinamis -Comment[it]=Un piccolo dinamico Window Manager +Comment[it]=Un gestore di finestre piccolo e dinamico Comment[ja]=軽量でダイナミックなタイル型ウインドウマネージャー Comment[ko]=작은 동적 타일링 창 관리자 Comment[mn]=Авсаархан динамик хавтант цонхны удирдагч Comment[nl]=Een compacte, dynamische vensterbeheerder Comment[pl]=Mały dynamiczny menedżer okien z automatycznym podziałem pulpitu Comment[pt_BR]=Um gerenciador de janelas pequeno e dninâmico +Comment[ro]=Un manager de ferestre tiling mic și dinamic Comment[ru]=Небольшой динамический менеджер управления окнами Comment[sk]=Malý a dynamický správca okien Comment[sr]=Mali dinamički popločavajući upravljač prozora diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/10fvwm.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/10fvwm.desktop index 56fff249f..c2eb0c3cf 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/10fvwm.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/10fvwm.desktop @@ -27,6 +27,7 @@ Name[mn]=FVWM Name[nl]=FVWM Name[pl]=FVWM Name[pt_BR]=FVWM +Name[ro]=FVWM Name[ru]=FVWM Name[sr]=FVWM Name[sv]=FVWM diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/11fvwm-crystal.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/11fvwm-crystal.desktop index 100a492ba..abc12a234 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/11fvwm-crystal.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/11fvwm-crystal.desktop @@ -27,6 +27,7 @@ Name[mn]=FVWM-Crystal Name[nl]=FVWM-Crystal Name[pl]=FVWM-Crystal Name[pt_BR]=FVWM-Crystal +Name[ro]=FVWM-Crystal Name[ru]=FVWM-Crystal Name[sr]=FVWM-Crystal Name[sv]=FVWM-Crystal diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/14openbox.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/14openbox.desktop index ad1325e1a..662bf8693 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/14openbox.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/14openbox.desktop @@ -31,6 +31,7 @@ Name[mn]=Опенбокс Name[nl]=Openbox Name[pl]=Openbox Name[pt_BR]=Openbox +Name[ro]=Openbox Name[ru]=Openbox Name[sk]=Openbox Name[sr]=Openbox @@ -63,7 +64,7 @@ Comment[he]=מנהל חלונות קטן ומהיר Comment[hr]=Mali i brz upravljač prozora Comment[hu]=Apró és gyors ablakkezelő Comment[id]=Sebuah window manager yang kecil dan cepat -Comment[it]=Window manager leggero e veloce +Comment[it]=Un gestore di finestre piccolo e veloce Comment[ja]=軽量・高速ウインドウマネージャー Comment[ko]=작고 빠른 창 관리자 Comment[mn]=Жижиг хурдан цонх удирдагч diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/15fluxbox.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/15fluxbox.desktop index 684a2c96c..4d836edf1 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/15fluxbox.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/15fluxbox.desktop @@ -65,7 +65,7 @@ Comment[he]=מנהל חלונות קטן ומהיר Comment[hr]=Mali i brz upravljač prozora Comment[hu]=Apró és gyors ablakkezelő Comment[id]=Sebuah window manager yang kecil dan cepat -Comment[it]=Window manager leggero e veloce +Comment[it]=Un gestore di finestre piccolo e veloce Comment[ja]=軽量・高速ウインドウマネージャー Comment[ko]=작고 빠른 창 관리자 Comment[mn]=Жижиг хурдан цонх удирдагч diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/16WindowLab.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/16WindowLab.desktop index 51b1053ab..ea58e223a 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/16WindowLab.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/16WindowLab.desktop @@ -24,6 +24,7 @@ Name[ko]=WindowLab Name[nl]=WindowLab Name[pl]=WindowLab Name[pt_BR]=WindowLab +Name[ro]=WindowLab Name[ru]=WindowLab Name[sr]=WindowLab Name[sv]=WindowLab @@ -54,6 +55,7 @@ Comment[ko]=X11을 위한 작은 창 관리자 Comment[nl]=Een kleine vensterbeheerder voor X11 Comment[pl]=Mały menadżer okien dla X11 Comment[pt_BR]=Um pequeno gerenciador de janelas para o X11 +Comment[ro]=Un mic manager de ferestre pentru X11 Comment[ru]=Небольшой оконный менеджер для X11 Comment[sr]=Mali upravljač prozora za X11 Comment[sv]=En liten fönsterhanterare för X11 diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/17Etoile.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/17Etoile.desktop index ec7f99e19..c508a25a3 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/17Etoile.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/17Etoile.desktop @@ -24,6 +24,7 @@ Name[ko]=Etoile Name[nl]=Etoile Name[pl]=Etoile Name[pt_BR]=Etoile +Name[ro]=Etoile Name[ru]=Etoile Name[sr]=Etoile Name[sv]=Etoile @@ -48,12 +49,13 @@ Comment[fr]=Etoile est open-source (sous licence MIT/BSD) et construit sur GNUst Comment[fr_CA]=Etoile est open-source (sous licence MIT/BSD) et construit sur GNUstep Comment[hr]=Etoile je otvorenog koda i baziran na GNUstep-u Comment[hu]=Az Etoile nyílt forrású (MIT/BSD licencelésű), és a GNUstep-re épült -Comment[it]=Etoile è open-source (licenza MIT/BSD) e costruita su GNUstep +Comment[it]=Etoile è open-source (licenza MIT/BSD) e montato su GNUstep Comment[ja]=Etoile は GNUstep を元にしたオープンソース(MIT/BSD ライセンス)です Comment[ko]=Etoile은 오픈 소스 (MIT/BSD 라이센스)이며 GNUstep을 기반으로 만들어졌습니다. Comment[nl]=Etoile is open-bron (MIT/BSD-gelicentieerd) en gebouwd op GNUstep Comment[pl]=Eloile to open-source (na licencji MIT/BSD), zbudowany na GNUstep Comment[pt_BR]=O Etoile é um software de código aberto (licenciado sob MIT/BSD) e baseado no GNUstep +Comment[ro]=Etoile este sursă-deschisă (sub licență MIT/BSD) și construit pe GNUstep Comment[ru]=Etoile (звездный) - проект с открытым исходным кодом (распространяющийся под лицензиями MIT/BSD), построенный на GNUstep Comment[sr]=Etoile je otvorenog koda (MIT/BSD licenca) i koristi GNUstep Comment[sv]=Etoile är open-source (MIT/BSD-licensierad) och byggd på GNUstep diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/18I3.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/18I3.desktop index 8fa9f9aa2..36bfa7069 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/18I3.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/18I3.desktop @@ -24,6 +24,7 @@ Name[ko]=I3 Name[nl]=I3 Name[pl]=I3 Name[pt_BR]=I3 +Name[ro]=I3 Name[ru]=I3 Name[sr]=I3 Name[sv]=I3 @@ -47,12 +48,13 @@ Comment[fr]=Un gestionnaire de fenêtres amélioré de type Comment[fr_CA]=Une amélioration du gestionnaire dynamique de fenêtre Comment[hr]=Napredan dinamični upravljač prozora Comment[hu]=Egy továbbfejlesztett, dinamikus mozaikozó ablakkezelő -Comment[it]=Una migliore e dinamica tiling window manager +Comment[it]=Un gestore dinamico migliorato delle finestre Comment[ja]=改良されたタイル型ウィンドウマネージャー Comment[ko]=향상된 동적 타일링 창 관리자 Comment[nl]=Een verbeterde dynamisch tegelende vensterbeheerder Comment[pl]=Zaawansowany dynamiczny, kafelkowy menadźer okien Comment[pt_BR]=Um gerenciador de janelas lado a lado dinâmico +Comment[ro]=Un manager de ferestre tiling îmbunătățit și dinamic Comment[ru]=Улучшенный оконный менеджер Comment[sr]=Napredan dinamički popločavajući upravljač prozora Comment[sv]=En förbättrad dynamisk skrivbordsmiljö diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/19EvilWM.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/19EvilWM.desktop index 90b9ae83b..08217d684 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/19EvilWM.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/19EvilWM.desktop @@ -24,6 +24,7 @@ Name[ko]=EvilWM Name[nl]=EvilWM Name[pl]=EvilWM Name[pt_BR]=EvilWM +Name[ro]=EvilWM Name[ru]=EvilWM Name[sr]=EvilWM Name[sv]=EvilWM @@ -48,12 +49,13 @@ Comment[fr]=Gestionnaire de fenêtres minimaliste basé sur 9wm Comment[fr_CA]=Gestionnaire de fenêtres minimaliste basé sur 9wm Comment[hr]=Minimalistički upravljač prozora baziran na 9wm Comment[hu]=9wm-en alapuló, minimalista ablakkezelő -Comment[it]=Minimalista gestore di finestre basato su 9wm +Comment[it]=Gestore di finestre minimalista basato su 9WM Comment[ja]=9wm をベースにした最小主義のウインドウマネージャー Comment[ko]=9wm 기반의 미니멀한 창 관리자 Comment[nl]=Minimalistische vensterbeheerder gebaseerd op 9wm Comment[pl]=Minimalistyczny menadżer okien bazujący na 9wm Comment[pt_BR]=Gerenciador de janelas minimalista baseado no 9wm +Comment[ro]=Un manager de ferestre minimalist bazat pe 9wm Comment[ru]=Минималистичный оконный менеджер, основанный на 9wm Comment[sr]=Minimalistički upravljač prozora baziran na 9wm Comment[sv]=Minimalistisk fönsterhanterare byggd på 9wm diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/20EDE.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/20EDE.desktop index 78fa2900d..d9bea8597 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/20EDE.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/20EDE.desktop @@ -24,6 +24,7 @@ Name[ko]=EDE Name[nl]=EDE Name[pl]=EDE Name[pt_BR]=EDE +Name[ro]=EDE Name[ru]=EDE Name[sr]=EDE Name[sv]=EDE @@ -48,12 +49,13 @@ Comment[fr]=Gestionnaire de fenêtres minimaliste basé sur 9wm Comment[fr_CA]=Gestionnaire de fenêtres minimaliste basé sur 9wm Comment[hr]=Minimalistički upravljač prozora baziran na 9wm Comment[hu]=9wm-en alapuló, minimalista ablakkezelő -Comment[it]=Minimalista gestore di finestre basato su 9wm +Comment[it]=Gestore di finestre minimalista basato su 9WM Comment[ja]=9wm をベースにした最小主義のウインドウマネージャー Comment[ko]=9wm 기반의 미니멀한 창 관리자 Comment[nl]=Minimalistische vensterbeheerder gebaseerd op 9wm Comment[pl]=Minimalistyczny menadżer okien bazujący na 9wm Comment[pt_BR]=Gerenciador de janelas minimalista baseado no 9wm +Comment[ro]=Un manager de ferestre minimalist bazat pe 9wm Comment[ru]=Минималистичный оконный менеджер, основанный на 9wm Comment[sr]=Minimalistički upravljač prozora baziran na 9wm Comment[sv]=Minimalistisk fönsterhanterare byggd på 9wm diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/21RatPoison.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/21RatPoison.desktop index 5a2b173e5..a8ce740d7 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/21RatPoison.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/21RatPoison.desktop @@ -22,14 +22,16 @@ Name[ja]=Ratpoison Name[nl]=Rattengif Name[pl]=Ratpoison jest prostym menedżerem okien. W dużym stopniu wzorowany na GNU Screen. Wszystkie interakcje odbywają się za pomocą skrótów klawiszowych. Ratpoison pozbawiony jest uciążliwych zależności. Name[pt_BR]=Ratpoison +Name[ro]=Ratpoison Name[ru]=Крысиный яд Name[sr]=Ratpoison Name[sv]=Ratpoison Name[tr]=Ratpoison Name[uk]=Ratpoison Name[vi]=Ratpoison -Name[zh_CN]=杀鼠剂 -Name[zh_TW]=Ratpoison +Name[zh_CN]=杀鼠剂 +Name[zh_HK]=老鼠藥 +Name[zh_TW]=老鼠藥 Comment=Say good-bye to the rodent Comment[af]=Sê totsiens aan die knaagdier Comment[ar]=قل وداعا إلى القوارض @@ -50,6 +52,7 @@ Comment[ja]=げっ歯類にさよならしよう Comment[nl]=Zeg maar dag tegen het knaagdier Comment[pl]=Pożegnaj się z gryzoniami Comment[pt_BR]=Diga adeus ao roedor +Comment[ro]=Spune la revedere rozătoarelor Comment[ru]=Попрощайтесь с грызунами Comment[sr]=Recite glodarima doviđenja Comment[sv]=Säg hejdå till gnagaren @@ -57,4 +60,5 @@ Comment[tr]=Kemirgene hoşçakal deyin Comment[uk]=Попрощайтеся з rodent Comment[vi]=Nói rằng lời tạm biệt với các loài gặm nhấm Comment[zh_CN]=跟啮齿动物们说拜拜 +Comment[zh_HK]=跟囓齒動物們說再見 Comment[zh_TW]=跟囓齒動物們說再見 diff --git a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/30xbmc.desktop b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/30xbmc.desktop index d9583345e..e38ec4080 100644 --- a/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/30xbmc.desktop +++ b/src-sh/pc-extractoverlay/ports-overlay/usr/local/share/xsessions/30xbmc.desktop @@ -21,6 +21,7 @@ Name[ja]=XBMC Name[nl]=XBMC Name[pl]=XBMC Name[pt_BR]=XBCM +Name[ro]=XBMC Name[ru]=XBMC Name[sr]=XBMC Name[sv]=XBMC @@ -50,6 +51,7 @@ Comment[ja]=XBMC メディアセンターを起動します Comment[nl]=Deze sessie zal XBMC mediacentrum starten Comment[pl]=Ta sesja uruchomi Centrum Multimediów XBMC Comment[pt_BR]=Esta sessão irá iniciar o XBCM Media Center +Comment[ro]=Aceasta sesiune va porni centrul media XBMC Comment[ru]=Эта сессия запустит медиа-центр XBMC Comment[sr]=Ova sesija će da starta XBMC Media Center Comment[sv]=Denna session kommer starta XBMC Media Center diff --git a/src-sh/pc-installdialog/Makefile b/src-sh/pc-installdialog/Makefile new file mode 100644 index 000000000..aca1c21cc --- /dev/null +++ b/src-sh/pc-installdialog/Makefile @@ -0,0 +1,54 @@ +############################################################################# +# Makefile for building: pc-installdialog +############################################################################# + +####### Compiler, tools and options + +PREFIX?= /usr/local + +AR = ar cqs +TAR = tar -cf +COMPRESS = gzip -9f +COPY = cp -f +SED = sed +COPY_FILE = $(COPY) +COPY_DIR = $(COPY) -R +INSTALL_FILE = $(COPY_FILE) +INSTALL_DIR = $(COPY_DIR) +INSTALL_PROGRAM = $(COPY_FILE) +DEL_FILE = rm -f +SYMLINK = ln -f -s +DEL_DIR = rmdir +MOVE = mv -f +CHK_DIR_EXISTS= test -d +MKDIR = mkdir -p + +first: all + +all: + +clean: + +check: first + +install_scripts: first FORCE + @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)$(PREFIX)/bin/ || $(MKDIR) $(INSTALL_ROOT)$(PREFIX)/bin/ + -$(INSTALL_FILE) pc-installdialog.sh $(INSTALL_ROOT)$(PREFIX)/bin/pc-installdialog + + +uninstall_scripts: FORCE + -$(DEL_FILE) -r $(INSTALL_ROOT)$(PREFIX)/bin/pc-installdialog + -$(DEL_DIR) $(INSTALL_ROOT)$(PREFIX)/bin/ + + +install_dochmod: first FORCE + @$(CHK_DIR_EXISTS) $(INSTALL_ROOT)$(PREFIX)/bin/ || $(MKDIR) $(INSTALL_ROOT)$(PREFIX)/bin/ + chmod 755 $(PREFIX)/bin/pc-installdialog + + +install: install_scripts install_dochmod FORCE + +uninstall: uninstall_scripts FORCE + +FORCE: + diff --git a/src-sh/pc-installdialog/pc-installdialog.sh b/src-sh/pc-installdialog/pc-installdialog.sh new file mode 100755 index 000000000..228c2cad2 --- /dev/null +++ b/src-sh/pc-installdialog/pc-installdialog.sh @@ -0,0 +1,314 @@ +#!/bin/sh +# License: BSD +# Author: Kris Moore (kris@pcbsd.org) +######################################################## +# This script is fairly linear, it will walk through a series of questions +# and when finished, generate a pc-sysinstall script + +# Source our functions +. /usr/local/share/pcbsd/scripts/functions.sh + +TITLE="PC-BSD Install Dialog" + +TANS="/tmp/.pcinsdialog.$$" + +CFGFILE="/tmp/sys-install.cfg" + +get_dlg_ans() +{ + if [ -e "$TANS" ] ; then rm ${TANS}; fi + if [ -e "$TANS.dlg" ] ; then rm ${TANS}.dlg; fi + echo "dialog --title \"$TITLE\" ${@}" >${TANS}.dlg + sh ${TANS}.dlg 2>${TANS} + exit=$? + if [ ! -e "$TANS" ] ; then + ANS="" + return $exit + fi + ANS=`cat ${TANS}` + return $exit +} + + +get_sys_type() +{ + # First ask the system type + get_dlg_ans "--radiolist \"System type\" 12 50 5 desktop \"PC-BSD Desktop\" on server \"TrueOS / FreeBSD Server\" off" + if [ -z "$ANS" ] ; then + exit_err "Invalid system type" + fi + SYSTYPE="$ANS" +} + + +get_target_disk() +{ + # Now we prompt for the disk to install on + dOpts="" + pc-sysinstall disk-list > /tmp/.dList.$$ + while read i + do + fOpt="on" + d=`echo $i | cut -d ':' -f 1` + desc=`echo $i | cut -d ':' -f 2` + dOpts="$dOpts $d \"$desc\" $fOpt" + if [ -z "$fOpt" ] ; then fOpt="off"; fi + done < /tmp/.dList.$$ + rm /tmp/.dList.$$ + get_dlg_ans "--radiolist \"Select target disk\" 12 50 5 ${dOpts}" + if [ -z "$ANS" ] ; then + exit_err "Invalid disk selected!" + fi + SYSDISK="$ANS" +} + +get_target_part() +{ + # Now prompt for the full-disk or partition to install onto + pc-sysinstall disk-part $SYSDISK > /tmp/.dList.$$ + dOpts="ALL \"Use entire disk\" on" + dFmt=`grep "$SYSDISK-format:" /tmp/.dList.$$ | awk '{print $2}'` + if [ "$dFmt" = "MBR" ] ; then + dChar="s" + DISKFORMAT="MBR" + else + dChar="p" + DISKFORMAT="GPT" + fi + i=1 + while : + do + partRAW="${dChar}${i}" + part="${SYSDISK}${dChar}${i}" + [ -e "/dev/${part}" ] || break + desc="`cat /tmp/.dList.$$ | grep ^${part}-label | cut -d ':' -f 2`" + mb="`cat /tmp/.dList.$$ | grep ^${part}-sizemb | awk '{print $2}'`" + dOpts="$dOpts $partRAW \"${mb}MB -$desc\" off" + i="`expr $i + 1`" + done + rm /tmp/.dList.$$ + get_dlg_ans "--radiolist \"Select target partition\" 12 80 5 ${dOpts}" + if [ -z "$ANS" ] ; then + exit_err "Invalid disk selected!" + fi + DISKPART="$ANS" +} + +get_root_pw() +{ + while : + do + get_dlg_ans "--passwordbox 'Enter the root password' 8 30" + if [ -z "$ANS" ] ; then + exit_err "Invalid password entered!" + fi + ROOTPW="$ANS" + get_dlg_ans "--passwordbox 'Confirm root password' 8 30" + if [ -z "$ANS" ] ; then + exit_err "Invalid password entered!" + fi + ROOTPWCONFIRM="$ANS" + if [ "$ROOTPWCONFIRM" = "$ROOTPW" ] ; then break; fi + get_dlg_ans "--yesno 'Password Mismatch, try again?' 8 30" + if [ $? -eq 0 ] ; then continue ; fi + exit_err "Failed setting root password!" + done +} + +get_user_pw() +{ + while : + do + get_dlg_ans "--passwordbox \"Enter the password for $USERNAME\" 8 40" + if [ -z "$ANS" ] ; then + exit_err "Invalid password entered!" + fi + USERPW="$ANS" + get_dlg_ans "--passwordbox 'Confirm password' 8 40" + if [ -z "$ANS" ] ; then + exit_err "Invalid password entered!" + fi + USERPWCONFIRM="$ANS" + if [ "$USERPWCONFIRM" = "$USERPW" ] ; then break; fi + get_dlg_ans "--yesno 'Password Mismatch, try again?' 8 30" + if [ $? -eq 0 ] ; then continue ; fi + exit_err "Failed setting password!" + done +} + +get_user_name() +{ + get_dlg_ans "--inputbox 'Enter a username' 8 40" + if [ -z "$ANS" ] ; then + exit_err "Invalid username entered!" + fi + USERNAME="$ANS" +} + +get_user_realname() +{ + get_dlg_ans "--inputbox \"Enter the real name for $USERNAME\" 8 40" + if [ -z "$ANS" ] ; then + exit_err "Invalid real name entered!" + fi + USERREALNAME="$ANS" +} + +get_user_shell() +{ + get_dlg_ans "--menu \"Select the users shell\" 12 45 10 /bin/sh SH /bin/csh CSH /bin/tcsh TCSH /bin/bash BASH" + if [ -z "$ANS" ] ; then + exit_err "Invalid SHELL entered!" + fi + USERSHELL="$ANS" +} + +gen_pc-sysinstall_cfg() +{ + # Start the header information + echo "# Auto-Generated pc-sysinstall configuration" >${CFGFILE} + echo "installInteractive=no" >>${CFGFILE} + echo "installMode=fresh" >>${CFGFILE} + if [ "$SYSTYPE" = "desktop" ] ; then + echo "installType=PCBSD" >>${CFGFILE} + echo "netSaveDev=AUTO-DHCP-SLAAC" >> ${CFGFILE} + else + echo "installType=FreeBSD" >>${CFGFILE} + fi + echo "packageType=dist" >> ${CFGFILE} + if [ "`uname -m`" = "amd64" ] ; then + echo "distFiles=base doc games kernel lib32" >> ${CFGFILE} + else + echo "distFiles=base doc games kernel" >> ${CFGFILE} + fi + echo "installMedium=local" >>${CFGFILE} + echo "localPath=/dist" >>${CFGFILE} + + # Now do the disk block + echo "" >> ${CFGFILE} + echo "# Disk Setup for $SYSDISK" >> ${CFGFILE} + echo "disk0=$SYSDISK" >> ${CFGFILE} + echo "partition=$DISKPART" >> ${CFGFILE} + echo "bootManager=GRUB" >> ${CFGFILE} + echo "partscheme=$DISKFORMAT" >> ${CFGFILE} + echo "commitDiskPart" >> ${CFGFILE} + + # Now the partition block + echo "" >> ${CFGFILE} + echo "# Partition Setup for ${SYSDISK}($DISKPART)" >> ${CFGFILE} + echo "# All sizes are expressed in MB" >> ${CFGFILE} + echo "# Avail FS Types, UFS, UFS+S, UFS+SUJ, UFS+J, ZFS, SWAP" >> ${CFGFILE} + echo "# UFS.eli, UFS+S.eli, UFS+SUJ, UFS+J.eli, ZFS.eli, SWAP.eli" >> ${CFGFILE} + echo "disk0-part=ZFS 0 /,/root,/tmp(compress=lz4),/usr(canmount=off),/usr/home,/usr/jails,/usr/obj(compress=lz4),/usr/pbi,/usr/ports(compress=lz4),/usr/ports/distfiles(compress=off),/usr/src(compress=lz4),/var(canmount=off),/var/audit(compress=lz4),/var/log(compress=lz4),/var/tmp(compress=lz4)" >> ${CFGFILE} + echo "disk0-part=SWAP 2000 none" >> ${CFGFILE} + echo "commitDiskLabel" >> ${CFGFILE} + echo "" >> ${CFGFILE} + + # Now the packages + if [ "$SYSTYPE" = "desktop" ] ; then + echo "installPackages=pcbsd-base pcbsd-meta-kde pcbsd-meta-kde-accessibility pcbsd-meta-kde-artwork pcbsd-meta-kde-graphics pcbsd-meta-kde-multimedia pcbsd-meta-kde-network pcbsd-meta-kde-pim" >> ${CFGFILE} + echo "" >> ${CFGFILE} + # Set our markers for desktop to run the first-time boot wizards + echo "runCommand=sh /usr/local/share/pcbsd/scripts/sys-init.sh desktop en_US" >> ${CFGFILE} + echo "runCommand=touch /var/.runxsetup" >> ${CFGFILE} + echo "runCommand=touch /var/.pcbsd-firstboot" >> ${CFGFILE} + echo "runCommand=touch /var/.pcbsd-firstgui" >> ${CFGFILE} + else + echo "installPackages=trueos-base" >> ${CFGFILE} + echo "" >> ${CFGFILE} + echo "runCommand=sh /usr/local/share/pcbsd/scripts/sys-init.sh server" >> ${CFGFILE} + echo "" >> ${CFGFILE} + + # Since on TrueOS, lets save username / passwords + echo "rootPass=${ROOTPW}" >> ${CFGFILE} + echo "" >> ${CFGFILE} + echo "userName=${USERNAME}" >> ${CFGFILE} + echo "userPass=${USERPW}" >> ${CFGFILE} + echo "userShell=${USERSHELL}" >> ${CFGFILE} + echo "userHome=/home/${USERNAME}" >> ${CFGFILE} + echo "userGroups=wheel,operator" >> ${CFGFILE} + echo "commitUser" >> ${CFGFILE} + + # KPM - TODO, add blocks to create network config, hostname / ssh settings + fi + + # Last cleanup stuff + echo "" >> ${CFGFILE} + echo "runExtCmd=/root/save-config.sh" >> ${CFGFILE} + echo "runCommand=newaliases" >> ${CFGFILE} + + +} + +change_disk_selection() { + get_target_disk + get_target_part + gen_pc-sysinstall_cfg +} + +start_full_wizard() +{ + # Start the wizard + get_sys_type + get_target_disk + get_target_part + + # If doing a server setup, need to prompt for some more details + if [ "$SYSTYPE" = "server" ] ; then + get_root_pw + get_user_name + get_user_pw + get_user_realname + get_user_shell + fi + gen_pc-sysinstall_cfg +} + +start_menu_loop() +{ + + while : + do + dialog --title "PC-BSD Text Install" --menu "Please select from the following options:" 15 40 10 wizard "Run install wizard" disk "Change disk ($SYSDISK)" view "View install script" edit "Edit install script" install "Start the installation" quit "Quit install wizard" 2>/tmp/answer + if [ $? -ne 0 ] ; then break ; fi + + ANS="`cat /tmp/answer`" + + case $ANS in + wizard) start_full_wizard + rtn + ;; + disk) change_disk_selection + rtn + ;; + view) more ${CFGFILE} + rtn + ;; + edit) vi ${CFGFILE} + rtn + ;; + install) echo "This will begin the installation, continue?" + echo -e "(y/n)\c" + read tmp + if [ "$tmp" = "y" -o "$tmp" = "Y" ] ; then + pc-sysinstall -c ${CFGFILE} + rtn + fi + ;; + quit) break ;; + *) ;; + esac + done + +} + + + +if [ ! -e "$CFGFILE" ] ; then + cp ${CFGFILE} ${CFGFILE}.bak + rm ${CFGFILE} +fi + +start_menu_loop + +exit 0 diff --git a/src-sh/pc-updatemanager/pc-updatemanager b/src-sh/pc-updatemanager/pc-updatemanager index 67a502ac0..f18ac8f59 100755 --- a/src-sh/pc-updatemanager/pc-updatemanager +++ b/src-sh/pc-updatemanager/pc-updatemanager @@ -163,9 +163,17 @@ list_branches() { echo $line | grep -q "^BRANCHES:" if [ $? -eq 0 ] ; then echo "Available branches:" + echo "* = Current Branch" echo "----------------------------------" echo $line | cut -d ':' -f 2 | sed 's|,|\ -|g' +|g' | while read branch + do + if [ "`uname -r | cut -d '-' -f 1-2`" = "$branch" ] ; then + echo "$branch *" + else + echo "$branch" + fi + done echo "" echo "To change branches run: ${0} chbranch " BRANCHFOUND="1" diff --git a/src-sh/port-files/pkg-plist b/src-sh/port-files/pkg-plist index 26adce9dd..ff7af14f0 100644 --- a/src-sh/port-files/pkg-plist +++ b/src-sh/port-files/pkg-plist @@ -22,6 +22,7 @@ bin/pc-xdgutil bin/pc-firstgui bin/pc-runxgui bin/pc-checkxdisplay +bin/pc-installdialog bin/enable_user_pefs sbin/pc-sysinstall share/lpreserver/backend/zfsmon.sh