diff -Nru lxpanel-0.10.0/aclocal.m4 lxpanel-0.10.1/aclocal.m4 --- lxpanel-0.10.0/aclocal.m4 2019-02-26 21:46:53.000000000 +0000 +++ lxpanel-0.10.1/aclocal.m4 2021-02-06 21:15:54.000000000 +0000 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.16.3 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -766,7 +766,7 @@ AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# Copyright (C) 2002-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -778,10 +778,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.15' +[am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.15], [], +m4_if([$1], [1.16.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -797,12 +797,12 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.15])dnl +[AM_AUTOMAKE_VERSION([1.16.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -864,7 +864,7 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -916,7 +916,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -947,7 +947,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1138,13 +1138,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. - # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], @@ -1152,49 +1151,43 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE([$CONFIG_FILES], + [*\'*], [eval set x "$CONFIG_FILES"], + [*], [set x $CONFIG_FILES]) shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME(["$am_mf"])` + am_filepart=`AS_BASENAME(["$am_mf"])` + AM_RUN_LOG([cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles]) || am_rc=$? done + if test $am_rc -ne 0; then + AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. If GNU make was not used, consider + re-running the configure script with MAKE="gmake" (or whatever is + necessary). You can also try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).]) + fi + AS_UNSET([am_dirpart]) + AS_UNSET([am_filepart]) + AS_UNSET([am_mf]) + AS_UNSET([am_rc]) + rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -1203,18 +1196,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each '.P' file that we will -# need in order to bootstrap the dependency handling code. +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1301,8 +1293,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. @@ -1369,7 +1361,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -1411,7 +1403,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1432,7 +1424,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# Copyright (C) 2003-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1453,7 +1445,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1461,49 +1453,42 @@ # AM_MAKE_INCLUDE() # ----------------- -# Check to see how make treats includes. +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) + AS_CASE([$?:`cat confinc.out 2>/dev/null`], + ['0:this is the am__doit target'], + [AS_CASE([$s], + [BSD], [am__include='.include' am__quote='"'], + [am__include='include' am__quote=''])]) + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +AC_MSG_RESULT([${_am_result}]) +AC_SUBST([am__include])]) +AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1524,12 +1509,7 @@ [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac + MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then @@ -1542,7 +1522,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1571,7 +1551,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1618,7 +1598,7 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1637,7 +1617,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1718,7 +1698,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# Copyright (C) 2009-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1778,7 +1758,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1806,7 +1786,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# Copyright (C) 2006-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1825,7 +1805,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# Copyright (C) 2004-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -Nru lxpanel-0.10.0/ar-lib lxpanel-0.10.1/ar-lib --- lxpanel-0.10.0/ar-lib 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/ar-lib 2021-02-06 21:15:24.000000000 +0000 @@ -2,9 +2,9 @@ # Wrapper for Microsoft lib.exe me=ar-lib -scriptversion=2012-03-01.08; # UTC +scriptversion=2019-07-04.01; # UTC -# Copyright (C) 2010-2014 Free Software Foundation, Inc. +# Copyright (C) 2010-2020 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify @@ -18,7 +18,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -53,7 +53,7 @@ MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -65,7 +65,7 @@ mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin) + cygwin | msys) file=`cygpath -m "$file" || echo "$file"` ;; wine) @@ -224,10 +224,11 @@ esac done else - $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member - do - $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? - done + $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \ + | while read member + do + $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? + done fi elif test -n "$quick$replace"; then diff -Nru lxpanel-0.10.0/AUTHORS lxpanel-0.10.1/AUTHORS --- lxpanel-0.10.0/AUTHORS 2019-02-26 21:01:37.000000000 +0000 +++ lxpanel-0.10.1/AUTHORS 2021-01-29 22:35:05.000000000 +0000 @@ -22,7 +22,9 @@ Mamoru TASAKA number Zero Carles Pina i Estany - Max Kirillov + Max Kirillov + Stuart D. Gathman + TheZxcv [History] LXPanel is a derivative work from fbpanel [1] written by Anatoly Asviyan, diff -Nru lxpanel-0.10.0/ChangeLog lxpanel-0.10.1/ChangeLog --- lxpanel-0.10.0/ChangeLog 2019-02-26 21:46:31.000000000 +0000 +++ lxpanel-0.10.1/ChangeLog 2021-01-29 22:36:23.000000000 +0000 @@ -1,3 +1,12 @@ +0.10.1 +------------------------------------------------------------------------- +* Fixed battery alarm when measurement of current is missing. +* Fixed spelling errors on "allow to" in plugins descriptions, and "GTK2+" to + more correct "GTK+". +* Fixed battery indication when charge_full and energy_full are not available. +* Corrected scaling of volume plugin for HiDPI monitors. +* Fixed connection name dropdown list in netstatus plugin. + 0.10.0 ------------------------------------------------------------------------- * Fixed delayed application of font cnahges on dclock and weather plugins. diff -Nru lxpanel-0.10.0/compile lxpanel-0.10.1/compile --- lxpanel-0.10.0/compile 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/compile 2021-02-06 21:15:24.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -53,7 +53,7 @@ MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -67,7 +67,7 @@ mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin/*) + cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru lxpanel-0.10.0/config.guess lxpanel-0.10.1/config.guess --- lxpanel-0.10.0/config.guess 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/config.guess 2021-02-06 21:15:24.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2016-10-02' +timestamp='2018-02-24' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,7 +27,7 @@ # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . @@ -39,7 +39,7 @@ Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -107,9 +107,9 @@ dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; + ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +149,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -169,30 +176,30 @@ # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - /sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) - arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` - machine=${arch}${endian}-unknown + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -208,10 +215,10 @@ ;; esac # Determine ABI tags. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release @@ -219,46 +226,55 @@ # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}${abi}" + echo "$machine-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:Sortix:*:*) - echo ${UNAME_MACHINE}-unknown-sortix + echo "$UNAME_MACHINE"-unknown-sortix exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -310,28 +326,19 @@ # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -343,7 +350,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -370,19 +377,19 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. @@ -395,13 +402,13 @@ SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -410,25 +417,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -439,44 +446,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -485,23 +492,23 @@ #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -527,17 +534,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -554,7 +561,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -566,14 +573,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -584,7 +591,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -598,7 +605,7 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -607,18 +614,18 @@ IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -633,28 +640,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in + case "$sc_cpu_version" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in + case "$sc_kernel_bits" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -687,13 +694,13 @@ exit (0); } EOF - (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = hppa2.0w ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -712,15 +719,15 @@ HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -745,11 +752,11 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -758,7 +765,7 @@ *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -766,9 +773,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -793,127 +800,109 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -927,63 +916,63 @@ esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -997,70 +986,74 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; mips64el:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + if objdump -f /bin/sh | grep -q elf32-x86-64; then + echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 + else + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + fi exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1074,34 +1067,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + i*86:*:4.*:*) + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1111,12 +1104,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1126,9 +1119,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1148,9 +1141,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1170,9 +1163,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1181,28 +1174,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1213,7 +1206,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1233,23 +1226,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1268,49 +1261,56 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" exit ;; SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux${UNAME_RELEASE} + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build + eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi + # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc + if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_PPC >/dev/null + then + UNAME_PROCESSOR=powerpc + fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub @@ -1321,7 +1321,7 @@ # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` @@ -1329,19 +1329,25 @@ UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; - NEO-?:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + NEO-*:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSR-*:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + NSX-*:NONSTOP_KERNEL:*:*) + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1350,7 +1356,7 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 @@ -1361,7 +1367,7 @@ else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1382,14 +1388,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1398,32 +1404,44 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'` + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac +echo "$0: unable to guess system type" >&2 + +case "$UNAME_MACHINE:$UNAME_SYSTEM" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <&2 </dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru lxpanel-0.10.0/config.sub lxpanel-0.10.1/config.sub --- lxpanel-0.10.0/config.sub 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/config.sub 2021-02-06 21:15:24.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2016-11-04' +timestamp='2018-02-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -33,7 +33,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -57,7 +57,7 @@ Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -67,7 +67,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -94,7 +94,7 @@ *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -112,7 +112,7 @@ # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ @@ -120,16 +120,16 @@ kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` + basic_machine=`echo "$1" | sed 's/-[^-]*$//'` + if [ "$basic_machine" != "$1" ] + then os=`echo "$1" | sed 's/.*-/-/'` else os=; fi ;; esac @@ -178,44 +178,44 @@ ;; -sco6) os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 @@ -227,10 +227,7 @@ os=-lynxos ;; -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` ;; -psos*) os=-psos @@ -263,7 +260,7 @@ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ - | i370 | i860 | i960 | ia64 \ + | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ @@ -299,7 +296,7 @@ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ + | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ @@ -315,7 +312,7 @@ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ - | we32k \ + | wasm32 \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown @@ -336,7 +333,7 @@ basic_machine=$basic_machine-unknown os=-none ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; ms1) basic_machine=mt-unknown @@ -365,7 +362,7 @@ ;; # Object if more than one company name word. *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. @@ -388,7 +385,7 @@ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ - | i*86-* | i860-* | i960-* | ia64-* \ + | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ @@ -446,6 +443,7 @@ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ + | wasm32-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ @@ -459,7 +457,7 @@ # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) - basic_machine=i386-unknown + basic_machine=i386-pc os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) @@ -493,7 +491,7 @@ basic_machine=x86_64-pc ;; amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl @@ -538,7 +536,7 @@ os=-linux ;; blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) @@ -546,13 +544,13 @@ os=-cnk ;; c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray @@ -641,7 +639,7 @@ basic_machine=rs6000-bull os=-bosx ;; - dpx2* | dpx2*-bull) + dpx2*) basic_machine=m68k-bull os=-sysv3 ;; @@ -650,7 +648,7 @@ os=$os"spe" ;; e500v[12]-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=$os"spe" ;; ebmon29k) @@ -742,9 +740,6 @@ hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; - hppa-next) - os=-nextstep3 - ;; hppaosf) basic_machine=hppa1.1-hp os=-osf @@ -757,26 +752,26 @@ basic_machine=i370-ibm ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; - i386-vsta | vsta) + vsta) basic_machine=i386-unknown os=-vsta ;; @@ -795,19 +790,16 @@ os=-sysv ;; leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` + basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; - m88k-omron*) - basic_machine=m88k-omron - ;; magnum | m3230) basic_machine=mips-mips os=-sysv @@ -839,10 +831,10 @@ os=-mint ;; mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` ;; mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k @@ -861,7 +853,7 @@ os=-msdos ;; ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc @@ -903,7 +895,7 @@ basic_machine=v70-nec os=-sysv ;; - next | m*-next ) + next | m*-next) basic_machine=m68k-next case $os in -nextstep* ) @@ -948,6 +940,12 @@ nsr-tandem) basic_machine=nsr-tandem ;; + nsv-tandem) + basic_machine=nsv-tandem + ;; + nsx-tandem) + basic_machine=nsx-tandem + ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf @@ -980,7 +978,7 @@ os=-linux ;; parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; pbd) @@ -996,7 +994,7 @@ basic_machine=i386-pc ;; pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc @@ -1011,16 +1009,16 @@ basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould @@ -1030,23 +1028,23 @@ ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm @@ -1100,17 +1098,10 @@ sequent) basic_machine=i386-sequent ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; sh5el) basic_machine=sh5le-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) + simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; @@ -1129,7 +1120,7 @@ os=-sysv4 ;; strongarm-* | thumb-*) - basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun @@ -1251,6 +1242,9 @@ basic_machine=hppa1.1-winbond os=-proelf ;; + x64) + basic_machine=x86_64-pc + ;; xbox) basic_machine=i686-pc os=-mingw32 @@ -1259,20 +1253,12 @@ basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) - basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - z80-*-coff) - basic_machine=z80-unknown - os=-sim - ;; none) basic_machine=none-none os=-none @@ -1301,10 +1287,6 @@ vax) basic_machine=vax-dec ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; pdp11) basic_machine=pdp11-dec ;; @@ -1314,9 +1296,6 @@ sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; cydra) basic_machine=cydra-cydrome ;; @@ -1336,7 +1315,7 @@ # Make sure to match an already-canonicalized machine name. ;; *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; esac @@ -1344,10 +1323,10 @@ # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` ;; *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` ;; *) ;; @@ -1358,8 +1337,8 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases that might get confused + # with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux @@ -1370,18 +1349,19 @@ -solaris) os=-solaris2 ;; - -svr4*) - os=-sysv4 - ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; - # First accept the basic system types. + # es1800 is here to avoid being matched by es* (a different OS) + -es1800*) + os=-ose + ;; + # Now accept the basic system types. # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. + # Each alternative MUST end in a * to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ @@ -1391,25 +1371,26 @@ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* \ + | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ - | -onefs* | -tirtos* | -phoenix* | -fuchsia*) + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1426,12 +1407,12 @@ -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + -sim | -xray | -os68k* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) - os=`echo $os | sed -e 's|mac|macos|'` + os=`echo "$os" | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc @@ -1440,10 +1421,10 @@ os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition @@ -1454,12 +1435,6 @@ -wince*) os=-wince ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; -utek*) os=-bsd ;; @@ -1484,7 +1459,7 @@ -nova*) os=-rtmk-nova ;; - -ns2 ) + -ns2) os=-nextstep2 ;; -nsk*) @@ -1506,7 +1481,7 @@ -oss*) os=-sysv3 ;; - -svr4) + -svr4*) os=-sysv4 ;; -svr3) @@ -1521,24 +1496,28 @@ -ose*) os=-ose ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; - -aros*) - os=-aros - ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; + -pikeos*) + # Until real need of OS specific support for + # particular features comes up, bare metal + # configurations are quite functional. + case $basic_machine in + arm*) + os=-eabi + ;; + *) + os=-elf + ;; + esac + ;; -nacl*) ;; -ios) @@ -1548,7 +1527,7 @@ *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac @@ -1638,12 +1617,12 @@ sparc-* | *-sun) os=-sunos4.1.1 ;; + pru-*) + os=-elf + ;; *-be) os=-beos ;; - *-haiku) - os=-haiku - ;; *-ibm) os=-aix ;; @@ -1683,7 +1662,7 @@ m88k-omron*) os=-luna ;; - *-next ) + *-next) os=-nextstep ;; *-sequent) @@ -1698,9 +1677,6 @@ i370-*) os=-mvs ;; - *-next) - os=-nextstep3 - ;; *-gould) os=-sysv ;; @@ -1810,15 +1786,15 @@ vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$basic_machine$os" exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru lxpanel-0.10.0/configure lxpanel-0.10.1/configure --- lxpanel-0.10.0/configure 2019-02-26 21:46:54.000000000 +0000 +++ lxpanel-0.10.1/configure 2021-02-06 21:15:55.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for lxpanel 0.10.0. +# Generated by GNU Autoconf 2.69 for lxpanel 0.10.1. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='lxpanel' PACKAGE_TARNAME='lxpanel' -PACKAGE_VERSION='0.10.0' -PACKAGE_STRING='lxpanel 0.10.0' +PACKAGE_VERSION='0.10.1' +PACKAGE_STRING='lxpanel 0.10.1' PACKAGE_BUGREPORT='http://lxde.org/' PACKAGE_URL='' @@ -756,7 +756,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -831,7 +830,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -1431,7 +1431,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures lxpanel 0.10.0 to adapt to many kinds of systems. +\`configure' configures lxpanel 0.10.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1506,7 +1506,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of lxpanel 0.10.0:";; + short | recursive ) echo "Configuration of lxpanel 0.10.1:";; esac cat <<\_ACEOF @@ -1661,7 +1661,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -lxpanel configure 0.10.0 +lxpanel configure 0.10.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2030,7 +2030,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by lxpanel $as_me 0.10.0, which was +It was created by lxpanel $as_me 0.10.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2378,7 +2378,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -am__api_version='1.15' +am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -2583,12 +2583,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac + MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then @@ -2893,7 +2888,7 @@ # Define the identity of the package. PACKAGE='lxpanel' - VERSION='0.10.0' + VERSION='0.10.1' cat >>confdefs.h <<_ACEOF @@ -2923,8 +2918,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -2975,7 +2970,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3917,45 +3912,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 +$as_echo "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : @@ -13870,11 +13865,15 @@ fi if test -n "$plugin_weather"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CURL development files" >&5 +$as_echo_n "checking for CURL development files... " >&6; } curl-config --help &>/dev/null || { as_fn_error $? "weather plugin requires libcurl development files" "$LINENO" 5 } CURL_CFLAGS=$(curl-config --cflags) CURL_LIBS=$(curl-config --libs) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 +$as_echo "found" >&6; } fi @@ -16203,7 +16202,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by lxpanel $as_me 0.10.0, which was +This file was extended by lxpanel $as_me 0.10.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16269,7 +16268,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -lxpanel config.status 0.10.0 +lxpanel config.status 0.10.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -16388,7 +16387,7 @@ # # INIT-COMMANDS # -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout @@ -17297,29 +17296,35 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + case $CONFIG_FILES in #( + *\'*) : + eval set x "$CONFIG_FILES" ;; #( + *) : + set x $CONFIG_FILES ;; #( + *) : + ;; +esac shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`$as_dirname -- "$am_mf" || +$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$am_mf" : 'X\(//\)[^/]' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -17337,53 +17342,50 @@ q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ + am_filepart=`$as_basename -- "$am_mf" || +$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$am_mf" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } - /^X\(\/\/\)$/{ + /^X\/\(\/\/\)$/{ s//\1/ q } - /^X\(\/\).*/{ + /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + { echo "$as_me:$LINENO: cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles" >&5 + (cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } || am_rc=$? done + if test $am_rc -ne 0; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. If GNU make was not used, consider + re-running the configure script with MAKE=\"gmake\" (or whatever is + necessary). You can also try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking). +See \`config.log' for more details" "$LINENO" 5; } + fi + { am_dirpart=; unset am_dirpart;} + { am_filepart=; unset am_filepart;} + { am_mf=; unset am_mf;} + { am_rc=; unset am_rc;} + rm -f conftest-deps.mk } ;; "libtool":C) diff -Nru lxpanel-0.10.0/configure.ac lxpanel-0.10.1/configure.ac --- lxpanel-0.10.0/configure.ac 2019-02-26 21:46:31.000000000 +0000 +++ lxpanel-0.10.1/configure.ac 2021-02-06 21:12:41.000000000 +0000 @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(lxpanel, 0.10.0, http://lxde.org/) +AC_INIT(lxpanel, 0.10.1, http://lxde.org/) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects no-dist-gzip dist-xz]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -276,11 +276,13 @@ fi if test -n "$plugin_weather"; then + AC_MSG_CHECKING([for CURL development files]) curl-config --help &>/dev/null || { AC_MSG_ERROR([weather plugin requires libcurl development files]) } CURL_CFLAGS=$(curl-config --cflags) CURL_LIBS=$(curl-config --libs) + AC_MSG_RESULT([found]) AC_SUBST(CURL_CFLAGS) AC_SUBST(CURL_LIBS) fi diff -Nru lxpanel-0.10.0/data/Makefile.in lxpanel-0.10.1/data/Makefile.in --- lxpanel-0.10.0/data/Makefile.in 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/data/Makefile.in 2021-02-06 21:15:56.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -425,8 +425,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -576,7 +576,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru lxpanel-0.10.0/debian/changelog lxpanel-0.10.1/debian/changelog --- lxpanel-0.10.0/debian/changelog 2020-12-31 00:05:06.000000000 +0000 +++ lxpanel-0.10.1/debian/changelog 2021-02-06 22:12:25.000000000 +0000 @@ -1,3 +1,13 @@ +lxpanel (0.10.1-1) unstable; urgency=medium + + * Merging upstream version 0.10.1. + * Remove 50-fix-battery-notification.patch (included into upstream). + * Adding lintian override on 'maintainer-desktop-entry' messages. + * Making lxpanel-dev package Multi-Arch: same. + * Updating debian/copyright file. + + -- Andriy Grytsenko Sun, 07 Feb 2021 00:12:25 +0200 + lxpanel (0.10.0-3) unstable; urgency=medium * Adding libgdk-pixbuf-xlib-2.0-dev | libgdk-pixbuf2.0-dev into build diff -Nru lxpanel-0.10.0/debian/control lxpanel-0.10.1/debian/control --- lxpanel-0.10.0/debian/control 2020-12-30 23:58:08.000000000 +0000 +++ lxpanel-0.10.1/debian/control 2021-02-06 21:49:02.000000000 +0000 @@ -63,7 +63,8 @@ Package: lxpanel-dev Architecture: any -Depends: ${misc:Depends}, lxpanel (= ${binary:Version}), +Multi-Arch: same +Depends: ${misc:Depends}, libgtk2.0-dev, libfm-gtk-dev (>= 1.2.0) Breaks: lxpanel (<< 0.8.2) Replaces: lxpanel (<< 0.8.2) diff -Nru lxpanel-0.10.0/debian/copyright lxpanel-0.10.1/debian/copyright --- lxpanel-0.10.0/debian/copyright 2019-02-26 22:23:04.000000000 +0000 +++ lxpanel-0.10.1/debian/copyright 2021-02-06 21:57:41.000000000 +0000 @@ -25,6 +25,8 @@ number Zero Carles Pina i Estany Max Kirillov + Stuart D. Gathman + TheZxcv License: GPL-2+ Files: src/bg.* src/ev.* @@ -63,7 +65,9 @@ License: LGPL-2 Files: debian/* -Copyright: 2008-2012 Andrew Lee (李健秋) +Copyright: 2008-2013 Andrew Lee (李健秋) + 2012 Daniel Baumann + 2014-2021 Andriy Grytsenko License: GPL-2+ License: GPL-2+ diff -Nru lxpanel-0.10.0/debian/patches/50-fix-battery-notification.patch lxpanel-0.10.1/debian/patches/50-fix-battery-notification.patch --- lxpanel-0.10.0/debian/patches/50-fix-battery-notification.patch 2019-02-27 00:49:39.000000000 +0000 +++ lxpanel-0.10.1/debian/patches/50-fix-battery-notification.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -Author: Andriy Grytsenko -Description: fix battery alarm when measurement of current is missing. - ---- a/plugins/batt/batt.c -+++ b/plugins/batt/batt.c -@@ -111,6 +111,7 @@ - sem_wait(a->lock); - if (system(a->command) != 0) - g_warning("plugin batt: failed to execute alarm command \"%s\"", a->command); -+ sleep(51); /* do not spam messages more often than once a minute */ - sem_post(a->lock); - - g_free(a); -@@ -257,7 +258,7 @@ - isCharging = battery_is_charging ( b ); - - /* Consider running the alarm command */ -- if ( !isCharging && rate > 0 && -+ if ( !isCharging && - ( ( battery_get_remaining( b ) / 60 ) < (int)lx_b->alarmTime ) ) - { - /* FIXME: this should be done using glibs process functions */ diff -Nru lxpanel-0.10.0/debian/patches/series lxpanel-0.10.1/debian/patches/series --- lxpanel-0.10.0/debian/patches/series 2019-02-27 00:50:00.000000000 +0000 +++ lxpanel-0.10.1/debian/patches/series 2021-02-06 21:37:08.000000000 +0000 @@ -1,2 +1 @@ 01-default-config.patch -50-fix-battery-notification.patch diff -Nru lxpanel-0.10.0/debian/source/lintian-overrides lxpanel-0.10.1/debian/source/lintian-overrides --- lxpanel-0.10.0/debian/source/lintian-overrides 2019-02-26 22:28:53.000000000 +0000 +++ lxpanel-0.10.1/debian/source/lintian-overrides 2021-02-06 21:41:06.000000000 +0000 @@ -1,2 +1,5 @@ # The sourceforge site does not support GPG signatures for tarballs debian-watch-does-not-check-gpg-signature +# Those files are Debian specific ones +maintainer-desktop-entry debian/desktop/lxde-x-www-browser.desktop +maintainer-desktop-entry debian/desktop/lxde-x-terminal-emulator.desktop diff -Nru lxpanel-0.10.0/depcomp lxpanel-0.10.1/depcomp --- lxpanel-0.10.0/depcomp 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/depcomp 2021-02-06 21:15:25.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,9 +783,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru lxpanel-0.10.0/install-sh lxpanel-0.10.1/install-sh --- lxpanel-0.10.0/install-sh 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/install-sh 2021-02-06 21:15:24.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2014-09-12.12; # UTC +scriptversion=2020-11-14.01; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -69,6 +69,11 @@ # Desired mode of installed file. mode=0755 +# Create dirs (including intermediate dirs) using mode 755. +# This is like GNU 'install' as of coreutils 8.32 (2020). +mkdir_umask=22 + +backupsuffix= chgrpcmd= chmodcmd=$chmodprog chowncmd= @@ -99,18 +104,28 @@ --version display version info and exit. -c (ignored) - -C install only if different (preserve the last data modification time) + -C install only if different (preserve data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. + -p pass -p to $cpprog. -s $stripprog installed files. + -S SUFFIX attempt to back up existing files, with suffix SUFFIX. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG + +By default, rm is invoked with -f; when overridden with RMPROG, +it's up to you to specify -f if you want it. + +If -S is not specified, no backups are attempted. + +Email bug reports to bug-automake@gnu.org. +Automake home page: https://www.gnu.org/software/automake/ " while test $# -ne 0; do @@ -137,8 +152,13 @@ -o) chowncmd="$chownprog $2" shift;; + -p) cpprog="$cpprog -p";; + -s) stripcmd=$stripprog;; + -S) backupsuffix="$2" + shift;; + -t) is_target_a_directory=always dst_arg=$2 @@ -255,6 +275,10 @@ dstdir=$dst test -d "$dstdir" dstdir_status=$? + # Don't chown directories that already exist. + if test $dstdir_status = 0; then + chowncmd="" + fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command @@ -271,15 +295,18 @@ fi dst=$dst_arg - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. + # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst - dst=$dstdir/`basename "$src"` + dstbase=`basename "$src"` + case $dst in + */) dst=$dst$dstbase;; + *) dst=$dst/$dstbase;; + esac dstdir_status=0 else dstdir=`dirname "$dst"` @@ -288,27 +315,16 @@ fi fi + case $dstdir in + */) dstdirslash=$dstdir;; + *) dstdirslash=$dstdir/;; + esac + obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then @@ -318,50 +334,49 @@ fi posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - # $RANDOM is not portable (e.g. dash); use it when possible to - # lower collision chance - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 - - # As "mkdir -p" follows symlinks and we work in /tmp possibly; so - # create the $tmpdir first (and fail if unsuccessful) to make sure - # that nobody tries to guess the $tmpdir name. - if (umask $mkdir_umask && - $mkdirprog $mkdir_mode "$tmpdir" && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - test_tmpdir="$tmpdir/a" - ls_ld_tmpdir=`ls -ld "$test_tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null - fi - trap '' 0;; - esac;; + # The $RANDOM variable is not portable (e.g., dash). Use it + # here however when possible just to lower collision chance. + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + + trap ' + ret=$? + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null + exit $ret + ' 0 + + # Because "mkdir -p" follows existing symlinks and we likely work + # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directory is successfully created first before we actually test + # 'mkdir -p'. + if (umask $mkdir_umask && + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null + fi + trap '' 0;; esac if @@ -372,7 +387,7 @@ then : else - # The umask is ridiculous, or mkdir does not conform to POSIX, + # mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. @@ -401,7 +416,7 @@ prefixes= else if $posix_mkdir; then - (umask=$mkdir_umask && + (umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 @@ -434,14 +449,25 @@ else # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ + dsttmp=${dstdirslash}_inst.$$_ + rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. - (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + (umask $cp_umask && + { test -z "$stripcmd" || { + # Create $dsttmp read-write so that cp doesn't create it read-only, + # which would cause strip to fail. + if test -z "$doit"; then + : >"$dsttmp" # No need to fork-exec 'touch'. + else + $doit touch "$dsttmp" + fi + } + } && + $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # @@ -467,6 +493,13 @@ then rm -f "$dsttmp" else + # If $backupsuffix is set, and the file being installed + # already exists, attempt a backup. Don't worry if it fails, + # e.g., if mv doesn't support -f. + if test -n "$backupsuffix" && test -f "$dst"; then + $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null + fi + # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || @@ -481,9 +514,9 @@ # file should still install successfully. { test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || + $doit $rmcmd "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + { $doit $rmcmd "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 @@ -500,9 +533,9 @@ done # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru lxpanel-0.10.0/Makefile.in lxpanel-0.10.1/Makefile.in --- lxpanel-0.10.0/Makefile.in 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/Makefile.in 2021-02-06 21:15:56.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -168,9 +168,9 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir dist dist-all distcheck -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ - $(LISP)config.h.in + cscope distdir distdir-am dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ + config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. @@ -236,6 +236,8 @@ GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.xz DIST_TARGETS = dist-xz +# Exists only to be overridden by the user if desired. +AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' @@ -443,8 +445,8 @@ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -615,7 +617,10 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ @@ -680,7 +685,7 @@ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir @@ -694,6 +699,10 @@ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) +dist-zstd: distdir + tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst + $(am__post_remove_distdir) + dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @@ -705,7 +714,7 @@ @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir @@ -723,7 +732,7 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -733,9 +742,11 @@ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ + *.tar.zst*) \ + zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) @@ -751,7 +762,7 @@ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ @@ -916,18 +927,19 @@ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ - dist-xz dist-zip distcheck distclean distclean-generic \ - distclean-hdr distclean-libtool distclean-tags distcleancheck \ - distdir distuninstallcheck dvi dvi-am html html-am info \ - info-am install install-am install-data install-data-am \ - install-dvi install-dvi-am install-exec install-exec-am \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-pkgconfigDATA \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ - uninstall-am uninstall-pkgconfigDATA + dist-xz dist-zip dist-zstd distcheck distclean \ + distclean-generic distclean-hdr distclean-libtool \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am \ + uninstall-pkgconfigDATA .PRECIOUS: Makefile diff -Nru lxpanel-0.10.0/man/Makefile.in lxpanel-0.10.1/man/Makefile.in --- lxpanel-0.10.0/man/Makefile.in 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/man/Makefile.in 2021-02-06 21:15:56.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -348,8 +348,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -416,7 +416,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru lxpanel-0.10.0/missing lxpanel-0.10.1/missing --- lxpanel-0.10.0/missing 2019-02-26 21:46:45.000000000 +0000 +++ lxpanel-0.10.1/missing 2021-02-06 21:15:24.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,9 +207,9 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru lxpanel-0.10.0/plugins/batt/batt.c lxpanel-0.10.1/plugins/batt/batt.c --- lxpanel-0.10.0/plugins/batt/batt.c 2019-02-26 19:53:01.000000000 +0000 +++ lxpanel-0.10.1/plugins/batt/batt.c 2019-02-28 23:31:41.000000000 +0000 @@ -111,6 +111,7 @@ sem_wait(a->lock); if (system(a->command) != 0) g_warning("plugin batt: failed to execute alarm command \"%s\"", a->command); + sleep(51); /* do not spam messages more often than once a minute */ sem_post(a->lock); g_free(a); @@ -257,7 +258,7 @@ isCharging = battery_is_charging ( b ); /* Consider running the alarm command */ - if ( !isCharging && rate > 0 && + if ( !isCharging && ( ( battery_get_remaining( b ) / 60 ) < (int)lx_b->alarmTime ) ) { /* FIXME: this should be done using glibs process functions */ diff -Nru lxpanel-0.10.0/plugins/batt/batt_sys.c lxpanel-0.10.1/plugins/batt/batt_sys.c --- lxpanel-0.10.0/plugins/batt/batt_sys.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/plugins/batt/batt_sys.c 2021-01-29 22:34:46.000000000 +0000 @@ -5,6 +5,7 @@ * 2015 Henry Gebhardt * 2015 Stanislav Kozina, Ersin * 2016-2017 Andriy Grytsenko + * 2019 Stuart D. Gathman * * Parts shameless stolen and glibified from acpi package * Copyright (C) 2001 Grahame Bowland @@ -259,8 +260,22 @@ else if (b->energy_full != -1 && b->energy_now != -1) /* no charge data, let try energy instead */ promille = (b->energy_now * 1000) / b->energy_full; - else - promille = 0; + else { + /* Pinebook has percentage in capacity, and no total energy. */ + gchar *file_content = parse_info_file(b, "capacity"); + gint value = -1; + + if (file_content != NULL) + value = atoi(file_content); + g_free(file_content); + if (value != -1 && value <= 100 && value >= 0) { + promille = value * 10; + b->charge_full = 10000; /* mAh from pinebook spec */ + b->charge_now = (value * b->charge_full + 50) / 100; + } + else + promille = 0; + } b->percentage = (promille + 5) / 10; /* round properly */ if (b->percentage > 100) diff -Nru lxpanel-0.10.0/plugins/cpufreq/cpufreq.c lxpanel-0.10.1/plugins/cpufreq/cpufreq.c --- lxpanel-0.10.0/plugins/cpufreq/cpufreq.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/plugins/cpufreq/cpufreq.c 2019-02-26 22:23:41.000000000 +0000 @@ -399,7 +399,7 @@ /* Plugin descriptor. */ LXPanelPluginInit fm_module_init_lxpanel_gtk = { .name = N_("CPUFreq frontend"), - .description = N_("Display CPU frequency and allow to change governors and frequency"), + .description = N_("Display CPU frequency and allow one to change governors and frequency"), .new_instance = cpufreq_constructor, //.config = config, diff -Nru lxpanel-0.10.0/plugins/launchtaskbar.c lxpanel-0.10.1/plugins/launchtaskbar.c --- lxpanel-0.10.0/plugins/launchtaskbar.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/plugins/launchtaskbar.c 2021-01-29 22:28:51.000000000 +0000 @@ -68,7 +68,6 @@ #include #include -#include #include #include @@ -2460,7 +2459,7 @@ static LXPanelPluginInit _taskbar_init = { .name = N_("Task Bar (Window List)"), - .description = N_("Taskbar shows all opened windows and allow to iconify them, shade or get focus"), + .description = N_("Taskbar shows all opened windows and allows to iconify them, shade or get focus"), .expand_available = TRUE, .expand_default = TRUE, diff -Nru lxpanel-0.10.0/plugins/Makefile.in lxpanel-0.10.1/plugins/Makefile.in --- lxpanel-0.10.0/plugins/Makefile.in 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/plugins/Makefile.in 2021-02-06 21:15:56.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -103,29 +103,6 @@ CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_@AM_V@) -am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) -am__v_AR_0 = @echo " AR " $@; -am__v_AR_1 = -libbuiltin_plugins_a_AR = $(AR) $(ARFLAGS) -libbuiltin_plugins_a_DEPENDENCIES = -am__libbuiltin_plugins_a_SOURCES_DIST = dclock.c dirmenu.c \ - launchtaskbar.c task-button.c launch-button.c pager.c \ - separator.c tray.c wincmd.c menu.c -@ENABLE_MENU_CACHE_TRUE@am__objects_1 = \ -@ENABLE_MENU_CACHE_TRUE@ libbuiltin_plugins_a-menu.$(OBJEXT) -am__objects_2 = libbuiltin_plugins_a-dclock.$(OBJEXT) \ - libbuiltin_plugins_a-dirmenu.$(OBJEXT) \ - libbuiltin_plugins_a-launchtaskbar.$(OBJEXT) \ - libbuiltin_plugins_a-task-button.$(OBJEXT) \ - libbuiltin_plugins_a-launch-button.$(OBJEXT) \ - libbuiltin_plugins_a-pager.$(OBJEXT) \ - libbuiltin_plugins_a-separator.$(OBJEXT) \ - libbuiltin_plugins_a-tray.$(OBJEXT) \ - libbuiltin_plugins_a-wincmd.$(OBJEXT) $(am__objects_1) -am_libbuiltin_plugins_a_OBJECTS = $(am__objects_2) -libbuiltin_plugins_a_OBJECTS = $(am_libbuiltin_plugins_a_OBJECTS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -156,9 +133,32 @@ am__installdirs = "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(flagsdir)" \ "$(DESTDIR)$(xkeyboardconfigdir)" LTLIBRARIES = $(pkglib_LTLIBRARIES) +ARFLAGS = cru +AM_V_AR = $(am__v_AR_@AM_V@) +am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) +am__v_AR_0 = @echo " AR " $@; +am__v_AR_1 = +libbuiltin_plugins_a_AR = $(AR) $(ARFLAGS) +libbuiltin_plugins_a_DEPENDENCIES = +am__libbuiltin_plugins_a_SOURCES_DIST = dclock.c dirmenu.c \ + launchtaskbar.c task-button.c launch-button.c pager.c \ + separator.c tray.c wincmd.c menu.c +@ENABLE_MENU_CACHE_TRUE@am__objects_1 = \ +@ENABLE_MENU_CACHE_TRUE@ libbuiltin_plugins_a-menu.$(OBJEXT) +am__objects_2 = libbuiltin_plugins_a-dclock.$(OBJEXT) \ + libbuiltin_plugins_a-dirmenu.$(OBJEXT) \ + libbuiltin_plugins_a-launchtaskbar.$(OBJEXT) \ + libbuiltin_plugins_a-task-button.$(OBJEXT) \ + libbuiltin_plugins_a-launch-button.$(OBJEXT) \ + libbuiltin_plugins_a-pager.$(OBJEXT) \ + libbuiltin_plugins_a-separator.$(OBJEXT) \ + libbuiltin_plugins_a-tray.$(OBJEXT) \ + libbuiltin_plugins_a-wincmd.$(OBJEXT) $(am__objects_1) +am_libbuiltin_plugins_a_OBJECTS = $(am__objects_2) +libbuiltin_plugins_a_OBJECTS = $(am_libbuiltin_plugins_a_OBJECTS) batt_la_LIBADD = am__dirstamp = $(am__leading_dot)dirstamp -am_batt_la_OBJECTS = batt/batt_la-batt.lo batt/batt_la-batt_sys.lo +am_batt_la_OBJECTS = batt/la-batt.lo batt/la-batt_sys.lo batt_la_OBJECTS = $(am_batt_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -178,7 +178,7 @@ deskno_la_OBJECTS = $(am_deskno_la_OBJECTS) am__DEPENDENCIES_1 = indicator_la_DEPENDENCIES = $(am__DEPENDENCIES_1) -am_indicator_la_OBJECTS = indicator/indicator_la-indicator.lo +am_indicator_la_OBJECTS = indicator/la-indicator.lo indicator_la_OBJECTS = $(am_indicator_la_OBJECTS) indicator_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(indicator_la_CFLAGS) \ @@ -190,23 +190,20 @@ am_monitors_la_OBJECTS = monitors/monitors.lo monitors_la_OBJECTS = $(am_monitors_la_OBJECTS) netstat_la_DEPENDENCIES = -am_netstat_la_OBJECTS = netstat/netstat_la-netstat.lo \ - netstat/netstat_la-devproc.lo netstat/netstat_la-statusicon.lo \ - netstat/netstat_la-wireless.lo \ - netstat/netstat_la-lxnm_client.lo \ - netstat/netstat_la-passwd_gui.lo +am_netstat_la_OBJECTS = netstat/la-netstat.lo netstat/la-devproc.lo \ + netstat/la-statusicon.lo netstat/la-wireless.lo \ + netstat/la-lxnm_client.lo netstat/la-passwd_gui.lo netstat_la_OBJECTS = $(am_netstat_la_OBJECTS) netstat_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(netstat_la_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ netstatus_la_LIBADD = -am_netstatus_la_OBJECTS = netstatus/netstatus_la-netstatus.lo \ - netstatus/netstatus_la-netstatus-dialog.lo \ - netstatus/netstatus_la-netstatus-enums.lo \ - netstatus/netstatus_la-netstatus-icon.lo \ - netstatus/netstatus_la-netstatus-iface.lo \ - netstatus/netstatus_la-netstatus-sysdeps.lo \ - netstatus/netstatus_la-netstatus-util.lo +am_netstatus_la_OBJECTS = netstatus/la-netstatus.lo \ + netstatus/la-netstatus-dialog.lo \ + netstatus/la-netstatus-enums.lo netstatus/la-netstatus-icon.lo \ + netstatus/la-netstatus-iface.lo \ + netstatus/la-netstatus-sysdeps.lo \ + netstatus/la-netstatus-util.lo netstatus_la_OBJECTS = $(am_netstatus_la_OBJECTS) netstatus_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(netstatus_la_CFLAGS) \ @@ -218,18 +215,16 @@ am_volume_la_OBJECTS = volumealsa/volumealsa.lo volume_la_OBJECTS = $(am_volume_la_OBJECTS) weather_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -am_weather_la_OBJECTS = weather/weather_la-logutil.lo \ - weather/weather_la-httputil.lo \ - weather/weather_la-openweathermap.lo \ - weather/weather_la-location.lo weather/weather_la-forecast.lo \ - weather/weather_la-weatherwidget.lo \ - weather/weather_la-weather.lo +am_weather_la_OBJECTS = weather/la-logutil.lo weather/la-httputil.lo \ + weather/la-openweathermap.lo weather/la-location.lo \ + weather/la-forecast.lo weather/la-weatherwidget.lo \ + weather/la-weather.lo weather_la_OBJECTS = $(am_weather_la_OBJECTS) weather_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(weather_la_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ xkb_la_DEPENDENCIES = $(am__DEPENDENCIES_1) -am_xkb_la_OBJECTS = xkb/xkb_la-xkb-plugin.lo xkb/xkb_la-xkb.lo +am_xkb_la_OBJECTS = xkb/la-xkb-plugin.lo xkb/la-xkb.lo xkb_la_OBJECTS = $(am_xkb_la_OBJECTS) xkb_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(xkb_la_CFLAGS) $(CFLAGS) \ @@ -248,7 +243,45 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libbuiltin_plugins_a-dclock.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-dirmenu.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-launch-button.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-launchtaskbar.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-menu.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-pager.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-separator.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-task-button.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-tray.Po \ + ./$(DEPDIR)/libbuiltin_plugins_a-wincmd.Po \ + batt/$(DEPDIR)/la-batt.Plo batt/$(DEPDIR)/la-batt_sys.Plo \ + cpu/$(DEPDIR)/cpu.Plo cpufreq/$(DEPDIR)/cpufreq.Plo \ + deskno/$(DEPDIR)/deskno.Plo \ + indicator/$(DEPDIR)/la-indicator.Plo kbled/$(DEPDIR)/kbled.Plo \ + monitors/$(DEPDIR)/monitors.Plo \ + netstat/$(DEPDIR)/la-devproc.Plo \ + netstat/$(DEPDIR)/la-lxnm_client.Plo \ + netstat/$(DEPDIR)/la-netstat.Plo \ + netstat/$(DEPDIR)/la-passwd_gui.Plo \ + netstat/$(DEPDIR)/la-statusicon.Plo \ + netstat/$(DEPDIR)/la-wireless.Plo \ + netstatus/$(DEPDIR)/la-netstatus-dialog.Plo \ + netstatus/$(DEPDIR)/la-netstatus-enums.Plo \ + netstatus/$(DEPDIR)/la-netstatus-icon.Plo \ + netstatus/$(DEPDIR)/la-netstatus-iface.Plo \ + netstatus/$(DEPDIR)/la-netstatus-sysdeps.Plo \ + netstatus/$(DEPDIR)/la-netstatus-util.Plo \ + netstatus/$(DEPDIR)/la-netstatus.Plo \ + thermal/$(DEPDIR)/thermal.Plo \ + volumealsa/$(DEPDIR)/volumealsa.Plo \ + weather/$(DEPDIR)/la-forecast.Plo \ + weather/$(DEPDIR)/la-httputil.Plo \ + weather/$(DEPDIR)/la-location.Plo \ + weather/$(DEPDIR)/la-logutil.Plo \ + weather/$(DEPDIR)/la-openweathermap.Plo \ + weather/$(DEPDIR)/la-weather.Plo \ + weather/$(DEPDIR)/la-weatherwidget.Plo \ + xkb/$(DEPDIR)/la-xkb-plugin.Plo xkb/$(DEPDIR)/la-xkb.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -825,8 +858,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -841,11 +874,6 @@ clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libbuiltin_plugins.a: $(libbuiltin_plugins_a_OBJECTS) $(libbuiltin_plugins_a_DEPENDENCIES) $(EXTRA_libbuiltin_plugins_a_DEPENDENCIES) - $(AM_V_at)-rm -f libbuiltin_plugins.a - $(AM_V_AR)$(libbuiltin_plugins_a_AR) libbuiltin_plugins.a $(libbuiltin_plugins_a_OBJECTS) $(libbuiltin_plugins_a_LIBADD) - $(AM_V_at)$(RANLIB) libbuiltin_plugins.a - install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ @@ -880,15 +908,19 @@ echo rm -f $${locs}; \ rm -f $${locs}; \ } + +libbuiltin_plugins.a: $(libbuiltin_plugins_a_OBJECTS) $(libbuiltin_plugins_a_DEPENDENCIES) $(EXTRA_libbuiltin_plugins_a_DEPENDENCIES) + $(AM_V_at)-rm -f libbuiltin_plugins.a + $(AM_V_AR)$(libbuiltin_plugins_a_AR) libbuiltin_plugins.a $(libbuiltin_plugins_a_OBJECTS) $(libbuiltin_plugins_a_LIBADD) + $(AM_V_at)$(RANLIB) libbuiltin_plugins.a batt/$(am__dirstamp): @$(MKDIR_P) batt @: > batt/$(am__dirstamp) batt/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) batt/$(DEPDIR) @: > batt/$(DEPDIR)/$(am__dirstamp) -batt/batt_la-batt.lo: batt/$(am__dirstamp) \ - batt/$(DEPDIR)/$(am__dirstamp) -batt/batt_la-batt_sys.lo: batt/$(am__dirstamp) \ +batt/la-batt.lo: batt/$(am__dirstamp) batt/$(DEPDIR)/$(am__dirstamp) +batt/la-batt_sys.lo: batt/$(am__dirstamp) \ batt/$(DEPDIR)/$(am__dirstamp) batt.la: $(batt_la_OBJECTS) $(batt_la_DEPENDENCIES) $(EXTRA_batt_la_DEPENDENCIES) @@ -931,7 +963,7 @@ indicator/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) indicator/$(DEPDIR) @: > indicator/$(DEPDIR)/$(am__dirstamp) -indicator/indicator_la-indicator.lo: indicator/$(am__dirstamp) \ +indicator/la-indicator.lo: indicator/$(am__dirstamp) \ indicator/$(DEPDIR)/$(am__dirstamp) indicator.la: $(indicator_la_OBJECTS) $(indicator_la_DEPENDENCIES) $(EXTRA_indicator_la_DEPENDENCIES) @@ -963,17 +995,17 @@ netstat/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) netstat/$(DEPDIR) @: > netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-netstat.lo: netstat/$(am__dirstamp) \ +netstat/la-netstat.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-devproc.lo: netstat/$(am__dirstamp) \ +netstat/la-devproc.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-statusicon.lo: netstat/$(am__dirstamp) \ +netstat/la-statusicon.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-wireless.lo: netstat/$(am__dirstamp) \ +netstat/la-wireless.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-lxnm_client.lo: netstat/$(am__dirstamp) \ +netstat/la-lxnm_client.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) -netstat/netstat_la-passwd_gui.lo: netstat/$(am__dirstamp) \ +netstat/la-passwd_gui.lo: netstat/$(am__dirstamp) \ netstat/$(DEPDIR)/$(am__dirstamp) netstat.la: $(netstat_la_OBJECTS) $(netstat_la_DEPENDENCIES) $(EXTRA_netstat_la_DEPENDENCIES) @@ -984,19 +1016,19 @@ netstatus/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) netstatus/$(DEPDIR) @: > netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-dialog.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus-dialog.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-enums.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus-enums.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-icon.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus-icon.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-iface.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus-iface.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-sysdeps.lo: \ - netstatus/$(am__dirstamp) netstatus/$(DEPDIR)/$(am__dirstamp) -netstatus/netstatus_la-netstatus-util.lo: netstatus/$(am__dirstamp) \ +netstatus/la-netstatus-sysdeps.lo: netstatus/$(am__dirstamp) \ + netstatus/$(DEPDIR)/$(am__dirstamp) +netstatus/la-netstatus-util.lo: netstatus/$(am__dirstamp) \ netstatus/$(DEPDIR)/$(am__dirstamp) netstatus.la: $(netstatus_la_OBJECTS) $(netstatus_la_DEPENDENCIES) $(EXTRA_netstatus_la_DEPENDENCIES) @@ -1029,19 +1061,19 @@ weather/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) weather/$(DEPDIR) @: > weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-logutil.lo: weather/$(am__dirstamp) \ +weather/la-logutil.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-httputil.lo: weather/$(am__dirstamp) \ +weather/la-httputil.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-openweathermap.lo: weather/$(am__dirstamp) \ +weather/la-openweathermap.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-location.lo: weather/$(am__dirstamp) \ +weather/la-location.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-forecast.lo: weather/$(am__dirstamp) \ +weather/la-forecast.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-weatherwidget.lo: weather/$(am__dirstamp) \ +weather/la-weatherwidget.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) -weather/weather_la-weather.lo: weather/$(am__dirstamp) \ +weather/la-weather.lo: weather/$(am__dirstamp) \ weather/$(DEPDIR)/$(am__dirstamp) weather.la: $(weather_la_OBJECTS) $(weather_la_DEPENDENCIES) $(EXTRA_weather_la_DEPENDENCIES) @@ -1052,9 +1084,9 @@ xkb/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) xkb/$(DEPDIR) @: > xkb/$(DEPDIR)/$(am__dirstamp) -xkb/xkb_la-xkb-plugin.lo: xkb/$(am__dirstamp) \ +xkb/la-xkb-plugin.lo: xkb/$(am__dirstamp) \ xkb/$(DEPDIR)/$(am__dirstamp) -xkb/xkb_la-xkb.lo: xkb/$(am__dirstamp) xkb/$(DEPDIR)/$(am__dirstamp) +xkb/la-xkb.lo: xkb/$(am__dirstamp) xkb/$(DEPDIR)/$(am__dirstamp) xkb.la: $(xkb_la_OBJECTS) $(xkb_la_DEPENDENCIES) $(EXTRA_xkb_la_DEPENDENCIES) $(AM_V_CCLD)$(xkb_la_LINK) $(xkb_la_OBJECTS) $(xkb_la_LIBADD) $(LIBS) @@ -1091,48 +1123,54 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-dclock.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-dirmenu.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-launch-button.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-launchtaskbar.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-menu.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-pager.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-separator.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-task-button.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-tray.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-wincmd.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@batt/$(DEPDIR)/batt_la-batt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@batt/$(DEPDIR)/batt_la-batt_sys.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cpu/$(DEPDIR)/cpu.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cpufreq/$(DEPDIR)/cpufreq.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@deskno/$(DEPDIR)/deskno.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@indicator/$(DEPDIR)/indicator_la-indicator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@kbled/$(DEPDIR)/kbled.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@monitors/$(DEPDIR)/monitors.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-devproc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-lxnm_client.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-netstat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-passwd_gui.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-statusicon.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/netstat_la-wireless.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-dialog.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-enums.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-icon.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-iface.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-sysdeps.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus-util.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/netstatus_la-netstatus.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@thermal/$(DEPDIR)/thermal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@volumealsa/$(DEPDIR)/volumealsa.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-forecast.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-httputil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-location.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-logutil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-openweathermap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-weather.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/weather_la-weatherwidget.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@xkb/$(DEPDIR)/xkb_la-xkb-plugin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@xkb/$(DEPDIR)/xkb_la-xkb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-dclock.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-dirmenu.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-launch-button.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-launchtaskbar.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-menu.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-pager.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-separator.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-task-button.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-tray.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbuiltin_plugins_a-wincmd.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@batt/$(DEPDIR)/la-batt.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@batt/$(DEPDIR)/la-batt_sys.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@cpu/$(DEPDIR)/cpu.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@cpufreq/$(DEPDIR)/cpufreq.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@deskno/$(DEPDIR)/deskno.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@indicator/$(DEPDIR)/la-indicator.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@kbled/$(DEPDIR)/kbled.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@monitors/$(DEPDIR)/monitors.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-devproc.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-lxnm_client.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-netstat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-passwd_gui.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-statusicon.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstat/$(DEPDIR)/la-wireless.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-dialog.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-enums.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-icon.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-iface.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-sysdeps.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus-util.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@netstatus/$(DEPDIR)/la-netstatus.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@thermal/$(DEPDIR)/thermal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@volumealsa/$(DEPDIR)/volumealsa.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-forecast.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-httputil.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-location.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-logutil.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-openweathermap.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-weather.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@weather/$(DEPDIR)/la-weatherwidget.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@xkb/$(DEPDIR)/la-xkb-plugin.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@xkb/$(DEPDIR)/la-xkb.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -1298,180 +1336,180 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libbuiltin_plugins_a_CFLAGS) $(CFLAGS) -c -o libbuiltin_plugins_a-menu.obj `if test -f 'menu.c'; then $(CYGPATH_W) 'menu.c'; else $(CYGPATH_W) '$(srcdir)/menu.c'; fi` -batt/batt_la-batt.lo: batt/batt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -MT batt/batt_la-batt.lo -MD -MP -MF batt/$(DEPDIR)/batt_la-batt.Tpo -c -o batt/batt_la-batt.lo `test -f 'batt/batt.c' || echo '$(srcdir)/'`batt/batt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) batt/$(DEPDIR)/batt_la-batt.Tpo batt/$(DEPDIR)/batt_la-batt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='batt/batt.c' object='batt/batt_la-batt.lo' libtool=yes @AMDEPBACKSLASH@ +batt/la-batt.lo: batt/batt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -MT batt/la-batt.lo -MD -MP -MF batt/$(DEPDIR)/la-batt.Tpo -c -o batt/la-batt.lo `test -f 'batt/batt.c' || echo '$(srcdir)/'`batt/batt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) batt/$(DEPDIR)/la-batt.Tpo batt/$(DEPDIR)/la-batt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='batt/batt.c' object='batt/la-batt.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -c -o batt/batt_la-batt.lo `test -f 'batt/batt.c' || echo '$(srcdir)/'`batt/batt.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -c -o batt/la-batt.lo `test -f 'batt/batt.c' || echo '$(srcdir)/'`batt/batt.c -batt/batt_la-batt_sys.lo: batt/batt_sys.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -MT batt/batt_la-batt_sys.lo -MD -MP -MF batt/$(DEPDIR)/batt_la-batt_sys.Tpo -c -o batt/batt_la-batt_sys.lo `test -f 'batt/batt_sys.c' || echo '$(srcdir)/'`batt/batt_sys.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) batt/$(DEPDIR)/batt_la-batt_sys.Tpo batt/$(DEPDIR)/batt_la-batt_sys.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='batt/batt_sys.c' object='batt/batt_la-batt_sys.lo' libtool=yes @AMDEPBACKSLASH@ +batt/la-batt_sys.lo: batt/batt_sys.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -MT batt/la-batt_sys.lo -MD -MP -MF batt/$(DEPDIR)/la-batt_sys.Tpo -c -o batt/la-batt_sys.lo `test -f 'batt/batt_sys.c' || echo '$(srcdir)/'`batt/batt_sys.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) batt/$(DEPDIR)/la-batt_sys.Tpo batt/$(DEPDIR)/la-batt_sys.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='batt/batt_sys.c' object='batt/la-batt_sys.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -c -o batt/batt_la-batt_sys.lo `test -f 'batt/batt_sys.c' || echo '$(srcdir)/'`batt/batt_sys.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(batt_la_CFLAGS) $(CFLAGS) -c -o batt/la-batt_sys.lo `test -f 'batt/batt_sys.c' || echo '$(srcdir)/'`batt/batt_sys.c -indicator/indicator_la-indicator.lo: indicator/indicator.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_la_CFLAGS) $(CFLAGS) -MT indicator/indicator_la-indicator.lo -MD -MP -MF indicator/$(DEPDIR)/indicator_la-indicator.Tpo -c -o indicator/indicator_la-indicator.lo `test -f 'indicator/indicator.c' || echo '$(srcdir)/'`indicator/indicator.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) indicator/$(DEPDIR)/indicator_la-indicator.Tpo indicator/$(DEPDIR)/indicator_la-indicator.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='indicator/indicator.c' object='indicator/indicator_la-indicator.lo' libtool=yes @AMDEPBACKSLASH@ +indicator/la-indicator.lo: indicator/indicator.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_la_CFLAGS) $(CFLAGS) -MT indicator/la-indicator.lo -MD -MP -MF indicator/$(DEPDIR)/la-indicator.Tpo -c -o indicator/la-indicator.lo `test -f 'indicator/indicator.c' || echo '$(srcdir)/'`indicator/indicator.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) indicator/$(DEPDIR)/la-indicator.Tpo indicator/$(DEPDIR)/la-indicator.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='indicator/indicator.c' object='indicator/la-indicator.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_la_CFLAGS) $(CFLAGS) -c -o indicator/indicator_la-indicator.lo `test -f 'indicator/indicator.c' || echo '$(srcdir)/'`indicator/indicator.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_la_CFLAGS) $(CFLAGS) -c -o indicator/la-indicator.lo `test -f 'indicator/indicator.c' || echo '$(srcdir)/'`indicator/indicator.c -netstat/netstat_la-netstat.lo: netstat/netstat.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-netstat.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-netstat.Tpo -c -o netstat/netstat_la-netstat.lo `test -f 'netstat/netstat.c' || echo '$(srcdir)/'`netstat/netstat.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-netstat.Tpo netstat/$(DEPDIR)/netstat_la-netstat.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/netstat.c' object='netstat/netstat_la-netstat.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-netstat.lo: netstat/netstat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-netstat.lo -MD -MP -MF netstat/$(DEPDIR)/la-netstat.Tpo -c -o netstat/la-netstat.lo `test -f 'netstat/netstat.c' || echo '$(srcdir)/'`netstat/netstat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-netstat.Tpo netstat/$(DEPDIR)/la-netstat.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/netstat.c' object='netstat/la-netstat.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-netstat.lo `test -f 'netstat/netstat.c' || echo '$(srcdir)/'`netstat/netstat.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-netstat.lo `test -f 'netstat/netstat.c' || echo '$(srcdir)/'`netstat/netstat.c -netstat/netstat_la-devproc.lo: netstat/devproc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-devproc.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-devproc.Tpo -c -o netstat/netstat_la-devproc.lo `test -f 'netstat/devproc.c' || echo '$(srcdir)/'`netstat/devproc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-devproc.Tpo netstat/$(DEPDIR)/netstat_la-devproc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/devproc.c' object='netstat/netstat_la-devproc.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-devproc.lo: netstat/devproc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-devproc.lo -MD -MP -MF netstat/$(DEPDIR)/la-devproc.Tpo -c -o netstat/la-devproc.lo `test -f 'netstat/devproc.c' || echo '$(srcdir)/'`netstat/devproc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-devproc.Tpo netstat/$(DEPDIR)/la-devproc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/devproc.c' object='netstat/la-devproc.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-devproc.lo `test -f 'netstat/devproc.c' || echo '$(srcdir)/'`netstat/devproc.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-devproc.lo `test -f 'netstat/devproc.c' || echo '$(srcdir)/'`netstat/devproc.c -netstat/netstat_la-statusicon.lo: netstat/statusicon.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-statusicon.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-statusicon.Tpo -c -o netstat/netstat_la-statusicon.lo `test -f 'netstat/statusicon.c' || echo '$(srcdir)/'`netstat/statusicon.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-statusicon.Tpo netstat/$(DEPDIR)/netstat_la-statusicon.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/statusicon.c' object='netstat/netstat_la-statusicon.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-statusicon.lo: netstat/statusicon.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-statusicon.lo -MD -MP -MF netstat/$(DEPDIR)/la-statusicon.Tpo -c -o netstat/la-statusicon.lo `test -f 'netstat/statusicon.c' || echo '$(srcdir)/'`netstat/statusicon.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-statusicon.Tpo netstat/$(DEPDIR)/la-statusicon.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/statusicon.c' object='netstat/la-statusicon.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-statusicon.lo `test -f 'netstat/statusicon.c' || echo '$(srcdir)/'`netstat/statusicon.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-statusicon.lo `test -f 'netstat/statusicon.c' || echo '$(srcdir)/'`netstat/statusicon.c -netstat/netstat_la-wireless.lo: netstat/wireless.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-wireless.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-wireless.Tpo -c -o netstat/netstat_la-wireless.lo `test -f 'netstat/wireless.c' || echo '$(srcdir)/'`netstat/wireless.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-wireless.Tpo netstat/$(DEPDIR)/netstat_la-wireless.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/wireless.c' object='netstat/netstat_la-wireless.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-wireless.lo: netstat/wireless.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-wireless.lo -MD -MP -MF netstat/$(DEPDIR)/la-wireless.Tpo -c -o netstat/la-wireless.lo `test -f 'netstat/wireless.c' || echo '$(srcdir)/'`netstat/wireless.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-wireless.Tpo netstat/$(DEPDIR)/la-wireless.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/wireless.c' object='netstat/la-wireless.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-wireless.lo `test -f 'netstat/wireless.c' || echo '$(srcdir)/'`netstat/wireless.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-wireless.lo `test -f 'netstat/wireless.c' || echo '$(srcdir)/'`netstat/wireless.c -netstat/netstat_la-lxnm_client.lo: netstat/lxnm_client.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-lxnm_client.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-lxnm_client.Tpo -c -o netstat/netstat_la-lxnm_client.lo `test -f 'netstat/lxnm_client.c' || echo '$(srcdir)/'`netstat/lxnm_client.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-lxnm_client.Tpo netstat/$(DEPDIR)/netstat_la-lxnm_client.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/lxnm_client.c' object='netstat/netstat_la-lxnm_client.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-lxnm_client.lo: netstat/lxnm_client.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-lxnm_client.lo -MD -MP -MF netstat/$(DEPDIR)/la-lxnm_client.Tpo -c -o netstat/la-lxnm_client.lo `test -f 'netstat/lxnm_client.c' || echo '$(srcdir)/'`netstat/lxnm_client.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-lxnm_client.Tpo netstat/$(DEPDIR)/la-lxnm_client.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/lxnm_client.c' object='netstat/la-lxnm_client.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-lxnm_client.lo `test -f 'netstat/lxnm_client.c' || echo '$(srcdir)/'`netstat/lxnm_client.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-lxnm_client.lo `test -f 'netstat/lxnm_client.c' || echo '$(srcdir)/'`netstat/lxnm_client.c -netstat/netstat_la-passwd_gui.lo: netstat/passwd_gui.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/netstat_la-passwd_gui.lo -MD -MP -MF netstat/$(DEPDIR)/netstat_la-passwd_gui.Tpo -c -o netstat/netstat_la-passwd_gui.lo `test -f 'netstat/passwd_gui.c' || echo '$(srcdir)/'`netstat/passwd_gui.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/netstat_la-passwd_gui.Tpo netstat/$(DEPDIR)/netstat_la-passwd_gui.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/passwd_gui.c' object='netstat/netstat_la-passwd_gui.lo' libtool=yes @AMDEPBACKSLASH@ +netstat/la-passwd_gui.lo: netstat/passwd_gui.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -MT netstat/la-passwd_gui.lo -MD -MP -MF netstat/$(DEPDIR)/la-passwd_gui.Tpo -c -o netstat/la-passwd_gui.lo `test -f 'netstat/passwd_gui.c' || echo '$(srcdir)/'`netstat/passwd_gui.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstat/$(DEPDIR)/la-passwd_gui.Tpo netstat/$(DEPDIR)/la-passwd_gui.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstat/passwd_gui.c' object='netstat/la-passwd_gui.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/netstat_la-passwd_gui.lo `test -f 'netstat/passwd_gui.c' || echo '$(srcdir)/'`netstat/passwd_gui.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstat_la_CFLAGS) $(CFLAGS) -c -o netstat/la-passwd_gui.lo `test -f 'netstat/passwd_gui.c' || echo '$(srcdir)/'`netstat/passwd_gui.c -netstatus/netstatus_la-netstatus.lo: netstatus/netstatus.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus.Tpo -c -o netstatus/netstatus_la-netstatus.lo `test -f 'netstatus/netstatus.c' || echo '$(srcdir)/'`netstatus/netstatus.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus.c' object='netstatus/netstatus_la-netstatus.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus.lo: netstatus/netstatus.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus.Tpo -c -o netstatus/la-netstatus.lo `test -f 'netstatus/netstatus.c' || echo '$(srcdir)/'`netstatus/netstatus.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus.Tpo netstatus/$(DEPDIR)/la-netstatus.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus.c' object='netstatus/la-netstatus.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus.lo `test -f 'netstatus/netstatus.c' || echo '$(srcdir)/'`netstatus/netstatus.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus.lo `test -f 'netstatus/netstatus.c' || echo '$(srcdir)/'`netstatus/netstatus.c -netstatus/netstatus_la-netstatus-dialog.lo: netstatus/netstatus-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-dialog.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-dialog.Tpo -c -o netstatus/netstatus_la-netstatus-dialog.lo `test -f 'netstatus/netstatus-dialog.c' || echo '$(srcdir)/'`netstatus/netstatus-dialog.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-dialog.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-dialog.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-dialog.c' object='netstatus/netstatus_la-netstatus-dialog.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-dialog.lo: netstatus/netstatus-dialog.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-dialog.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-dialog.Tpo -c -o netstatus/la-netstatus-dialog.lo `test -f 'netstatus/netstatus-dialog.c' || echo '$(srcdir)/'`netstatus/netstatus-dialog.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-dialog.Tpo netstatus/$(DEPDIR)/la-netstatus-dialog.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-dialog.c' object='netstatus/la-netstatus-dialog.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-dialog.lo `test -f 'netstatus/netstatus-dialog.c' || echo '$(srcdir)/'`netstatus/netstatus-dialog.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-dialog.lo `test -f 'netstatus/netstatus-dialog.c' || echo '$(srcdir)/'`netstatus/netstatus-dialog.c -netstatus/netstatus_la-netstatus-enums.lo: netstatus/netstatus-enums.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-enums.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-enums.Tpo -c -o netstatus/netstatus_la-netstatus-enums.lo `test -f 'netstatus/netstatus-enums.c' || echo '$(srcdir)/'`netstatus/netstatus-enums.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-enums.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-enums.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-enums.c' object='netstatus/netstatus_la-netstatus-enums.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-enums.lo: netstatus/netstatus-enums.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-enums.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-enums.Tpo -c -o netstatus/la-netstatus-enums.lo `test -f 'netstatus/netstatus-enums.c' || echo '$(srcdir)/'`netstatus/netstatus-enums.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-enums.Tpo netstatus/$(DEPDIR)/la-netstatus-enums.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-enums.c' object='netstatus/la-netstatus-enums.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-enums.lo `test -f 'netstatus/netstatus-enums.c' || echo '$(srcdir)/'`netstatus/netstatus-enums.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-enums.lo `test -f 'netstatus/netstatus-enums.c' || echo '$(srcdir)/'`netstatus/netstatus-enums.c -netstatus/netstatus_la-netstatus-icon.lo: netstatus/netstatus-icon.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-icon.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-icon.Tpo -c -o netstatus/netstatus_la-netstatus-icon.lo `test -f 'netstatus/netstatus-icon.c' || echo '$(srcdir)/'`netstatus/netstatus-icon.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-icon.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-icon.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-icon.c' object='netstatus/netstatus_la-netstatus-icon.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-icon.lo: netstatus/netstatus-icon.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-icon.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-icon.Tpo -c -o netstatus/la-netstatus-icon.lo `test -f 'netstatus/netstatus-icon.c' || echo '$(srcdir)/'`netstatus/netstatus-icon.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-icon.Tpo netstatus/$(DEPDIR)/la-netstatus-icon.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-icon.c' object='netstatus/la-netstatus-icon.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-icon.lo `test -f 'netstatus/netstatus-icon.c' || echo '$(srcdir)/'`netstatus/netstatus-icon.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-icon.lo `test -f 'netstatus/netstatus-icon.c' || echo '$(srcdir)/'`netstatus/netstatus-icon.c -netstatus/netstatus_la-netstatus-iface.lo: netstatus/netstatus-iface.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-iface.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-iface.Tpo -c -o netstatus/netstatus_la-netstatus-iface.lo `test -f 'netstatus/netstatus-iface.c' || echo '$(srcdir)/'`netstatus/netstatus-iface.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-iface.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-iface.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-iface.c' object='netstatus/netstatus_la-netstatus-iface.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-iface.lo: netstatus/netstatus-iface.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-iface.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-iface.Tpo -c -o netstatus/la-netstatus-iface.lo `test -f 'netstatus/netstatus-iface.c' || echo '$(srcdir)/'`netstatus/netstatus-iface.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-iface.Tpo netstatus/$(DEPDIR)/la-netstatus-iface.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-iface.c' object='netstatus/la-netstatus-iface.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-iface.lo `test -f 'netstatus/netstatus-iface.c' || echo '$(srcdir)/'`netstatus/netstatus-iface.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-iface.lo `test -f 'netstatus/netstatus-iface.c' || echo '$(srcdir)/'`netstatus/netstatus-iface.c -netstatus/netstatus_la-netstatus-sysdeps.lo: netstatus/netstatus-sysdeps.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-sysdeps.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-sysdeps.Tpo -c -o netstatus/netstatus_la-netstatus-sysdeps.lo `test -f 'netstatus/netstatus-sysdeps.c' || echo '$(srcdir)/'`netstatus/netstatus-sysdeps.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-sysdeps.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-sysdeps.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-sysdeps.c' object='netstatus/netstatus_la-netstatus-sysdeps.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-sysdeps.lo: netstatus/netstatus-sysdeps.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-sysdeps.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-sysdeps.Tpo -c -o netstatus/la-netstatus-sysdeps.lo `test -f 'netstatus/netstatus-sysdeps.c' || echo '$(srcdir)/'`netstatus/netstatus-sysdeps.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-sysdeps.Tpo netstatus/$(DEPDIR)/la-netstatus-sysdeps.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-sysdeps.c' object='netstatus/la-netstatus-sysdeps.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-sysdeps.lo `test -f 'netstatus/netstatus-sysdeps.c' || echo '$(srcdir)/'`netstatus/netstatus-sysdeps.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-sysdeps.lo `test -f 'netstatus/netstatus-sysdeps.c' || echo '$(srcdir)/'`netstatus/netstatus-sysdeps.c -netstatus/netstatus_la-netstatus-util.lo: netstatus/netstatus-util.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/netstatus_la-netstatus-util.lo -MD -MP -MF netstatus/$(DEPDIR)/netstatus_la-netstatus-util.Tpo -c -o netstatus/netstatus_la-netstatus-util.lo `test -f 'netstatus/netstatus-util.c' || echo '$(srcdir)/'`netstatus/netstatus-util.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/netstatus_la-netstatus-util.Tpo netstatus/$(DEPDIR)/netstatus_la-netstatus-util.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-util.c' object='netstatus/netstatus_la-netstatus-util.lo' libtool=yes @AMDEPBACKSLASH@ +netstatus/la-netstatus-util.lo: netstatus/netstatus-util.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -MT netstatus/la-netstatus-util.lo -MD -MP -MF netstatus/$(DEPDIR)/la-netstatus-util.Tpo -c -o netstatus/la-netstatus-util.lo `test -f 'netstatus/netstatus-util.c' || echo '$(srcdir)/'`netstatus/netstatus-util.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) netstatus/$(DEPDIR)/la-netstatus-util.Tpo netstatus/$(DEPDIR)/la-netstatus-util.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='netstatus/netstatus-util.c' object='netstatus/la-netstatus-util.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/netstatus_la-netstatus-util.lo `test -f 'netstatus/netstatus-util.c' || echo '$(srcdir)/'`netstatus/netstatus-util.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(netstatus_la_CFLAGS) $(CFLAGS) -c -o netstatus/la-netstatus-util.lo `test -f 'netstatus/netstatus-util.c' || echo '$(srcdir)/'`netstatus/netstatus-util.c -weather/weather_la-logutil.lo: weather/logutil.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-logutil.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-logutil.Tpo -c -o weather/weather_la-logutil.lo `test -f 'weather/logutil.c' || echo '$(srcdir)/'`weather/logutil.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-logutil.Tpo weather/$(DEPDIR)/weather_la-logutil.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/logutil.c' object='weather/weather_la-logutil.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-logutil.lo: weather/logutil.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-logutil.lo -MD -MP -MF weather/$(DEPDIR)/la-logutil.Tpo -c -o weather/la-logutil.lo `test -f 'weather/logutil.c' || echo '$(srcdir)/'`weather/logutil.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-logutil.Tpo weather/$(DEPDIR)/la-logutil.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/logutil.c' object='weather/la-logutil.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-logutil.lo `test -f 'weather/logutil.c' || echo '$(srcdir)/'`weather/logutil.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-logutil.lo `test -f 'weather/logutil.c' || echo '$(srcdir)/'`weather/logutil.c -weather/weather_la-httputil.lo: weather/httputil.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-httputil.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-httputil.Tpo -c -o weather/weather_la-httputil.lo `test -f 'weather/httputil.c' || echo '$(srcdir)/'`weather/httputil.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-httputil.Tpo weather/$(DEPDIR)/weather_la-httputil.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/httputil.c' object='weather/weather_la-httputil.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-httputil.lo: weather/httputil.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-httputil.lo -MD -MP -MF weather/$(DEPDIR)/la-httputil.Tpo -c -o weather/la-httputil.lo `test -f 'weather/httputil.c' || echo '$(srcdir)/'`weather/httputil.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-httputil.Tpo weather/$(DEPDIR)/la-httputil.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/httputil.c' object='weather/la-httputil.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-httputil.lo `test -f 'weather/httputil.c' || echo '$(srcdir)/'`weather/httputil.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-httputil.lo `test -f 'weather/httputil.c' || echo '$(srcdir)/'`weather/httputil.c -weather/weather_la-openweathermap.lo: weather/openweathermap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-openweathermap.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-openweathermap.Tpo -c -o weather/weather_la-openweathermap.lo `test -f 'weather/openweathermap.c' || echo '$(srcdir)/'`weather/openweathermap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-openweathermap.Tpo weather/$(DEPDIR)/weather_la-openweathermap.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/openweathermap.c' object='weather/weather_la-openweathermap.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-openweathermap.lo: weather/openweathermap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-openweathermap.lo -MD -MP -MF weather/$(DEPDIR)/la-openweathermap.Tpo -c -o weather/la-openweathermap.lo `test -f 'weather/openweathermap.c' || echo '$(srcdir)/'`weather/openweathermap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-openweathermap.Tpo weather/$(DEPDIR)/la-openweathermap.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/openweathermap.c' object='weather/la-openweathermap.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-openweathermap.lo `test -f 'weather/openweathermap.c' || echo '$(srcdir)/'`weather/openweathermap.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-openweathermap.lo `test -f 'weather/openweathermap.c' || echo '$(srcdir)/'`weather/openweathermap.c -weather/weather_la-location.lo: weather/location.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-location.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-location.Tpo -c -o weather/weather_la-location.lo `test -f 'weather/location.c' || echo '$(srcdir)/'`weather/location.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-location.Tpo weather/$(DEPDIR)/weather_la-location.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/location.c' object='weather/weather_la-location.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-location.lo: weather/location.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-location.lo -MD -MP -MF weather/$(DEPDIR)/la-location.Tpo -c -o weather/la-location.lo `test -f 'weather/location.c' || echo '$(srcdir)/'`weather/location.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-location.Tpo weather/$(DEPDIR)/la-location.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/location.c' object='weather/la-location.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-location.lo `test -f 'weather/location.c' || echo '$(srcdir)/'`weather/location.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-location.lo `test -f 'weather/location.c' || echo '$(srcdir)/'`weather/location.c -weather/weather_la-forecast.lo: weather/forecast.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-forecast.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-forecast.Tpo -c -o weather/weather_la-forecast.lo `test -f 'weather/forecast.c' || echo '$(srcdir)/'`weather/forecast.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-forecast.Tpo weather/$(DEPDIR)/weather_la-forecast.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/forecast.c' object='weather/weather_la-forecast.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-forecast.lo: weather/forecast.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-forecast.lo -MD -MP -MF weather/$(DEPDIR)/la-forecast.Tpo -c -o weather/la-forecast.lo `test -f 'weather/forecast.c' || echo '$(srcdir)/'`weather/forecast.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-forecast.Tpo weather/$(DEPDIR)/la-forecast.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/forecast.c' object='weather/la-forecast.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-forecast.lo `test -f 'weather/forecast.c' || echo '$(srcdir)/'`weather/forecast.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-forecast.lo `test -f 'weather/forecast.c' || echo '$(srcdir)/'`weather/forecast.c -weather/weather_la-weatherwidget.lo: weather/weatherwidget.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-weatherwidget.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-weatherwidget.Tpo -c -o weather/weather_la-weatherwidget.lo `test -f 'weather/weatherwidget.c' || echo '$(srcdir)/'`weather/weatherwidget.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-weatherwidget.Tpo weather/$(DEPDIR)/weather_la-weatherwidget.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/weatherwidget.c' object='weather/weather_la-weatherwidget.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-weatherwidget.lo: weather/weatherwidget.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-weatherwidget.lo -MD -MP -MF weather/$(DEPDIR)/la-weatherwidget.Tpo -c -o weather/la-weatherwidget.lo `test -f 'weather/weatherwidget.c' || echo '$(srcdir)/'`weather/weatherwidget.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-weatherwidget.Tpo weather/$(DEPDIR)/la-weatherwidget.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/weatherwidget.c' object='weather/la-weatherwidget.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-weatherwidget.lo `test -f 'weather/weatherwidget.c' || echo '$(srcdir)/'`weather/weatherwidget.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-weatherwidget.lo `test -f 'weather/weatherwidget.c' || echo '$(srcdir)/'`weather/weatherwidget.c -weather/weather_la-weather.lo: weather/weather.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/weather_la-weather.lo -MD -MP -MF weather/$(DEPDIR)/weather_la-weather.Tpo -c -o weather/weather_la-weather.lo `test -f 'weather/weather.c' || echo '$(srcdir)/'`weather/weather.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/weather_la-weather.Tpo weather/$(DEPDIR)/weather_la-weather.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/weather.c' object='weather/weather_la-weather.lo' libtool=yes @AMDEPBACKSLASH@ +weather/la-weather.lo: weather/weather.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -MT weather/la-weather.lo -MD -MP -MF weather/$(DEPDIR)/la-weather.Tpo -c -o weather/la-weather.lo `test -f 'weather/weather.c' || echo '$(srcdir)/'`weather/weather.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) weather/$(DEPDIR)/la-weather.Tpo weather/$(DEPDIR)/la-weather.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weather/weather.c' object='weather/la-weather.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/weather_la-weather.lo `test -f 'weather/weather.c' || echo '$(srcdir)/'`weather/weather.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(weather_la_CFLAGS) $(CFLAGS) -c -o weather/la-weather.lo `test -f 'weather/weather.c' || echo '$(srcdir)/'`weather/weather.c -xkb/xkb_la-xkb-plugin.lo: xkb/xkb-plugin.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -MT xkb/xkb_la-xkb-plugin.lo -MD -MP -MF xkb/$(DEPDIR)/xkb_la-xkb-plugin.Tpo -c -o xkb/xkb_la-xkb-plugin.lo `test -f 'xkb/xkb-plugin.c' || echo '$(srcdir)/'`xkb/xkb-plugin.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) xkb/$(DEPDIR)/xkb_la-xkb-plugin.Tpo xkb/$(DEPDIR)/xkb_la-xkb-plugin.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xkb/xkb-plugin.c' object='xkb/xkb_la-xkb-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +xkb/la-xkb-plugin.lo: xkb/xkb-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -MT xkb/la-xkb-plugin.lo -MD -MP -MF xkb/$(DEPDIR)/la-xkb-plugin.Tpo -c -o xkb/la-xkb-plugin.lo `test -f 'xkb/xkb-plugin.c' || echo '$(srcdir)/'`xkb/xkb-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) xkb/$(DEPDIR)/la-xkb-plugin.Tpo xkb/$(DEPDIR)/la-xkb-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xkb/xkb-plugin.c' object='xkb/la-xkb-plugin.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -c -o xkb/xkb_la-xkb-plugin.lo `test -f 'xkb/xkb-plugin.c' || echo '$(srcdir)/'`xkb/xkb-plugin.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -c -o xkb/la-xkb-plugin.lo `test -f 'xkb/xkb-plugin.c' || echo '$(srcdir)/'`xkb/xkb-plugin.c -xkb/xkb_la-xkb.lo: xkb/xkb.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -MT xkb/xkb_la-xkb.lo -MD -MP -MF xkb/$(DEPDIR)/xkb_la-xkb.Tpo -c -o xkb/xkb_la-xkb.lo `test -f 'xkb/xkb.c' || echo '$(srcdir)/'`xkb/xkb.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) xkb/$(DEPDIR)/xkb_la-xkb.Tpo xkb/$(DEPDIR)/xkb_la-xkb.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xkb/xkb.c' object='xkb/xkb_la-xkb.lo' libtool=yes @AMDEPBACKSLASH@ +xkb/la-xkb.lo: xkb/xkb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -MT xkb/la-xkb.lo -MD -MP -MF xkb/$(DEPDIR)/la-xkb.Tpo -c -o xkb/la-xkb.lo `test -f 'xkb/xkb.c' || echo '$(srcdir)/'`xkb/xkb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) xkb/$(DEPDIR)/la-xkb.Tpo xkb/$(DEPDIR)/la-xkb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xkb/xkb.c' object='xkb/la-xkb.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -c -o xkb/xkb_la-xkb.lo `test -f 'xkb/xkb.c' || echo '$(srcdir)/'`xkb/xkb.c +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xkb_la_CFLAGS) $(CFLAGS) -c -o xkb/la-xkb.lo `test -f 'xkb/xkb.c' || echo '$(srcdir)/'`xkb/xkb.c mostlyclean-libtool: -rm -f *.lo @@ -1586,7 +1624,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -1626,7 +1667,8 @@ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am -install-exec: install-exec-am +install-exec: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data: install-data-am uninstall: uninstall-am @@ -1689,7 +1731,48 @@ clean-pkglibLTLIBRARIES mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) batt/$(DEPDIR) cpu/$(DEPDIR) cpufreq/$(DEPDIR) deskno/$(DEPDIR) indicator/$(DEPDIR) kbled/$(DEPDIR) monitors/$(DEPDIR) netstat/$(DEPDIR) netstatus/$(DEPDIR) thermal/$(DEPDIR) volumealsa/$(DEPDIR) weather/$(DEPDIR) xkb/$(DEPDIR) + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-dclock.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-dirmenu.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-launch-button.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-launchtaskbar.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-menu.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-pager.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-separator.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-task-button.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-tray.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-wincmd.Po + -rm -f batt/$(DEPDIR)/la-batt.Plo + -rm -f batt/$(DEPDIR)/la-batt_sys.Plo + -rm -f cpu/$(DEPDIR)/cpu.Plo + -rm -f cpufreq/$(DEPDIR)/cpufreq.Plo + -rm -f deskno/$(DEPDIR)/deskno.Plo + -rm -f indicator/$(DEPDIR)/la-indicator.Plo + -rm -f kbled/$(DEPDIR)/kbled.Plo + -rm -f monitors/$(DEPDIR)/monitors.Plo + -rm -f netstat/$(DEPDIR)/la-devproc.Plo + -rm -f netstat/$(DEPDIR)/la-lxnm_client.Plo + -rm -f netstat/$(DEPDIR)/la-netstat.Plo + -rm -f netstat/$(DEPDIR)/la-passwd_gui.Plo + -rm -f netstat/$(DEPDIR)/la-statusicon.Plo + -rm -f netstat/$(DEPDIR)/la-wireless.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-dialog.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-enums.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-icon.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-iface.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-sysdeps.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-util.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus.Plo + -rm -f thermal/$(DEPDIR)/thermal.Plo + -rm -f volumealsa/$(DEPDIR)/volumealsa.Plo + -rm -f weather/$(DEPDIR)/la-forecast.Plo + -rm -f weather/$(DEPDIR)/la-httputil.Plo + -rm -f weather/$(DEPDIR)/la-location.Plo + -rm -f weather/$(DEPDIR)/la-logutil.Plo + -rm -f weather/$(DEPDIR)/la-openweathermap.Plo + -rm -f weather/$(DEPDIR)/la-weather.Plo + -rm -f weather/$(DEPDIR)/la-weatherwidget.Plo + -rm -f xkb/$(DEPDIR)/la-xkb-plugin.Plo + -rm -f xkb/$(DEPDIR)/la-xkb.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1736,7 +1819,48 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) batt/$(DEPDIR) cpu/$(DEPDIR) cpufreq/$(DEPDIR) deskno/$(DEPDIR) indicator/$(DEPDIR) kbled/$(DEPDIR) monitors/$(DEPDIR) netstat/$(DEPDIR) netstatus/$(DEPDIR) thermal/$(DEPDIR) volumealsa/$(DEPDIR) weather/$(DEPDIR) xkb/$(DEPDIR) + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-dclock.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-dirmenu.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-launch-button.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-launchtaskbar.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-menu.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-pager.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-separator.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-task-button.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-tray.Po + -rm -f ./$(DEPDIR)/libbuiltin_plugins_a-wincmd.Po + -rm -f batt/$(DEPDIR)/la-batt.Plo + -rm -f batt/$(DEPDIR)/la-batt_sys.Plo + -rm -f cpu/$(DEPDIR)/cpu.Plo + -rm -f cpufreq/$(DEPDIR)/cpufreq.Plo + -rm -f deskno/$(DEPDIR)/deskno.Plo + -rm -f indicator/$(DEPDIR)/la-indicator.Plo + -rm -f kbled/$(DEPDIR)/kbled.Plo + -rm -f monitors/$(DEPDIR)/monitors.Plo + -rm -f netstat/$(DEPDIR)/la-devproc.Plo + -rm -f netstat/$(DEPDIR)/la-lxnm_client.Plo + -rm -f netstat/$(DEPDIR)/la-netstat.Plo + -rm -f netstat/$(DEPDIR)/la-passwd_gui.Plo + -rm -f netstat/$(DEPDIR)/la-statusicon.Plo + -rm -f netstat/$(DEPDIR)/la-wireless.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-dialog.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-enums.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-icon.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-iface.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-sysdeps.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus-util.Plo + -rm -f netstatus/$(DEPDIR)/la-netstatus.Plo + -rm -f thermal/$(DEPDIR)/thermal.Plo + -rm -f volumealsa/$(DEPDIR)/volumealsa.Plo + -rm -f weather/$(DEPDIR)/la-forecast.Plo + -rm -f weather/$(DEPDIR)/la-httputil.Plo + -rm -f weather/$(DEPDIR)/la-location.Plo + -rm -f weather/$(DEPDIR)/la-logutil.Plo + -rm -f weather/$(DEPDIR)/la-openweathermap.Plo + -rm -f weather/$(DEPDIR)/la-weather.Plo + -rm -f weather/$(DEPDIR)/la-weatherwidget.Plo + -rm -f xkb/$(DEPDIR)/la-xkb-plugin.Plo + -rm -f xkb/$(DEPDIR)/la-xkb.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -1757,16 +1881,16 @@ uninstall-xkeyboardconfigDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook -.MAKE: all check install install-am install-exec-am install-strip \ - uninstall-am +.MAKE: all check install install-am install-exec install-exec-am \ + install-strip uninstall-am -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES clean-pkglibLTLIBRARIES \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-exec-hook \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstLIBRARIES \ + clean-pkglibLTLIBRARIES cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-exec-hook \ install-flagsDATA install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-pkglibLTLIBRARIES install-ps install-ps-am \ diff -Nru lxpanel-0.10.0/plugins/netstatus/netstatus-iface.c lxpanel-0.10.1/plugins/netstatus/netstatus-iface.c --- lxpanel-0.10.0/plugins/netstatus/netstatus-iface.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/plugins/netstatus/netstatus-iface.c 2021-01-29 22:28:51.000000000 +0000 @@ -1122,12 +1122,6 @@ return TRUE; } -#if !defined(HAVE_SOCKADDR_SA_LEN) -#define NETSTATUS_SA_LEN(saddr) (sizeof (struct sockaddr)) -#else -#define NETSTATUS_SA_LEN(saddr) (MAX ((saddr)->sa_len, sizeof (struct sockaddr))) -#endif /* HAVE_SOCKADDR_SA_LEN */ - /* Taken From R. Stevens Unix Network Programming Vol. 1. * * SIOCGIFCONF does not return an error on all systems if @@ -1221,7 +1215,7 @@ struct ifreq *if_req = (struct ifreq *) p; gboolean loopback = FALSE; - p += sizeof (if_req->ifr_name) + NETSTATUS_SA_LEN (&if_req->ifr_addr); + p = (char *) (if_req + 1); if (ioctl (fd, SIOCGIFFLAGS, if_req) < 0) { diff -Nru lxpanel-0.10.0/plugins/task-button.c lxpanel-0.10.1/plugins/task-button.c --- lxpanel-0.10.0/plugins/task-button.c 2019-02-26 21:45:49.000000000 +0000 +++ lxpanel-0.10.1/plugins/task-button.c 2021-01-29 22:28:51.000000000 +0000 @@ -43,7 +43,6 @@ #include #include -#include #include #include #include diff -Nru lxpanel-0.10.0/plugins/volumealsa/volumealsa.c lxpanel-0.10.1/plugins/volumealsa/volumealsa.c --- lxpanel-0.10.0/plugins/volumealsa/volumealsa.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/plugins/volumealsa/volumealsa.c 2021-01-29 22:33:27.000000000 +0000 @@ -10,6 +10,7 @@ * 2012 Henry Gebhardt * 2014 Peter * 2014-2016 Andriy Grytsenko + * 2020 TheZxcv * * This file is a part of LXPanel project. * @@ -863,11 +864,14 @@ { VolumeALSAPlugin * vol = lxpanel_plugin_get_data(p); + gdouble dpi = gdk_screen_get_resolution(gdk_screen_get_default()); + gint scaling_factor = (int) ceil(dpi / 96); + /* Create a new window. */ vol->popup_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_decorated(GTK_WINDOW(vol->popup_window), FALSE); gtk_container_set_border_width(GTK_CONTAINER(vol->popup_window), 5); - gtk_window_set_default_size(GTK_WINDOW(vol->popup_window), 80, 140); + gtk_window_set_default_size(GTK_WINDOW(vol->popup_window), 80, scaling_factor*140); gtk_window_set_skip_taskbar_hint(GTK_WINDOW(vol->popup_window), TRUE); gtk_window_set_skip_pager_hint(GTK_WINDOW(vol->popup_window), TRUE); gtk_window_set_type_hint(GTK_WINDOW(vol->popup_window), GDK_WINDOW_TYPE_HINT_DIALOG); diff -Nru lxpanel-0.10.0/plugins/xkb/xkb.c lxpanel-0.10.1/plugins/xkb/xkb.c --- lxpanel-0.10.0/plugins/xkb/xkb.c 2019-02-26 20:37:44.000000000 +0000 +++ lxpanel-0.10.1/plugins/xkb/xkb.c 2019-02-26 22:21:30.000000000 +0000 @@ -2,6 +2,7 @@ * Copyright (C) 2008 Hong Jen Yee (PCMan) * 2009-2010 Marty Jack * 2012-2013 Giuseppe Penone + * 2017 Max Kirillov * * This file is a part of LXPanel project. * diff -Nru lxpanel-0.10.0/po/af.po lxpanel-0.10.1/po/af.po --- lxpanel-0.10.0/po/af.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/af.po 2021-02-06 21:07:56.000000000 +0000 @@ -6,18 +6,18 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2010-03-24 16:21+0200\n" "Last-Translator: F \n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n" -"Language: af\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -"X-Pootle-Path: /af/lxpanel/po/af.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /af/lxpanel/po/af.po\n" #: ../src/configurator.c:148 msgid "" @@ -84,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Kopiereg (C) 2008-2011" #: ../src/panel.c:1379 @@ -125,27 +125,27 @@ msgid "Panel" msgstr "Paneel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Hoogte:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Wydte:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Links" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Regs" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Bo" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Onder" @@ -171,8 +171,8 @@ msgstr "Meld af" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - liggewig GTK2+paneel vir UNIX-werkskerms\n" #: ../src/main.c:324 @@ -274,7 +274,7 @@ msgstr "Spasiëring" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Grootte" @@ -666,8 +666,9 @@ msgstr "Balk met knoppies om programme mee te begin" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Taakbalk wys alle oop vensters en help om hulle te ikonifiseer, verskadu of " @@ -741,9 +742,12 @@ msgstr "Nutswenkformaat" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Formaatkodes: man 3 strftime; \\n vir 'n nuwe lyn" +msgstr "" +"Formaatkodes: man 3 strftime; \\n" +" vir 'n nuwe lyn" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -906,8 +910,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "teks" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1017,7 +1022,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1349,7 +1354,7 @@ msgstr "Die koppelvlak se naam" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Toestand" @@ -1591,143 +1596,146 @@ msgid "Sending/Receiving" msgstr "Stuur/ontvang tans" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Battery: %d%% gelaai, %d:%02d tot vol" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Battery: %d%% gelaai, %d:%02d oor" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Battery: %d%% gelaai" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Geen batterye gevind nie" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Batterymonitor" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Batterymonitor" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Steek weg as daar geen battery is nie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmopdrag" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtyd (minute oor)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Agtergrondkleur" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Kleur 1 vir laai" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Kleur 2 vir laai" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Kleur 1 vir ontlaai" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Kleur 2 vir ontlaai" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Randwydte" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Koppelvlak om te monitor" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Vertoon batterystatus d.m.v. ACPI" @@ -1835,16 +1843,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Netwerkkonneksie" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1853,256 +1861,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Voorkeure vir paneel" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Voorkeure vir paneel" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Oriëntasie" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "_Opstelling" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Naam:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 #, fuzzy msgid "Location:" msgstr "Aksie" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP-adres:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Opdrag vir afmelding is nie gestel nie" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Tans gelaaide inproppe" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2110,19 +2119,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2148,9 +2157,6 @@ #~ msgid "image" #~ msgstr "beeld" -#~ msgid "text" -#~ msgstr "teks" - #~ msgid "Per application settings" #~ msgstr "Instellings per toepassing" diff -Nru lxpanel-0.10.0/po/ar.po lxpanel-0.10.1/po/ar.po --- lxpanel-0.10.0/po/ar.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/ar.po 2021-02-06 21:05:42.000000000 +0000 @@ -2,24 +2,24 @@ # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # أحمد فرغل , 2009. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-22 15:08+0000\n" "Last-Translator: صفا الفليج \n" -"Language: ar\n" +"Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495465725.740985\n" -"X-Pootle-Path: /ar/lxpanel/po/ar.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ar/lxpanel/po/ar.po\n" +"X-POOTLE-MTIME: 1495465725.740985\n" #: ../src/configurator.c:148 msgid "" @@ -89,7 +89,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "حقوق النشر محفوظة (C) 2008-2013" #: ../src/panel.c:1379 @@ -130,27 +130,27 @@ msgid "Panel" msgstr "لوحة" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "الطّول:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "العرض:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "اليسار" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "اليمين" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "الأعلى" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "الأسفل" @@ -176,8 +176,8 @@ msgstr "اخرج" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "لوحة‌لكسدي %s - لوحة جتك2+ خفيفة لأسطح مكتب يونكس\n" #: ../src/main.c:324 @@ -279,7 +279,7 @@ msgstr "مُباعِد" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "الحجم" @@ -661,8 +661,9 @@ msgstr "شريط بأزرار لإطلاق التّطبيقات" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "يظهر شريط المهام جميع النوافذ المفتوحة، ويسمح لك بتصغيرها أو تظليلها أو " @@ -1000,7 +1001,7 @@ msgstr "سَنَد تردّد المعالج" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1339,7 +1340,7 @@ msgstr "اسم الواجهة" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "الحالة" @@ -1579,43 +1580,45 @@ msgid "Sending/Receiving" msgstr "يرسل/يستقبل" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "بطارية %d: مشحونة بنسبة %d%%، وباق %d:%02d حتى تمتلئ" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "بطارية %d: مشحونة بنسبة %d%%، وباق %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "بطارية %d: مشحونة بنسبة %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 -#, c-format +#: ../plugins/batt/batt.c:191 +#, c-format, fuzzy msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" +"\n" +"%sالشّحن الآن:\t\t\t%5d ميلي‌أمبير‌ساعة" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1624,21 +1627,23 @@ "\n" "%sالطّاقة الآن:\t\t\t%5d م.وات" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 -#, c-format +#: ../plugins/batt/batt.c:198 +#, c-format, fuzzy msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" +"\n" +"%sالشّحن الآن:\t\t\t%5d ميلي‌أمبير‌ساعة" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1647,14 +1652,16 @@ "\n" "%sالشّحن الآن:\t\t\t%5d ميلي‌أمبير‌ساعة" -#: ../plugins/batt/batt.c:201 -#, c-format +#: ../plugins/batt/batt.c:202 +#, c-format, fuzzy msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" +"\n" +"%sالشّحن الآن:\t\t\t%5d ميلي‌أمبير‌ساعة" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1663,65 +1670,65 @@ "\n" "%sالفولطيّة الآن:\t\t%.3lf فولت" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "لا توجد أي بطاريات" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "مراقب البطارية" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "مراقب البطارية" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "اخفِ إذا لم تجد بطارية" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "أمر المنبه" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "وقت المنبه (الدقائق المتبقية)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "لون الخلفية" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "لون الشحن 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "لون الشحن 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "لون التفريغ 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "لون التفريغ 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "عرض الحد" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "أظهر معلومات ممتدّة" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "الواجهة المُراقَبة" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "يظهر حالة البطارية باستخدام ACPI" @@ -1820,15 +1827,15 @@ msgid "[N/A]" msgstr "[غ/م]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "أدخِل مكانًا جديدًا" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "المكان ال_جديد:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1842,248 +1849,248 @@ "- الرّمز البريديّ\n" "لجلب تنبّؤ الطّقس له/لها." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "عليك تحديد مكان." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "لم يُعثر على المكان '%s'!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "تفضيلات" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "أنعش" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "أنهِ" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "تفضيلات الطّقس" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "المكان الحاليّ" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "لا شيء مضبوط" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_عيّن" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "الاسم:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "الوحدات:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "مت_ريّ (°م)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "إن_جليزيّ (°ف)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "تنبّؤ الطّقس" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "التّحديثات:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "ي_دويًّا" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "آ_ليًّا، كلّ" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "المصدر:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "غيّ_ر" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "حالة %s الحاليّة" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "المكان:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "آخر تحديث:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "الرّطوبة:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "الضّغط:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "الرّؤية:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "الرّياح:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "الشّروق:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "الغروب:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "تنبّؤ طقس %s غير متوفّر." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "لم يُعيَّن مكان." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "يبحث عن '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "الأماكن المطابقة لِـ '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "المدينة" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "الدّولة" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "حاليًّا في " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "اليوم: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "الغدّ: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "ملحقة طقس" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "أظهر حالة الطّقس في مكان ما." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2091,19 +2098,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/be.po lxpanel-0.10.1/po/be.po --- lxpanel-0.10.0/po/be.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/be.po 2021-02-06 21:06:29.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-09-26 00:36+0200\n" "Last-Translator: Мікалай \n" "Language-Team: LANGUAGE \n" -"Language: be\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /be/lxpanel/po/be.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /be/lxpanel/po/be.po\n" #: ../src/configurator.c:148 msgid "" @@ -88,7 +87,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Аўтарскае права (C) 2008-2011" #: ../src/panel.c:1379 @@ -129,27 +128,27 @@ msgid "Panel" msgstr "Панэль" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Вышыня:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Шырыня:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Злева" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Справа" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Зверху" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Знізу" @@ -175,8 +174,8 @@ msgstr "Выйсці" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "LXPanel %s - лёгкая GTK2+ панэль працоўнага стала UNIX\n" #: ../src/main.c:324 @@ -278,7 +277,7 @@ msgstr "Прагал" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Памер" @@ -669,8 +668,9 @@ msgstr "Панэль з кнопкамі для запуску праграм" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Панэль задач паказвае ўсе адкрытыя вокны, дазваляе згортваць ці разгортваць " @@ -744,6 +744,7 @@ msgstr "Фармат падказак" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "Фармат кода: man 3 strftime; каб разарваць радок \\n" @@ -1012,7 +1013,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1349,7 +1350,7 @@ msgstr "Назва інтэрфейсу" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Стан" @@ -1535,8 +1536,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Немагчыма разабраць статыстыку інтэрфейсу з '%s'. prx_idx = %d; ptx_idx = " -"%d; brx_idx = %d; btx_idx = %d;" +"Немагчыма разабраць статыстыку інтэрфейсу з '%s'. prx_idx = %d; ptx_idx = %d;" +" brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 #, fuzzy @@ -1593,143 +1594,146 @@ msgid "Sending/Receiving" msgstr "Высыланне/атрыманне" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Акумулятар: %d%% зарад, %d:%02d да поўнага" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Акумулятар: %d%% зарад, %d:%02d засталося" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Акумулятар: %d%% зарад" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Акумулятар не знойдзены" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Манітор акумулятара" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Манітор акумулятара" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Хаваць, калі няма акумулятара" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Загад трывогі" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Час трывогі (хвілін засталося)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Колер фону" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Колер зараду 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Колер зараду 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Колер разраду 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Колер разраду 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Шырыня абрамлення" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Назіраны інтэрфейс" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Паказваць статус акумулятара праз ACPI" @@ -1828,16 +1832,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Сеткавае злучэнне" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1846,257 +1850,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Настаўленні панэлі" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Настаўленні панэлі" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Арыентацыя" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Наст_авіць" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Назва:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 #, fuzzy msgid "C_hange" msgstr "Тып пераключэння" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "Адрас IP:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Загад выхаду з сеанса не зададзены" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Загружаныя плагіны" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Плагін WNCKПэйджара" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2104,19 +2109,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/bg.po lxpanel-0.10.1/po/bg.po --- lxpanel-0.10.0/po/bg.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/bg.po 2021-02-06 21:08:50.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-08-12 00:54+0000\n" "Last-Translator: Радослав Иванов \n" -"Language: bg\n" +"Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.6.0-rc1\n" -"X-POOTLE-MTIME: 1407804851.000000\n" -"X-Pootle-Path: /bg/lxpanel/po/bg.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /bg/lxpanel/po/bg.po\n" +"X-POOTLE-MTIME: 1407804851.000000\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +85,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Авторски права © 2008-2013" #: ../src/panel.c:1379 @@ -126,27 +126,27 @@ msgid "Panel" msgstr "Системен панел" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Височина:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Ширина:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Ляво" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Дясно" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Горе" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Долу" @@ -172,8 +172,8 @@ msgstr "Излез" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - GTK2+ панел за UNIX работен плот\n" #: ../src/main.c:324 @@ -275,7 +275,7 @@ msgstr "Отстояние" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Размер" @@ -656,8 +656,9 @@ msgstr "Бар за стартиране на програми" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Лентата със задачи показва отворените прозорци и позволява: намаляване, " @@ -731,6 +732,7 @@ msgstr "Формат на подсказките" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "Формат на кодовете: man 3 strftime; \\%n за нов ред" @@ -999,7 +1001,8 @@ msgstr "Оформление за CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Извеждай честотата на ЦПУ и позволявай промяна на стабилизацията и честотата" @@ -1337,7 +1340,7 @@ msgstr "Име на интерфейса" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Състояние" @@ -1536,8 +1539,7 @@ #: ../plugins/netstatus/netstatus-sysdeps.c:343 #, c-format msgid "Could not parse wireless details from '%s'. link_idx = %d;" -msgstr "" -"Неуспешен анализ на детайли за безжичната мрежа от '%s'. link_idx = %d;" +msgstr "Неуспешен анализ на детайли за безжичната мрежа от '%s'. link_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:416 #, c-format @@ -1580,22 +1582,25 @@ msgid "Sending/Receiving" msgstr "Изпращане/Получаване" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батерия: %d%% заредена, %d:%02d, докато се зареди" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батерия: %d%% заредена, остават: %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Батерия: %d%% заредена" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1604,7 +1609,7 @@ "\n" "%sПроектна енергия:\t\t%5d мВтч" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1613,7 +1618,7 @@ "\n" "%sПълна енергия:\t\t\t%5d мВтч" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1622,7 +1627,7 @@ "\n" "%sТекуща енергия:\t\t\t%5d мВтч" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1631,7 +1636,7 @@ "\n" "%sТекуща мощност:\t\t\t%5d мВт" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1640,7 +1645,7 @@ "\n" "%sПроектиран заряд:\t%5d мАч" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1649,7 +1654,7 @@ "\n" "%sПълен заряд:\t\t\t%5d мАч" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1658,7 +1663,7 @@ "\n" "%sТекущ заряд:\t\t\t%5d мАч" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1667,7 +1672,7 @@ "\n" "%sТекущ ток:\t\t\t%5d мА" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1676,65 +1681,65 @@ "\n" "%sТекущо напрежение:\t\t%.3lf В" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Няма открити батерии" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Датчик за батерията" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Датчик за батерията" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Скрий ако няма батерия" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Команда за сигнализиране" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Време за сигнализиране (оставащи минути)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Цвят на фона" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Цвят при зареждане 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Цвят при зареждане 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Цвят при разреждане 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Цвят при разреждане 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Ширина на рамка" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Покажи разширена информация" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Наблюдавай върху монитора" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Показва статуса на батерията ползвайки ACPI" @@ -1833,15 +1838,15 @@ msgid "[N/A]" msgstr "[Няма]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Въведи ново местоположение" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Ново местоположение:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1855,248 +1860,248 @@ "- пощенски код,\n" "за които да се получи прогноза за времето." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Трябва да зададете местоположение." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Местоположението '%s' не е намерено!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Предпочитания" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Опресняване" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Изход" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Настройки на прогнозата" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Текущо местоположение" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Няма зададено" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Задай" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Екран" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Име:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Eдиници:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Мерни (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Английски (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Прогноза" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Обновяване:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ръчн_о" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "Ав_томатично, на всеки" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "минути" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Източник:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Пром_яна" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Текущи условия за %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Местоположение:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Последно обновено:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Усеща се като:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Влажност:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Налягане:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Видимост:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Вятър:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Изгрев:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Залез:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Няма налична прогноза за %s." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Не е зададено местоположение." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Търсене за '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Мястото съвпадна с '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Град" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Държава" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "В момента за" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Днес:" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Утре:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Приставка за климата" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Показвай климатичните условия за местоположение." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2104,19 +2109,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/bn_IN.po lxpanel-0.10.1/po/bn_IN.po --- lxpanel-0.10.0/po/bn_IN.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/bn_IN.po 2021-02-06 21:03:23.000000000 +0000 @@ -2,12 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-12-08 18:15+0100\n" "Last-Translator: Sankarshan \n" "Language-Team: LANGUAGE \n" @@ -17,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" -"X-Pootle-Path: /bn_IN/lxpanel/po/bn_IN.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /bn_IN/lxpanel/po/bn_IN.po\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "সত্ত্বাধিকার (C) ২০০৮-২০০৯" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "প্যানেল" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "উচ্চতা:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "ব্যাস:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "বামদিক" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ডানদিক" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "উপরের" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "নীচের" @@ -172,8 +171,8 @@ msgstr "লগ-আউট" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX ডেস্কটপের জন্য একটি হাল্কা GTK2+ প্যানেল\n" #: ../src/main.c:324 @@ -275,7 +274,7 @@ msgstr "স্পেসার" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "আকার" @@ -670,7 +669,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -742,6 +741,7 @@ msgstr "টুলটিপের বিন্যাস" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "Format codes: man 3 strftime" @@ -908,8 +908,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "টেক্সট" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -923,8 +924,8 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." msgstr "" -"উইন্ডোর সাথে আইকন যোগ করার জন্য বাঁদিকের ক্লিক করুন। ছায়ন্বিত করার জন্য মাঝের ক্লিক " -"করুন।" +"উইন্ডোর সাথে আইকন যোগ করার জন্য বাঁদিকের ক্লিক করুন। ছায়ন্বিত করার জন্য মাঝে" +"র ক্লিক করুন।" #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -1024,7 +1025,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1343,7 +1344,8 @@ "\n" "%s" msgstr "" -"এই সমস্যার সমাধানের জন্য আপনার সিস্টেম অ্যাডমিনিস্ট্রেটারের সাথে যোগাযোগ করুন:\n" +"এই সমস্যার সমাধানের জন্য আপনার সিস্টেম অ্যাডমিনিস্ট্রেটারের সাথে যোগাযোগ " +"করুন:\n" "\n" "%s" @@ -1356,7 +1358,7 @@ msgstr "ইন্টারফেসের নাম" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "অবস্থা" @@ -1598,143 +1600,146 @@ msgid "Sending/Receiving" msgstr "প্রেরণ করা হচ্ছে/গ্রহণ করা হচ্ছে" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "ব্যাটারি: %d%% চার্জ হয়েছে, %d:%02d পুরো চার্জ হতে" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "ব্যাটারি: %d%% চার্জ হয়েছে, %d:%02d বাকি" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "ব্যাটারি: %d%% চার্জ করা হয়েছে" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "কোন ব্যাটারি পাওয়া যায়নি" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "ব্যাটারি নিরীক্ষণ" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "ব্যাটারি নিরীক্ষণ" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "ব্যাটারি অনুপস্থিত হলে লুকিয়ে রাখুন" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "অ্যালার্ম কম্যান্ড" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "অ্যালার্মের সময় (বাকি মিনিট)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "পটভূমির রং" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "চার্জিং রং ১" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "চার্জিং রং ২" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "ডিসচার্জিং রং ১" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "ডিসচার্জিং রং ২" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "প্রান্তরেখার প্রস্থ" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "পরিদর্শন করার জন্য ইন্টারফেস" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI ব্যবহার করে ব্যাটারিরি অবস্থা প্রদর্শন করুন" @@ -1840,16 +1845,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "নেটওয়ার্ক সংযোগ" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1858,256 +1863,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "প্যানেলের বৈশিষ্ট্য" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "প্যানেলের বৈশিষ্ট্য" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "দিশা" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "কনফিগার করুন(_f)" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "নাম(_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP অ্যাড্রেস:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "লগ-আউট কম্যান্ড নির্দিষ্ট করা হয়নি" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "সম্প্রতি লোড করা প্লাগ-ইন" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "সহজ পেজার প্লাগ-ইন" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2115,19 +2121,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2158,9 +2164,6 @@ #~ msgid "image" #~ msgstr "ছবি" -#~ msgid "text" -#~ msgstr "টেক্সট" - #~ msgid "Per application settings" #~ msgstr "প্রতি অ্যাপ্লিকেশনের বৈশিষ্ট্য" diff -Nru lxpanel-0.10.0/po/bn.po lxpanel-0.10.1/po/bn.po --- lxpanel-0.10.0/po/bn.po 2019-02-21 23:24:12.000000000 +0000 +++ lxpanel-0.10.1/po/bn.po 2021-02-06 21:02:17.000000000 +0000 @@ -7,18 +7,18 @@ msgstr "" "Project-Id-Version: bn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2010-01-31 19:51+0600\n" "Last-Translator: Sadia Afroz \n" "Language-Team: Bengali \n" -"Language: bn\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" -"X-Pootle-Path: /bn/lxpanel/po/bn.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /bn/lxpanel/po/bn.po\n" #: ../src/configurator.c:148 msgid "" @@ -87,7 +87,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "স্বত্ত্বাধিকার (C) ২০০৮-২০০৯" #: ../src/panel.c:1379 @@ -128,27 +128,27 @@ msgid "Panel" msgstr "প্যানেল" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "উচ্চতা:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "প্রস্থ:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "বাম" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ডান" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "শীর্ষ" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "নিম্ন" @@ -174,8 +174,8 @@ msgstr "লগ-আউট" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX ডেস্কটপের জন্য হাল্কা GTK2+ প্যানেল\n" #: ../src/main.c:324 @@ -277,7 +277,7 @@ msgstr "ফাঁকাস্থানকারী" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "আকার" @@ -583,7 +583,8 @@ #: ../data/ui/panel-pref.glade.h:40 msgid "Make window managers treat the panel as dock" msgstr "" -"উইন্ডো ব্যবস্থাপকে নির্ধারণ করুন যেন প্যানেলকে ডক হিসেবে মূল্যায়ন করা হয় " +"উইন্ডো ব্যবস্থাপকে নির্ধারণ করুন যেন প্যানেলকে ডক হিসেবে মূল্যায়ন করা " +"হয় " #: ../data/ui/panel-pref.glade.h:41 msgid "Reserve space, and not covered by maximized windows" @@ -672,8 +673,9 @@ msgstr "অ্যাপ্লিকেশন চালু করার জন্য বোতামসহ বার" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "টাস্কবার সবগুলো খোলা উইন্ডো দেখায় এবং তাতে আইকন যোগ, ছায়াকরণ বা ফোকাস করার " @@ -749,9 +751,12 @@ msgstr "টুলটিপের ফরম্যাট" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Format codes: man 3 strftime; \\n রেখা বিভাজনের জন্য" +msgstr "" +"Format codes: man 3 strftime; \\n" +" রেখা বিভাজনের জন্য" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -914,8 +919,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "টেক্সট" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -929,8 +935,8 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." msgstr "" -"সব উইন্ডোর সাথে আইকন যোগ করার জন্য বামদিকে ক্লিক করুন। ছায়ান্বিত করার জন্য মাঝে " -"ক্লিক করুন।" +"সব উইন্ডোর সাথে আইকন যোগ করার জন্য বামদিকে ক্লিক করুন। ছায়ান্বিত করার জন্য " +"মাঝে ক্লিক করুন।" #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -1029,7 +1035,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1348,8 +1354,8 @@ "\n" "%s" msgstr "" -"নিম্নোক্ত সমস্যা সমাধানের জন্য অনুগ্রহ করে আপনার সিস্টেম প্রশাসকের সাথে যোগাযোগ " -"করুন:\n" +"নিম্নোক্ত সমস্যা সমাধানের জন্য অনুগ্রহ করে আপনার সিস্টেম প্রশাসকের সাথে " +"যোগাযোগ করুন:\n" "\n" "%s" @@ -1362,7 +1368,7 @@ msgstr "ইন্টারফেসের নাম" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "অবস্থা" @@ -1604,143 +1610,146 @@ msgid "Sending/Receiving" msgstr "প্রেরণ/গ্রহণ করা হচ্ছে" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "ব্যাটারি: %d%% চার্জ হয়েছে, %d:%02d পুরো চার্জ হতে" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "ব্যাটারি: %d%% চার্জ হয়েছে, %d:%02d বাকি" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "ব্যাটারি: %d%% চার্জ হয়েছে" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "কোন ব্যাটারি পাওয়া যায়নি" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "ব্যাটারি পর্যবেক্ষণ" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "ব্যাটারি পর্যবেক্ষণ" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "ব্যাটারি শেষ হলে আড়ালে রাখা হবে" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "অ্যালার্ম কমান্ড" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "অ্যালার্মের সময় (বাকি মিনিট)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "পটভূমির রং" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "চার্জিং রং ১" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "চার্জিং রং ২" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "ডিসচার্জিং রং ১" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "ডিসচার্জিং রং ২" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "সীমানার প্রস্থ" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "পর্যবেক্ষণ করার জন্য ইন্টারফেস" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI ব্যবহার করে ব্যাটারির অবস্থা প্রদর্শন" @@ -1846,16 +1855,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "নেটওয়ার্ক সংযোগ" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1864,256 +1873,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "প্যানেলের পছন্দসমূহ" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "প্যানেলের পছন্দসমূহ" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "স্থিতিবিন্যাস" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "কনফিগার (_f)" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "নাম: (_N)" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP অ্যাড্রেস:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "লগ-আউট কমান্ড নির্ধারণ করা হয়নি" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "সম্প্রতি লোড করা প্লাগ-ইন" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "সহজ পেইজার প্লাগ-ইন" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2121,19 +2131,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2164,9 +2174,6 @@ #~ msgid "image" #~ msgstr "ছবি" -#~ msgid "text" -#~ msgstr "টেক্সট" - #~ msgid "Per application settings" #~ msgstr "প্রতিটি অ্যাপ্লিকেশনের সেটিংসমূহ" diff -Nru lxpanel-0.10.0/po/ca.po lxpanel-0.10.1/po/ca.po --- lxpanel-0.10.0/po/ca.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/ca.po 2021-02-06 21:07:51.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: LXPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2018-09-28 11:28+0000\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2019-02-27 15:14+0000\n" "Last-Translator: Davidmp \n" "Language-Team: David Medina \n" -"Language: ca\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-Pootle-Path: /ca/lxpanel/po/ca.po\n" "X-Pootle-Revision: 0\n" -"X-POOTLE-MTIME: 1538134107.669464\n" +"X-Pootle-Path: /ca/lxpanel/po/ca.po\n" +"X-POOTLE-MTIME: 1551280468.294464\n" #: ../src/configurator.c:148 msgid "" @@ -91,8 +90,8 @@ msgstr "PlafóLX" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -132,27 +131,27 @@ msgid "Panel" msgstr "Plafó" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Alçada:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Amplada:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Esquerra" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Dreta" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Superior" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Inferior" @@ -178,8 +177,8 @@ msgstr "Surt" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - Plafó lleuger en GTK2+ per a escriptoris UNIX\n" #: ../src/main.c:324 @@ -279,7 +278,7 @@ msgstr "Espaiador" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Mida" @@ -322,8 +321,7 @@ #: ../data/ui/launchtaskbar.glade.h:10 msgid "Only show windows on the same monitor as the task bar" -msgstr "" -"Mostra només les finestres a la mateixa pantalla de la barra de tasques" +msgstr "Mostra només les finestres a la mateixa pantalla de la barra de tasques" #: ../data/ui/launchtaskbar.glade.h:11 msgid "Use mouse wheel" @@ -344,6 +342,7 @@ #: ../data/ui/launchtaskbar.glade.h:15 msgid "Show task icons smaller than rest of panel icons" msgstr "" +"Mostra les icones de tasques més petites que la resta d'icones del plafó" #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" @@ -661,8 +660,9 @@ msgstr "Barra amb botons per llançar aplicacions" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "La barra de tasques mostra totes les finestres obertes i permet iconificar-" @@ -1001,7 +1001,8 @@ msgstr "Frontal de freq. de CPU" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Mostra la freqüència de la CPU i permet canviar-ne els governadors i la " "freqüència" @@ -1340,7 +1341,7 @@ msgstr "Nom de la interfície" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Estat" @@ -1539,8 +1540,7 @@ #: ../plugins/netstatus/netstatus-sysdeps.c:343 #, c-format msgid "Could not parse wireless details from '%s'. link_idx = %d;" -msgstr "" -"No s'ha pogut analitzar els detalls sense fil de \"%s\". link_idx = %d;" +msgstr "No s'ha pogut analitzar els detalls sense fil de \"%s\". link_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:416 #, c-format @@ -1581,22 +1581,22 @@ msgid "Sending/Receiving" msgstr "Enviant/Rebent" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateria %d: carregada al %d%%, %d:%02d fins a la càrrega total" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateria %d: carregada al %d%%, falten %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batteria %d: carregada al %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1605,7 +1605,7 @@ "\n" "%sDisseny d'energia plena:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1614,7 +1614,7 @@ "\n" "%sEnergia plena:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1623,7 +1623,7 @@ "\n" "%sEnergia actual:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1632,7 +1632,7 @@ "\n" "%sPotència actual:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1641,7 +1641,7 @@ "\n" "%sDisseny de càrrega plena:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1650,7 +1650,7 @@ "\n" "%sCàrrega plena:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1659,7 +1659,7 @@ "\n" "%sCàrrega actual:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1668,7 +1668,7 @@ "\n" "%sCorrent actual:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1677,63 +1677,63 @@ "\n" "%sVoltatge del corrent:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "No s'ha trobat cap bateria" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Bateria baixa" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor de bateria" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Amaga-ho si no hi ha bateria" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Ordre d'alarma" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Temps d'alarma (minuts restants)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Color de fons" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Color de càrrega 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Color de càrrega 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Color de descàrrega 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Color de descàrrega 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Amplada de la vora" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Mostra la informació ampliada" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Número de la bateria per monitorar" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Mostra l'estat de la bateria usant l'ACPI" @@ -1833,15 +1833,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Escriviu una ubicació nova" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Ubicació _nova:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1855,270 +1855,270 @@ "- ciutat i estat/país\n" "- codi postal" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Heu d'especificar una ubicació." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "La ubicació \"%s\" no s'ha trobat!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferències" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Refresca" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Surt" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferències del temps" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Ubicació actual" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Cap de configurada" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "E_stableix" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Visualització" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nom:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unitats:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Mètric (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Anglès (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Previsió" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Actualitzacions:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nual" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automàtic, cada" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minuts" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Font:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Canv_ia" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condicions actuals per a %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Ubicació:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Darrera actualització:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Percepció:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Humitat:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pressió:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilitat:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vent:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Sortida del sol:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Posta del sol:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "La previsió per a %s no està disponible." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Ubicació no establerta." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Es cerca \"%s\"..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Coincidències per a la ubicació \"%s\"" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Ciutat" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "País" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Ara a" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Avui:" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Demà:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Connector del temps" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Mostra les condicions meteorològiques per a una ubicació." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" -msgstr "" +msgstr "N" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" -msgstr "" +msgstr "NNE" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" -msgstr "" +msgstr "NE" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" -msgstr "" +msgstr "ENE" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" -msgstr "" +msgstr "E" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" -msgstr "" +msgstr "ESE" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" -msgstr "" +msgstr "SE" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" -msgstr "" +msgstr "SSE" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" -msgstr "" +msgstr "S" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" -msgstr "" +msgstr "SSO" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" -msgstr "" +msgstr "SO" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" -msgstr "" +msgstr "OSO" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" -msgstr "" +msgstr "O" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" -msgstr "" +msgstr "ONO" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" -msgstr "" +msgstr "NO" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" -msgstr "" +msgstr "NNO" #: ../plugins/weather/yahooutil.c:1086 msgid "Yahoo! Weather" -msgstr "" +msgstr "Yahoo! Meteorologia" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" -msgstr "" +msgstr "Mph" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" -msgstr "" +msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" -msgstr "" +msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" -msgstr "" +msgstr "OpenWeatherMap" #~ msgid " --log -- set log level 0-5. 0 - none 5 - chatty\n" #~ msgstr "" diff -Nru lxpanel-0.10.0/po/cs.po lxpanel-0.10.1/po/cs.po --- lxpanel-0.10.0/po/cs.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/cs.po 2021-02-06 21:01:50.000000000 +0000 @@ -1,26 +1,25 @@ # Czech translations for lxpanel package. # Copyright (C) 2009 THE lxpanel'S COPYRIGHT HOLDER # This file is distributed under the same license as the lxpanel package. -# # Michal Várady , 2009. # Pavel Fric , 2016. msgid "" msgstr "" "Project-Id-Version: lxpanel 0.3.99\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2016-11-01 00:05+0100\n" "Last-Translator: Pavel Fric \n" "Language-Team: Czech \n" -"Language: cs\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 1.5\n" -"X-POOTLE-MTIME: 1427405508.000000\n" -"X-Pootle-Path: /cs/lxpanel/po/cs.po\n" "X-Pootle-Revision: 134\n" +"X-Pootle-Path: /cs/lxpanel/po/cs.po\n" +"X-POOTLE-MTIME: 1427405508.000000\n" #: ../src/configurator.c:148 msgid "" @@ -88,8 +87,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -129,27 +128,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Výška:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Šířka:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vlevo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Vpravo" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Nahoře" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dole" @@ -175,8 +174,8 @@ msgstr "Odhlásit se" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" "lxpanel %s - odlehčený panel napsaný v GTK2+ pro UNIXová pracovní prostředí\n" @@ -277,7 +276,7 @@ msgstr "Prostor" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Velikost" @@ -658,8 +657,9 @@ msgstr "Panel s tlačítko pro spouštění aplikací" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Panel úloh zobrazuje všechna otevřená okna a umožňuje je minimalizovat, " @@ -996,7 +996,8 @@ msgstr "CPUFreq frontend" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Zobrazit frekvenci CPU a povolit změnu regulátorů a frekvence" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1016,8 +1017,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Chyba, musíte nainstalovat program k nastavení zvuku (pavucontol, " -"alsamixer ...)" +"Chyba, musíte nainstalovat program k nastavení zvuku (pavucontol, alsamixer " +"...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1333,7 +1334,7 @@ msgstr "Název rozhraní" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stav" @@ -1574,22 +1575,22 @@ msgid "Sending/Receiving" msgstr "Odesílání a přijímání" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterie %d: %d%% nabito, %d:%02d do plného nabití" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterie %d: %d%% nabito, %d:%02d zbývá" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Baterie %d: %d%% nabito" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1598,7 +1599,7 @@ "\n" "%sEnergie plná, návrh:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1607,7 +1608,7 @@ "\n" "%sEnergie plná:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1616,7 +1617,7 @@ "\n" "%sEnergie nyní:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1625,7 +1626,7 @@ "\n" "%sVýkon nyní:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1634,7 +1635,7 @@ "\n" "%sPlné nabití, návrh:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1643,7 +1644,7 @@ "\n" "%sPlné nabití:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1652,7 +1653,7 @@ "\n" "%sNabití nyní:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1661,7 +1662,7 @@ "\n" "%sSíla proudu nyní:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1670,63 +1671,63 @@ "\n" "%sNapětí:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nenalezeny žádné baterie" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Prázdná baterie" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Sledování baterie" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Skrýt v nepřítomnosti baterie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Příkaz výstrahy" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Čas výstrahy (zbývající minuty)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Barva pozadí" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Barva nabíjení 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Barva nabíjení 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Barva vybíjení 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Barva vybíjení 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Šířka okraje" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Ukázat rozšířené informace" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Počet baterií ke sledování" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Zobrazuje stav baterie pomocí rozhraní ACPI" @@ -1825,15 +1826,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Zadejte nové umístění" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nové umístění" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1847,248 +1848,248 @@ "- poštovní směrovací číslo\n" "pro které se má získávat předpověď počasí." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Musíte zadat polohu stanoviště." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Stanoviště '%s' nenalezeno!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Předvolby" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Aktualizovat" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Ukončit" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Předvolby počasí" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Nynější poloha" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Nic nenastaveno" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Nastavit" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Zobrazení" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Název:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Jednotky:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrické (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Anglické (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Předpověď počasí" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Aktualizace:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Ručně" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automaticky, každých" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minut" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Zdroj:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Změnit" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Nynější podmínky pro %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Umístění:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Poslední aktualizace:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Připadá jako:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Vlhkost:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Tlak:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Viditelnost:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vítr:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Východ Slunce:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Západ Slunce:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Předpověď pro %s není dostupná." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Poloha nebyla zadána." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Hledá se '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Stanoviště odpovídá '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Město" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Země" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Nyní v " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Dnes: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Zítra: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Modul Počasí" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Zobrazit počasí pro dané umístění." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2096,19 +2097,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/da.po lxpanel-0.10.1/po/da.po --- lxpanel-0.10.0/po/da.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/da.po 2021-02-06 21:02:39.000000000 +0000 @@ -3,25 +3,23 @@ # This file is distributed under the same license as the lxpanel package. # Vidar Jon Bauge , 2009. # Joe Hansen , 2010. -# -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2018-10-01 23:09+0000\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2019-02-28 14:16+0000\n" "Last-Translator: scootergrisen \n" "Language-Team: Danish \n" -"Language: da\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1538435386.562472\n" -"X-Pootle-Path: /da/lxpanel/po/da.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /da/lxpanel/po/da.po\n" +"X-POOTLE-MTIME: 1551363410.227904\n" #: ../src/configurator.c:148 msgid "" @@ -94,8 +92,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Ophavsret (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Ophavsret (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -135,27 +133,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Højde:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Bredde:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Venstre" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Højre" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Top" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Bund" @@ -181,8 +179,8 @@ msgstr "Log ud" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - letvægts GTK2+-panel for UNIX-skrivebord\n" #: ../src/main.c:324 @@ -282,7 +280,7 @@ msgstr "Adskiller" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Størrelse" @@ -345,7 +343,7 @@ #: ../data/ui/launchtaskbar.glade.h:15 msgid "Show task icons smaller than rest of panel icons" -msgstr "" +msgstr "Vis mindre opgaveikoner end resten af panelikonerne" #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" @@ -663,8 +661,9 @@ msgstr "Område med knapper til start af applikationer" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Opgavelinjen viser alle åbne vinduer, og tillader minimering, oprulning og " @@ -1002,7 +1001,8 @@ msgstr "CPUFreq-frontend" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Vis CPU-frekvens og tillad at ændring af governors og frekvens" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1337,7 +1337,7 @@ msgstr "Navn på grænsefladen" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1577,22 +1577,22 @@ msgid "Sending/Receiving" msgstr "Sender/modtager" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batteri %d: %d%% opladet, %d:%02d til det er fuldt" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batteri %d: %d%% opladet, %d:%02d tilbage" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batteri %d: %d%% opladet" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1601,7 +1601,7 @@ "\n" "%sEnergi fuld-design:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1610,7 +1610,7 @@ "\n" "%sEnergi fuld:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1619,7 +1619,7 @@ "\n" "%sEnergi nu:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1628,7 +1628,7 @@ "\n" "%sStrøm nu:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1637,7 +1637,7 @@ "\n" "%sLader fuld-design:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1646,7 +1646,7 @@ "\n" "%sLader fuld:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1655,7 +1655,7 @@ "\n" "%sLader nu:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1664,7 +1664,7 @@ "\n" "%sNuværende nu:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1673,63 +1673,63 @@ "\n" "%sNuværende spænding:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Ingen batterier fundet" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Lavt batteriniveau" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Batteriovervågning" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Skjul hvis der ikke er batterier" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Kommando ved alarm" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtidspunkt (antal minutter tilbage)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Baggrundsfarve" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Opladningsfarve 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Opladningsfarve 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Afladningsfarve 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Afladningsfarve 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Kantbredde" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Vis udviddet information" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Antal batterier som skal overvåges" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Vis batteristatus ved hjælp af ACPI" @@ -1828,15 +1828,15 @@ msgid "[N/A]" msgstr "-" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Indtast ny placering" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Ny placering:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1850,270 +1850,270 @@ "- postnummer\n" "som der skal hentes vejrprognose for." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Du skal angive en placering." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Placering \"%s\" ikke fundet!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Indstillinger" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Opdater" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Afslut" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Indstillinger for vejr" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Nuværende placering" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ingen konfigureret" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Sæt" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Visning" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Navn:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Enheder:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrisk (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Engelsk (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognose" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Opdateringer:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuelt" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatisk, hver" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutter" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Kilde:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Skift" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Nuværende forhold for %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Placering:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Sidst opdateret:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Føles som:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Luftfugtighed:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Tryk:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Sigtbarhed:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vind:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Solopgang:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Solnedgang:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prognose for %s utilgængelig." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Placering ikke sat." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Søger efter \"%s\"..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Placeringsmatch for '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "By" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Aktuelt i " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "I dag: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "I morgen: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Vejr-plugin" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Vis vejrforhold for en placering." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" -msgstr "" +msgstr "N" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" -msgstr "" +msgstr "NNØ" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" -msgstr "" +msgstr "NØ" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" -msgstr "" +msgstr "ØNØ" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" -msgstr "" +msgstr "Ø" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" -msgstr "" +msgstr "ØSØ" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" -msgstr "" +msgstr "SØ" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" -msgstr "" +msgstr "SSØ" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" -msgstr "" +msgstr "S" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" -msgstr "" +msgstr "SSV" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" -msgstr "" +msgstr "SV" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" -msgstr "" +msgstr "VSV" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" -msgstr "" +msgstr "V" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" -msgstr "" +msgstr "VNV" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" -msgstr "" +msgstr "NV" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" -msgstr "" +msgstr "NNV" #: ../plugins/weather/yahooutil.c:1086 msgid "Yahoo! Weather" -msgstr "" +msgstr "Yahoo! Vejret" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" -msgstr "" +msgstr "Mph" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" -msgstr "" +msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" -msgstr "" +msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" -msgstr "" +msgstr "OpenWeatherMap" #~ msgid " --log -- set log level 0-5. 0 - none 5 - chatty\n" #~ msgstr " --log -- set logniveau 0-5. 0 - intet 5 - snaksalig\n" diff -Nru lxpanel-0.10.0/po/de.po lxpanel-0.10.1/po/de.po --- lxpanel-0.10.0/po/de.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/de.po 2021-02-06 21:06:13.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2014-12-02 17:15+0000\n" -"Last-Translator: Daniel Winzen \n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2020-12-14 12:51+0100\n" +"Last-Translator: Ingo Brückl \n" "Language-Team: LANGUAGE \n" -"Language: de\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1417540506.000000\n" -"X-Pootle-Path: /de/lxpanel/po/de.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /de/lxpanel/po/de.po\n" +"X-POOTLE-MTIME: 1417540506.000000\n" #: ../src/configurator.c:148 msgid "" @@ -47,7 +47,7 @@ #: ../src/configurator.c:1427 msgid "Logout command is not set" -msgstr "Abmeldebefehl ist nicht definiert" +msgstr "Befehl zum Abmelden ist nicht definiert." #: ../src/configurator.c:1495 msgid "Select a directory" @@ -71,7 +71,7 @@ "Warning: This can not be recovered." msgstr "" "Diese Leiste wirklich entfernen?\n" -"Warnung: Es kann nicht wiederhergestellt werden." +"Warnung: Wiederherstellung nicht möglich." #: ../src/panel.c:1320 msgid "Confirm" @@ -90,9 +90,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -#, fuzzy -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2014" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -132,27 +131,27 @@ msgid "Panel" msgstr "Leiste" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Höhe:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Breite:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Links" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Rechts" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Oben" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Unten" @@ -178,9 +177,8 @@ msgstr "Abmelden" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" -msgstr "lxpanel %s - leichtgewichtige GTK2+ Leiste für UNIX-Arbeitsflächen\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" +msgstr "lxpanel %s - schlanke GTK+ basierte Bedienleiste für UNIX-Arbeitsflächen\n" #: ../src/main.c:324 #, c-format @@ -252,7 +250,7 @@ #, c-format msgid "Key combination '%s' cannot be used as a global hotkey, sorry." msgstr "" -"Entschuldigung, die Tastenkombination »%s« kann nicht als globales " +"Das Tastenkürzel »%s« kann leider nicht als globales " "Tastenkürzel benutzt werden." #: ../src/input-button.c:231 ../src/input-button.c:415 @@ -264,7 +262,7 @@ #. GtkRadioButton "None" #: ../src/input-button.c:329 ../data/ui/panel-pref.glade.h:5 msgid "None" -msgstr "Keine" +msgstr "Kein" #: ../src/input-button.c:336 msgid "Custom:" @@ -274,7 +272,7 @@ #, c-format msgid "Cannot assign '%s' as a global hotkey: it is already bound." msgstr "" -"»%s« kann nicht als globales Tastenkürzel zugewiesen werden: es wird bereits " +"»%s« kann nicht als globales Tastenkürzel zugewiesen werden: Es wird bereits " "verwendet." #: ../src/space.c:394 ../src/space.c:403 @@ -282,7 +280,7 @@ msgstr "Abstand" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Größe" @@ -301,7 +299,7 @@ #: ../data/ui/launchtaskbar.glade.h:4 msgid "Launchers" -msgstr "Starter" +msgstr "Im Anwendungsstart" #: ../data/ui/launchtaskbar.glade.h:5 msgid "Launchbar" @@ -317,7 +315,7 @@ #: ../data/ui/launchtaskbar.glade.h:8 msgid "Flat buttons" -msgstr "Flache Knöpfe" +msgstr "Flache Schaltflächen" #: ../data/ui/launchtaskbar.glade.h:9 msgid "Show windows from all desktops" @@ -326,8 +324,8 @@ #: ../data/ui/launchtaskbar.glade.h:10 msgid "Only show windows on the same monitor as the task bar" msgstr "" -"Zeige nur Fenster, die auf dem gleichen Bildschirm sind, wie die " -"Aufgabenleiste" +"Nur Fenster anzeigen, die auf dem gleichen Bildschirm wie die " +"Aufgabenleiste sind" #: ../data/ui/launchtaskbar.glade.h:11 msgid "Use mouse wheel" @@ -339,19 +337,19 @@ #: ../data/ui/launchtaskbar.glade.h:13 msgid "Combine multiple application windows into a single button" -msgstr "Mehrere Fenster einer Anwendung in einem Knopf zusammenfassen" +msgstr "Mehrere Anwendungsfenster zu einer einzigen Schaltfläche zusammenfassen" #: ../data/ui/launchtaskbar.glade.h:14 msgid "Disable enlargement for small task icons" -msgstr "Vergrößerung für kleine Symbole deaktivieren" +msgstr "Vergrößerung für kleine Aufgabenleisten-Symbole deaktivieren" #: ../data/ui/launchtaskbar.glade.h:15 msgid "Show task icons smaller than rest of panel icons" -msgstr "" +msgstr "Aufgabenleisten-Symbole kleiner als die übrigen Leisten-Symbole anzeigen" #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" -msgstr "Maximale Breite des Knopfes" +msgstr "Maximale Schaltflächenbreite" #: ../data/ui/launchtaskbar.glade.h:17 msgid "Spacing" @@ -371,7 +369,7 @@ #: ../data/ui/launchtaskbar.glade.h:21 msgid "Integrated Application Launch Bar and Task Bar" -msgstr "Integrierte Anwendungsstart- und Aufgabenleiste" +msgstr "Kombinierte Anwendungsstart- und Aufgabenleiste" #: ../data/ui/netstatus.glade.h:1 msgid "Connection" @@ -437,7 +435,7 @@ #: ../data/ui/netstatus.glade.h:17 msgid "Scope:" -msgstr "Bandbreite:" +msgstr "Gültigkeitsbereich:" #: ../data/ui/netstatus.glade.h:18 msgid "Network Device" @@ -449,7 +447,7 @@ #: ../data/ui/netstatus.glade.h:20 msgid "Support" -msgstr "Unterstützung" +msgstr "Details" #: ../data/ui/netstatus.glade.h:21 msgid "Con_figure" @@ -578,11 +576,11 @@ #: ../data/ui/panel-pref.glade.h:40 msgid "Make window managers treat the panel as dock" -msgstr "Fenstermanager soll die Leiste als Dock identifizieren" +msgstr "Fenstermanager soll die Leiste als Dock behandeln" #: ../data/ui/panel-pref.glade.h:41 msgid "Reserve space, and not covered by maximized windows" -msgstr "Platz, der nicht von maximierten Fenstern überdeckt wird" +msgstr "Maximierte Fenster sollen die Leiste nicht überdecken" #: ../data/ui/panel-pref.glade.h:42 msgid "Properties" @@ -646,15 +644,15 @@ #: ../plugins/launchtaskbar.c:1834 ../plugins/launchtaskbar.c:2462 msgid "Task Bar (Window List)" -msgstr "Taskbar (Fensterliste)" +msgstr "Aufgabenleiste (Fensterliste)" #: ../plugins/launchtaskbar.c:1985 msgid "A_dd to Launcher" -msgstr "Zum Starter hinzufügen" +msgstr "Zur Startleiste hinzufügen" #: ../plugins/launchtaskbar.c:1987 msgid "Rem_ove from Launcher" -msgstr "Aus dem Starter _entfernen" +msgstr "Aus der Startleiste _entfernen" #: ../plugins/launchtaskbar.c:1989 msgid "_New Instance" @@ -662,20 +660,20 @@ #: ../plugins/launchtaskbar.c:2453 msgid "Bar with buttons to launch application" -msgstr "Leiste mit Knöpfen zum Starten von Anwendungen" +msgstr "Leiste mit Symbolen zum Starten von Anwendungen" #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" -"Die Taskbar zeigt alle geöffneten Fenster und erlaubt die Reduktion auf " -"Desktop-Symbole, Schattierungen und Fokussierungen" +"Die Aufgabenleiste zeigt alle geöffneten Fenster und ermöglicht die Verkleinerung " +"auf Symbolgröße, das Einrollen oder Hervorheben." #: ../plugins/launchtaskbar.c:2483 msgid "Bar with buttons to launch application and/or show all opened windows" msgstr "" -"Leiste mit Knöpfen zum Starten von Anwendungen und/oder zum Anzeigen aller " +"Leiste mit Symbolen zum Starten von Anwendungen und/oder zum Anzeigen aller " "geöffneten Fenster" #. Add Raise menu item. @@ -729,7 +727,7 @@ #: ../plugins/dclock.c:433 ../plugins/dclock.c:453 msgid "Digital Clock" -msgstr "Digitale Uhr" +msgstr "Digitaluhr" #: ../plugins/dclock.c:435 msgid "Clock Format" @@ -750,7 +748,7 @@ #: ../plugins/dclock.c:440 msgid "Tooltip only" -msgstr "Nur Minihilfen" +msgstr "Nur Minihilfe" #: ../plugins/dclock.c:441 msgid "Center text" @@ -758,11 +756,11 @@ #: ../plugins/dclock.c:454 msgid "Display digital clock and tooltip" -msgstr "Digitale Uhr und Minihilfe anzeigen" +msgstr "Anzeige von Digitaluhr und Minihilfe" #: ../plugins/menu.c:360 msgid "Add to desktop" -msgstr "Der Arbeitsfläche hinzufügen" +msgstr "Zur Arbeitsfläche hinzufügen" #: ../plugins/menu.c:367 msgid "Properties" @@ -791,7 +789,7 @@ #: ../plugins/pager.c:141 msgid "Sorry, there was no window manager configuration program found." msgstr "" -"Entschuldigung, es wurde kein Programm gefunden, um den Fenstermanger zu " +"Es wurde leider kein Programm gefunden, um den Fenstermanger zu " "konfigurieren." #: ../plugins/pager.c:193 ../plugins/pager.c:209 @@ -831,7 +829,7 @@ #. dialog #: ../plugins/xkb/xkb-plugin.c:714 msgid "Select Layout Change Type" -msgstr "Layout-Änderungstyp auswählen" +msgstr "Belegungs-Änderungstyp auswählen" #. dialog #: ../plugins/xkb/xkb-plugin.c:887 @@ -848,7 +846,7 @@ #: ../plugins/xkb/xkb-plugin.c:1212 ../plugins/xkb/xkb-plugin.c:1544 msgid "Keyboard Layout Handler" -msgstr "Tastaturbelegungshandhaber" +msgstr "Tastaturbelegung" #: ../plugins/xkb/xkb-plugin.c:1235 msgid "Keyboard Model" @@ -864,11 +862,11 @@ #: ../plugins/xkb/xkb-plugin.c:1319 msgid "Change Layout Option" -msgstr "Belegung ändern Option" +msgstr "Belegungsoptionen ändern" #: ../plugins/xkb/xkb-plugin.c:1339 msgid "Advanced setxkbmap Options" -msgstr "Erweiterte setxkbmap Optionen" +msgstr "Erweiterte setxkbmap-Optionen" #: ../plugins/xkb/xkb-plugin.c:1360 msgid "Do _not reset existing options" @@ -908,7 +906,7 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." -msgstr "Linksklick zum Minimieren aller Fenster. Mittelklick zum Einrollen." +msgstr "Linksklick zum Minimieren aller Fenster, Mittelklick zum Einrollen." #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -923,8 +921,8 @@ "Sends commands to all desktop windows.\n" "Supported commands are 1) iconify and 2) shade" msgstr "" -"Sendet Befehle an alle Fenster.\n" -"Unterstützte Befehle sind 1) Minimieren und 2) Einrollen" +"Befehle an alle Fenster senden.\n" +"Unterstützte Befehle sind: 1) Minimieren, 2) Einrollen" #: ../plugins/dirmenu.c:213 msgid "Open in _Terminal" @@ -944,11 +942,11 @@ #: ../plugins/dirmenu.c:366 msgid "Browse directory tree via menu (Author = PCMan)" -msgstr "Ordnerstruktur über das Menü durchsuchen (Autor = PCMan)" +msgstr "Ordnerstruktur über ein Menü durchsuchen (Autor = PCMan)" #: ../plugins/thermal/thermal.c:563 ../plugins/thermal/thermal.c:581 msgid "Temperature Monitor" -msgstr "Temperaturmonitor" +msgstr "Temperatur-Monitor" #: ../plugins/thermal/thermal.c:565 msgid "Normal color" @@ -956,11 +954,11 @@ #: ../plugins/thermal/thermal.c:566 msgid "Warning1 color" -msgstr "Warnung1 Farbe" +msgstr "Farbe - Warnung 1" #: ../plugins/thermal/thermal.c:567 msgid "Warning2 color" -msgstr "Warnung2 Farbe" +msgstr "Farbe - Warnung 2" #: ../plugins/thermal/thermal.c:568 msgid "Automatic sensor location" @@ -979,11 +977,11 @@ #. FIXME: if off, disable two below #: ../plugins/thermal/thermal.c:571 msgid "Warning1 temperature" -msgstr "Warnung1: Temperatur" +msgstr "Temperatur - Warnung 1" #: ../plugins/thermal/thermal.c:572 msgid "Warning2 temperature" -msgstr "Warnung2: Temperatur" +msgstr "Temperatur - Warnung 2" #: ../plugins/thermal/thermal.c:582 msgid "Display system temperature" @@ -1000,11 +998,11 @@ #: ../plugins/cpufreq/cpufreq.c:401 msgid "CPUFreq frontend" -msgstr "CPUFreq Frontend" +msgstr "CPUFreq-Frontend" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" -msgstr "CPU-Frequenz anzeigen und erlauben Regler und Frequenz zu ändern" +msgid "Display CPU frequency and allow one to change governors and frequency" +msgstr "CPU-Frequenz anzeigen und Regler- und Frequenz-Änderungen ermöglichen" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." @@ -1041,7 +1039,7 @@ #: ../plugins/volumealsa/volumealsa.c:1313 msgid "LineOut" -msgstr "" +msgstr "Line-Ausgang" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Front" @@ -1053,7 +1051,7 @@ #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Speaker+LO" -msgstr "" +msgstr "Lautsprecher und Line-Ausgang" #: ../plugins/volumealsa/volumealsa.c:1352 msgid "default" @@ -1070,32 +1068,32 @@ #: ../plugins/volumealsa/volumealsa.c:1420 msgid "Headphone" -msgstr "" +msgstr "Kopfhörer" #: ../plugins/volumealsa/volumealsa.c:1442 msgid "Click for Volume Slider" -msgstr "" +msgstr "Klick für den Lautstärkeregler" #: ../plugins/volumealsa/volumealsa.c:1446 msgid "Click for Toggle Mute" -msgstr "" +msgstr "Klick zum Wechsel der Stummschaltung" #: ../plugins/volumealsa/volumealsa.c:1450 msgid "Click for Open Mixer" -msgstr "" +msgstr "Klick zum Öffnen des Mischpults" #. setup hotkeys #: ../plugins/volumealsa/volumealsa.c:1454 msgid "Hotkey for Volume Up" -msgstr "" +msgstr "Tastenkürzel zur Erhöhung der Lautstärke" #: ../plugins/volumealsa/volumealsa.c:1456 msgid "Hotkey for Volume Down" -msgstr "" +msgstr "Tastenkürzel zur Verringerung der Lautstärke" #: ../plugins/volumealsa/volumealsa.c:1458 msgid "Hotkey for Volume Mute" -msgstr "" +msgstr "Tastenkürzel zur Stummschaltung" #: ../plugins/volumealsa/volumealsa.c:1514 #: ../plugins/volumealsa/volumealsa.c:1553 @@ -1105,26 +1103,24 @@ #: ../plugins/volumealsa/volumealsa.c:1516 msgid "Audio Card" -msgstr "" +msgstr "Audio-Karte" #: ../plugins/volumealsa/volumealsa.c:1519 msgid "Channel to Operate" -msgstr "" +msgstr "Audio-Quelle" #: ../plugins/volumealsa/volumealsa.c:1527 msgid "Command to Open Mixer" -msgstr "" +msgstr "Mischpult-Befehl" #: ../plugins/volumealsa/volumealsa.c:1542 -#, fuzzy msgid "Launch Mixer" -msgstr "Starter" +msgstr "Mischpult starten" #: ../plugins/volumealsa/volumealsa.c:1554 #: ../plugins/volumealsa/volumealsa.c:1575 -#, fuzzy msgid "Display and control volume" -msgstr "Lautstärke für ALSA anzeigen und einstellen" +msgstr "Anzeige und Einstellung der Lautstärke" #: ../plugins/netstat/netstat.c:183 msgid "" @@ -1209,11 +1205,11 @@ #: ../plugins/netstat/netstat.c:505 msgid "Manage Networks" -msgstr "Netzwerke verwalten" +msgstr "Netzwerkverwaltung" #: ../plugins/netstat/netstat.c:506 msgid "Monitor and Manage networks" -msgstr "Netzwerke anzeigen und verwalten" +msgstr "Überwachung und Verwaltung von Netzwerken" #. create dialog #: ../plugins/netstat/passwd_gui.c:90 @@ -1234,19 +1230,19 @@ #: ../plugins/netstatus/netstatus.c:154 ../plugins/netstatus/netstatus.c:166 msgid "Network Status Monitor" -msgstr "Netzwerkmonitor" +msgstr "Netzwerkstatus-Monitor" #: ../plugins/netstatus/netstatus.c:156 msgid "Interface to monitor" -msgstr "Schnittstelle zum Überwachen" +msgstr "Zu überwachende Schnittstelle" #: ../plugins/netstatus/netstatus.c:157 msgid "Config tool" -msgstr "Konfigurationswerkzeug" +msgstr "Programm zur Konfiguration" #: ../plugins/netstatus/netstatus.c:167 msgid "Monitor network status" -msgstr "Zeigt den Netzwerkstatus an" +msgstr "Überwachung des Netzwerkstatus" #: ../plugins/netstatus/netstatus-dialog.c:52 #: ../plugins/netstatus/netstatus-dialog.c:316 @@ -1255,12 +1251,12 @@ #: ../plugins/netstatus/netstatus-dialog.c:117 msgid "Connection Properties" -msgstr "Verbindungseigenschaften" +msgstr "Verbindungs-Eigenschaften" #: ../plugins/netstatus/netstatus-dialog.c:123 #, c-format msgid "Connection Properties: %s" -msgstr "Verbindungseigenschaften: %s" +msgstr "Verbindungs-Eigenschaften: %s" #: ../plugins/netstatus/netstatus-dialog.c:136 #, c-format @@ -1293,7 +1289,7 @@ #: ../plugins/netstatus/netstatus-icon.c:848 msgid "The current interface the icon is monitoring." -msgstr "Die Schnittstelle, die vom Symbol zur Zeit überwacht wird." +msgstr "Die gegenwärtige Schnittstelle, die vom Symbol überwacht wird." #: ../plugins/netstatus/netstatus-icon.c:855 msgid "Orientation" @@ -1340,7 +1336,7 @@ msgstr "Name der Schnittstelle" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1376,7 +1372,7 @@ #: ../plugins/netstatus/netstatus-iface.c:1205 #, c-format msgid "Unable to open socket: %s" -msgstr "Konnte Socket nicht öffen: %s" +msgstr "Socket konnte nicht geöffnet werden: %s" #: ../plugins/netstatus/netstatus-iface.c:502 #: ../plugins/netstatus/netstatus-iface.c:1231 @@ -1564,11 +1560,11 @@ #: ../plugins/netstatus/netstatus-util.c:152 msgid "Disconnected" -msgstr "Verbindung" +msgstr "Getrennt" #: ../plugins/netstatus/netstatus-util.c:155 msgid "Idle" -msgstr "Nicht in Betrieb" +msgstr "Bereit" #: ../plugins/netstatus/netstatus-util.c:158 msgid "Sending" @@ -1576,168 +1572,167 @@ #: ../plugins/netstatus/netstatus-util.c:161 msgid "Receiving" -msgstr "Empfangen" +msgstr "Empfang" #: ../plugins/netstatus/netstatus-util.c:164 msgid "Sending/Receiving" -msgstr "Senden/Empfangen" +msgstr "Senden/Empfang" -#: ../plugins/batt/batt.c:155 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:156 +#, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" -msgstr "Akku: %d%% geladen, %d:%02d verbleiben" +msgstr "Akku %d: %d%% geladen, in %d:%02d aufgeladen" -#: ../plugins/batt/batt.c:169 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:170 +#, c-format msgid "Battery %d: %d%% charged, %d:%02d left" -msgstr "Akku: %d%% geladen, %d:%02d verbleiben" +msgstr "Akku %d: %d%% geladen, %d:%02d verbleiben" -#: ../plugins/batt/batt.c:176 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:177 +#, c-format msgid "Battery %d: %d%% charged" -msgstr "Akku: %d%% geladen" +msgstr "Akku %d: %d%% geladen" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" "\n" -"%sEnergie voll Design:\t\t%5d mWh" +"%sNominal-Energie:\t\t\t%5d mWh " -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" "\n" -"%sEnergie voll:\t\t\t%5d mWh" +"%sEnergie (voll geladen):\t\t%5d mWh " -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" "\n" -"%sAktuelle Energie:\t\t\t%5d mWh" +"%sAktuelle Energie:\t\t\t%5d mWh " -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" "\n" -"%sAktuelle Leistung:\t\t\t%5d mW" +"%sAktuelle Leistung:\t\t%5d mW " -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" "\n" -"%sVollständig aufgeladen Design:\t%5d mAh" +"%sNennkapazität:\t\t\t%5d mAh " -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" "\n" -"%sVollständig aufgeladen:\t\t\t%5d mAh" +"%sKapazität (voll geladen):\t%5d mAh " -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" "\n" -"%sAktuelle Ladung:\t\t\t%5d mAh" +"%sAktuelle Kapazität:\t\t%5d mAh " -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" "\n" -"%sAktuelle Stromstärke:\t\t\t%5d mA" +"%sAktuelle Stromstärke:\t\t%5d mA " -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" "\n" -"%sAktuelle Spannung:\t\t%.3lf V" +"%sAktuelle Spannung:\t\t%.3lf V " -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Kein Akku gefunden" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" -msgstr "Akku leer" +msgstr "Niedriger Akkustand!" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" -msgstr "Akkumonitor" +msgstr "Akku-Monitor" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" -msgstr "Verstecken, falls kein Akku existiert" +msgstr "Ausblenden, wenn kein Akku vorhanden ist" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmbefehl" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" -msgstr "Alarmzeit (...Minuten verbleiben)" +msgstr "Alarmzeit (verbleibende Minuten)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Hintergrundfarbe" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Laden - Farbe 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Laden - Farbe 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Entladen - Farbe 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Entladen - Farbe 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Randbreite" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Erweiterte Informationen anzeigen" -#: ../plugins/batt/batt.c:713 -#, fuzzy +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" -msgstr "Schnittstelle zum Überwachen" +msgstr "Nummer des zu überwachenden Akkus" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" -msgstr "Zeigt den Akkuzustand mittels ACPI an" +msgstr "Anzeige des Akkuzustands mittels ACPI" #: ../plugins/kbled/kbled.c:203 ../plugins/kbled/kbled.c:234 msgid "Keyboard LED" @@ -1745,15 +1740,15 @@ #: ../plugins/kbled/kbled.c:205 msgid "Show CapsLock" -msgstr "CapsLock zeigen" +msgstr "CapsLock anzeigen" #: ../plugins/kbled/kbled.c:206 msgid "Show NumLock" -msgstr "NumLock zeigen" +msgstr "NumLock anzeigen" #: ../plugins/kbled/kbled.c:207 msgid "Show ScrollLock" -msgstr "ScrollLock zeigen" +msgstr "ScrollLock anzeigen" #: ../plugins/kbled/kbled.c:235 msgid "Indicators for CapsLock, NumLock, and ScrollLock keys" @@ -1799,7 +1794,7 @@ #: ../plugins/monitors/monitors.c:285 #, c-format msgid "CPU usage: %.2f%%" -msgstr "CPU Auslastung: %.2f%%" +msgstr "CPU-Auslastung: %.2f%%" #: ../plugins/monitors/monitors.c:386 #, c-format @@ -1808,7 +1803,7 @@ #: ../plugins/monitors/monitors.c:732 ../plugins/monitors/monitors.c:821 msgid "Resource monitors" -msgstr "Ressourcen-Überwachungen" +msgstr "Ressourcen-Monitore" #: ../plugins/monitors/monitors.c:735 msgid "CPU color" @@ -1828,21 +1823,21 @@ #: ../plugins/monitors/monitors.c:822 msgid "Display monitors (CPU, RAM)" -msgstr "Ressourcenüberwachung anzeigen (CPU, RAM)" +msgstr "Anzeige von Monitoren (CPU, RAM)" #: ../plugins/weather/weatherwidget.c:52 msgid "[N/A]" -msgstr "[N/A]" +msgstr "?" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Neuen Standort eingeben" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Neuer Standort" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1851,253 +1846,253 @@ "for which to retrieve the weather forecast." msgstr "" "Geben Sie die:\n" -"- Stadt, oder\n" -"- Stadt und Staat/Land, oder\n" -"- Postleitzahl\n" -"an, für die die Wettervorhersage abgeholt werden soll." +"• Stadt, oder\n" +"• Stadt und Staat/Land, oder\n" +"• Postleitzahl\n" +"an, für die die Wettervorhersage abgerufen werden soll." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Sie müssen einen Standort angeben." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Standort »%s« wurde nicht gefunden!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Einstellungen" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Aktualisieren" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Beenden" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Wetter-Einstellungen" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Aktueller Standort" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Nicht konfiguriert" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Setzen" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Anzeige" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Name:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" -msgstr "Einheiten:" +msgstr "Einheit:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrisch (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Englisch (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Vorhersage" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Aktualisierungen:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuell" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatisch, alle" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "Minuten" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Quelle:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Ä_ndern" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Momentane Bedingungen für %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Standort:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Zuletzt aktualisiert:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Gefühlt:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Luftfeuchtigkeit:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Luftdruck:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Sichtverhältnisse:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Wind:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Sonnenaufgang:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Sonnenuntergang:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Vorhersage für %s ist nicht verfügbar." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." -msgstr "Standort wurde nicht angegeben." +msgstr "Standort wurde nicht angegeben" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Suche nach »%s« …" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Standortübereinstimmungen für »%s«" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Stadt" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Momentan in " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Heute: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Morgen: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Wetter-Modul" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Wetterbedingungen für einen Standort anzeigen." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2105,192 +2100,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" - -#~ msgid " --log -- set log level 0-5. 0 - none 5 - chatty\n" -#~ msgstr "" -#~ " --log -- setzt den Loglevel auf 0-5. 0 - keine Logs, 5 - " -#~ "vollständig\n" - -#~ msgid "Format codes: man 3 strftime; \\%n for line break" -#~ msgstr "Formate: man 3 strftime; \\%n für Zeilenumbruch" - -#~ msgid "Normal" -#~ msgstr "Normal" - -#~ msgid "Warning1" -#~ msgstr "Warnung1" - -#~ msgid "Warning2" -#~ msgstr "Warnung2" - -#~ msgid "Warning1 Temperature" -#~ msgstr "Warnung1 Temperatur" - -#~ msgid "Warning2 Temperature" -#~ msgstr "Warnung2 Temperatur" - -#~ msgid "Copyright (C) 2008-2013" -#~ msgstr "Copyright (C) 2008-2013" - -#~ msgid "Display Image and Tooltip" -#~ msgstr "Bild und Minihilfe anzeigen" - -#~ msgid "" -#~ "Error, you need to install an application to configure the sound " -#~ "(pavucontol, alsamixer ...)" -#~ msgstr "" -#~ "Fehler, Sie müssen eine Anwendung zum Einstellen der Lautstärke " -#~ "installieren (z. B. pavucontrol, alsamixer ...)" - -#~ msgid "Failed to launch time configuration tool: %s" -#~ msgstr "Werkzeug zur Zeiteinstellung konnte nicht gestartet werden: %s" - -#~ msgid "Model" -#~ msgstr "Modell" - -#~ msgid "WNCKPager" -#~ msgstr "WNCKPager" - -#~ msgid "Icon" -#~ msgstr "Symbol" - -#~ msgid "Configure Keyboard Layout Switcher" -#~ msgstr "Konfiguration des Tastaturbelegungsschalters" - -#~ msgid "image" -#~ msgstr "Bild" - -#~ msgid "text" -#~ msgstr "Text" - -#~ msgid "Per application settings" -#~ msgstr "Einstellungen für jede Anwendung" - -#~ msgid "Default layout:" -#~ msgstr "Standardbelegung:" - -#~ msgid "Available Applications" -#~ msgstr "Verfügbare Anwendungen" - -#~ msgid "Display system temperature, by kesler.daniel@gmail.com" -#~ msgstr "Anzeige der Systemtemperatur, von kesler.daniel@gmail.com" - -#~ msgid "Left\t" -#~ msgstr "Links\t" - -#~ msgid "Top\t" -#~ msgstr "Oben\t" - -#~ msgid "Couldn't find pixmap file: %s" -#~ msgstr "Bilddatei konnte nicht gefunden werden: %s" - -#~ msgid "Desktop No / Workspace Name" -#~ msgstr "Arbeitsflächennummer und -name" - -#~ msgid "" -#~ "Allows you to switch the keyboard layout and\n" -#~ "displays the currently selected layout." -#~ msgstr "" -#~ "Erlaubt die Tastaturbelegung zu wechseln und zeigt die aktuell gewählte " -#~ "Belegung an." - -#~ msgid "Other plugins available here" -#~ msgstr "Andere Plugins sind hier verfügbar" - -#~ msgid "Old KDE/GNOME Tray" -#~ msgstr "Alter KDE/GNOME-Systembereich" - -#~ msgid "Enable Image:" -#~ msgstr "Bild:" - -#~ msgid "Enable Transparency" -#~ msgstr "Transparenz aktivieren" - -#~ msgid " --configure -- launch configuration utility\n" -#~ msgstr " --configure -- startet das Konfigurationsprogramm\n" - -#~ msgid " -C -- same as --configure\n" -#~ msgstr " -C -- wie --configure\n" - -#~ msgid "Add Button" -#~ msgstr "Knopf hinzufügen" - -#~ msgid "Button Properties" -#~ msgstr "Knopfeigenschaften" - -#~ msgid "Remove Button" -#~ msgstr "Knopf entfernen" - -#~ msgid "Buttons" -#~ msgstr "Knöpfe" - -#~ msgid "Accept SkipPager" -#~ msgstr "SkipPager akzeptieren" - -#~ msgid "Show Iconified windows" -#~ msgstr "Minimierte Fenster anzeigen" - -#~ msgid "Show mapped windows" -#~ msgstr "Eingerollte Fenster anzeigen" - -#~ msgid "Kayboard Layout switcher" -#~ msgstr "Tastatur-Layout-Schalter" - -#~ msgid "" -#~ "Dynamic\n" -#~ "Pixels\n" -#~ "% Percent" -#~ msgstr "" -#~ "Dynamische\n" -#~ "Pixel\n" -#~ "% Prozent" - -#~ msgid "" -#~ "Left\n" -#~ "Center\n" -#~ "Right" -#~ msgstr "" -#~ "Links\n" -#~ "Mitte\n" -#~ "Rechts" - -#~ msgid "" -#~ "Left\n" -#~ "Right\n" -#~ "Top\n" -#~ "Bottom" -#~ msgstr "" -#~ "Links\n" -#~ "Rechts\n" -#~ "Oben\n" -#~ "Unten" - -#~ msgid "Where to put the panel?" -#~ msgstr "Wo soll das Panel platziert werden?" - -#~ msgid "Battery: %d%% charged, %s" -#~ msgstr "Akku: %d%% geladen, %s" - -#~ msgid "charging finished" -#~ msgstr "Laden beendet" - -#~ msgid "charging" -#~ msgstr "laden" - -#~ msgid "Add to desktop panel" -#~ msgstr "Erweiterung zum Panel hinzufügen" diff -Nru lxpanel-0.10.0/po/el.po lxpanel-0.10.1/po/el.po --- lxpanel-0.10.0/po/el.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/el.po 2021-02-06 21:08:11.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-11-24 22:01+0000\n" "Last-Translator: armakolas \n" "Language-Team: LANGUAGE \n" -"Language: el\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1416866508.000000\n" -"X-Pootle-Path: /el/lxpanel/po/el.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /el/lxpanel/po/el.po\n" +"X-POOTLE-MTIME: 1416866508.000000\n" #: ../src/configurator.c:148 msgid "" @@ -92,7 +92,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Πνευματικά Δικαιώματα (C) 2008-2014" #: ../src/panel.c:1379 @@ -133,27 +133,27 @@ msgid "Panel" msgstr "Πλαίσιο" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Ύψος:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Πλάτος:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Αριστερά" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Δεξιά" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Πάνω" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Κάτω" @@ -179,8 +179,8 @@ msgstr "Αποσύνδεση" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - Ελαφρύ GTK2+ πάνελ για UNIX desktops\n" #: ../src/main.c:324 @@ -283,7 +283,7 @@ msgstr "Περιθώριο" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Μέγεθος" @@ -667,8 +667,9 @@ msgstr "Μπάρα με κουμπιά για την εκκίνηση εφαρμογών" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Η μπάρα εργασιών εμφανίζει όλα τα ανοιχτά παράθυρα και σας επιτρέπει να τα " @@ -1005,7 +1006,8 @@ msgstr "Μέτωπο CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Εμφάνισε συχνότητα CPU και επίτρεψε την αλλαγή ελεγκτών και συχνότητας" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1023,8 +1025,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Σφάλμα, πρέπει να εγκατασταθεί εφαρμογή για να ρυθμιστεί ο ήχος " -"(pavucontrol, alsamixer ...)" +"Σφάλμα, πρέπει να εγκατασταθεί εφαρμογή για να ρυθμιστεί ο ήχος (" +"pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1342,7 +1344,7 @@ msgstr "Το όνομα της διεπαφής" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Κατάσταση" @@ -1527,8 +1529,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Δε μπορούν να προσπελαστούν τα στατιστικά της διεπαφής από το '%s'. prx_idx " -"= %d; ptx_idx = %d; brx_idx = %d; btx_idx = %d;" +"Δε μπορούν να προσπελαστούν τα στατιστικά της διεπαφής από το '%s'. prx_idx =" +" %d; ptx_idx = %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1584,22 +1586,25 @@ msgid "Sending/Receiving" msgstr "Αποστολή/Λήψη" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Μπαταρία: %d%% φορτισμένη, %d:%02d απομένουν για πλήρη φόρτιση" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Μπαταρία: %d%% φορτισμένη, %d:%02d απομένουν" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Μπαταρία: %d%% φορτισμένη" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1608,7 +1613,7 @@ "\n" "%sΣχέδιο πλήρους ενέργειας:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1617,7 +1622,7 @@ "\n" "%sΕνέργεια πλήρης:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1626,7 +1631,7 @@ "\n" "%sΕνέργεια τώρα:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1635,7 +1640,7 @@ "\n" "%sΙσχύς τώρα:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1644,7 +1649,7 @@ "\n" "%sΣχέδιο πλήρους φόρτισης:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1653,7 +1658,7 @@ "\n" "%sΦόρτιση πλήρης:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1662,7 +1667,7 @@ "\n" "%sΦόρτιση τώρα:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1671,7 +1676,7 @@ "\n" "%sΡεύμα τώρα:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1680,64 +1685,64 @@ "\n" "%sΤάση Ρεύματος:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Δε βρέθηκαν μπαταρίες" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Χαμηλή ένδειξη μπαταρίας" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Παρακολούθηση μπαταρίας" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Απόκρυψη αν δεν υπάρχει μπαταρία" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Εντολή προειδοποίησης" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Χρόνος προειδοποίησης (εναπομείναντα λεπτά)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Χρώμα φόντου" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Χρώμα φόρτισης 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Χρώμα φόρτισης 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Χρώμα αποφόρτισης 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Χρώμα αποφόρτισης 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Πλάτος περιγράμματος" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Εμφάνιση Αναλυτικών Πληροφοριών" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Διεπαφή προς παρακολούθηση" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Προβολή κατάστασης μπαταρίας με χρήση ACPI" @@ -1837,15 +1842,15 @@ msgid "[N/A]" msgstr "[Δ/Υ]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Εισαγωγή Νέας Θέσης" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Νέα Θέση:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1859,248 +1864,248 @@ "- ταχυδρομικός κωδικός\n" "για τα οποία να ανακτηθεί πρόγνωση καιρού." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Πρέπει να καθοριστεί μία τοποθεσία." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Δεν βρέθηκε η τοποθεσία '%s'!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Προτιμήσεις" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Ανανέωση" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Έξοδος" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Προτιμήσεις Καιρού" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Τρέχουσα Τοποθεσία" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Κανένα διαμορφωμένο" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "Ορισμός" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Εμφάνιση" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Όνομα:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Μονάδες" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "Μετρικό (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "Αγγλικό (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Πρόγνωση" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Ενημερώσεις" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Εγχειρίδιο" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "Αυτόματο, κάθε" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "λεπτά" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Πηγή:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Αλλαγή" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Τρέχουσες Συνθήκες για %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Τοποθεσία:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Τελευταία ενημέρωση:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Αισθητό σαν:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Υγρασία:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Πίεση:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Ορατότητα:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Άνεμος:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Ανατολή:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Δύση:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Μη διαθέσιμη πρόγνωση για %s." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Δεν έχει οριστεί τοποθεσία." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Αναζήτηση για '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Ταίριασμα Τοποθεσιών για '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Πόλη" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Περιοχή" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Τρέχον στο " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Σήμερα:" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Αύριο:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Άρθρωμα Καιρού" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Προβολή καιρικών συνθηκών για μια περιοχή." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2108,19 +2113,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/en_GB.po lxpanel-0.10.1/po/en_GB.po --- lxpanel-0.10.0/po/en_GB.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/en_GB.po 2021-02-06 21:08:06.000000000 +0000 @@ -1,23 +1,27 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: LxPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-10-24 14:43+0200\n" "Last-Translator: Steve \n" "Language-Team: English UK en_GB \n" -"Language: en_GB\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /en_GB/lxpanel/po/en_GB.po\n" "X-Poedit-Language: English\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Country: UNITED KINGDOM\n" -"X-Pootle-Path: /en_GB/lxpanel/po/en_GB.po\n" -"X-Pootle-Revision: 0\n" #: ../src/configurator.c:148 msgid "" @@ -83,8 +87,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright © 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright © 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -124,27 +128,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Height:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Width:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Left" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Right" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Top" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Bottom" @@ -170,8 +174,8 @@ msgstr "Logout" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lightweight GTK2+ panel for Linux & UNIX desktops\n" #: ../src/main.c:324 @@ -273,7 +277,7 @@ msgstr "Spacer" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Size" @@ -663,8 +667,9 @@ msgstr "Bar with buttons to launch application" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Taskbar shows all opened windows and allow to iconify them, shade or get " @@ -738,9 +743,12 @@ msgstr "Tooltip Format" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Format codes: man 3 strftime; \\n for line break" +msgstr "" +"Format codes: man 3 strftime; \\n" +" for line break" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -1004,7 +1012,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1023,8 +1031,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Error, you need to install an application to configure the sound " -"(pavucontol, alsamixer ...)" +"Error, you need to install an application to configure the sound (" +"pavucontol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1339,7 +1347,7 @@ msgstr "The interface name" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "State" @@ -1581,143 +1589,146 @@ msgid "Sending/Receiving" msgstr "Sending/Receiving" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Battery: %d%% charged, %d:%02d until full" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Battery: %d%% charged, %d:%02d left" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Battery: %d%% charged" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "No battery found" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Battery Monitor" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Battery Monitor" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Hide if there is no battery" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarm command" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarm time (minutes left)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Background colour" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Charging colour 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Charging colour 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Discharging colour 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Discharging colour 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Border width" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Interface to monitor" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Display battery status using ACPI" @@ -1816,16 +1827,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Network Connection" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1834,257 +1845,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Panel Preferences" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Panel Preferences" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Orientation" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Con_figure" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Name:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 #, fuzzy msgid "C_hange" msgstr "Change Type" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP Address:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Logout command is not set" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Currently loaded plugins" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "WNCKpager plugin" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2092,19 +2104,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/es.po lxpanel-0.10.1/po/es.po --- lxpanel-0.10.0/po/es.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/es.po 2021-02-06 21:04:02.000000000 +0000 @@ -6,20 +6,20 @@ msgstr "" "Project-Id-Version: lxpanel-0.3.5.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-27 07:00+0000\n" "Last-Translator: haciendasanpedro \n" "Language-Team: Spanish \n" -"Language: es\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /es/lxpanel/po/es.po\n" "X-Poedit-Bookmarks: 19,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" "X-POOTLE-MTIME: 1495868410.004539\n" -"X-Pootle-Path: /es/lxpanel/po/es.po\n" -"X-Pootle-Revision: 0\n" #: ../src/configurator.c:148 msgid "" @@ -93,7 +93,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "© 2008–2016" #: ../src/panel.c:1379 @@ -134,27 +134,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altura:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Anchura:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Izquierda" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Derecha" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Arriba" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Abajo" @@ -180,8 +180,8 @@ msgstr "Salir" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s: panel ligero en GTK2+ para escritorios UNIX\n" #: ../src/main.c:324 @@ -281,7 +281,7 @@ msgstr "Espaciador" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Tamaño" @@ -662,8 +662,9 @@ msgstr "Barra con botones para abrir aplicaciones" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "La barra de tareas muestra todas las ventanas abiertas y permite " @@ -789,8 +790,7 @@ #: ../plugins/pager.c:141 msgid "Sorry, there was no window manager configuration program found." -msgstr "" -"No se encontró ningún programa de configuración del gestor de ventanas." +msgstr "No se encontró ningún programa de configuración del gestor de ventanas." #: ../plugins/pager.c:193 ../plugins/pager.c:209 msgid "Desktop Pager" @@ -1003,7 +1003,8 @@ msgstr "Interfaz de CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Muestra la frecuencia de la CPU y permite modificar los reguladores" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1340,7 +1341,7 @@ msgstr "Nombre de la interfaz" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Estado" @@ -1580,22 +1581,22 @@ msgid "Sending/Receiving" msgstr "Envío/recepción" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batería %d : %d %% de carga; %d:%02d para completar" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batería %d: %d  %% de carga; quedan %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batería %d: %d  %% de carga" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1604,7 +1605,7 @@ "\n" "%sEnergía total teórica:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1613,7 +1614,7 @@ "\n" "%sEnergía total:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1622,7 +1623,7 @@ "\n" "%sEnergía actual:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1631,7 +1632,7 @@ "\n" "%sPotencia actual:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1640,7 +1641,7 @@ "\n" "%sCarga total teórica:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1649,7 +1650,7 @@ "\n" "%sCarga total:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1658,7 +1659,7 @@ "\n" "%sCarga actual:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1667,7 +1668,7 @@ "\n" "%sActual:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1676,63 +1677,63 @@ "\n" "%sVoltaje actual:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "No se encontraron baterías" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Batería con poca carga" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor de batería" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ocultar si no hay baterías" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Orden de alarma" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Hora de alarma (minutos restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Color de fondo" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Color de carga n.º 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Color de carga n.º 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Color de descarga n.º 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Color de descarga n.º 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Anchura del borde" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Mostrar información detallada" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Número de batería que supervisar" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Mostrar el estado de la batería por medio de ACPI" @@ -1831,15 +1832,15 @@ msgid "[N/A]" msgstr "[N/D]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Escriba la ubicación nueva" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Ubicación _nueva:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1853,248 +1854,248 @@ "- el código postal\n" "para especificar la ubicación de la previsión meteorológica." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Debe especificar una ubicación." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "No se encontró la ubicación «%s»." -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferencias" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Actualizar" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Salir" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferencias de meteorología" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Ubicación actual" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Sin configurar" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Establecer" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Mostrar" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nombre:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unidades:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Métricas (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Imperiales (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Previsión" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Actualizaciones:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuales" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automáticas, cada" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutos" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Fuente:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Ca_mbiar" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condiciones actuales en %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Ubicación:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Última actualización:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Sensación térmica:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Humedad:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Presión:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilidad:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Viento:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Amanecer:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Ocaso:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "La previsión de %s no está disponible." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "No se definió la ubicación." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Buscando «%s»…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Coincidencias de ubicaciones para «%s»" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Ciudad" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "País" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Actualmente en " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Hoy: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Mañana: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Complemento de meteorología" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Muestra las condiciones del clima de una ubicación." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2102,19 +2103,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/et.po lxpanel-0.10.1/po/et.po --- lxpanel-0.10.0/po/et.po 2019-02-21 23:24:13.000000000 +0000 +++ lxpanel-0.10.1/po/et.po 2021-02-06 21:07:27.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-12-12 16:43+0000\n" "Last-Translator: Anari Jalakas \n" "Language-Team: Gnome Estonian translation team \n" -"Language: et\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1513096985.361972\n" -"X-Pootle-Path: /et/lxpanel/po/et.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /et/lxpanel/po/et.po\n" +"X-POOTLE-MTIME: 1513096985.361972\n" #: ../src/configurator.c:148 msgid "" @@ -90,8 +90,8 @@ msgstr "LXPaneel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Autoriõigus (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Autoriõigus (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -131,27 +131,27 @@ msgid "Panel" msgstr "Paneel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Kõrgus:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Laius:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vasakul" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Paremal" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Üleval" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "All" @@ -177,8 +177,8 @@ msgstr "Väljalogimine" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - kergekaaluline GTK2+ paneel UNIX töölaudadele\n" #: ../src/main.c:324 @@ -278,7 +278,7 @@ msgstr "Eraldaja" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Suurus" @@ -659,8 +659,9 @@ msgstr "Riba rakenduste käivitamise nuppude jaoks" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Tegumiribal kuvatakse kõiki avatud aknaid, neid saab minimeerida, varjata ja " @@ -996,13 +997,13 @@ msgstr "CPUFreq kasutajaliides" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Protsessori töösageduse kuvamine koos talitluse muutmise võimalusega" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." -msgstr "" -"Esines ALSA (või pulseaudio) probleem. Palun kontrolli lxpanel logisid." +msgstr "Esines ALSA (või pulseaudio) probleem. Palun kontrolli lxpanel logisid." #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 @@ -1015,8 +1016,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Viga, heli seadistamiseks peab olema paigaldatud helikontrolli rakendus " -"(pavucontol, alsamixer ...)" +"Viga, heli seadistamiseks peab olema paigaldatud helikontrolli rakendus (" +"pavucontol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1331,7 +1332,7 @@ msgstr "Liidese nimi" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Olek" @@ -1572,22 +1573,22 @@ msgid "Sending/Receiving" msgstr "Saatmine/vastuvõtt" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Aku %d: %d%% laetud, täitumiseni jäänud %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Aku %d: %d%% laetud, %d:%02d jäänud" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Aku %d: %d%% laetud" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1596,7 +1597,7 @@ "\n" "%sTehasetäituvus:\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1605,7 +1606,7 @@ "\n" "%sTäistäituvus:\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1614,7 +1615,7 @@ "\n" "%sTäituvus:\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1623,7 +1624,7 @@ "\n" "%sVõimsus:\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1632,7 +1633,7 @@ "\n" "%sTehasetäituvus:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1641,7 +1642,7 @@ "\n" "%sTäistäituvus:\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1650,7 +1651,7 @@ "\n" "%sTäituvus:\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1659,7 +1660,7 @@ "\n" "%sVool:\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1668,63 +1669,63 @@ "\n" "%sPinge:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Akusid ei leitud" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Aku on tühjenemas" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Akujälgija" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Aku puudumisel ei kuvata" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmikäsk" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmi aeg (minutid jäänud)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Taustavärvus" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Laadimise värv 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Laadimise värv 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Tühjenemise värv 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Tühjenemise värv 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Raami laius" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Täiendava informatsiooni kuvamine" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Kui mitut akut jälgida" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Aku oleku kuvamine ACPI järgi" @@ -1823,15 +1824,15 @@ msgid "[N/A]" msgstr "[Teadmata]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Sisesta uus asukoht" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Uus asukoht:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1845,248 +1846,248 @@ "- postiindeks\n" "mille abil ilmaennustust leida." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Asukoht peab olema määratud." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Asukohta '%s' ei leitud!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Eelistused" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Värskendamine" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Lõpetamine" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Ilmanäidiku eelistused" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Praegune asukoht" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Seadistamata" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Määra" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Kuva" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nimi:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Ühikud:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Meetriline (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Inglise (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Ilmaprognoos" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Uuendused:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Käsitsi" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automaatne, iga" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutid" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Lähtekoht:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Muutmine" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Ilmaolud asukohas %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Asukoht:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Viimati uuendatud:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Tundub nagu:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Niiskus:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Õhurõhk:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Nähtavus:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Tuul:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Päikesetõus:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Päikeseloojang:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Ilmaprognoos %s jaoks pole saadaval." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Asukoht määramata." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' otsimine..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Sobivad vasted asukohale '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Linn" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Maakond" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Praegu " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Täna: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Homme: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Ilmanäidiku plugin" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Asukoha ilmaseisu kuvamine." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2094,19 +2095,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/eu.po lxpanel-0.10.1/po/eu.po --- lxpanel-0.10.0/po/eu.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/eu.po 2021-02-06 21:08:45.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-10-11 19:44+0000\n" "Last-Translator: Asier Iturralde Sarasola \n" "Language-Team: Basque \n" -"Language: eu\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507751081.212096\n" -"X-Pootle-Path: /eu/lxpanel/po/eu.po\n" "X-Pootle-Revision: 1878\n" +"X-Pootle-Path: /eu/lxpanel/po/eu.po\n" +"X-POOTLE-MTIME: 1507751081.212096\n" #: ../src/configurator.c:148 msgid "" @@ -87,8 +87,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright-a (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright-a (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -128,27 +128,27 @@ msgid "Panel" msgstr "Panela" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altuera:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Zabalera:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Ezkerrean" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Eskuinean" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Goian" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Behean" @@ -174,8 +174,8 @@ msgstr "Amaitu saioa" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX mahaigainentzako GTK2+ panel arina\n" #: ../src/main.c:324 @@ -276,7 +276,7 @@ msgstr "Bereizgailua" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Tamaina" @@ -570,8 +570,7 @@ #: ../data/ui/panel-pref.glade.h:40 msgid "Make window managers treat the panel as dock" -msgstr "" -"Leiho-kudeatzaileek panela atrakagarri bezala tratatzea ahalbidetzen du" +msgstr "Leiho-kudeatzaileek panela atrakagarri bezala tratatzea ahalbidetzen du" #: ../data/ui/panel-pref.glade.h:41 msgid "Reserve space, and not covered by maximized windows" @@ -658,8 +657,9 @@ msgstr "Aplikazioak abiarazteko botoiak dituen barra" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Ataza-barrak irekitako leiho guztiak erakusten ditu eta ikonotzea, lausotzea " @@ -997,7 +997,8 @@ msgstr "CPUFreq interfazea" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Bistaratu PUZ maiztasuna. Kontrolagailu eta maiztasuna aldatzeko aukera eman" @@ -1017,8 +1018,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Errorea, aplikazio bat instalatu behar duzu soinua konfiguratzeko " -"(pavucontrol, alsamixer...)" +"Errorea, aplikazio bat instalatu behar duzu soinua konfiguratzeko (" +"pavucontrol, alsamixer...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1334,7 +1335,7 @@ msgstr "Interfazearen izena" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Egoera" @@ -1575,22 +1576,22 @@ msgid "Sending/Receiving" msgstr "Bidaltzen/Jasotzen" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateria %d: %% %d kargatuta, %d:%02d falta" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateria %d: %% %d kargatuta, %d:%02d falta" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Bateria %d: %% %d kargatuta" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1599,7 +1600,7 @@ "\n" "%sDiseinuko energia osoa:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1608,7 +1609,7 @@ "\n" "%sEnergia osoa:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1617,7 +1618,7 @@ "\n" "%sEnergia orain:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1626,7 +1627,7 @@ "\n" "%sPotentzia orain:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1635,7 +1636,7 @@ "\n" "%sDiseinuko karga osoa:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1644,7 +1645,7 @@ "\n" "%sKarga osoa:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1653,7 +1654,7 @@ "\n" "%sKarga orain:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1662,7 +1663,7 @@ "\n" "%sKorrontea orain:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1671,63 +1672,63 @@ "\n" "%sKorrontearen tentsioa:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Ez da bateriarik aurkitu" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Bateria baxua" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Bateriaren monitorea" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ezkutatu bateriarik ez badago" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmaren komandoa" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmaren denbora (falta diren minutuak)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Atzeko planoaren kolorea" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Kargatzen dagoenerako kolorea 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Kargatzen dagoenerako kolorea 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Deskargatzen dagoenerako kolorea 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Deskargatzen dagoenerako kolorea 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Ertzaren zabalera" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Erakutsi informazio hedatua" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Kontrolatu beharreko bateriaren zenbakia" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Bistaratu bateriaren egoera ACPI erabiliz" @@ -1826,15 +1827,15 @@ msgid "[N/A]" msgstr "[E/E]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Sartu kokaleku berria" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Kokaleku _berria:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1848,248 +1849,248 @@ "- posta-kodea\n" "eguraldiaren iragarpena jasotzeko." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Kokapen bat zehaztu behar duzu." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "'%s' kokapena ez da aurkitu!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Hobespenak" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Freskatu" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Irten" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Eguraldiaren hobespenak" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Uneko kokalekua" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Konfiguratu gabe" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Ezarri" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Bistaratu" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Izena:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unitateak:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Celsius (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Fahrenheit (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Iragarpena" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Eguneraketak:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Eskuz" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatikoki, maiztasuna:" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutuero" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Iturburua:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Aldatu" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s(r)en uneko baldintzak" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Kokalekua:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Azken eguneraketa:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Sentsazioa:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Hezetasuna:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Presioa:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Ikusgaitasuna:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Haizea:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Egunsentia:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Ilunabarra:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "%s(e)rako iragarpena ez dago erabilgarri." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Ez da ezarri kokapenik." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' bilatzen..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Kokapena bat dator '%s'(r)ekin" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Herria" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Herrialdea" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Unean hemen: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Gaur: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Bihar: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Eguraldia plugina" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Erakutsi kokapen bateko eguraldia" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2097,19 +2098,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/fa.po lxpanel-0.10.1/po/fa.po --- lxpanel-0.10.0/po/fa.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/fa.po 2021-02-06 21:07:38.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2010-08-16 22:24+0330\n" "Last-Translator: Mostafa \n" "Language-Team: Persian \n" -"Language: fa\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /fa/lxpanel/po/fa.po\n" "X-Poedit-Language: Persian\n" "X-Poedit-Country: Iran\n" -"X-Pootle-Path: /fa/lxpanel/po/fa.po\n" -"X-Pootle-Revision: 0\n" #: ../src/configurator.c:148 msgid "" @@ -87,7 +86,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "حق نشر)c( 2010-2011" #: ../src/panel.c:1379 @@ -128,27 +127,27 @@ msgid "Panel" msgstr "پنل" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "بلندی" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "پهنا:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "چپ" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "راست" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "بالا" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "پایین" @@ -174,8 +173,8 @@ msgstr "خروج" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "ال اکس پنل %s - سبک GTK2+ پنل برای میزکارهای یونیکسی\n" #: ../src/main.c:324 @@ -277,7 +276,7 @@ msgstr "فاصله گذار" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "اندازه" @@ -670,8 +669,9 @@ msgstr "نوار به همراه دکمه‌هایی برای راه اندازی برنامه‌ها" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "نوار وظیفه همه پنجره های باز را نشان می دهد همچنین آنها ایکنی می کند، محو یا " @@ -745,9 +745,12 @@ msgstr "قالب tooltip" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "فرم کدها: man 3 strftime; \\nبرای شکستن خط" +msgstr "" +"فرم کدها: man 3 strftime; \\n" +"برای شکستن خط" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -909,8 +912,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "متن" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1022,7 +1026,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1354,7 +1358,7 @@ msgstr "نام رابط" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "حالت" @@ -1596,143 +1600,146 @@ msgid "Sending/Receiving" msgstr "در حال دریافت/ارسال" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "باتری %d%% شارژ شده، %d:%02d تا پرشدن " -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "باتری: شارج %d%% شد، %d:%02d باقی مانده است" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "باتری: %d%% شارژ شده" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "باتری یافت نشد" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "نمایش باتری" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "نمایش باتری" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "مخفی کردن در صورت نبودن باتری" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "دستور هشدار" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "ساعت هشدار (دقایق باقی مانده)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "رنگ زمینه" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "رنگ شارژ ۱" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "رنگ شارژ ۲" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "رنگ دشارژ ۱" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "رنگ دشارژ ۲" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "عرض حاشیه" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "رابط به نمایشگر" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "وضعیت باتری را با ACPI نماش بده" @@ -1838,16 +1845,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "ارتباط شبکه ای" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1856,256 +1863,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "ترجیحات پنل" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "ترجیحات پنل" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "گرایش" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "پیـکربندی" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "ـ‌نام:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "آدرس IP :" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "دستور خروج هماهنگ نشده است" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "افزونه های بارگذاری شده ی حال حاضر" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "پلاگین ورق زننده ساده" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2113,19 +2121,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2156,9 +2164,6 @@ #~ msgid "image" #~ msgstr "تصویر" -#~ msgid "text" -#~ msgstr "متن" - #~ msgid "Per application settings" #~ msgstr "تنظیمات جداگانه برای هر برنامه" diff -Nru lxpanel-0.10.0/po/fi.po lxpanel-0.10.1/po/fi.po --- lxpanel-0.10.0/po/fi.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/fi.po 2021-02-06 21:05:13.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-07-19 16:43+0000\n" "Last-Translator: Juhani Numminen \n" "Language-Team: LANGUAGE \n" -"Language: fi\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1500482631.038653\n" -"X-Pootle-Path: /fi/lxpanel/po/fi.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /fi/lxpanel/po/fi.po\n" +"X-POOTLE-MTIME: 1500482631.038653\n" #: ../src/configurator.c:148 msgid "" @@ -88,8 +88,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008–2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008–2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -129,27 +129,27 @@ msgid "Panel" msgstr "Paneeli" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Korkeus:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Leveys:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vasemmalla" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Oikealla" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Ylhäällä" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Alhaalla" @@ -175,8 +175,8 @@ msgstr "Kirjaudu ulos" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - kevyt GTK2+-paneeli UNIX-työpöydille\n" #: ../src/main.c:324 @@ -276,7 +276,7 @@ msgstr "Väli" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Koko" @@ -657,8 +657,9 @@ msgstr "Käynnistyspalkki painikkeiden kanssa" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Tehtäväpalkki näyttää kaikki avoinna olevat ikkunat ja sallii niiden " @@ -995,7 +996,8 @@ msgstr "CPUFreq-edustaohjelma" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Näyttää suorittimen kellotaajuuden sekä sallii vaihtaa governoria ja muuttaa " "taajuutta" @@ -1330,7 +1332,7 @@ msgstr "Verkkolaitteen nimi" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Tila" @@ -1573,22 +1575,22 @@ msgid "Sending/Receiving" msgstr "Lähettää/vastaanottaa" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Akku %d: %d %%, %d:%02d kunnes täynnä" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Akku %d: %d %%, %d:%02d jäljellä" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Akku %d: %d %%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1597,7 +1599,7 @@ "\n" "%sEnergia täynnä, design:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1606,7 +1608,7 @@ "\n" "%sEnergia täynnä\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1615,7 +1617,7 @@ "\n" "%sEnergiaa nyt:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1624,7 +1626,7 @@ "\n" "%sTeho nyt:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1633,7 +1635,7 @@ "\n" "%sTäysi lataus, design:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1642,7 +1644,7 @@ "\n" "%sTäysi lataus:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1651,7 +1653,7 @@ "\n" "%sLataus nyt:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1660,7 +1662,7 @@ "\n" "%sVirta nyt:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1669,63 +1671,63 @@ "\n" "%sTämänhetkinen jännite:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Akkua ei löytynyt" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Akun lataus on pieni" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Akun valvoja" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Piilota, jos akkua ei ole" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Hälytyskomento" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Hälytysaika (minuuttia jäljellä)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Taustaväri" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Latausväri 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Latausväri 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Purkautumisen väri 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Purkautumisen väri 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Reunuksen leveys" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Näytä lisätiedot" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Valvottavan akun numero" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Näyttää akun tila käyttäen ACPI:a." @@ -1824,15 +1826,15 @@ msgid "[N/A]" msgstr "–" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Kirjoita uusi sijainti" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Uusi sijainti:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1846,248 +1848,248 @@ "- postinumero\n" "jonka sääennuste haetaan." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Sijainti täytyy määrittää." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Sijaintia ”%s” ei löytynyt!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Asetukset" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Päivitä" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Lopeta" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Sääsovelman asetukset" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Nykyinen sijainti" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ei määritetty" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "A_seta" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Näyttö" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nimi:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Yksikköjärjestelmä:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_SI-yksiköt (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Englantilainen (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Ennuste" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Päivitykset:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Käsin" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automaattinen, joka" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minuutti" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Lähde:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Vai_hda" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Säätila – %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Sijainti:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Viimeksi päivitetty:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Tuntuu:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Kosteus:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Paine:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Näkyvyys:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Tuuli:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Aurinko nousee:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Aurinko laskee:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Paikkakunnan %s sääennuste ei ole saatavilla." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Sijaintia ei ole asetettu." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Etsitään ”%s”…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Täsmäävät sijainnit hakusanalle ”%s”" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Kaupunki" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Maa" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Tällä hetkellä " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Tänään: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Huomenna: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Sää-lisäosa" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Näytä paikan säätiedot." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2095,19 +2097,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/fo.po lxpanel-0.10.1/po/fo.po --- lxpanel-0.10.0/po/fo.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/fo.po 2021-02-06 21:03:14.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2010-07-18 23:10+0200\n" "Last-Translator: Gunleif \n" "Language-Team: LANGUAGE \n" -"Language: fo\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -"X-Pootle-Path: /fo/lxpanel/po/fo.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /fo/lxpanel/po/fo.po\n" #: ../src/configurator.c:148 msgid "" @@ -89,7 +88,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Upphavsrættindi (C) 2008-2011" #: ../src/panel.c:1379 @@ -130,27 +129,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Hædd:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Vídd:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vinstru" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Høgru" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Toppur" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Botnir" @@ -176,8 +175,8 @@ msgstr "Útrita" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lættvekts GTK2+ panel til UNIX skriviborð\n" #: ../src/main.c:324 @@ -279,7 +278,7 @@ msgstr "Gloppari" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Stødd" @@ -672,8 +671,9 @@ msgstr "Stong við knappum til byrjan av nýtsluskipanum" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Koyrslustong vísur allir upplatnir gluggar, og ímyndagerð teir, skugga ella " @@ -747,9 +747,12 @@ msgstr "Snið á amboðsráð" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Sniðkotur: man 3 strftime; \\n til linjuskift" +msgstr "" +"Sniðkotur: man 3 strftime; \\n" +" til linjuskift" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -911,8 +914,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "tekstur" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1026,7 +1030,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1358,7 +1362,7 @@ msgstr "Navn á marakmóti" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Standur" @@ -1600,143 +1604,146 @@ msgid "Sending/Receiving" msgstr "Sendi/móttaki" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Battarí: %d%% løtt, %d:%02d til tað er fullt" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Battarí: %d%% løtt, %d:%02d eftir" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Battarí: %d%% løtt" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Eingi battarí eru funnin" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Battarívøka" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Battarívøka" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Fjal, um einki battarí er" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarm stýriboð" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtíð (minuttir eftir)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Bakgrundslitur" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Løðingarlitur 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Løðingarlitur 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Afløðingarlitur 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Afløðingarlitur 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Rammuvídd" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Markamót til vøku" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Vís battarístand nýtandi ACPI" @@ -1842,16 +1849,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Netsambinding" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1860,256 +1867,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Panel sertokkar" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Panel sertokkar" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Støða" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Saman_set" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Navn:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP-atsetur:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Útritingar stýriboð er ikki sett" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Núverandi lødd ískotisforrit" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Einfaldur víðkanarmótulur til skiftan av arbeiðsøki" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2117,19 +2125,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2161,9 +2169,6 @@ #~ msgid "image" #~ msgstr "mynd" -#~ msgid "text" -#~ msgstr "tekstur" - #~ msgid "Per application settings" #~ msgstr "Uppseting fyri hvørja nýtsluskipan" diff -Nru lxpanel-0.10.0/po/fr.po lxpanel-0.10.1/po/fr.po --- lxpanel-0.10.0/po/fr.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/fr.po 2021-02-06 21:03:49.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: lxpanel r839\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-23 09:24+0000\n" "Last-Translator: YvanM \n" "Language-Team: GNOME French Team \n" -"Language: fr\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495531442.578254\n" -"X-Pootle-Path: /fr/lxpanel/po/fr.po\n" "X-Pootle-Revision: 40\n" +"X-Pootle-Path: /fr/lxpanel/po/fr.po\n" +"X-POOTLE-MTIME: 1495531442.578254\n" #: ../src/configurator.c:148 msgid "" @@ -95,8 +95,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -136,27 +136,27 @@ msgid "Panel" msgstr "Tableau de bord" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Hauteur :" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Largeur :" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Gauche" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Droite" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Haut" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Bas" @@ -182,8 +182,8 @@ msgstr "Déconnexion" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - tableau de bord léger en GTK2+ pour les bureaux UNIX\n" #: ../src/main.c:324 @@ -286,7 +286,7 @@ msgstr "Espace" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Taille" @@ -674,8 +674,9 @@ msgstr "Barre avec des boutons pour lancer des applications" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "La barre des tâches affiche toutes les fenêtres ouvertes et permet de les " @@ -1015,7 +1016,8 @@ msgstr "Interface pour CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Affiche la fréquence du processeur et permet de modifier les gouverneurs et " "la fréquence" @@ -1037,8 +1039,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Erreur, il faut installer une application pour configurer le son " -"(pavucontrol, alsamixer, etc.)" +"Erreur, il faut installer une application pour configurer le son (" +"pavucontrol, alsamixer, etc.)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1358,7 +1360,7 @@ msgstr "Nom de l'interface" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "État" @@ -1600,22 +1602,22 @@ msgid "Sending/Receiving" msgstr "Envoi / Réception" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batterie %d : chargée à %d%%, %d:%02d jusqu'à charge complète" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batterie %d : chargée à %d%%, %d:%02d restant" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batterie %d : chargée à %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1624,7 +1626,7 @@ "\n" "%sÉnergie maximum théorique :\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1633,7 +1635,7 @@ "\n" "%sÉnergie maximum :\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1642,7 +1644,7 @@ "\n" "%sÉnergie actuelle :\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1651,7 +1653,7 @@ "\n" "%sPuissance actuelle :\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1660,7 +1662,7 @@ "\n" "%sCharge maximale théorique :\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1669,7 +1671,7 @@ "\n" "%sCharge complète :\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1678,7 +1680,7 @@ "\n" "%sCharge actuelle :\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1687,7 +1689,7 @@ "\n" "%sIntensité actuelle :\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1696,67 +1698,67 @@ "\n" "%sTension actuelle :\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Aucune batterie trouvée" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Batterie faible" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Moniteur des batteries" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Masquer s'il n'y a pas de batterie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Commande d'alarme" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Déclenchement de l'alarme (minutes restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Couleur de fond" # Il manque une espace entre l'« abbréviation » de numéro et le chiffre suivant -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Première couleur de chargement" # Il manque une espace entre l'« abbréviation » de numéro et le chiffre suivant -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Seconde couleur de chargement" # Il manque une espace entre l'« abbréviation » de numéro et le chiffre suivant -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Première couleur de déchargement" # Il manque une espace entre l'« abbréviation » de numéro et le chiffre suivant -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Seconde couleur de déchargement" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Largeur de la bordure" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Afficher les informations supplémentaires" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Numéro de la batterie à surveiller" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Affiche l'état de charge des batteries en utilisant ACPI" @@ -1855,15 +1857,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Saisir un nouveau lieu" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nouveau lieu :" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1877,248 +1879,248 @@ "- soit le code postal\n" "pour désigner le lieu pour lequel récupérer les prévisions météo." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Vous devez spécifier un lieu." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Le lieu « %s » n'a pas été trouvé !" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Préférences" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Actualiser" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Quitter" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Préférences Météo" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Lieu actuel" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Aucun lieu configuré" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Définir" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Affichage" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nom :" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unités :" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Métriques (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Anglaises (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prévisions" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Mises à jour :" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuelles" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatique, toutes les" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutes" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Source :" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "M_odifier" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Conditions actuelles pour %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Lieu :" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Dernière mise à jour :" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Température ressentie :" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Humidité :" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pression :" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilité :" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vent :" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Lever du soleil :" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Coucher du soleil :" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prévisions pour %s indisponibles." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Lieu non défini." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Recherche de « %s »..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Lieux correspondant à « %s »" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Ville" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Pays" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Actuellement à " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Aujourd'hui : " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Demain : " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Greffon de météo" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Affiche les conditions météo pour un lieu donné." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2126,19 +2128,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/frp.po lxpanel-0.10.1/po/frp.po --- lxpanel-0.10.0/po/frp.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/frp.po 2021-02-06 21:01:20.000000000 +0000 @@ -1,14 +1,12 @@ # translation of LxPanel to Arpitan # Copyright (C) 2006-2008 the LXDE team # This file is distributed under the same license as the LxPanel package. -# # Alexandre Raymond , 2009. -# msgid "" msgstr "" "Project-Id-Version: lxpanel r839\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-09-24 00:39+0200\n" "Last-Translator: alexandre raymond \n" "Language-Team: LXDE Traduccion Arpitan \n" @@ -18,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" -"X-Pootle-Path: /frp/lxpanel/po/frp.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /frp/lxpanel/po/frp.po\n" #: ../src/configurator.c:148 msgid "" @@ -86,8 +84,8 @@ msgstr "LXPancarta" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Drèts de Copia Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Drèts de Copia Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -127,27 +125,27 @@ msgid "Panel" msgstr "Pancarta" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Yautor:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Larjor:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Gauchi" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Dreti" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Yaut" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dessos" @@ -173,8 +171,8 @@ msgstr "Modar" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - pancarta lejieri en GTK2+ per los entorns UNIX\n" #: ../src/main.c:324 @@ -277,7 +275,7 @@ msgstr "Espaçór" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Talyi" @@ -682,8 +680,9 @@ msgstr "Barre avoyc dʹapolyons per emprendre dʹapplicacions" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Mohtra la lista de fenehtres overtes e permet de les apetissar, les garotar " @@ -758,6 +757,7 @@ msgstr "Format dos conselys" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "Codes de format : man 3 strftime" @@ -925,8 +925,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "avoyc un texte" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -938,8 +939,10 @@ msgstr "Echanjier les disposicions disponibles do clavier" #: ../plugins/wincmd.c:207 +#, fuzzy msgid "Left click to iconify all windows. Middle click to shade them." msgstr "" +"Clic gauche per apetissar totes les fenehtres. Clic central per les garotar" #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -950,10 +953,13 @@ msgstr "" #: ../plugins/wincmd.c:256 +#, fuzzy msgid "" "Sends commands to all desktop windows.\n" "Supported commands are 1) iconify and 2) shade" msgstr "" +"Menda de commandes a totes les fenehtres de lʹentorn.\n" +"Les commandes sont 1) bascular l'apetissâjo et 2) bascular lo garotâjo" #: ../plugins/dirmenu.c:213 msgid "Open in _Terminal" @@ -1039,7 +1045,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1265,8 +1271,9 @@ msgstr "Clâ de encripcion:" #: ../plugins/netstatus/netstatus.c:154 ../plugins/netstatus/netstatus.c:166 +#, fuzzy msgid "Network Status Monitor" -msgstr "" +msgstr "Monitor de lʹehtat de la téla" #: ../plugins/netstatus/netstatus.c:156 msgid "Interface to monitor" @@ -1320,8 +1327,9 @@ msgstr "Conneccion téla" #: ../plugins/netstatus/netstatus-icon.c:847 +#, fuzzy msgid "Interface" -msgstr "" +msgstr "Interfaci" # Le texte anglais est bizarre (une icône ne surveille rien du tout). Il faudrait dire : The current interface represented by the icon, ou quelque chose comme ça. Et pour le français : L'interface actuelle représentée par l'icône. #: ../plugins/netstatus/netstatus-icon.c:848 @@ -1374,7 +1382,7 @@ msgstr "Nom de lʹinterfaci" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Ehtat" @@ -1500,8 +1508,9 @@ msgstr "bócla locala" #: ../plugins/netstatus/netstatus-iface.c:975 +#, fuzzy msgid "Fiber Distributed Data Interface" -msgstr "" +msgstr "Fiber Distributed Data Interfaci" #: ../plugins/netstatus/netstatus-iface.c:981 msgid "IPv6-in-IPv4" @@ -1618,143 +1627,146 @@ msgid "Sending/Receiving" msgstr "Mendar/Recévre" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batterie: %d %% chargée, %d:%02d jusqu'a charge complète" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batterie: %d %% chargée, %d:%02d restant" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Batterie: %d %% chargée" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Aucune batterie trouvée" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Monitor des batteries" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor des batteries" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Masquer s'il n'y a pas de batterie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Commande d'alarme" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Déclenchement de l'alarme (minutes restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Couleur de fond" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Couleur de chargement n°1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Couleur de chargement n°2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Couleur de déchargement n°1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Couleur de déchargement n°2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Larjor de la bordure" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Interfaci a se velyier" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Mohtrar lʹehtat de charge des batteries en utilisant ACPI" @@ -1862,16 +1874,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Conneccion téla" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1880,257 +1892,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Préférences de la pancarta" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Préférences de la pancarta" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Orientation" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Con_figurar" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Nom:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 #, fuzzy msgid "Location:" msgstr "Accion" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "Adreçi IP:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "La commanda de deconneccion eht pâs definyîyi" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Tacons yora charjis" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Simplo agleton d'avertissór" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2138,19 +2151,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2181,9 +2194,6 @@ #~ msgid "image" #~ msgstr "avoyc ʻnʹimâji" -#~ msgid "text" -#~ msgstr "avoyc un texte" - #~ msgid "Per application settings" #~ msgstr "Opcions per chârca application" @@ -2256,9 +2266,6 @@ #~ msgid "Couldn't find pixmap file: %s" #~ msgstr "Impossiblo de trovar lo fichier pixmap : %s" -#~ msgid "Fiber Distributed Data Interfaci" -#~ msgstr "Fiber Distributed Data Interfaci" - #~ msgid "" #~ msgstr "" @@ -2275,28 +2282,9 @@ #~ msgid "Kayboard Layout switcher" #~ msgstr "Echanjior de disposicion do clavier" -#~ msgid "Left click to iconify all windows. Middle click to shade them" -#~ msgstr "" -#~ "Clic gauche per apetissar totes les fenehtres. Clic central per les " -#~ "garotar" - -#, fuzzy -#~ msgid "" -#~ "Sends commands to all desktop windows.\n" -#~ "Supported commands are 1)toggle iconify and 2) toggle shade" -#~ msgstr "" -#~ "Menda de commandes a totes les fenehtres de lʹentorn.\n" -#~ "Les commandes sont 1) bascular l'apetissâjo et 2) bascular lo garotâjo" - -#~ msgid "Net Status Monitor" -#~ msgstr "Monitor de lʹehtat de la téla" - #~ msgid "Failed to launch time configuracion tool: %s" #~ msgstr "Le lancement l'outil de configuracion de l'heure a échoué: %s" -#~ msgid "Interfaci" -#~ msgstr "Interfaci" - #~ msgid "Battery: %d%% charged, %s" #~ msgstr "Batterie: %d%% charjîyi, %s" diff -Nru lxpanel-0.10.0/po/gl.po lxpanel-0.10.1/po/gl.po --- lxpanel-0.10.0/po/gl.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/gl.po 2021-02-06 21:02:54.000000000 +0000 @@ -6,11 +6,11 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-22 09:49+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician \n" -"Language: gl\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -91,8 +91,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -132,27 +132,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altura:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Largura:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Esquerda" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Dereita" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Arriba" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Abaixo" @@ -178,8 +178,8 @@ msgstr "Saír" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - panel lixeiro GTK2+ para escritorios UNIX\n" #: ../src/main.c:324 @@ -282,7 +282,7 @@ msgstr "Espazador" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Tamaño" @@ -664,8 +664,9 @@ msgstr "Barra de aceso a aplicativos" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "A barra de tarefas amosa todas as xanelas abertas e permite minimizalas, " @@ -1001,7 +1002,8 @@ msgstr "Interface de CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Amosa a frecuencia da CPU e permite cambiar os gobernadores e a frecuencia" @@ -1337,7 +1339,7 @@ msgstr "Nome da interface" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Estado" @@ -1577,22 +1579,22 @@ msgid "Sending/Receiving" msgstr "Enviando/Recibindo" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batería %d: %d%% de carga, %d:%02d para completar" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batería %d: %d%% de carga, %d:%02d restante" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batería %d: %d%% de carga" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1601,7 +1603,7 @@ "\n" "%sDeseño de enerxía total:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1610,7 +1612,7 @@ "\n" "%sEnerxía total:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1619,7 +1621,7 @@ "\n" "%sEnerxía actual:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1628,7 +1630,7 @@ "\n" "%sPotencia actual:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1637,7 +1639,7 @@ "\n" "%sDeseño da carga completa:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1646,7 +1648,7 @@ "\n" "%sCarga completa:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1655,7 +1657,7 @@ "\n" "%sCarga actual:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1664,7 +1666,7 @@ "\n" "%sCorrente actual:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1673,63 +1675,63 @@ "\n" "%sVoltaxe actual:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Non se atoparon baterías" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Batería baixa" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor da batería" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Agachar se non hai baterías" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Orde de alarma" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Hora de alarma (minutos restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Cor de fondo" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Cor de carga n°1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Cor de carga n°2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Cor de descarga n°1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Cor de descarga n°2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Largura do bordo" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Amosar a información estendida" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Número da batería que supervisar" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Amosar o estado da batería por medio de ACPI" @@ -1828,15 +1830,15 @@ msgid "[N/A]" msgstr "[N/D]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Introduza a nova localización" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nova localización:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1850,248 +1852,248 @@ "- código postal\n" "para onde se obtén o prognóstico do tempo." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Debe especificar unha localización." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Non foi posíbel atopar «%s»" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferencias" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Actualizar" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Saír" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferencias da meteoroloxía" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Localización actual" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Sen configurar" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Definir" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Amosar" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nome:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unidades:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Métrica (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Inglesa (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognóstico" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Actualizacións:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nual" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automaticamente, cada" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutos" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Orixe:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Ca_mbiar" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condicións actuais de %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Localización:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Última actualización:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Sensación térmica:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Humidade:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Presión:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilidade:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vento:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Abrente:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Solpor:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Non está dispoñíbel o prognóstico para %s" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Non foi configurada a localización" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Buscando «%s»…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Coincidencias de localizacións para «%s»" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Cidade" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "País" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Actualmente en " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Hoxe: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Mañá: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Complemento de tempo climático" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Amosa as condicións meteorolóxicas para unha localización." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "N" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "NNL" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "NL" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "LSL" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "L" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "LSL" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "SL" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "SSL" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "S" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "SSO" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "SO" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "OSO" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "O" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "ONO" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "NO" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "NNO" @@ -2099,19 +2101,19 @@ msgid "Yahoo! Weather" msgstr "Yahoo! Weather" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "Mph" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "OpenWeatherMap" diff -Nru lxpanel-0.10.0/po/he.po lxpanel-0.10.1/po/he.po --- lxpanel-0.10.0/po/he.po 2019-02-21 23:24:14.000000000 +0000 +++ lxpanel-0.10.1/po/he.po 2021-02-06 21:01:36.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-11-14 12:14+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: LANGUAGE \n" -"Language: he\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1510661643.508293\n" -"X-Pootle-Path: /he/lxpanel/po/he.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /he/lxpanel/po/he.po\n" +"X-POOTLE-MTIME: 1510661643.508293\n" #: ../src/configurator.c:148 msgid "" @@ -87,8 +86,8 @@ msgstr "תכנית הלוחות LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "כל הזכויות שמורות (C)‏ 2008-‎2019" +msgid "Copyright (C) 2008-2021" +msgstr "כל הזכויות שמורות (C)‏ 2008-‎2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -128,27 +127,27 @@ msgid "Panel" msgstr "לוח" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "אורך:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "רוחב:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "שמאל" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ימין" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "עליון" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "תחתון" @@ -174,8 +173,8 @@ msgstr "ניתוק" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - לוח קל משקל מבוסס GTK2+‎ עבור שולחנות עבודה מסוג יוניקס\n" #: ../src/main.c:324 @@ -277,7 +276,7 @@ msgstr "מרווח" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "גודל" @@ -664,8 +663,9 @@ msgstr "סרגל עם לחצנים לטעינת יישומים" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "סרגל המשימות מציג את כל החלונות הפתוחים ומאפשר למזער אותם לכדי סמל, להצל " @@ -998,7 +998,7 @@ msgstr "מנשק CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1017,7 +1017,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"שגיאה, עליך להתקין יישום כדי לשנות את הגדרות השמע (pavucontol, alsamixer ...‎)" +"שגיאה, עליך להתקין יישום כדי לשנות את הגדרות השמע (pavucontol, alsamixer " +"...‎)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1332,7 +1333,7 @@ msgstr "שם המנשק" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "מצב" @@ -1517,8 +1518,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"לא ניתן לנתח את סטטיסטיקת המנשק מ־'%s'.‏prx_idx = %d; ptx_idx = %d; brx_idx = " -"%d; btx_idx = %d;" +"לא ניתן לנתח את סטטיסטיקת המנשק מ־'%s'.‏prx_idx = %d; ptx_idx = %d; brx_idx =" +" %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1572,141 +1573,141 @@ msgid "Sending/Receiving" msgstr "שולח/מקבל" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "סוללה %d: נטענו %d%%,‏ נותרו %d:%02d עד שתתמלא" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "סוללה %d: נטענו %d%%,‏ נותרו %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "סוללה %d: נטענו %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "לא נמצאו סוללות" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "סוללה חלשה" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "צג הסוללה" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "להסתיר אם אין כלל סוללה" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "פקודת ההתרעה" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "זמן ההתרעה (דקות שנותרו)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "צבע הרקע" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "צבע טעינה 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "צבע טעינה 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "צבע פריקה 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "צבע פריקה 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "עובי המסגרת" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "הצגת מידע מפורט" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "מספר הסוללות למעקב" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "הצגת מצב הסוללה באמצעות ACPI" @@ -1805,15 +1806,15 @@ msgid "[N/A]" msgstr "[לא זמין]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "הזנת מיקום חדש" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "מיקום _חדש:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1827,248 +1828,248 @@ "- מיקוד\n" "שעבורם יש לאחזר את תחזית מזג האוויר." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "עליך לציין מיקום." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "המיקום '%s' לא נמצא!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "העדפות" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "רענון" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "יציאה" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "העדפות מזג האוויר" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "המיקום הנוכחי" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "לא הוגדר" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "ה_גדרה" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "תצוגה" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "שם:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "יחידות:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "מ_טרי (‎°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_אימפריאלי (‎°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "תחזית" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "עדכונים:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "י_דני" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "אוטומטי, _בכל" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "דקות" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "מקור:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_שינוי" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "תנאים נוכחיים עבור %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "מיקום:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "עדכון אחרון:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "מרגיש כמו:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "לחות:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "לחץ אוויר:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "ראות:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "רוח:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "זריחה:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "שקיעה:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "התחזית עבור %s אינה זמינה." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "המיקום לא הוגדר." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "בחיפוש אחר '%s'…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "תוצאות מיקום עבור '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "עיר" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "מדינה" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "המיקום הנוכחי: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "היום: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "מחר: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "תוסף מזג אוויר" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "הצגת תנאי מזג אוויר למיקום מסוים." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2076,19 +2077,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/hr.po lxpanel-0.10.1/po/hr.po --- lxpanel-0.10.0/po/hr.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/hr.po 2021-02-06 21:08:01.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: lxpanel_hr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-09-28 20:47+0000\n" "Last-Translator: Ivica Kolić \n" "Language-Team: \n" -"Language: hr\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1506631641.361068\n" -"X-Pootle-Path: /hr/lxpanel/po/hr.po\n" "X-Pootle-Revision: 215\n" +"X-Pootle-Path: /hr/lxpanel/po/hr.po\n" +"X-POOTLE-MTIME: 1506631641.361068\n" #: ../src/configurator.c:148 msgid "" @@ -87,7 +86,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Autorska prava (C) 2008-2014" #: ../src/panel.c:1379 @@ -128,27 +127,27 @@ msgid "Panel" msgstr "Ploča" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Visina:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Širina:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Lijevo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Desno" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Vrh" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dno" @@ -174,8 +173,8 @@ msgstr "Odjava" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lagani GTK2+ panel za UNIX radne površine\n" #: ../src/main.c:324 @@ -274,7 +273,7 @@ msgstr "Razmak" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Veličina" @@ -655,8 +654,9 @@ msgstr "Tabla sa dugmadima za pokretanje aplikacija" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Traka zadataka prikazuje sve otvorene prozore i dopušta njihovu ikonizaciju, " @@ -991,7 +991,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1329,7 +1329,7 @@ msgstr "Ime sučelja" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stanje" @@ -1569,78 +1569,78 @@ msgid "Sending/Receiving" msgstr "Slanje/Primanje" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterija %d: %d%% napunjeno, %d:%02d do kraja" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterija %d: %d%% napunjeno, %d:%02d preostalo" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Baterija %d: %d%% napunjeno" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1649,64 +1649,64 @@ "\n" "%sTrenutna voltaža:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nisu pronaðene baterije" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Nadzor baterije" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Sakrij ako nema baterije" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Naredba uzbune" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Vrijeme uzbune (minuta preostalo)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Pozadinska boja" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Boja punjenja 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Boja punjenja 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Boja pražnjenja 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Boja pražnjenja 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Širina ruba" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Pokaži proširene informacije" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Sučelje prema monitoru" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Prikaži status baterije koristeći ACPI" @@ -1805,15 +1805,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Unesite novu lokaciju" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nova lokacija:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1822,248 +1822,248 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Morate odrediti lokaciju." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Lokacija '%s' nije nađena!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Osobitosti" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Osvježi" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Završi" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Osobitosti vremena" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Trenutna lokacija" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Postavi" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Zaslon" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Ime:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Mjere:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrički (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Engleski (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognoza vremena" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Ažuriranja:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minute" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Izvor:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "P_romjeni" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Trenutni uvjeti za %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Lokacija:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Zadnje ažuriranje:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Vlažnost:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Tlak:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Vidljivost:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vjetar:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Izlazak sunca:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Zalazak sunca:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prognoza vremena za %s je nedostupna." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Lokacija nije postavljena." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Potraga za '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Grad" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Država" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Trenutno u " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Danas: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Sutra: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Priključak vremena" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Pokaži vremenske uvjete za lokaciju." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2071,19 +2071,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/hu.po lxpanel-0.10.1/po/hu.po --- lxpanel-0.10.0/po/hu.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/hu.po 2021-02-06 21:04:49.000000000 +0000 @@ -4,24 +4,23 @@ # Attila Szervac , 2006-2010. # Zsolt Peter Basak , 2009. # Laszlo Dvornik , 2010. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2016-11-08 16:39+0100\n" "Last-Translator: Peter Czifra \n" "Language-Team: Hungarian \n" -"Language: hu\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.6.10\n" -"X-POOTLE-MTIME: 1432221336.000000\n" -"X-Pootle-Path: /hu/lxpanel/po/hu.po\n" "X-Pootle-Revision: 2332\n" +"X-Pootle-Path: /hu/lxpanel/po/hu.po\n" +"X-POOTLE-MTIME: 1432221336.000000\n" #: ../src/configurator.c:148 msgid "" @@ -94,8 +93,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -135,27 +134,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Magasság:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Szélesség:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Balra" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Jobbra" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Fent" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Lent" @@ -181,8 +180,8 @@ msgstr "Kijelentkezés" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - pehelysúlyú GTK2+ panel UNIX munkaasztalokhoz\n" #: ../src/main.c:324 @@ -283,7 +282,7 @@ msgstr "Távtartó" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Méret" @@ -664,8 +663,9 @@ msgstr "Alkalmazás-indító gombokkal" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Mutatja a megnyitott ablakokat és lehetővé teszi az ikonizálást, " @@ -998,15 +998,15 @@ msgstr "CPUFreq előtétprogram" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "CPU frekvencia megjelenítése, továbbá a kormányzók és a frekvencia " "módosításának lehetővé tétele" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." -msgstr "" -"ALSA (vagy pulseaudio) problémát jelzett. Ellenőrizze a lxpanel logját." +msgstr "ALSA (vagy pulseaudio) problémát jelzett. Ellenőrizze a lxpanel logját." #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 @@ -1335,7 +1335,7 @@ msgstr "A csatoló neve" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Állapot" @@ -1577,22 +1577,22 @@ msgid "Sending/Receiving" msgstr "Küldés/fogadás" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Akkumulátor %d töltöttség: %d%%, még %d:%02d a teljes feltöltésig" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Akkumulátor %d töltöttség: %d%%, még %d:%02d van hátra" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Akkumulátor %d töltöttség: %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1601,7 +1601,7 @@ "\n" "%sTervezett teljes energia:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1610,7 +1610,7 @@ "\n" "%sTeljes energia:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1619,7 +1619,7 @@ "\n" "%sJelenlegi energia:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1628,7 +1628,7 @@ "\n" "%sPillanatnyi teljesítmény:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1637,7 +1637,7 @@ "\n" "%sTeljes tervezett töltés:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1646,7 +1646,7 @@ "\n" "%sTeljes töltés:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1655,7 +1655,7 @@ "\n" "%sPillanatnyi töltés:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1664,7 +1664,7 @@ "\n" "%sPillanatnyi áram:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1673,63 +1673,63 @@ "\n" "%sJelenlegi feszültség:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nem található akkumulátor" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Az akkumulátor gyenge" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Akkumulátor-figyelő" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Elrejtés, ha nincs akkumulátor" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Figyelmeztetés parancs" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Figyelmeztessen, ha a hátralévő idő kevesebb, mint ennyi perc:" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Háttérszín" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Töltési szín 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Töltési szín 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Kisülési szín 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Kisülési szín 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Keret mérete" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Kiterjesztett információk megjelenítése" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "A figyelt akkumulátor száma" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Akkumulátor állapotának kijelzése ACPI segítségével" @@ -1828,15 +1828,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Új hely megadása" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Ú_j hely:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1850,248 +1850,248 @@ "- az irányítószámot,\n" "amelyhez időjárás-előrejelzést szeretne lekérni." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Meg kell adnia egy helyet." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "A(z) „%s” hely nem található!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Beállítások" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Frissítés" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Kilépés" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Időjárás beállításai" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Jelenlegi hely" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Semmi sincs beállítva" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Beállítás" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Megjelenítés" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Név:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Mértékegység:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrikus (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Angol (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Előrejelzés" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Frissítések:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Kézi" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatikus, minden" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "percben" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Forrás:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Módosítás" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Jelenlegi időjárás itt: %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Hely:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Utoljára frissítve:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Hőérzet:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Páratartalom:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Nyomás:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Látási viszonyok:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Szél:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Napkelte:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Napnyugta:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Nem érhető el előrejelzés ehhez: %s." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "A hely nincs beállítva." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "„%s” keresése…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "'%s' találati helyei" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Város" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Ország" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Jelenleg ebben: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Ma: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Holnap: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Időjárás bővítmény" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Időjárási viszonyok megjelenítése egy helyhez." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2099,19 +2099,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/id.po lxpanel-0.10.1/po/id.po --- lxpanel-0.10.0/po/id.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/id.po 2021-02-06 21:02:25.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2018-02-19 02:52+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" -"Language: id\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1519008728.685182\n" -"X-Pootle-Path: /id/lxpanel/po/id.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /id/lxpanel/po/id.po\n" +"X-POOTLE-MTIME: 1519008728.685182\n" #: ../src/configurator.c:148 msgid "" @@ -87,8 +87,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Hak Cipta (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Hak Cipta (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -128,27 +128,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Tinggi:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Lebar:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Kiri" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Kanan" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Atas" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Bawah" @@ -174,8 +174,8 @@ msgstr "Log keluar" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - panel GTK2+ ringan untuk desktop UNIX\n" #: ../src/main.c:324 @@ -274,7 +274,7 @@ msgstr "Ruang" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Ukuran" @@ -655,8 +655,9 @@ msgstr "Batang dengan tombol untuk menjalankan aplikasi" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Batang tugas menampilkan semua jendela terbuka dan izinkan untuk " @@ -896,8 +897,7 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." -msgstr "" -"Klik kiri untuk mengikonkan semua jendela. Klik tengah untuk berbayang." +msgstr "Klik kiri untuk mengikonkan semua jendela. Klik tengah untuk berbayang." #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -992,7 +992,8 @@ msgstr "Frontend CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Menampilkan frekuensi CPU dan mengijinkan mengubah governor dan frekuensi" @@ -1328,7 +1329,7 @@ msgstr "Nama antarmuka" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1513,8 +1514,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Tak dapat mengurai statistik antarmuka dari '%s'. prx_idx = %d; ptx_idx = " -"%d; brx_idx = %d; btx_idx = %d;" +"Tak dapat mengurai statistik antarmuka dari '%s'. prx_idx = %d; ptx_idx = %d;" +" brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1568,22 +1569,22 @@ msgid "Sending/Receiving" msgstr "Mengirim/Menerima" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterai %d: %d%% terisi, %d:%02d sampai penuh" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterai %d: %d%% terisi, %d:%02d tersisa" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Baterai %d: %d%% terisi" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1592,7 +1593,7 @@ "\n" "%sRancangan energi penuh:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1601,7 +1602,7 @@ "\n" "%sEnergi penuh:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1610,7 +1611,7 @@ "\n" "%sEnergi kini:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1619,7 +1620,7 @@ "\n" "%sDaya kini:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1628,7 +1629,7 @@ "\n" "%sRancangan muatan penuh:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1637,7 +1638,7 @@ "\n" "%sMuatan penuh:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1646,7 +1647,7 @@ "\n" "%sMuatan kini:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1655,7 +1656,7 @@ "\n" "%sArus kini:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1664,63 +1665,63 @@ "\n" "%sTegangan kini:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Tak ada baterai yang ditemukan" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Baterai lemah" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor Baterai" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Sembunyikan jika tidak ada baterai" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Perintah alarm" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Waktu alarm (menit tersisa)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Warna latar belakang" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Warna pengisian 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Warna pengisian 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Warna tidak mengisi 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Warna tidak mengisi 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Lebar batas" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Tampilkan Informasi Yang Diperluas" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Banyaknya baterai yang akan dipantau" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Tampilkan status baterai menggunakan ACPI" @@ -1819,15 +1820,15 @@ msgid "[N/A]" msgstr "[T/T]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Masukkan Lokasi Baru" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Lokasi _Baru:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1841,248 +1842,248 @@ "- kode pos\n" "yang ingin diambil prakiraan cuacanya." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Anda mesti menyatakan suatu lokasi." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Lokasi '%s' tak ditemukan!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferensi" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Segarkan" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Keluar" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferensi Cuaca" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Lokasi Kini" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Tak ada yang dikonfigurasi" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Atur" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Tampilan" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nama:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Satuan:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrik (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Inggris (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prakiraan" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Pemutakhiran:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nual" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "Otom_atis, setiap" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "menit" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Sumber:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Uba_h" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Kondisi Kini bagi %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Lokasi:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Terakhir dimutakhirkan:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Terasa seperti:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Kelembaban:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Tekanan:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilitas:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Angin:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Matahari terbit:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Matahari terbenam:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prakiraan bagi %s tak tersedia." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Lokasi belum diatur." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Mencari '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Lokasi yang cocok dengan '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Kota" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Negara" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Sedang di " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Hari ini: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Besok: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Pengaya Cuaca" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Tampilkan kondisi cuaca untuk suatu lokasi." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2090,19 +2091,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/is.po lxpanel-0.10.1/po/is.po --- lxpanel-0.10.0/po/is.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/is.po 2021-02-06 21:07:22.000000000 +0000 @@ -1,25 +1,24 @@ # Icelandic translation for LXPanel package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# # Sveinn í Felli , 2014. msgid "" msgstr "" "Project-Id-Version: LXPanel 0.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-12-08 09:30+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" -"Language: is\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7.0-alpha1\n" -"X-POOTLE-MTIME: 1418031016.000000\n" -"X-Pootle-Path: /is/lxpanel/po/is.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /is/lxpanel/po/is.po\n" +"X-POOTLE-MTIME: 1418031016.000000\n" #: ../src/configurator.c:148 msgid "" @@ -89,7 +88,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Höfundarréttur (C) 2008-2014" #: ../src/panel.c:1379 @@ -130,27 +129,27 @@ msgid "Panel" msgstr "Skjástika" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Hæð:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Breidd:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vinstri" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Hægri" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Efst" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Neðst" @@ -176,8 +175,8 @@ msgstr "Skrá út" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - létt GTK2+ skjástika fyrir UNIX skjáborð\n" #: ../src/main.c:324 @@ -278,7 +277,7 @@ msgstr "Bil" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Stærð" @@ -659,8 +658,9 @@ msgstr "Slá með hnöppum til að ræsa forrit" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Verkefnaslá birtir alla opna glugga og leyfir að tákngera þá, skyggja, eða " @@ -995,7 +995,8 @@ msgstr "Viðmót á CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Sýna tíðni örgjörva og leyfa að breytt sé um stýringar og tíðnir" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1332,7 +1333,7 @@ msgstr "Heiti netkortsins" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Staða" @@ -1572,22 +1573,25 @@ msgid "Sending/Receiving" msgstr "Sendi/Móttek" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Rafhlaða: %d%% hlaðin, %d:%02d þar til fullhlaðin" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Rafhlaða: %d%% hlaðin, %d:%02d eftir" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Rafhlaða: %d%% hlaðin" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1596,7 +1600,7 @@ "\n" "%sFullt afl (skv. framl.):\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1605,7 +1609,7 @@ "\n" "%sFullt afl:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1614,7 +1618,7 @@ "\n" "%sAfl núna:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1623,7 +1627,7 @@ "\n" "%sAfl núna:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1632,7 +1636,7 @@ "\n" "%sFull hleðsla (skv. framl.):\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1641,7 +1645,7 @@ "\n" "%sFull hleðsla:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1650,7 +1654,7 @@ "\n" "%sHleðsla núna:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1659,7 +1663,7 @@ "\n" "%sStraumur núna:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1668,64 +1672,64 @@ "\n" "%sVolt núna:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Fann engar rafhlöður" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Lítið á rafhlöðu" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Rafhlöðueftirlit" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Fela ef það er engin rafhlaða" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Áminningarskipun" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Tími áminningar (mínútur eftir)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Bakgrunnslitur" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Hleðslulitur 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Hleðslulitur 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Afhleðslulitur 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Afhleðslulitur 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Breidd jaðars" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Birta ítarlegar upplýsingar" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Tengi sem á að fylgjast með" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Birta stöðu rafhlöðu með ACPI" @@ -1824,15 +1828,15 @@ msgid "[N/A]" msgstr "[Ekki tiltækt]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Settu inn nýja staðsetningu" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Ný staðsetning:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1846,248 +1850,248 @@ "- póstnúmer\n" "þess staðar sem á að ná í veðurspá fyrir." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Þú verður að tiltaka staðsetningu." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Staðsetningin '%s' fannst ekki!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Kjörstillingar" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Endurlesa" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Hætta" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Veðurstillingar" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Núverandi staðsetning" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ekkert stillt" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Setja" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Birting" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Heiti:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Mælieiningar:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrakerfi (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Enskar (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Spár" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Uppfærslur:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ha_ndvirkt" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "S_jálfvirkt á" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "mínútna fresti" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Heimild:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Bre_yta" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Veðurskilyrði á %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Staðsetning:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Síðast uppfært:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Með vindkælingu:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Rakastig:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Þrýstingur:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Skyggni:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vindhraði:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Sólarupprás:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Sólsetur:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Spá fyrir %s er ekki tiltæk." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Staðsetning var ekki skilgreind." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Leita að '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Samsvarandi staðir fyrir '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Borg" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Núna í " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Í dag: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Á morgun: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Viðbótaríforrit fyrir veðurlýsingar/spár" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Birta veðurslýsingu fyrir ákveðinn stað." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2095,18 +2099,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/it.po lxpanel-0.10.1/po/it.po --- lxpanel-0.10.0/po/it.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/it.po 2021-02-06 21:03:43.000000000 +0000 @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: lxpanel 0.3.99\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2016-10-26 00:40+0200\n" "Last-Translator: Daniele Forsi \n" "Language-Team: \n" -"Language: it\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -89,8 +89,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright © 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright © 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -130,27 +130,27 @@ msgid "Panel" msgstr "Pannello" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altezza:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Larghezza:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Sinistra" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Destra" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Superiore" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Inferiore" @@ -176,8 +176,8 @@ msgstr "Chiudi sessione" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - pannello GTK2+ leggero per desktop UNIX\n" #: ../src/main.c:324 @@ -278,7 +278,7 @@ msgstr "Spaziatore" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Dimensione" @@ -664,8 +664,9 @@ msgstr "Barra con pulsanti per avviare applicazioni" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "La barra delle applicazioni mostra tutte le finestre aperte e permette di " @@ -1002,7 +1003,8 @@ msgstr "Interfaccia CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Mostra la frequenza della CPU e permette di cambiare «governor» e frequenza" @@ -1021,8 +1023,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Errore: è necessario installare un'applicazione per configurare il suono " -"(pavucontrol, alsamixer ...)" +"Errore: è necessario installare un'applicazione per configurare il suono (" +"pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1338,7 +1340,7 @@ msgstr "Nome dell'interfaccia" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stato" @@ -1578,22 +1580,22 @@ msgid "Sending/Receiving" msgstr "In invio/ricezione" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batteria %d: %d%% carica, %d:%02d alla carica completa" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batteria %d: %d%% carica, %d:%02d rimanenti" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batteria %d: %d%% carica" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1602,7 +1604,7 @@ "\n" "%sEnergia massima teorica:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1611,7 +1613,7 @@ "\n" "%sEnergia massima:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1620,7 +1622,7 @@ "\n" "%sEnergia ora:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1629,7 +1631,7 @@ "\n" "%sPotenza ora:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1638,7 +1640,7 @@ "\n" "%sCarica massima teorica:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1647,7 +1649,7 @@ "\n" "%sCarica massima:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1656,7 +1658,7 @@ "\n" "%sCarica ora:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1665,7 +1667,7 @@ "\n" "%sCorrente ora:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1674,63 +1676,63 @@ "\n" "%sVoltaggio corrente:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nessuna batteria rilevata" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Batteria quasi scarica" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor batteria" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Nascondi se non ci sono batterie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Comando di allarme" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Tempo allarme (minuti restanti)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Colore sfondo" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Colore 1 ricarica" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Colore 2 ricarica" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Colore 1 scarica" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Colore 2 scarica" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Larghezza bordo" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Mostra informazioni dettagliate" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Numero della batteria da monitorare" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Mostra stato batteria tramite ACPI" @@ -1829,15 +1831,15 @@ msgid "[N/A]" msgstr "[N/D]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Inserire una nuova località" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nuova località:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1851,248 +1853,248 @@ "- il codice postale\n" "di cui recuperare le previsioni del tempo." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "È necessario specificare una località." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Località «%s» non trovata!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferenze" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Aggiorna" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Esci" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferenze delle condizioni meteo" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Località corrente" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Non configurata" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "Impo_sta" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Visualizzazione" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "_Nome:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unità:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metriche (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "Ingl_esi (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Previsioni" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Aggiornamenti:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuali" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatici, ogni" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minuti" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Fonte:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Camb_ia" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condizioni attuali per %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Località:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Ultimo aggiornamento:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Percepita:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Umidità:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pressione:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilità:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vento:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Alba:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Tramonto:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Previsioni non disponibili per %s." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Località non impostata." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Ricerca di «%s»..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Località corrispondenti a «%s»" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Città" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Nazione" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Attualmente " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Oggi: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Domani: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Plugin per le previsioni del tempo" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Mostra le condizioni meteo per una località." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2100,19 +2102,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ja.po lxpanel-0.10.1/po/ja.po --- lxpanel-0.10.0/po/ja.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/ja.po 2021-02-06 21:06:48.000000000 +0000 @@ -8,27 +8,25 @@ msgstr "" "Project-Id-Version: lxpanel 0.5.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-23 07:06+0000\n" "Last-Translator: Mamoru TASAKA \n" "Language-Team: Japanese \n" -"Language: ja\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1550905593.535770\n" -"X-Pootle-Path: /ja/lxpanel/po/ja.po\n" "X-Pootle-Revision: 1332\n" +"X-Pootle-Path: /ja/lxpanel/po/ja.po\n" +"X-POOTLE-MTIME: 1550905593.535770\n" #: ../src/configurator.c:148 msgid "" "Space reservation is not available for this panel because there is another " "monitor beyond this edge and reservation would cover it if enabled." -msgstr "" -"他のモニタがこの端に重なっており使用を予約してあるため、このパネルのスペース" -"を使用することができません。" +msgstr "他のモニタがこの端に重なっており使用を予約してあるため、このパネルのスペースを使用することができません。" #: ../src/configurator.c:632 msgid "Currently loaded plugins" @@ -92,7 +90,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +#, fuzzy +msgid "Copyright (C) 2008-2021" msgstr "Copyright (C) 2008-2019" #: ../src/panel.c:1379 @@ -133,27 +132,27 @@ msgid "Panel" msgstr "パネル" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "高さ:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "幅:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "左" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "右" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "上" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "下" @@ -179,8 +178,8 @@ msgstr "ログアウト" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX デスクトップのための軽量な GTK2+ パネル\n" #: ../src/main.c:324 @@ -252,9 +251,7 @@ #: ../src/input-button.c:228 #, c-format msgid "Key combination '%s' cannot be used as a global hotkey, sorry." -msgstr "" -"申し訳ありませんが、キー組み合わせ '%s' はグローバルホットキーとして使用でき" -"ません。" +msgstr "申し訳ありませんが、キー組み合わせ '%s' はグローバルホットキーとして使用できません。" #: ../src/input-button.c:231 ../src/input-button.c:415 #: ../plugins/netstatus/netstatus-iface.c:191 @@ -274,16 +271,14 @@ #: ../src/input-button.c:413 #, c-format msgid "Cannot assign '%s' as a global hotkey: it is already bound." -msgstr "" -"'%s' をグローバルホットキーとして割り当てることができません: すでに使用されて" -"います。" +msgstr "'%s' をグローバルホットキーとして割り当てることができません: すでに使用されています。" #: ../src/space.c:394 ../src/space.c:403 msgid "Spacer" msgstr "空白" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "大きさ" @@ -664,18 +659,15 @@ msgstr "アプリケーションを呼び出すボタンのついたバー" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" -msgstr "" -"タスクバーは開いているすべてのウィンドウを表示し、最小化やシェード化、フォー" -"カスの移動を可能にします" +msgstr "タスクバーは開いているすべてのウィンドウを表示し、最小化やシェード化、フォーカスの移動を可能にします" #: ../plugins/launchtaskbar.c:2483 msgid "Bar with buttons to launch application and/or show all opened windows" -msgstr "" -"アプリケーションを呼び出すボタンやウィンドウのリストを表示するボタンのついた" -"バー" +msgstr "アプリケーションを呼び出すボタンやウィンドウのリストを表示するボタンのついたバー" #. Add Raise menu item. #: ../plugins/task-button.c:352 @@ -789,8 +781,7 @@ #: ../plugins/pager.c:141 msgid "Sorry, there was no window manager configuration program found." -msgstr "" -"申し訳ありませんが、ウィンドウマネージャーの設定プログラムが見つかりません。" +msgstr "申し訳ありませんが、ウィンドウマネージャーの設定プログラムが見つかりません。" #: ../plugins/pager.c:193 ../plugins/pager.c:209 msgid "Desktop Pager" @@ -906,8 +897,7 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." -msgstr "" -"左クリックですべてのウィンドウを最小化し、 中クリックでシェード化します。" +msgstr "左クリックですべてのウィンドウを最小化し、 中クリックでシェード化します。" #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -1002,14 +992,13 @@ msgstr "CPUFreq フロントエンド" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "CPU の動作周波数を表示し、またその変更ができます" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." -msgstr "" -"ALSA(または pluseaudio)に問題が起きました。lxpanelのログを確認してくださ" -"い。" +msgstr "ALSA(または pluseaudio)に問題が起きました。lxpanelのログを確認してください。" #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 @@ -1021,9 +1010,7 @@ msgid "" "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" -msgstr "" -"エラー、音量設定のためのアプリケーションが別途必要になります。(pavucontrol, " -"alsamixer ...)" +msgstr "エラー、音量設定のためのアプリケーションが別途必要になります。(pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1337,7 +1324,7 @@ msgstr "インタフェース名" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "状態" @@ -1522,8 +1509,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"'%s' からインタフェース統計をパースできません。prx_idx = %d; ptx_idx = %d; " -"brx_idx = %d; btx_idx = %d;" +"'%s' からインタフェース統計をパースできません。prx_idx = %d; ptx_idx = %d; brx_idx = %d; btx_idx =" +" %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1577,22 +1564,22 @@ msgid "Sending/Receiving" msgstr "送信/受信" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "バッテリ %d: 残量%d%%、充電完了まで %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "バッテリ %d: 残量 %d%%、残り %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "バッテリ %d: 残量 %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1601,7 +1588,7 @@ "\n" "%s設計上の最大電力量:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1610,7 +1597,7 @@ "\n" "%s最大電力量:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1619,7 +1606,7 @@ "\n" "%s現在の電力量:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1628,7 +1615,7 @@ "\n" "%s現在の電力:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1637,7 +1624,7 @@ "\n" "%s設計上の最大充電容量:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1646,7 +1633,7 @@ "\n" "%s満充電:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1655,7 +1642,7 @@ "\n" "%s現在の充電容量:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1664,7 +1651,7 @@ "\n" "%s現在の電流:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1673,63 +1660,63 @@ "\n" "%s現在の電圧:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "バッテリが見つかりません" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "バッテリ残量が低下" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "バッテリモニタ" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "バッテリがないときは隠す" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "アラームのコマンド" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "アラームの時間 (分単位で)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "背景色" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "残量の色 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "残量の色 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "放電の色 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "放電の色 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "境界の幅" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "さらなる情報を表示" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "監視する電源の数" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "バッテリの状態を ACPI で表示します" @@ -1828,15 +1815,15 @@ msgid "[N/A]" msgstr "[不明]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "新しい地点を入力する" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "新しい地点(_N)" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1850,248 +1837,248 @@ "- 郵便番号\n" "これらは天気予報を再取得するのに使用します・" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "地点を入力する必要があります。" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "'%s' という地名は見つかりません!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "設定" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "更新" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "終了" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "天気予報の設定" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "現在の地点" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "未設定" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "設定(_S)" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "表示" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "名前:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "単位:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "メートル法(°C) (_M)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "英米(°F) (_E)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "予報" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "更新:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "手動(_N)" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "定時(_A)" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "分" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "情報元:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "変更(_H)" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "現在の %s の状況" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "地点:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "更新時刻:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "体感:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "湿度:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "気圧:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "視界:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "風:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "日昇:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "日没:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "%s の天気予報は取得できません。" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "地点が設定されていません。" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' を検索中..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "'%s' に合致する地点" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "都市" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "国名" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "現在地 " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "今日: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "明日: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "天気予報プラグイン" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "気象状況を表示します。" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "北" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "北北東" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "北東" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "東北東" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "東" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "東南東" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "南東" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "南南東" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "南" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "南南西" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "南西" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "西南西" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "西" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "西北西" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "北西" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "北北西" @@ -2099,19 +2086,19 @@ msgid "Yahoo! Weather" msgstr "Yahoo! 天気" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "マイル毎時" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "OpenWeatherMap" diff -Nru lxpanel-0.10.0/po/kk.po lxpanel-0.10.1/po/kk.po --- lxpanel-0.10.0/po/kk.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/kk.po 2021-02-06 21:03:07.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-25 16:59+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" -"Language: kk\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495731571.601482\n" -"X-Pootle-Path: /kk/lxpanel/po/kk.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /kk/lxpanel/po/kk.po\n" +"X-POOTLE-MTIME: 1495731571.601482\n" #: ../src/configurator.c:148 msgid "" @@ -86,8 +86,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Құқықтары қорғалған (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Құқықтары қорғалған (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -127,27 +127,27 @@ msgid "Panel" msgstr "Панель" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Биіктігі:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Ені:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Сол жақ" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Оң жақ" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Жоғары" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Төмен" @@ -173,8 +173,8 @@ msgstr "Жүйеден шығу" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX жұмыс үстелдері үшін жеңіл GTK2+ панелі\n" #: ../src/main.c:324 @@ -276,7 +276,7 @@ msgstr "Ажыратқыш" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Өлшемі" @@ -657,8 +657,9 @@ msgstr "Қолданбаларды жөнелту үшін батырмалары бар панель" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Тапсырмалар жолағы барлық ашық терезелерді көрсетеді, және оларды көлеңкелеу " @@ -995,7 +996,8 @@ msgstr "CPUFreq фронтенді" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Процессор жиілігін көрсетеді, режимін және жиілігін өзгерту мүмкіндігін " "береді" @@ -1331,7 +1333,7 @@ msgstr "Интерфейс аты" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Күйі" @@ -1516,8 +1518,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"'%s' үшін интерфейс статистикасын талдау мүмкін емес. prx_idx = %d; ptx_idx " -"= %d; brx_idx = %d; btx_idx = %d;" +"'%s' үшін интерфейс статистикасын талдау мүмкін емес. prx_idx = %d; ptx_idx =" +" %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1571,22 +1573,22 @@ msgid "Sending/Receiving" msgstr "Жіберу/Алу" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батарея %d: заряды %d%%, %d:%02d толғанша дейін" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батарея %d: заряды %d%%, %d:%02d қалды" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Батарея %d: заряды %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1595,7 +1597,7 @@ "\n" "%sТолық энергия (дизайн):\t\t%5d мВт*сағ" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1604,7 +1606,7 @@ "\n" "%sТолық энергия:\t\t\t%5d мВт*сағ" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1613,7 +1615,7 @@ "\n" "%sАғымдағы энергиясы:\t\t\t%5d мВт*сағ" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1622,7 +1624,7 @@ "\n" "%sАғымдағы қорегі:\t\t\t%5d мВт" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1631,7 +1633,7 @@ "\n" "%sТолық заряд (дизайн):\t%5d мА*сағ" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1640,7 +1642,7 @@ "\n" "%sТолық заряд:\t\t\t%5d мА*сағ" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1649,7 +1651,7 @@ "\n" "%sАғымдағы заряд:\t\t\t%5d мА*сағ" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1658,7 +1660,7 @@ "\n" "%sАғымдағы ток:\t\t\t%5d мА" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1667,63 +1669,63 @@ "\n" "%sАғымдағы кернеу:\t\t%.3lf В" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Батареялар табылмады" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Батарея заряды аз" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Батарея бақылаушысы" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Батарея болмаса, жасыру" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Ескерту командасы" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Ескерту уақыты (минут қалды)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Фон түсі" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Зарядталу түсі 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Зарядталу түсі 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Заряд беру түсі 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Заряд беру түсі 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Шек ені" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Кеңейтілген ақпаратты көрсету" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Бақылау үшін батарея нөмірі" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Батарея күйін ACPI көмегімен көрсету" @@ -1822,15 +1824,15 @@ msgid "[N/A]" msgstr "[Қолжетерсіз]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Жаңа орналасуды енгізіңіз" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "Жаңа ор_наласу:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1843,248 +1845,248 @@ "- қала және штат/ел, немесе\n" "- пошта индесі." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Орналасуды көрсетуіңіз керек." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "'%s' орналасуы табылмады!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Баптаулар" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Жаңарту" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Шығу" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Ауа райы баптаулары" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Ағымдағы орналасу" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ешбірі бапталмаған" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "Ор_нату" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Көрсету" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Аты:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Өлшем бірліктері:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Метрлік (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "Ағ_ылшын (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Болжам" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Жаңартулар:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Қолме_н" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Автоматты түрде, әр" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "минут" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Көзі:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Ө_згерту" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s үшін ағымдағы күйі" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Орналасу:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Соңғы жаңартылған:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Сезіледі:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Ылғалдылық:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Қысым:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Көріну:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Жел:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Күннің шығуы:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Күннің батуы:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "%s үшін болжам қолжетерсіз." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Орналасу көрсетілмеген." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' іздеу..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "'%s' үшін сәйкес орналасулар" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Қала" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Ел" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Ағымдағы " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Бүгін: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Ертең: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Ауа райы плагині" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Орналасу үшін ауа райы күйін көрсету." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2092,19 +2094,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/km.po lxpanel-0.10.1/po/km.po --- lxpanel-0.10.0/po/km.po 2019-02-21 23:24:15.000000000 +0000 +++ lxpanel-0.10.1/po/km.po 2021-02-06 21:06:07.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-12-02 11:44+0000\n" "Last-Translator: system user <>\n" "Language-Team: LANGUAGE \n" -"Language: km\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7.0-alpha1\n" -"X-POOTLE-MTIME: 1417520680.000000\n" -"X-Pootle-Path: /km/lxpanel/po/km.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /km/lxpanel/po/km.po\n" +"X-POOTLE-MTIME: 1417520680.000000\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ msgstr "" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "កំពស់:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "ទទឹង:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "ខាងឆ្វេង" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ខាងស្ដាំ" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "ខាងលើ" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "ខាងក្រោម" @@ -174,7 +173,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -273,7 +272,7 @@ msgstr "" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "" @@ -664,7 +663,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -995,7 +994,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1165,13 +1164,15 @@ #: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375 #: ../plugins/netstat/netstat.c:386 +#, fuzzy msgid "Sent" -msgstr "" +msgstr "បាន​ផ្ញើ:" #: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375 #: ../plugins/netstat/netstat.c:386 +#, fuzzy msgid "Received" -msgstr "" +msgstr "បាន​ទទួល:" #: ../plugins/netstat/netstat.c:364 ../plugins/netstat/netstat.c:376 #: ../plugins/netstat/netstat.c:387 @@ -1311,15 +1312,16 @@ msgstr "" #: ../plugins/netstatus/netstatus-iface.c:148 +#, fuzzy msgid "Name" -msgstr "" +msgstr "_ឈ្មោះ:" #: ../plugins/netstatus/netstatus-iface.c:149 msgid "The interface name" msgstr "" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "" @@ -1557,141 +1559,141 @@ msgid "Sending/Receiving" msgstr "" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "" @@ -1791,15 +1793,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1808,252 +1810,253 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "បន្ទះ​ចំណង់​ចំណួល​ចិត្ត" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "បន្ទះ​ចំណង់​ចំណួល​ចិត្ត" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "កំណត់រចនាសម្ព័ន្ធ" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_ឈ្មោះ:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "ពាក្យ​បញ្ជា​ចេញ​មិន​ទាន់​បាន​កំណត់" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2061,19 +2064,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ko.po lxpanel-0.10.1/po/ko.po --- lxpanel-0.10.0/po/ko.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/ko.po 2021-02-06 21:05:52.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) 2009-2012 Frer software foundation Inc. # This file is distributed under the same license as the lxtask package. # Seong-ho Cho , 2012. -# msgid "" msgstr "" "Project-Id-Version: lxtask\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-12-02 11:45+0000\n" "Last-Translator: system user <>\n" "Language-Team: Seong-ho Cho \n" -"Language: ko\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7.0-alpha1\n" -"X-POOTLE-MTIME: 1417520711.000000\n" -"X-Pootle-Path: /ko/lxpanel/po/ko.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ko/lxpanel/po/ko.po\n" +"X-POOTLE-MTIME: 1417520711.000000\n" #: ../src/configurator.c:148 msgid "" @@ -86,7 +85,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Copyright (C) 2008-2014" #: ../src/panel.c:1379 @@ -127,27 +126,27 @@ msgid "Panel" msgstr "패널" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "높이:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "너비:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "왼쪽" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "오른쪽" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "위" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "아래" @@ -173,8 +172,8 @@ msgstr "로그아웃" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - 유닉스 데스크톱의 가벼운 GTK2+ 패널\n" #: ../src/main.c:324 @@ -276,7 +275,7 @@ msgstr "공백" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "크기" @@ -657,12 +656,11 @@ msgstr "프로그램을 실행할 단추 표시줄" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" -msgstr "" -"작업 표시줄은 모든 열려있는 창을 보여주며 아이콘 표시, 말아올리기, 창 선택을 " -"하도록 해줍니다" +msgstr "작업 표시줄은 모든 열려있는 창을 보여주며 아이콘 표시, 말아올리기, 창 선택을 하도록 해줍니다" #: ../plugins/launchtaskbar.c:2483 msgid "Bar with buttons to launch application and/or show all opened windows" @@ -896,9 +894,7 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." -msgstr "" -"모든 창을 아이콘 표시하려면 왼쪽 단추를 누릅니다. 이들을 가리려면 가운데 단추" -"를 누릅니다." +msgstr "모든 창을 아이콘 표시하려면 왼쪽 단추를 누릅니다. 이들을 가리려면 가운데 단추를 누릅니다." #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -993,7 +989,8 @@ msgstr "CPUFreq 프론트엔드" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "CPU 주파수를 표시하고 정책과 주파수를 조절할 수 있도록 합니다" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1010,9 +1007,7 @@ msgid "" "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" -msgstr "" -"오류가 발생했습니다. 음성을 설정할 프로그램(pavucontrol, alsamixer...)을 설치" -"해야 합니다" +msgstr "오류가 발생했습니다. 음성을 설정할 프로그램(pavucontrol, alsamixer...)을 설치해야 합니다" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1328,7 +1323,7 @@ msgstr "인터페이스 이름" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "상태" @@ -1513,8 +1508,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"'%s'(으)로부터 인터페이스 통계를 해석할 수 없습니다. prx_idx = %d; ptx_idx = " -"%d; brx_idx = %d; btx_idx = %d;" +"'%s'(으)로부터 인터페이스 통계를 해석할 수 없습니다. prx_idx = %d; ptx_idx = %d; brx_idx = %d; " +"btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1568,22 +1563,25 @@ msgid "Sending/Receiving" msgstr "보냄/받음" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "배터리: %d%% 충전함, 완충 %d:%02d 전" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "배터리: %d%% 충전함, %d:%02d 남음" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "배터리: %d%% 충전함" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1592,7 +1590,7 @@ "\n" "%s 에너지 완전 소비 설계:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1601,7 +1599,7 @@ "\n" "%s 에너지 완전 소비:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1610,7 +1608,7 @@ "\n" "%s 에너지 현재 소비:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1619,7 +1617,7 @@ "\n" "%s 전력 현재 소비:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1628,7 +1626,7 @@ "\n" "%s 완충 설계:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1637,7 +1635,7 @@ "\n" "%s 완충:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1646,7 +1644,7 @@ "\n" "%s 현재 충전량:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1655,7 +1653,7 @@ "\n" "%s 현재 전류:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1664,65 +1662,65 @@ "\n" "%s 현재 전압:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "배터리가 없음" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "배터리 감시기" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "배터리 감시기" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "배터리가 없으면 숨김" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "알림 명령" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "알림 시간(남은 분)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "배경 색" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "충전 색 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "충전 색 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "방전 색 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "방전 색 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "데투리 두께" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "추가 정보 표시" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "감시할 인터페이스" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI를 사용하여 배터리 상태를 보여줍니다" @@ -1821,15 +1819,15 @@ msgid "[N/A]" msgstr "[없음]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "새 위치를 입력하십시오" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "새 위치(_N):" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1843,248 +1841,248 @@ "- 우편번호\n" "를 활용하여 날씨 예보 정보를 가져옵니다." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "위치를 지정해야 합니다." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "'%s' 위치가 없습니다!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "기본 설정" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "새로 고침" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "나가기" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "날씨 기본 설정" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "현재 위치" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "설정하지 않음" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "설정(_S)" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "표시" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "이름:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "단위:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "미터법(°C)(_M)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "영국식(°F)(_E)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "예보" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "업데이트:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "수동(_N)" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "다음 시간마다 자동(_A)" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "분" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "공급원:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "바꾸기(_H)" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s의 현재 상태" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "위치:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "최종 업데이트:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "체감:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "습도:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "기압:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "가시도:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "바람:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "일출:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "일몰:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "%s 예보 정보가 없습니다." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "위치를 설정하지 않았습니다." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' 정보 검색 중..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "'%s'에 일치하는 위치" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "도시" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "국가" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "현재 " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "오늘: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "내일: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "날씨 플러그인" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "지정 위치의 날씨를 표시합니다." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2092,19 +2090,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/lg.po lxpanel-0.10.1/po/lg.po --- lxpanel-0.10.0/po/lg.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/lg.po 2021-02-06 21:03:02.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: lxpanel 0.5.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-11-24 16:59+0000\n" "Last-Translator: \n" "Language-Team: Luganda \n" -"Language: lg\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1416848373.000000\n" -"X-Pootle-Path: /lg/lxpanel/po/lg.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /lg/lxpanel/po/lg.po\n" +"X-POOTLE-MTIME: 1416848373.000000\n" #: ../src/configurator.c:148 msgid "" @@ -87,7 +87,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Buyinza bw'ebikugizo eby'obwa nannyini (C) 2008-2014" #: ../src/panel.c:1379 @@ -128,27 +128,27 @@ msgid "Panel" msgstr "Lubaawo" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Obugulumivu:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Obuwanvu:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Ku kkono" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Ku ddyo" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Waggulu" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Wansi" @@ -174,8 +174,8 @@ msgstr "Komya olutuula" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" "lxpanel %s - Lubaawo lwa ku kompyuta ez'oluse lwa UNIX olutanyunyunta " "kompyuta olweyambisa GTK2+\n" @@ -191,8 +191,8 @@ #, c-format msgid " --help -- print this help and exit\n" msgstr "" -" --help -- kano kakireetera okukoma ku kuwandika obuyambi buno " -"bw'osoma\n" +" --help -- kano kakireetera okukoma ku kuwandika obuyambi buno bw'" +"osoma\n" #: ../src/main.c:326 #, c-format @@ -284,7 +284,7 @@ msgstr "Kabanga" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Bunene" @@ -668,8 +668,9 @@ msgstr "Kabaawo akagendako mapeesa agatandika puloguramu" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Akabaawo k'emirimu kakulaga amadirisa agaliwo. Osobola okukakozesa " @@ -1010,7 +1011,8 @@ msgstr "Puloguramu efuga CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Kino kikulaga obwangu ekitundu kibazi kwekikolera era ne kikusobozesa " "okubukyusa n'okukyusa puloguramu ebufuga" @@ -1351,7 +1353,7 @@ msgstr "Erinnya ly'ensisinkano" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Embeera" @@ -1597,22 +1599,25 @@ msgid "Sending/Receiving" msgstr "Kusindika/Kufuna" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Amanda: gatuuse ku %d%%, ebulayo %d:%02d gajjule" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Amanda: gatuuse ku %d%%; ebulayo %d:%02d gaggwemu" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Amanda: Gatuuse ku %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1621,7 +1626,7 @@ "\n" "%sObungi b'wamasanyalaze eryanda ge lyakolebwa okutereka:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1630,7 +1635,7 @@ "\n" "%sBungi bw'amasanyalaze agaterekedwa:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1639,7 +1644,7 @@ "\n" "%sBungi bw'amasanyalaze agasigaddemu:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1648,7 +1653,7 @@ "\n" "%sMaanyi kwegakolera kaakano:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1657,7 +1662,7 @@ "\n" "%sObungi b'wamasanyalaze eryanda ge lyakolebwa okutereka:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1666,7 +1671,7 @@ "\n" "%sBungi bw'amasanyalaze agaterekedwa:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1675,7 +1680,7 @@ "\n" "%sBungi bw'amasanyalaze agasigaddemu:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1684,7 +1689,7 @@ "\n" "%sObwangu kwegakozesebwa kaakano:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1693,64 +1698,64 @@ "\n" "%sEryanyi ly'amasanyalaze kaakano:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Tewali manda" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Manda gakenedde" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Ekirabiriza manda" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ekirabiriza kikise bwe watabawo manda" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Ekiragiro ekifuga akajjukiza" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Obudde obusigadde okufuna akajjukiza (ddakiika)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Langi ey'oku bwaliriro" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Langi ya kuzamu manda 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Langi ya kuzamu manda 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Langi ya kunywa manda 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Langi ya kunywa manda 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Buggumivu bw'olukoboze olwetoolola njegoyego" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Birage mu bujjuvu" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Ensisinkano erabirizibwa" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Kozesa ACPI okulaga mbeera y'amanda" @@ -1849,15 +1854,15 @@ msgid "[N/A]" msgstr "[T/W]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Tegeka kifo kipya" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Kifo Kipya:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1871,248 +1876,248 @@ "- namba za posita\n" "gy'oyagala okumanya ebifa ku mbeera y'obudde." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "kyetaagisa olage ekifo." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Ekifo '%s' kimbuze!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Enteekateeka" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Damu okukebera" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Mala" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Nteekateeka y'eby'okukebera eby'embeera y'obudde" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Ekifo ekitegekedwa kakati" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Tewali kitegekedwa" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Tegeka" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Birage" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Linnya:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Bipimo:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Meturici (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Kingereza (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Ebisuubirwa" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Ngeri ya kukebera ebijja:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Gira_girenga okukebera" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Yelagirenga okubera ebijja, oluvanyuma lwa buli" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "ddakiika" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Ennono:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "K_yusa" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Embeera y'obudde e %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Kifo:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Ebijja byasemba kukeberwa nga:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Buwulirika nga:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Lubugumu:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Erikkatizi:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Okulaba:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Mbuyaga:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Njuba kuva yo:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Njuba kubulirayo:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Eby'e %s tebifunise." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Totegese kifo." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Nnoonya eby'e '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Ebifo ebiyinza okuba '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Kibuga" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Nsi" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Kaakano e " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Olwaleero: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Nkya: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Ekyongerwako eky'eby'embeera y'obudde" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Kikulaga ebifa ku mbeera y'obudde mu kifo ky'oba olonze." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2120,19 +2125,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/lt.po lxpanel-0.10.1/po/lt.po --- lxpanel-0.10.0/po/lt.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/lt.po 2021-02-06 21:05:33.000000000 +0000 @@ -7,20 +7,20 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-10-03 08:36+0000\n" "Last-Translator: Moo \n" "Language-Team: Lietuvių <>\n" -"Language: lt\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1507019800.579203\n" -"X-Pootle-Path: /lt/lxpanel/po/lt.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /lt/lxpanel/po/lt.po\n" +"X-POOTLE-MTIME: 1507019800.579203\n" #: ../src/configurator.c:148 msgid "" @@ -91,8 +91,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Autorių teisės (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Autorių teisės (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -132,27 +132,27 @@ msgid "Panel" msgstr "Skydelis" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Aukštis:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Plotis:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Kairė" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Dešinė" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Viršus" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Apačia" @@ -178,8 +178,8 @@ msgstr "Atsijungti" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" "lxpanel %s - supaprastintas GTK2+ skydelis, skirtas UNIX darbalaukiams\n" @@ -283,7 +283,7 @@ msgstr "Tarpiklis" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Dydis" @@ -666,8 +666,9 @@ msgstr "Juosta su mygtukais, skirtais paleisti programas" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Užduočių juosta rodo visus atvertus langus ir leidžia juos suskleisti, " @@ -1004,7 +1005,8 @@ msgstr "CpuFreq grafinė sąsaja" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Rodo procesoriaus dažnį ir leidžia keisti reguliatorius ir dažnį" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1023,8 +1025,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Klaida, norint konfigūruoti garsą, turite įdiegti tam skirtą programą " -"(pavucontrol, alsamixer ...)" +"Klaida, norint konfigūruoti garsą, turite įdiegti tam skirtą programą (" +"pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1340,7 +1342,7 @@ msgstr "Sąsajos pavadinimas" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Būsena" @@ -1581,22 +1583,22 @@ msgid "Sending/Receiving" msgstr "Siunčiama/Gaunama" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterija %d: %d%% įkrauta, %d:%02d iki pilnos" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterija %d: %d%% įkrauta, liko %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Baterija %d: %d%% įkrauta" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1605,7 +1607,7 @@ "\n" "%sDaugiausiai energijos pagal projektavimą:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1614,7 +1616,7 @@ "\n" "%sDaugiausiai energijos:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1623,7 +1625,7 @@ "\n" "%sŠiuo metu energijos:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1632,7 +1634,7 @@ "\n" "%sŠiuo metu galios:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1641,7 +1643,7 @@ "\n" "%sDidžiausia įkrova pagal projektavimą:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1650,7 +1652,7 @@ "\n" "%sDidžiausia įkrova:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1659,7 +1661,7 @@ "\n" "%sDabartinė įkrova:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1668,7 +1670,7 @@ "\n" "%sŠiuo metu el. srovė:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1677,63 +1679,63 @@ "\n" "%sDabartinė įtampa:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Baterijų nerasta" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Baigiasi baterija" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Baterijos prižiūryklė" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Slėpti, jeigu nėra baterijos" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Įspėjimo komanda" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Įspėjimo laikas (liko minučių)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Fono spalva" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Įkrovimo spalva 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Įkrovimo spalva 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Iškrovimo spalva 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Iškrovimo spalva 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Rėmelio plotis" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Rodyti išplėstinę informaciją" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Baterijos, kurią stebėti, numeris" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Rodo baterijos buseną, naudojant ACPI" @@ -1834,15 +1836,15 @@ msgid "[N/A]" msgstr "[Nėra]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Įveskite naują vietą" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nauja vieta:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1856,248 +1858,248 @@ "- pašto kodą\n" "tos vietos, kurios orų prognozę norite gauti." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Privalote nurodyti vietą." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Vieta „%s“ nerasta!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Nuostatos" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Įkelti iš naujo" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Išeiti" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Orų nuostatos" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Dabartinė vieta" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Nesukonfigūruota" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Nustatyti" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Rodymas" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Pavadinimas:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Vienetai:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metriniai (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Anglų (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Orų prognozė" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Atnaujinimai:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Rankiniu būdu" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatiškai, kas" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minučių" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Šaltinis:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Pakeisti" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Dabartinės sąlygos, %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Vieta:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Paskutinis atnaujinimas:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Jaučiama kaip:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Drėgnumas:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Slėgis:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Matomumas:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vėjas:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Saulėtekis:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Saulėlydis:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prognozė skirta „%s“ neprieinama." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Vieta nenustatyta." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Ieškoma „%s“..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Vietos atitinkančios „%s“" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Miestas" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Šalis" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Šiuo metu " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Šiandien: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Rytoj: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Orų įskiepis" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Rodyti vietos orų sąlygas ir prognozes." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2105,19 +2107,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/lv.po lxpanel-0.10.1/po/lv.po --- lxpanel-0.10.0/po/lv.po 2019-02-26 19:32:06.000000000 +0000 +++ lxpanel-0.10.1/po/lv.po 2021-02-06 21:03:56.000000000 +0000 @@ -2,25 +2,24 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-26 19:16+0000\n" "Last-Translator: External Translation Source \n" "Language-Team: LANGUAGE \n" -"Language: lv\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" "\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1551208615.008565\n" -"X-Pootle-Path: /lv/lxpanel/po/lv.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /lv/lxpanel/po/lv.po\n" +"X-POOTLE-MTIME: 1551208615.008565\n" #: ../src/configurator.c:148 msgid "" @@ -86,7 +85,7 @@ msgstr "" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -127,27 +126,27 @@ msgid "Panel" msgstr "Panelis" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Augstums:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Platums:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Pa kreisi" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Pa labi" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Augša" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Apakša" @@ -174,7 +173,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -270,7 +269,7 @@ msgstr "Atdalītājs" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Izmērs" @@ -348,8 +347,9 @@ msgstr "" #: ../data/ui/launchtaskbar.glade.h:19 +#, fuzzy msgid "Only Application Launch Bar" -msgstr "" +msgstr "Pieprasījumu palaišanas panelis" #: ../data/ui/launchtaskbar.glade.h:20 msgid "Only Task Bar (Window List)" @@ -446,8 +446,9 @@ msgstr "" #: ../data/ui/panel-pref.glade.h:2 +#, fuzzy msgid "Pixels" -msgstr "" +msgstr "pikseļu" #: ../data/ui/panel-pref.glade.h:4 #, no-c-format @@ -652,7 +653,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -681,9 +682,9 @@ msgstr "" #: ../plugins/task-button.c:388 -#, c-format +#, c-format, fuzzy msgid "Workspace _%d" -msgstr "" +msgstr "Darba laukums%d" #: ../plugins/task-button.c:393 #, c-format @@ -787,8 +788,9 @@ msgstr "Sistēmas Ikonjosla" #: ../plugins/tray.c:692 +#, fuzzy msgid "System tray" -msgstr "" +msgstr "Sistēmas Ikonjosla" #: ../plugins/xkb/xkb-plugin.c:409 msgid "New session is required for this option to take effect" @@ -979,7 +981,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -989,8 +991,9 @@ #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 #: ../plugins/volumealsa/volumealsa.c:973 +#, fuzzy msgid "Volume control" -msgstr "" +msgstr "Skaļuma Kontrole" #: ../plugins/volumealsa/volumealsa.c:701 msgid "" @@ -1305,7 +1308,7 @@ msgstr "Interfeisa nosaukums" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stāvoklis" @@ -1543,141 +1546,141 @@ msgid "Sending/Receiving" msgstr "Sūta/Saņem" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Baterija nav atrasta " -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Akumulatora monitors" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Paslēpt ja nav baterijas" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Fona krāsa" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Uzlādes krāsa 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Uzlādes krāsa 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Izlādes krāsa 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Izlādes krāsa 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Apmales platums" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Parādīt akumulatora stāvokli, izmantojot ACPI" @@ -1757,8 +1760,9 @@ msgstr "" #: ../plugins/monitors/monitors.c:736 +#, fuzzy msgid "Display RAM usage" -msgstr "" +msgstr "Rādīt procesora noslodzi" #: ../plugins/monitors/monitors.c:737 msgid "RAM color" @@ -1776,15 +1780,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1793,248 +1797,249 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 +#, fuzzy msgid "Name:" -msgstr "" +msgstr "_Vārds:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2042,18 +2047,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ml.po lxpanel-0.10.1/po/ml.po --- lxpanel-0.10.0/po/ml.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/ml.po 2021-02-06 21:03:29.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-26 19:15+0000\n" "Last-Translator: External Translation Source \n" "Language-Team: LANGUAGE \n" -"Language: ml\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-Pootle-Path: /ml/lxpanel/po/ml.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ml/lxpanel/po/ml.po\n" "X-POOTLE-MTIME: 1551208538.771607\n" #: ../src/configurator.c:148 @@ -83,7 +82,7 @@ msgstr "" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -124,27 +123,27 @@ msgid "Panel" msgstr "" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "ഇടത്" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "വലത്" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "" @@ -171,7 +170,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -267,7 +266,7 @@ msgstr "സ്പെയിസര്‍ " #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "വ്യാപ്തി" @@ -443,8 +442,9 @@ msgstr "" #: ../data/ui/panel-pref.glade.h:2 +#, fuzzy msgid "Pixels" -msgstr "" +msgstr "പിക്സലുകള്‍" #: ../data/ui/panel-pref.glade.h:4 #, no-c-format @@ -649,7 +649,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -976,7 +976,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -986,8 +986,9 @@ #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 #: ../plugins/volumealsa/volumealsa.c:973 +#, fuzzy msgid "Volume control" -msgstr "" +msgstr "ശബ്ദം ക്രമീകാരി" #: ../plugins/volumealsa/volumealsa.c:701 msgid "" @@ -1301,7 +1302,7 @@ msgstr "" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "" @@ -1539,141 +1540,141 @@ msgid "Sending/Receiving" msgstr "" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "പശ്ചാത്തല നിറം " -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "" @@ -1772,15 +1773,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1789,248 +1790,249 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 +#, fuzzy msgid "Name:" -msgstr "" +msgstr "പേര് (_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2038,18 +2040,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ms.po lxpanel-0.10.1/po/ms.po --- lxpanel-0.10.0/po/ms.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/ms.po 2021-02-06 21:05:26.000000000 +0000 @@ -2,12 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-06-07 18:34+0200\n" "Last-Translator: Payne Samad Loh \n" "Language-Team: LANGUAGE \n" @@ -17,8 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 1.1.0\n" -"X-Pootle-Path: /ms/lxpanel/po/ms.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ms/lxpanel/po/ms.po\n" #: ../src/configurator.c:148 msgid "" @@ -89,7 +88,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Hakcipta Terpelihara (C) 2008-2011" #: ../src/panel.c:1379 @@ -130,28 +129,28 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Ketinggian:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Kelebaran:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Kiri" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Kanan" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 #, fuzzy msgid "Top" msgstr "Atas" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Bawah" @@ -177,8 +176,8 @@ msgstr "LogKeluar" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - panel GTK2+ ringan untuk desktop-desktop UNIX \n" #: ../src/main.c:324 @@ -281,7 +280,7 @@ msgstr "" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Saiz" @@ -682,8 +681,9 @@ msgstr "Bar dengan butang untuk melancarkan aplikasi" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Bar tugas menunjukkan semua tingkap-tingkap yang dibuka dan dibenarkan untuk " @@ -715,6 +715,7 @@ msgstr "Ico_nify" #: ../plugins/task-button.c:388 +#, c-format #, fuzzy, c-format msgid "Workspace _%d" msgstr "Ruangkerja %d" @@ -758,6 +759,7 @@ msgstr "Format Tip Peralatan" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "Kod format: man 3 strftime" @@ -927,8 +929,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "teks" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1046,7 +1049,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1380,7 +1383,7 @@ msgstr "Nama antaramuka " #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Negeri" @@ -1622,143 +1625,146 @@ msgid "Sending/Receiving" msgstr "Penghantaran/Penerimaan" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateri: %d%% dicaskan, %d:%02d hingga penuh" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateri: %d%% dicaskan, %d:%02d tertinggal" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Bateri: %d%% dicaskan" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Tiada bateri dijumpai" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Pemantau Bateri" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Pemantau Bateri" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Sorok jika tiada bateri" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Arahan penggera" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Masa penggera (minit tinggal)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Warna laterbelakang" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Warna dicaskan 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Warna dicaskan 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Warna dinyahcaskan 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Warna dinyahcaskan 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Kelebaran Sempadan" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Antaramuka ke pemantau" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Paparkan status bateri menggunakan ACPI" @@ -1866,16 +1872,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Penyambungan Rangkaian" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1884,257 +1890,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Panel Kegemaran" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Panel Kegemaran" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Orientasi" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Con_figure" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Nama:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 #, fuzzy msgid "Location:" msgstr "Tindakan" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "Alamat IP:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Arahan log keluar belum ditetapkan" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Plugin yang kini dimuatkan" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Plugin keloi mudah" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2142,19 +2149,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2186,9 +2193,6 @@ #~ msgid "image" #~ msgstr "imej" -#~ msgid "text" -#~ msgstr "teks" - #~ msgid "Per application settings" #~ msgstr "Penetapan per aplikasi" diff -Nru lxpanel-0.10.0/po/nb.po lxpanel-0.10.1/po/nb.po --- lxpanel-0.10.0/po/nb.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/nb.po 2021-02-06 21:07:08.000000000 +0000 @@ -2,29 +2,31 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2012-01-11 23:42+0200\n" -"Last-Translator: Sam \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2019-08-22 15:57+0200\n" +"Last-Translator: Imre Kristoffer Eilertsen \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /nb/lxpanel/po/nb.po\n" +"X-Generator: Poedit 2.2.3\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /nb/lxpanel/po/nb.po\n" +"Language-Team: \n" #: ../src/configurator.c:148 msgid "" "Space reservation is not available for this panel because there is another " "monitor beyond this edge and reservation would cover it if enabled." msgstr "" +"Plassreservasjon er ikke tilgjengelig for dette panelet, siden det er en " +"annen skjerm forbi denne kanten og reservasjonen ville dekt den om det ble " +"aktivert." #: ../src/configurator.c:632 msgid "Currently loaded plugins" @@ -60,7 +62,7 @@ #: ../src/panel.c:1292 msgid "There is no room for another panel. All the edges are taken." -msgstr "" +msgstr "Det er ikke plass til enda et panel. Alle kantene er opptatt." #: ../src/panel.c:1318 msgid "" @@ -68,7 +70,7 @@ "Warning: This can not be recovered." msgstr "" "Er du sikker på at du vil slette dette panelet?\n" -"Advarsel: denne handlingen kan ikke angres." +"Advarsel: Denne handlingen kan ikke angres." #: ../src/panel.c:1320 msgid "Confirm" @@ -77,16 +79,15 @@ #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/panel.c:1355 msgid "translator-credits" -msgstr "" +msgstr "Imre Kristoffer Eilertsen" #: ../src/panel.c:1360 msgid "LXPanel" msgstr "LXPanel" #: ../src/panel.c:1378 -#, fuzzy -msgid "Copyright (C) 2008-2019" -msgstr "Copyright © 2008–2011" +msgid "Copyright (C) 2008-2021" +msgstr "Opphavsrett © 2008–2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -126,33 +127,33 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Høyde:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Bredde:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Til venstre" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Til høyre" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Oppe" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Nede" #: ../src/plugin.c:348 msgid "No file manager is configured." -msgstr "" +msgstr "Ingen filbehandlere har blitt satt opp." #. { "configure", N_("Preferences"), configure }, #: ../src/gtk-run.c:385 ../src/main.c:69 ../plugins/menu.c:718 @@ -173,8 +174,8 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" -msgstr "lxpanel %s - lett GTK2+-panel for UNIX-skrivebord\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" +msgstr "lxpanel %s - lett GTK+-panel for UNIX-skrivebord\n" #: ../src/main.c:324 #, c-format @@ -184,34 +185,34 @@ #: ../src/main.c:325 #, c-format msgid " --help -- print this help and exit\n" -msgstr "" +msgstr " --help — Motta denne hjelpen og avslutt\n" #: ../src/main.c:326 #, c-format msgid " --version -- print version and exit\n" -msgstr "" +msgstr " --version — Motta versjonen og avslutt\n" #. g_print(_(" --log -- set log level 0-5. 0 - none 5 - chatty\n")); #. g_print(_(" --configure -- launch configuration utility\n")); #: ../src/main.c:329 #, c-format msgid " --profile name -- use specified profile\n" -msgstr "" +msgstr " --profile name — Bruk den spesifiserte profilen\n" #: ../src/main.c:331 #, c-format msgid " -h -- same as --help\n" -msgstr "" +msgstr " -h — samme som --help\n" #: ../src/main.c:332 #, c-format msgid " -p -- same as --profile\n" -msgstr "" +msgstr " -p — samme som --profile\n" #: ../src/main.c:333 #, c-format msgid " -v -- same as --version\n" -msgstr "" +msgstr " -v — samme som --version\n" #. g_print(_(" -C -- same as --configure\n")); #: ../src/main.c:335 @@ -222,110 +223,107 @@ "\n" msgstr "" "\n" -"Se http://lxde.org/ for mer informasjon.\n" +"Besøk https://lxde.org/ for mer informasjon.\n" "\n" #: ../src/input-button.c:147 -#, fuzzy msgid "LeftBtn" -msgstr "Til venstre" +msgstr "Venstre knapp" #: ../src/input-button.c:150 msgid "MiddleBtn" -msgstr "" +msgstr "Midtknapp" #: ../src/input-button.c:153 -#, fuzzy msgid "RightBtn" -msgstr "Til høyre" +msgstr "Høyre knapp" #: ../src/input-button.c:156 #, c-format msgid "Btn%s" -msgstr "" +msgstr "%s knapp" #: ../src/input-button.c:228 #, c-format msgid "Key combination '%s' cannot be used as a global hotkey, sorry." msgstr "" +"Tastekombinasjonen '%s' kan beklageligvis ikke brukes som en " +"systemhurtigtast." #: ../src/input-button.c:231 ../src/input-button.c:415 #: ../plugins/netstatus/netstatus-iface.c:191 #: ../plugins/netstatus/netstatus-util.c:167 msgid "Error" -msgstr "" +msgstr "Feil" #. GtkRadioButton "None" #: ../src/input-button.c:329 ../data/ui/panel-pref.glade.h:5 msgid "None" -msgstr "" +msgstr "Ingen" #: ../src/input-button.c:336 -#, fuzzy msgid "Custom:" -msgstr "Selvvalgt farge" +msgstr "Egendefinert:" #: ../src/input-button.c:413 #, c-format msgid "Cannot assign '%s' as a global hotkey: it is already bound." msgstr "" +"Kan ikke tilegne '%s' som en systemhurtigtast: den er allerede bundet." #: ../src/space.c:394 ../src/space.c:403 msgid "Spacer" -msgstr "" +msgstr "Skille-element" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Størrelse" #: ../src/space.c:404 msgid "Allocate space" -msgstr "" +msgstr "Tildel plass" #: ../data/ui/launchtaskbar.glade.h:1 ../plugins/launchtaskbar.c:2482 -#, fuzzy msgid "Application Launch and Task Bar" -msgstr "Programstartlinje" +msgstr "Programstarts- og oppgavelinje" #. Launchtaskbar mode: launchbar, taskbar, or combined #: ../data/ui/launchtaskbar.glade.h:3 -#, fuzzy msgid "Mode:" -msgstr "Størrelse" +msgstr "Modus:" #: ../data/ui/launchtaskbar.glade.h:4 msgid "Launchers" -msgstr "" +msgstr "Oppstartere" #: ../data/ui/launchtaskbar.glade.h:5 -#, fuzzy msgid "Launchbar" -msgstr "Bakgrunn" +msgstr "Oppstartslinje" #: ../data/ui/launchtaskbar.glade.h:6 msgid "Show tooltips" -msgstr "" +msgstr "Vis verktøytips" #: ../data/ui/launchtaskbar.glade.h:7 msgid "Icons only" -msgstr "" +msgstr "Kun ikoner" #: ../data/ui/launchtaskbar.glade.h:8 msgid "Flat buttons" -msgstr "" +msgstr "Flate knapper" #: ../data/ui/launchtaskbar.glade.h:9 msgid "Show windows from all desktops" -msgstr "" +msgstr "Vis vinduer fra alle skrivebordene" #: ../data/ui/launchtaskbar.glade.h:10 msgid "Only show windows on the same monitor as the task bar" -msgstr "" +msgstr "Vis bare vinduer som er på samme skjerm som oppgavelinjen" #: ../data/ui/launchtaskbar.glade.h:11 msgid "Use mouse wheel" -msgstr "" +msgstr "Bruk musehjulet" #: ../data/ui/launchtaskbar.glade.h:12 msgid "Flash when there is any window requiring attention" @@ -333,46 +331,43 @@ #: ../data/ui/launchtaskbar.glade.h:13 msgid "Combine multiple application windows into a single button" -msgstr "" +msgstr "Kombiner flere programvinduer til én enkelt knapp" #: ../data/ui/launchtaskbar.glade.h:14 msgid "Disable enlargement for small task icons" -msgstr "" +msgstr "Skru av forstørring for små oppgaveikoner" #: ../data/ui/launchtaskbar.glade.h:15 msgid "Show task icons smaller than rest of panel icons" -msgstr "" +msgstr "Vis oppgaveikoner som mindre enn resten av panelikonene" #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" -msgstr "" +msgstr "Maksbredden til oppgaveknappen" #: ../data/ui/launchtaskbar.glade.h:17 msgid "Spacing" -msgstr "" +msgstr "Avstand" #: ../data/ui/launchtaskbar.glade.h:18 -#, fuzzy msgid "Taskbar" -msgstr "Bakgrunn" +msgstr "Verktøylinje" #: ../data/ui/launchtaskbar.glade.h:19 -#, fuzzy msgid "Only Application Launch Bar" -msgstr "Programstartlinje" +msgstr "Kun programstartslinjen" #: ../data/ui/launchtaskbar.glade.h:20 msgid "Only Task Bar (Window List)" -msgstr "" +msgstr "Kun verktøylinje (Vindusliste)" #: ../data/ui/launchtaskbar.glade.h:21 -#, fuzzy msgid "Integrated Application Launch Bar and Task Bar" -msgstr "Programstartlinje" +msgstr "Integrert programstarts- og oppgavelinje" #: ../data/ui/netstatus.glade.h:1 msgid "Connection" -msgstr "" +msgstr "Forbindelse" #: ../data/ui/netstatus.glade.h:2 msgid "Status:" @@ -426,7 +421,7 @@ #: ../data/ui/netstatus.glade.h:15 msgid "Subnet Mask:" -msgstr "" +msgstr "Undernettmaske:" #: ../data/ui/netstatus.glade.h:16 msgid "Internet Protocol (IPv6)" @@ -458,7 +453,7 @@ #: ../data/ui/panel-pref.glade.h:2 msgid "Pixels" -msgstr "piksler" +msgstr "Piksler" #: ../data/ui/panel-pref.glade.h:4 #, no-c-format @@ -467,20 +462,19 @@ #: ../data/ui/panel-pref.glade.h:6 msgid "Err" -msgstr "" +msgstr "Feil" #: ../data/ui/panel-pref.glade.h:7 -#, fuzzy msgid "Warn" -msgstr "Advarsel1" +msgstr "Advar" #: ../data/ui/panel-pref.glade.h:8 msgid "Info" -msgstr "" +msgstr "Info" #: ../data/ui/panel-pref.glade.h:9 msgid "All" -msgstr "" +msgstr "Alle" #: ../data/ui/panel-pref.glade.h:10 msgid "Panel Preferences" @@ -488,7 +482,7 @@ #: ../data/ui/panel-pref.glade.h:15 msgid "Edge:" -msgstr "" +msgstr "Kant:" #: ../data/ui/panel-pref.glade.h:16 ../plugins/volumealsa/volumealsa.c:1313 msgid "Center" @@ -503,9 +497,8 @@ msgstr "Marg:" #: ../data/ui/panel-pref.glade.h:19 -#, fuzzy msgid "Monitor:" -msgstr "Batteriovervåkning" +msgstr "Overvåk:" #: ../data/ui/panel-pref.glade.h:20 msgid "Position" @@ -513,7 +506,7 @@ #: ../data/ui/panel-pref.glade.h:23 msgid "Icon size:" -msgstr "" +msgstr "Ikonstørrelse:" #: ../data/ui/panel-pref.glade.h:24 msgid "Size" @@ -577,16 +570,13 @@ # Var litt usikker på ordet "dokk". Ifølge KDE sine retningslinjer heter det samlevindu på Norsk Bokmål. #: ../data/ui/panel-pref.glade.h:40 -#, fuzzy msgid "Make window managers treat the panel as dock" -msgstr "Få vindusbehandlere til å håndtere panelet som samlevindu" +msgstr "Få vindusbehandlere til å behandle panelet som et samlevindu" # Var litt usikker på hvordan jeg skulle ha oversatt dette her; jeg er sikker på at originalsetningen er grammatisk feil. #: ../data/ui/panel-pref.glade.h:41 -#, fuzzy msgid "Reserve space, and not covered by maximized windows" -msgstr "" -"Reserver plass på skjermen, og ikke la maksimerte vindu dekke denne plassen" +msgstr "Reserver plass som ikke er dekt av maksimerte vinduer" #: ../data/ui/panel-pref.glade.h:42 msgid "Properties" @@ -610,12 +600,11 @@ #: ../data/ui/panel-pref.glade.h:47 msgid "Log level" -msgstr "" +msgstr "Loggføringsnivå" #: ../data/ui/panel-pref.glade.h:48 -#, fuzzy msgid "Log level" -msgstr "Nettverksenhet" +msgstr "Loggføringsnivå" #: ../data/ui/panel-pref.glade.h:49 msgid "Advanced" @@ -631,7 +620,7 @@ #: ../plugins/deskno/deskno.c:210 ../plugins/deskno/deskno.c:230 msgid "Desktop Number / Workspace Name" -msgstr "" +msgstr "Skrivebordsnummer / Arbeidsområdets navn" #: ../plugins/deskno/deskno.c:212 ../plugins/dclock.c:439 msgid "Bold font" @@ -651,326 +640,320 @@ #: ../plugins/launchtaskbar.c:1834 ../plugins/launchtaskbar.c:2462 msgid "Task Bar (Window List)" -msgstr "" +msgstr "Oppgavelinje (Vindusliste)" #: ../plugins/launchtaskbar.c:1985 msgid "A_dd to Launcher" -msgstr "" +msgstr "Legg til i oppst_arteren" #: ../plugins/launchtaskbar.c:1987 -#, fuzzy msgid "Rem_ove from Launcher" -msgstr "Fjern «%s» fra panelet" +msgstr "Fjern fra _oppstarteren" #: ../plugins/launchtaskbar.c:1989 msgid "_New Instance" -msgstr "" +msgstr "_Ny instans" #: ../plugins/launchtaskbar.c:2453 msgid "Bar with buttons to launch application" -msgstr "" +msgstr "Linje med knapper for å åpne programmer" #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" +"Verktøyfeltet viser alle åpnede vinduer og kan ikonifisere, skyggelegge, " +"eller fokusere på dem" #: ../plugins/launchtaskbar.c:2483 msgid "Bar with buttons to launch application and/or show all opened windows" msgstr "" +"Linje med knapper for å åpne programmer og/eller åpne alle viste vinduer" #. Add Raise menu item. #: ../plugins/task-button.c:352 msgid "_Raise" -msgstr "" +msgstr "_Hev" #. Add Restore menu item. #: ../plugins/task-button.c:357 msgid "R_estore" -msgstr "" +msgstr "G_jenopprett" #. Add Maximize menu item. #: ../plugins/task-button.c:362 msgid "Ma_ximize" -msgstr "" +msgstr "Ma_ksimer" #. Add Iconify menu item. #: ../plugins/task-button.c:367 msgid "Ico_nify" -msgstr "" +msgstr "Ikonifiser" #: ../plugins/task-button.c:388 #, c-format msgid "Workspace _%d" -msgstr "" +msgstr "Arbeidsområde _%d" #: ../plugins/task-button.c:393 #, c-format msgid "Workspace %d" -msgstr "" +msgstr "Arbeidsområde %d" #. Add "move to all workspaces" item. This causes the window to be visible no matter what desktop is active. #: ../plugins/task-button.c:410 msgid "_All workspaces" -msgstr "" +msgstr "_Alle arbeidsområder" #. FIXME: add "Current workspace" item, active if not on a current #. Add Move to Workspace menu item as a submenu. #: ../plugins/task-button.c:418 msgid "_Move to Workspace" -msgstr "" +msgstr "_Flytt til arbeidsområdet" #: ../plugins/task-button.c:433 msgid "_Close Window" -msgstr "" +msgstr "_Lukk vindu" #: ../plugins/task-button.c:1256 msgid "_Close all windows" -msgstr "" +msgstr "_Lukk alle vinduer" #: ../plugins/dclock.c:433 ../plugins/dclock.c:453 msgid "Digital Clock" -msgstr "" +msgstr "Digital klokke" #: ../plugins/dclock.c:435 msgid "Clock Format" -msgstr "" +msgstr "Klokkeformat" #: ../plugins/dclock.c:436 msgid "Tooltip Format" -msgstr "" +msgstr "Verktøytipsformat" #: ../plugins/dclock.c:437 #, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "" +msgstr "Formatkoder: man 3 strftime; %n for linjebryting" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" -msgstr "" +msgstr "Handling ved klikk (standard: vis kalenderen)" #: ../plugins/dclock.c:440 msgid "Tooltip only" -msgstr "" +msgstr "Kun verktøytips" #: ../plugins/dclock.c:441 -#, fuzzy msgid "Center text" -msgstr "I midten" +msgstr "Midtstill tekst" #: ../plugins/dclock.c:454 msgid "Display digital clock and tooltip" -msgstr "" +msgstr "Vis digital klokke og verktøytips" #: ../plugins/menu.c:360 msgid "Add to desktop" -msgstr "" +msgstr "Legg til på skrivebordet" #: ../plugins/menu.c:367 msgid "Properties" -msgstr "" +msgstr "Egenskaper" #: ../plugins/menu.c:989 ../plugins/menu.c:997 msgid "Menu" -msgstr "" +msgstr "Meny" #: ../plugins/menu.c:990 ../plugins/dirmenu.c:359 msgid "Icon" -msgstr "" +msgstr "Ikon" #: ../plugins/menu.c:998 msgid "Application Menu" -msgstr "" +msgstr "Programmeny" #: ../plugins/separator.c:73 msgid "Separator" -msgstr "" +msgstr "Skille" #: ../plugins/separator.c:74 msgid "Add a separator to the panel" -msgstr "" +msgstr "Legg til en adskiller til panelet" #: ../plugins/pager.c:141 msgid "Sorry, there was no window manager configuration program found." -msgstr "" +msgstr "Beklager, ingen vindusbehandleroppsettsprogrammer ble funnet." #: ../plugins/pager.c:193 ../plugins/pager.c:209 msgid "Desktop Pager" -msgstr "" +msgstr "Skrivebordsviser" #: ../plugins/pager.c:194 ../plugins/pager.c:210 msgid "Simple pager plugin" -msgstr "" +msgstr "Enkelt visningstillegg" #: ../plugins/tray.c:691 msgid "System Tray" -msgstr "" +msgstr "Systemkurven" #: ../plugins/tray.c:692 msgid "System tray" -msgstr "" +msgstr "Systemkurv" #: ../plugins/xkb/xkb-plugin.c:409 msgid "New session is required for this option to take effect" -msgstr "" +msgstr "En ny økt er påkrevd for at det skal tas i bruk" #. dialog #: ../plugins/xkb/xkb-plugin.c:590 -#, fuzzy msgid "Select Keyboard Model" -msgstr "Tastaturlamper" +msgstr "Velg tastaturmodell" #: ../plugins/xkb/xkb-plugin.c:614 ../plugins/xkb/xkb-plugin.c:743 #: ../plugins/xkb/xkb-plugin.c:921 -#, fuzzy msgid "Description" -msgstr "Mål:" +msgstr "Beskrivelse" #: ../plugins/xkb/xkb-plugin.c:619 ../plugins/xkb/xkb-plugin.c:750 msgid "Id" -msgstr "" +msgstr "Id" #. dialog #: ../plugins/xkb/xkb-plugin.c:714 -#, fuzzy msgid "Select Layout Change Type" -msgstr "Velg ei bildefil" +msgstr "Velg oppsettsendringstype" #. dialog #: ../plugins/xkb/xkb-plugin.c:887 -#, fuzzy msgid "Add Keyboard Layout" -msgstr "Tastaturlamper" +msgstr "Legg til tastaturoppsett" #: ../plugins/xkb/xkb-plugin.c:911 ../plugins/xkb/xkb-plugin.c:1302 msgid "Flag" -msgstr "" +msgstr "Flagg" #: ../plugins/xkb/xkb-plugin.c:916 ../plugins/xkb/xkb-plugin.c:1306 msgid "Layout" -msgstr "" +msgstr "Layout" #: ../plugins/xkb/xkb-plugin.c:1212 ../plugins/xkb/xkb-plugin.c:1544 -#, fuzzy msgid "Keyboard Layout Handler" -msgstr "Tastaturlamper" +msgstr "Tastaturoppsettshåndterer" #: ../plugins/xkb/xkb-plugin.c:1235 -#, fuzzy msgid "Keyboard Model" -msgstr "Tastaturlamper" +msgstr "Tastaturmodell" #: ../plugins/xkb/xkb-plugin.c:1256 -#, fuzzy msgid "Keyboard Layouts" -msgstr "Tastaturlamper" +msgstr "Tastaturoppsett" #: ../plugins/xkb/xkb-plugin.c:1310 msgid "Variant" -msgstr "" +msgstr "Variant" #: ../plugins/xkb/xkb-plugin.c:1319 msgid "Change Layout Option" -msgstr "" +msgstr "Endre oppsettsinnstilling" #: ../plugins/xkb/xkb-plugin.c:1339 msgid "Advanced setxkbmap Options" -msgstr "" +msgstr "Avanserte setxkbmap-innstillinger" #: ../plugins/xkb/xkb-plugin.c:1360 msgid "Do _not reset existing options" -msgstr "" +msgstr "Ikke tilbakestill eksistere_nde innstillinger" #: ../plugins/xkb/xkb-plugin.c:1365 msgid "Keep _system layouts" -msgstr "" +msgstr "Behold _systemoppsett" #: ../plugins/xkb/xkb-plugin.c:1374 -#, fuzzy msgid "Per Window Settings" -msgstr "Panelinnstillinger" +msgstr "Vindusindividuelle innstillinger" #: ../plugins/xkb/xkb-plugin.c:1386 msgid "_Remember layout for each window" -msgstr "" +msgstr "_Husk oppsettet for hvert vindu" #: ../plugins/xkb/xkb-plugin.c:1395 msgid "Show Layout as" -msgstr "" +msgstr "Vis oppsettet som" #: ../plugins/xkb/xkb-plugin.c:1456 msgid "Custom Image" -msgstr "" +msgstr "Egendefinert bilde" #: ../plugins/xkb/xkb-plugin.c:1457 msgid "Text" -msgstr "" +msgstr "Tekst" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" -msgstr "" +msgstr "Panelikonstørrelse" #: ../plugins/xkb/xkb-plugin.c:1545 msgid "Handle keyboard layouts" -msgstr "" +msgstr "Håndter tastaturoppsett" #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." msgstr "" +"Venstreklikk for å ikonifisere alle vinduer. Mellomklikk for å skyggelegge " +"dem." #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" -msgstr "" +msgstr "Minimer alle vinduer" #: ../plugins/wincmd.c:247 msgid "Alternately iconify/shade and raise" -msgstr "" +msgstr "Alterner på å ikonifisere/skyggelegge og heve" #: ../plugins/wincmd.c:256 msgid "" "Sends commands to all desktop windows.\n" "Supported commands are 1) iconify and 2) shade" msgstr "" +"Sender kommandoer til alle skrivebordsvinduer.\n" +"Støttede kommandoer er 1) ikonifiser og 2) skyggelegg" #: ../plugins/dirmenu.c:213 msgid "Open in _Terminal" -msgstr "" +msgstr "Åpne i _terminal" #: ../plugins/dirmenu.c:355 ../plugins/dirmenu.c:365 msgid "Directory Menu" -msgstr "" +msgstr "Mappemeny" #: ../plugins/dirmenu.c:357 msgid "Directory" -msgstr "" +msgstr "Mappe" #: ../plugins/dirmenu.c:358 msgid "Label" -msgstr "" +msgstr "Merkelapp" #: ../plugins/dirmenu.c:366 msgid "Browse directory tree via menu (Author = PCMan)" -msgstr "" +msgstr "Bla i mappetreet gjennom menyen (Skaper = PCMan)" #: ../plugins/thermal/thermal.c:563 ../plugins/thermal/thermal.c:581 msgid "Temperature Monitor" msgstr "Temperaturoversikt" #: ../plugins/thermal/thermal.c:565 -#, fuzzy msgid "Normal color" -msgstr "Selvvalgt farge" +msgstr "Normalfarge" #: ../plugins/thermal/thermal.c:566 -#, fuzzy msgid "Warning1 color" -msgstr "Oppladingsfarge 1" +msgstr "Farge for Advarsel1" #: ../plugins/thermal/thermal.c:567 -#, fuzzy msgid "Warning2 color" -msgstr "Oppladingsfarge 1" +msgstr "Farge for Advarsel2" #: ../plugins/thermal/thermal.c:568 msgid "Automatic sensor location" @@ -988,18 +971,16 @@ #. FIXME: if off, disable two below #: ../plugins/thermal/thermal.c:571 -#, fuzzy msgid "Warning1 temperature" -msgstr "Advarsel1 Temperatur" +msgstr "Temperatur for Advarsel1" #: ../plugins/thermal/thermal.c:572 -#, fuzzy msgid "Warning2 temperature" -msgstr "Advarsel2 Temperatur" +msgstr "Temperatur for Advarsel2" #: ../plugins/thermal/thermal.c:582 msgid "Display system temperature" -msgstr "" +msgstr "Vis systemtemperatur" #: ../plugins/cpufreq/cpufreq.c:325 #, c-format @@ -1007,18 +988,22 @@ "Frequency: %d MHz\n" "Governor: %s" msgstr "" +"Frekvens: %d MHz\n" +"Sjefsprogram: %s" #: ../plugins/cpufreq/cpufreq.c:401 msgid "CPUFreq frontend" -msgstr "" +msgstr "CPUFreq-frontend" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" -msgstr "" +msgid "Display CPU frequency and allow one to change governors and frequency" +msgstr "Vis CPU-frekvens og tillatt endrings av sjefsprogrammer og frekvens" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." msgstr "" +"ALSA (eller pulseaudio) hadde et problem. Vennligst sjekk LXpanel-" +"loggføringene." #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 @@ -1031,6 +1016,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" +"Feilmelding, du må installere et program for å konfigurere lyden " +"(pavucontrol, alsamixer …)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1045,65 +1032,65 @@ #. Just to have these translated #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Line" -msgstr "" +msgstr "Linje" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "LineOut" -msgstr "" +msgstr "Linje ut" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Front" -msgstr "" +msgstr "Front" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Surround" -msgstr "" +msgstr "Surround" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Speaker+LO" -msgstr "" +msgstr "Høyttaler+LU" #: ../plugins/volumealsa/volumealsa.c:1352 msgid "default" -msgstr "" +msgstr "standard" #. desc, index #: ../plugins/volumealsa/volumealsa.c:1412 msgid "Master" -msgstr "" +msgstr "Hoved" #: ../plugins/volumealsa/volumealsa.c:1416 msgid "PCM" -msgstr "" +msgstr "PCM" #: ../plugins/volumealsa/volumealsa.c:1420 msgid "Headphone" -msgstr "" +msgstr "Hodetelefon" #: ../plugins/volumealsa/volumealsa.c:1442 msgid "Click for Volume Slider" -msgstr "" +msgstr "Klikk for volumglideren" #: ../plugins/volumealsa/volumealsa.c:1446 msgid "Click for Toggle Mute" -msgstr "" +msgstr "Klikk for å dempe/avdempe" #: ../plugins/volumealsa/volumealsa.c:1450 msgid "Click for Open Mixer" -msgstr "" +msgstr "Klikk for å åpne volummikseren" #. setup hotkeys #: ../plugins/volumealsa/volumealsa.c:1454 msgid "Hotkey for Volume Up" -msgstr "" +msgstr "Hurtigtast for Volum opp" #: ../plugins/volumealsa/volumealsa.c:1456 msgid "Hotkey for Volume Down" -msgstr "" +msgstr "Hurtigtast for Volum ned" #: ../plugins/volumealsa/volumealsa.c:1458 msgid "Hotkey for Volume Mute" -msgstr "" +msgstr "Hurtigtast for volumdemping" #: ../plugins/volumealsa/volumealsa.c:1514 #: ../plugins/volumealsa/volumealsa.c:1553 @@ -1113,28 +1100,28 @@ #: ../plugins/volumealsa/volumealsa.c:1516 msgid "Audio Card" -msgstr "" +msgstr "Lydkort" #: ../plugins/volumealsa/volumealsa.c:1519 msgid "Channel to Operate" -msgstr "" +msgstr "Kanal å operere i" #: ../plugins/volumealsa/volumealsa.c:1527 msgid "Command to Open Mixer" -msgstr "" +msgstr "Kommando for å åpne volummikseren" #: ../plugins/volumealsa/volumealsa.c:1542 msgid "Launch Mixer" -msgstr "" +msgstr "Åpne volummikser" #: ../plugins/volumealsa/volumealsa.c:1554 #: ../plugins/volumealsa/volumealsa.c:1575 msgid "Display and control volume" -msgstr "" +msgstr "Vis og styr volumet" #: ../plugins/netstat/netstat.c:183 msgid "" -msgstr "" +msgstr "" #: ../plugins/netstat/netstat.c:220 msgid "Wireless Networks not found in range" @@ -1165,11 +1152,11 @@ #: ../plugins/netstat/netstat.c:360 ../plugins/netstat/netstat.c:371 #: ../plugins/netstat/netstat.c:382 msgid "IP Address:" -msgstr "IP Adresse:" +msgstr "IP-adresse:" #: ../plugins/netstat/netstat.c:361 msgid "Remote IP:" -msgstr "" +msgstr "Ekstern IP:" #: ../plugins/netstat/netstat.c:362 ../plugins/netstat/netstat.c:373 #: ../plugins/netstat/netstat.c:384 @@ -1240,40 +1227,40 @@ #: ../plugins/netstatus/netstatus.c:154 ../plugins/netstatus/netstatus.c:166 msgid "Network Status Monitor" -msgstr "" +msgstr "Nettverksstatusovervåker" #: ../plugins/netstatus/netstatus.c:156 msgid "Interface to monitor" -msgstr "" +msgstr "Grensesnittet som skal overvåkes" #: ../plugins/netstatus/netstatus.c:157 msgid "Config tool" -msgstr "" +msgstr "Oppsettsverktøy" #: ../plugins/netstatus/netstatus.c:167 msgid "Monitor network status" -msgstr "" +msgstr "Overvåk nettverksstatusen" #: ../plugins/netstatus/netstatus-dialog.c:52 #: ../plugins/netstatus/netstatus-dialog.c:316 msgid "Unknown" -msgstr "" +msgstr "Ukjent" #: ../plugins/netstatus/netstatus-dialog.c:117 msgid "Connection Properties" -msgstr "" +msgstr "Forbindelsesegenskaper" #: ../plugins/netstatus/netstatus-dialog.c:123 #, c-format msgid "Connection Properties: %s" -msgstr "" +msgstr "Forbindelsesegenskaper: %s" #: ../plugins/netstatus/netstatus-dialog.c:136 #, c-format msgid "%lu packet" msgid_plural "%lu packets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%lu pakke" +msgstr[1] "%lu pakker" #: ../plugins/netstatus/netstatus-dialog.c:400 #, c-format @@ -1281,47 +1268,49 @@ "There was an error displaying help:\n" "%s" msgstr "" +"Det oppstod en feil under visning av hjelp:\n" +"%s" #: ../plugins/netstatus/netstatus-icon.c:381 #, c-format msgid "Network Connection: %s" -msgstr "" +msgstr "Nettverksforbindelse: %s" #: ../plugins/netstatus/netstatus-icon.c:386 msgid "Network Connection" -msgstr "" +msgstr "Nettverksforbindelse" #: ../plugins/netstatus/netstatus-icon.c:847 msgid "Interface" -msgstr "" +msgstr "Grensesnitt" #: ../plugins/netstatus/netstatus-icon.c:848 msgid "The current interface the icon is monitoring." -msgstr "" +msgstr "Det nåværende grensesnittet som ikonet overvåker." #: ../plugins/netstatus/netstatus-icon.c:855 msgid "Orientation" -msgstr "" +msgstr "Orientering" #: ../plugins/netstatus/netstatus-icon.c:856 msgid "The orientation of the tray." -msgstr "" +msgstr "Kurvens orientering." #: ../plugins/netstatus/netstatus-icon.c:864 msgid "Tooltips Enabled" -msgstr "" +msgstr "Verktøytips aktivert" #: ../plugins/netstatus/netstatus-icon.c:865 msgid "Whether or not the icon's tooltips are enabled." -msgstr "" +msgstr "Hvorvidt ikonets verktøytips er skrudd på eller ikke." #: ../plugins/netstatus/netstatus-icon.c:872 msgid "Show Signal" -msgstr "" +msgstr "Vis signal" #: ../plugins/netstatus/netstatus-icon.c:873 msgid "Whether or not the signal strength should be displayed." -msgstr "" +msgstr "Hvorvidt signalstyrken skal vises eller ikke." #: ../plugins/netstatus/netstatus-icon.c:982 #, c-format @@ -1330,193 +1319,197 @@ "\n" "%s" msgstr "" +"Vennligst kontakt din systemadministrator for å løse det følgende " +"problemet:\n" +"\n" +"%s" #: ../plugins/netstatus/netstatus-iface.c:148 msgid "Name" -msgstr "" +msgstr "Navn" #: ../plugins/netstatus/netstatus-iface.c:149 msgid "The interface name" -msgstr "" +msgstr "Grensesnittets navn" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" -msgstr "" +msgstr "Tilstand" #: ../plugins/netstatus/netstatus-iface.c:157 msgid "The interface state" -msgstr "" +msgstr "Grensesnittets tilstand" #: ../plugins/netstatus/netstatus-iface.c:165 msgid "Stats" -msgstr "" +msgstr "Statistikk" #: ../plugins/netstatus/netstatus-iface.c:166 msgid "The interface packets/bytes statistics" -msgstr "" +msgstr "Grensesnittstatistikkene for pakker/bytes" #: ../plugins/netstatus/netstatus-iface.c:174 msgid "Whether the interface is a wireless interface" -msgstr "" +msgstr "Hvorvidt grensesnittet er et trådløst grensesnitt" #: ../plugins/netstatus/netstatus-iface.c:181 msgid "Signal" -msgstr "" +msgstr "Signal" #: ../plugins/netstatus/netstatus-iface.c:182 msgid "Wireless signal strength percentage" -msgstr "" +msgstr "Trådløs signalstyrkeprosent" #: ../plugins/netstatus/netstatus-iface.c:192 msgid "The current error condition" -msgstr "" +msgstr "Den nåværende feiltilstanden" #: ../plugins/netstatus/netstatus-iface.c:440 #: ../plugins/netstatus/netstatus-iface.c:1205 #, c-format msgid "Unable to open socket: %s" -msgstr "" +msgstr "Kunne ikke åpne sokkelen: %s" #: ../plugins/netstatus/netstatus-iface.c:502 #: ../plugins/netstatus/netstatus-iface.c:1231 #, c-format msgid "SIOCGIFFLAGS error: %s" -msgstr "" +msgstr "SIOCGIFFLAGS-feil: %s" #: ../plugins/netstatus/netstatus-iface.c:879 msgid "AMPR NET/ROM" -msgstr "" +msgstr "AMPR NET/ROM" #: ../plugins/netstatus/netstatus-iface.c:882 msgid "Ethernet" -msgstr "" +msgstr "Ethernet" #: ../plugins/netstatus/netstatus-iface.c:888 msgid "AMPR AX.25" -msgstr "" +msgstr "AMPR AX.25" #: ../plugins/netstatus/netstatus-iface.c:897 #: ../plugins/netstatus/netstatus-iface.c:1017 msgid "16/4 Mbps Token Ring" -msgstr "" +msgstr "16/4 Mb/s sjetongring" #: ../plugins/netstatus/netstatus-iface.c:900 msgid "ARCnet" -msgstr "" +msgstr "ARCnet" #: ../plugins/netstatus/netstatus-iface.c:906 msgid "Frame Relay DLCI" -msgstr "" +msgstr "Frame Relay DLCI" #: ../plugins/netstatus/netstatus-iface.c:912 msgid "Metricom Starmode IP" -msgstr "" +msgstr "Metricom Starmode-IP" #: ../plugins/netstatus/netstatus-iface.c:915 msgid "Serial Line IP" -msgstr "" +msgstr "Seriellinje-IP" #: ../plugins/netstatus/netstatus-iface.c:918 msgid "VJ Serial Line IP" -msgstr "" +msgstr "VJ-seriellinje-IP" #: ../plugins/netstatus/netstatus-iface.c:921 msgid "6-bit Serial Line IP" -msgstr "" +msgstr "6-bit seriellinje-IP" #: ../plugins/netstatus/netstatus-iface.c:924 msgid "VJ 6-bit Serial Line IP" -msgstr "" +msgstr "VJ 6-bit seriellinje-IP" #: ../plugins/netstatus/netstatus-iface.c:930 msgid "Adaptive Serial Line IP" -msgstr "" +msgstr "Adaptiv seriellinje-IP" #: ../plugins/netstatus/netstatus-iface.c:933 msgid "AMPR ROSE" -msgstr "" +msgstr "AMPR ROSE" #: ../plugins/netstatus/netstatus-iface.c:936 msgid "Generic X.25" -msgstr "" +msgstr "Generisk X.25" #: ../plugins/netstatus/netstatus-iface.c:939 msgid "Point-to-Point Protocol" -msgstr "" +msgstr "Punkt-til-punkt-protokoll" #: ../plugins/netstatus/netstatus-iface.c:945 msgid "(Cisco)-HDLC" -msgstr "" +msgstr "(Cisco)-HDLC" #: ../plugins/netstatus/netstatus-iface.c:948 msgid "LAPB" -msgstr "" +msgstr "LAPB" #: ../plugins/netstatus/netstatus-iface.c:957 msgid "IPIP Tunnel" -msgstr "" +msgstr "IPIP-tunnel" #: ../plugins/netstatus/netstatus-iface.c:963 msgid "Frame Relay Access Device" -msgstr "" +msgstr "Frame Relay-tilgangsenhet" #: ../plugins/netstatus/netstatus-iface.c:969 msgid "Local Loopback" -msgstr "" +msgstr "Lokal løkkeføring" #: ../plugins/netstatus/netstatus-iface.c:975 msgid "Fiber Distributed Data Interface" -msgstr "" +msgstr "Fiberdistribuert datagrensesnitt" #: ../plugins/netstatus/netstatus-iface.c:981 msgid "IPv6-in-IPv4" -msgstr "" +msgstr "IPv6-i-IPv4" #: ../plugins/netstatus/netstatus-iface.c:993 msgid "HIPPI" -msgstr "" +msgstr "HIPPI" #: ../plugins/netstatus/netstatus-iface.c:996 msgid "Ash" -msgstr "" +msgstr "Ash" #: ../plugins/netstatus/netstatus-iface.c:999 msgid "Econet" -msgstr "" +msgstr "Econet" #: ../plugins/netstatus/netstatus-iface.c:1002 msgid "IrLAP" -msgstr "" +msgstr "IrLAP" #: ../plugins/netstatus/netstatus-iface.c:1163 #, c-format msgid "SIOCGIFCONF error: %s" -msgstr "" +msgstr "SIOCGIFCONF-feil: %s" #: ../plugins/netstatus/netstatus-iface.c:1256 #, c-format msgid "No network devices found" -msgstr "" +msgstr "Ingen nettverksenheter ble funnet" #: ../plugins/netstatus/netstatus-sysdeps.c:180 #, c-format msgid "Cannot open /proc/net/dev: %s" -msgstr "" +msgstr "Kan ikke åpne /proc/net/dev: %s" #: ../plugins/netstatus/netstatus-sysdeps.c:185 msgid "Could not parse /proc/net/dev. No data." -msgstr "" +msgstr "Kunne ikke tolke /proc/net/dev. Ingen data." #: ../plugins/netstatus/netstatus-sysdeps.c:190 msgid "Could not parse /proc/net/dev. Unknown format." -msgstr "" +msgstr "Kunne ikke tolke /proc/net/dev. Ukjent format." #: ../plugins/netstatus/netstatus-sysdeps.c:205 #: ../plugins/netstatus/netstatus-sysdeps.c:332 #, c-format msgid "Could not parse interface name from '%s'" -msgstr "" +msgstr "Kunne ikke tolke grensesnittsnavnet fra '%s'" #: ../plugins/netstatus/netstatus-sysdeps.c:218 #: ../plugins/netstatus/netstatus-sysdeps.c:647 @@ -1525,202 +1518,220 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" +"Kunne ikke tolke statistikker fra '%s'. prx_idx = %d; ptx_idx = %d; brx_idx " +"= %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." -msgstr "" +msgstr "Kunne ikke tolke /proc/net/wireless. Ingen data." #: ../plugins/netstatus/netstatus-sysdeps.c:316 msgid "Could not parse /proc/net/wireless. Unknown format." -msgstr "" +msgstr "Kunne ikke tolke /proc/net/wireless. Ukjent format." #: ../plugins/netstatus/netstatus-sysdeps.c:343 #, c-format msgid "Could not parse wireless details from '%s'. link_idx = %d;" -msgstr "" +msgstr "Kunne ikke tolke trådløse detaljer fra '%s'. link_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:416 #, c-format msgid "Could not connect to interface, '%s'" -msgstr "" +msgstr "Kunne ikke koble til grensesnittet, '%s'" #: ../plugins/netstatus/netstatus-sysdeps.c:422 #, c-format msgid "Could not send ioctl to interface, '%s'" -msgstr "" +msgstr "Kunne ikke sende ioctl til grensesnittet, '%s'" #: ../plugins/netstatus/netstatus-sysdeps.c:600 #, c-format msgid "Could not parse command line '%s': %s" -msgstr "" +msgstr "Kunne ikke tolke ledeteksten '%s': %s" #: ../plugins/netstatus/netstatus-sysdeps.c:637 msgid "Could not parse 'netstat' output. Unknown format" -msgstr "" +msgstr "Klarte ikke å tolke 'netstat'-utdata. Ukjent format" #: ../plugins/netstatus/netstatus-util.c:152 msgid "Disconnected" -msgstr "" +msgstr "Frakoblet" #: ../plugins/netstatus/netstatus-util.c:155 msgid "Idle" -msgstr "" +msgstr "Rolig" #: ../plugins/netstatus/netstatus-util.c:158 msgid "Sending" -msgstr "" +msgstr "Sender" #: ../plugins/netstatus/netstatus-util.c:161 msgid "Receiving" -msgstr "" +msgstr "Mottar" #: ../plugins/netstatus/netstatus-util.c:164 msgid "Sending/Receiving" -msgstr "" +msgstr "Sender/Mottar" -#: ../plugins/batt/batt.c:155 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:156 +#, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" -msgstr "Batteri: %d%% oppladet, %d:%02d til det er fullladet" +msgstr "Batteri: %d: %d%% oppladet, %d:%02d til det er fullladet" -#: ../plugins/batt/batt.c:169 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:170 +#, c-format msgid "Battery %d: %d%% charged, %d:%02d left" -msgstr "Batteri: %d%% oppladet, %d:%02d igjen" +msgstr "Batteri: %d: %d%% oppladet, %d:%02d igjen" -#: ../plugins/batt/batt.c:176 -#, fuzzy, c-format +#: ../plugins/batt/batt.c:177 +#, c-format msgid "Battery %d: %d%% charged" -msgstr "Batteri: %d%% oppladet" +msgstr "Batteri: %d: %d%% oppladet" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" +"\n" +"%sEnergi teknisk fullt:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" +"\n" +"%sEnergi fullt:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" +"\n" +"%sEnergi nå:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" +"\n" +"%sStrøm nå:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" +"\n" +"%sLading teknisk fullt:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" +"\n" +"%sLading fullt:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" +"\n" +"%sLading nå:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" +"\n" +"%sNåværende:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" +"\n" +"%sNåværende spenning:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Ingen batteri funnet" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 -#, fuzzy +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" -msgstr "Batteriovervåkning" +msgstr "Lavt batteri" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Batteriovervåkning" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Skjul hvis maskinen er uten batteri" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmkommando" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtid (minutter igjen)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Bakgrunnsfarge" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Oppladingsfarge 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Oppladingsfarge 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Utladingsfarge 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Utladingsfarge 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Rammebredde" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" -msgstr "" +msgstr "Vis utvidet informasjon" -#: ../plugins/batt/batt.c:713 -#, fuzzy +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" -msgstr "Batteriovervåkning" +msgstr "Antall batterier som skal overvåkes" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Vis batteristatus med ACPI" #: ../plugins/kbled/kbled.c:203 ../plugins/kbled/kbled.c:234 msgid "Keyboard LED" -msgstr "" +msgstr "Tastatur-LED" #: ../plugins/kbled/kbled.c:205 msgid "Show CapsLock" @@ -1741,90 +1752,87 @@ #. A label to allow for click through #: ../plugins/indicator/indicator.c:694 msgid "No Indicators" -msgstr "" +msgstr "Ingen indikatorer" #: ../plugins/indicator/indicator.c:863 ../plugins/indicator/indicator.c:881 msgid "Indicator applets" -msgstr "" +msgstr "Indikator-appleter" #: ../plugins/indicator/indicator.c:865 msgid "Indicator Applications" -msgstr "" +msgstr "Indikatorprogrammer" #: ../plugins/indicator/indicator.c:866 msgid "Clock Indicator" -msgstr "" +msgstr "Klokkeindikator" #: ../plugins/indicator/indicator.c:867 msgid "Messaging Menu" -msgstr "" +msgstr "Meldingsmeny" #: ../plugins/indicator/indicator.c:868 msgid "Network Menu" -msgstr "" +msgstr "Nettverksmeny" #: ../plugins/indicator/indicator.c:869 msgid "Session Menu" -msgstr "" +msgstr "Øktmeny" #: ../plugins/indicator/indicator.c:870 msgid "Sound Menu" -msgstr "" +msgstr "Lydmeny" #: ../plugins/indicator/indicator.c:882 msgid "Add indicator applets to the panel" -msgstr "" +msgstr "Legg til indikator-appleter i panelet" #: ../plugins/monitors/monitors.c:285 #, c-format msgid "CPU usage: %.2f%%" -msgstr "" +msgstr "CPU-bruk: %.2f%%" #: ../plugins/monitors/monitors.c:386 #, c-format msgid "RAM usage: %.1fMB (%.2f%%)" -msgstr "" +msgstr "RAM-bruk: %.1fMB (%.2f%%)" #: ../plugins/monitors/monitors.c:732 ../plugins/monitors/monitors.c:821 -#, fuzzy msgid "Resource monitors" -msgstr "Temperaturoversikt" +msgstr "Ressursovervåkere" #: ../plugins/monitors/monitors.c:735 -#, fuzzy msgid "CPU color" -msgstr "Selvvalgt farge" +msgstr "CPU-farge" #: ../plugins/monitors/monitors.c:736 -#, fuzzy msgid "Display RAM usage" -msgstr "Vis CPU-bruk" +msgstr "Vis RAM-bruk" #: ../plugins/monitors/monitors.c:737 msgid "RAM color" -msgstr "" +msgstr "RAM-farge" #: ../plugins/monitors/monitors.c:738 msgid "Action when clicked (default: lxtask)" -msgstr "" +msgstr "Handling ved klikk (standard: LXtask)" #: ../plugins/monitors/monitors.c:822 msgid "Display monitors (CPU, RAM)" -msgstr "" +msgstr "Vis overvåkere (CPU, RAM)" #: ../plugins/weather/weatherwidget.c:52 msgid "[N/A]" -msgstr "" +msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" -msgstr "" +msgstr "Skriv inn en ny plassering" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" -msgstr "" +msgstr "_Ny plassering:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1832,278 +1840,276 @@ "- postal code\n" "for which to retrieve the weather forecast." msgstr "" +"Skriv inn:\n" +"- byen, eller\n" +"- byen og landet/delstaten, eller\n" +"- postnummeret\n" +"som værmeldingen skal hentes for." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." -msgstr "" +msgstr "Du må spesifisere en plassering." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" -msgstr "" +msgstr "'%s'-plasseringen ble ikke funnet!" -#: ../plugins/weather/weatherwidget.c:1075 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" -msgstr "Paneloppsett" +msgstr "Innstillinger" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" -msgstr "" +msgstr "Oppdater" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" -msgstr "" +msgstr "Avslutt" -#: ../plugins/weather/weatherwidget.c:1254 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" -msgstr "Paneloppsett" +msgstr "Værpreferanser" -#: ../plugins/weather/weatherwidget.c:1268 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" -msgstr "Lastede programtillegg" +msgstr "Gjeldende plassering" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" -msgstr "Opp_sett" +msgstr "Ingen er satt opp" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" -msgstr "" +msgstr "_Bestem" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" -msgstr "" +msgstr "Vis" -#: ../plugins/weather/weatherwidget.c:1299 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" -msgstr "_Navn:" +msgstr "Navn:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" -msgstr "" +msgstr "Enheter:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" -msgstr "" +msgstr "_Metrisk (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" -msgstr "" +msgstr "_Amerikansk (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" -msgstr "" +msgstr "Værvarsel" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" -msgstr "" +msgstr "Oppdateringer:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" -msgstr "" +msgstr "Ma_nuelt" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" -msgstr "" +msgstr "_Automatisk, hver" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" -msgstr "" +msgstr "minutter" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" -msgstr "" +msgstr "Kilde:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" -msgstr "" +msgstr "E_ndre" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" -msgstr "" +msgstr "Gjeldende forhold for %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" -msgstr "" +msgstr "Plassering:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" -msgstr "" +msgstr "Senest oppdatert:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" -msgstr "" +msgstr "Føles som:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" -msgstr "" +msgstr "Luftfuktighet:" -#: ../plugins/weather/weatherwidget.c:1747 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" -msgstr "IP Adresse:" +msgstr "Lufttrykk:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" -msgstr "" +msgstr "Synlighet:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" -msgstr "" +msgstr "Vind:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" -msgstr "" +msgstr "Soloppgang:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" -msgstr "" +msgstr "Solnedgang:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." -msgstr "" +msgstr "Værmelding for %s er utilgjengelig." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 -#, fuzzy, c-format +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format msgid "Location not set." -msgstr "Utloggingskommando er ikke valgt" +msgstr "Ingen plassering har blitt valgt." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." -msgstr "" +msgstr "Søker etter «%s» …" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" -msgstr "" +msgstr "Plasseringssamsvaringer for '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" -msgstr "" +msgstr "By" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" -msgstr "" +msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " -msgstr "Lastede programtillegg" +msgstr "For øyeblikket i " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " -msgstr "" +msgstr "I dag: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " -msgstr "" +msgstr "I morgen: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" -msgstr "" +msgstr "Værtillegg" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." -msgstr "" +msgstr "Vis værforhold for en plassering." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" -msgstr "" +msgstr "N" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" -msgstr "" +msgstr "NNØ" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" -msgstr "" +msgstr "NØ" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" -msgstr "" +msgstr "ØNØ" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" -msgstr "" +msgstr "E" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" -msgstr "" +msgstr "ØSØ" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" -msgstr "" +msgstr "SØ" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" -msgstr "" +msgstr "SSØ" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" -msgstr "" +msgstr "S" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" -msgstr "" +msgstr "SSV" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" -msgstr "" +msgstr "SV" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" -msgstr "" +msgstr "VSV" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" -msgstr "" +msgstr "O" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" -msgstr "" +msgstr "VNV" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" -msgstr "" +msgstr "NV" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" -msgstr "" +msgstr "NNV" #: ../plugins/weather/yahooutil.c:1086 msgid "Yahoo! Weather" -msgstr "" +msgstr "Yahoo! Weather" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" -msgstr "" +msgstr "Mph" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" -msgstr "" +msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" -msgstr "" +msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" -msgstr "" +msgstr "OpenWeatherMap" #~ msgid "Normal" #~ msgstr "Normal" @@ -2120,9 +2126,6 @@ #~ msgid "Display system temperature, by kesler.daniel@gmail.com" #~ msgstr "Vis systemtemperatur, av kesler.daniel@gmail.com" -#~ msgid "Desktop No / Workspace Name" -#~ msgstr "Skrivebordsnummer / Navn på arbeidsområde" - #~ msgid "Battery: %d%% charged, %s" #~ msgstr "Batteri: %d%% oppladet, %s" diff -Nru lxpanel-0.10.0/po/nl.po lxpanel-0.10.1/po/nl.po --- lxpanel-0.10.0/po/nl.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/nl.po 2021-02-06 21:04:55.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2018-05-25 11:05+0000\n" "Last-Translator: Pjotr \n" "Language-Team: Dutch\n" -"Language: nl\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1527246312.241216\n" -"X-Pootle-Path: /nl/lxpanel/po/nl.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /nl/lxpanel/po/nl.po\n" +"X-POOTLE-MTIME: 1527246312.241216\n" #: ../src/configurator.c:148 msgid "" @@ -90,8 +90,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Auteursrecht (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Auteursrecht (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -131,27 +131,27 @@ msgid "Panel" msgstr "Werkbalk" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Hoogte:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Breedte:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Links" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Rechts" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Bovenaan" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Onderaan" @@ -177,8 +177,8 @@ msgstr "Afmelden" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lichtgewicht GTK2+ werkbalk voor UNIX-werkomgevingen\n" #: ../src/main.c:324 @@ -280,7 +280,7 @@ msgstr "Tussenruimte" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Grootte" @@ -661,8 +661,9 @@ msgstr "Balk met knoppen om toepassingen te starten" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "De taakbalk toont alle geopende vensters, en laat toe er pictogrammen van te " @@ -1002,7 +1003,8 @@ msgstr "Bedieningsschil voor CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "CPU-frequentie tonen en toestaan dat governors en frequentie worden veranderd" @@ -1340,7 +1342,7 @@ msgstr "Naam van de netwerkkaart" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1525,8 +1527,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Kon netwerkkaart-statistieken niet lezen vanuit '%s'. prx_idx = %d; ptx_idx " -"= %d; brx_idx = %d; btx_idx = %d;" +"Kon netwerkkaart-statistieken niet lezen vanuit '%s'. prx_idx = %d; ptx_idx =" +" %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1580,22 +1582,22 @@ msgid "Sending/Receiving" msgstr "Verzenden/ontvangen..." -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Accu %d: %d%% opgeladen, %d:%02d tot volledig opgeladen" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Accu %d: %d%% opgeladen, %d:%02d overblijvend" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Accu %d: %d%% opgeladen" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1604,7 +1606,7 @@ "\n" "%sLading-vol-ontwerp:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1613,7 +1615,7 @@ "\n" "%sLading vol:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1622,7 +1624,7 @@ "\n" "%sLading nu:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1631,7 +1633,7 @@ "\n" "%sLading nu:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1640,7 +1642,7 @@ "\n" "%sLadingsniveau-vol-ontwerp:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1649,7 +1651,7 @@ "\n" "%sLadingsniveau vol:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1658,7 +1660,7 @@ "\n" "%sLading nu:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1667,7 +1669,7 @@ "\n" "%sStroom nu:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1676,63 +1678,63 @@ "\n" "%sHuidig voltage:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Geen accu's gevonden" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Acculading laag" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Accubewaker" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Verberg indien geen accu aanwezig" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmopdracht" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtijd (overblijvende minuten)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Achtergrondkleur" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Oplaadkleur 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Oplaadkleur 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Ontlaadkleur 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Ontlaadkleur 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Randbreedte" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Uitgebreide informatie tonen" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Aantal te bewaken accu's" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Toon status van de accu met behulp van ACPI" @@ -1831,15 +1833,15 @@ msgid "[N/A]" msgstr "[N.v.t.]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Voer nieuwe locatie in" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nieuwe locatie:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1853,248 +1855,248 @@ "- postcode\n" "waarvoor de weersverwachting moet worden opgehaald." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "U dient een locatie op te geven." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Locatie '%s' niet gevonden!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Voorkeuren" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Verversen" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Afsluiten" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Weervoorkeuren" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Huidige locatie" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Geen ingesteld" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "In_stellen" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Weergave" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Naam:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Eenheden:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrisch (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Engels (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Voorspelling" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Bijwerken:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Handleiding" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatisch, elke" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minuten" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Bron:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Veranderen" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Huidige omstandigheden voor %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Locatie:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Laatst bijgewerkt:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Voelt aan als:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Luchtvochtigheid:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Luchtdruk:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Zicht:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Wind:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Zonsopgang:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Zonsondergang:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Voorspelling voor %s niet beschikbaar." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Locatie niet ingesteld." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Aan het zoeken naar '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Locatie-overeenkomsten voor '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Stad" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Thans in " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Vandaag: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Morgen: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Weer-invoegtoepassing" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Toon weersomstandigheden voor een locatie." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2102,18 +2104,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/nn.po lxpanel-0.10.1/po/nn.po --- lxpanel-0.10.0/po/nn.po 2019-02-21 23:24:16.000000000 +0000 +++ lxpanel-0.10.1/po/nn.po 2021-02-06 21:04:30.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright © 2009 Karl Ove Hufthammer # This file is distributed under the same license as the lxpanel package. # Karl Ove Hufthammer , 2009. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-12-31 00:14+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" -"Language: nn\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -"X-Pootle-Path: /nn/lxpanel/po/nn.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /nn/lxpanel/po/nn.po\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Copyright © 2008–2011" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Høgd:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Breidd:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Til venstre" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Til høgre" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Oppe" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Nede" @@ -172,8 +171,8 @@ msgstr "Logg ut" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s – lett GTK2+-panel for UNIX-skrivebord\n" #: ../src/main.c:324 @@ -275,7 +274,7 @@ msgstr "Mellomrom" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Storleik" @@ -668,8 +667,9 @@ msgstr "Linje med knappar for å starta program" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Oppgåvelinja viser alle opne vindauge, og lèt deg minimera dei, rulla dei " @@ -743,9 +743,12 @@ msgstr "Verktøytipsformat" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Formatkodar: «man 3 strftime», og «\\n» for linjeskift" +msgstr "" +"Formatkodar: «man 3 strftime», og «\\n" +"» for linjeskift" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -907,8 +910,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "tekst" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1021,7 +1025,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1353,7 +1357,7 @@ msgstr "Grensesnitt-namnet" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1595,143 +1599,146 @@ msgid "Sending/Receiving" msgstr "Sender / tek imot" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batteri: %d %% lada – %d.%02d til det er fullt" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batteri: %d %% lada – %d.%02d igjen" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Batteri: %d %% lada" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Fann ikkje nokon batteri" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Batteriovervaking" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Batteriovervaking" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Gøym viss det ikkje er noko batteri" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmkommando" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtid (minutt igjen)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Bakgrunnsfarge" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Ladefarge 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Ladefarge 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Utladingsfarge 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Utladingsfarge 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Breidd på kantlinje" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Grensesnittet som skal overvakast" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Vis batteristatus med ACPI" @@ -1838,16 +1845,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Nettverkssamband" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1856,256 +1863,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Paneloppsett" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Paneloppsett" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Retning" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "_Set opp" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Namn:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP-adresse:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Utloggingskommandoen er ikkje vald" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Lasta programtillegg" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Enkel skrivebordsbytar" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2113,19 +2121,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2156,9 +2164,6 @@ #~ msgid "image" #~ msgstr "bilete" -#~ msgid "text" -#~ msgstr "tekst" - #~ msgid "Per application settings" #~ msgstr "Etter programinnstillingane" diff -Nru lxpanel-0.10.0/po/pa.po lxpanel-0.10.1/po/pa.po --- lxpanel-0.10.0/po/pa.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/pa.po 2021-02-06 21:01:44.000000000 +0000 @@ -1,12 +1,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# # A S Alam , 2010. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2010-09-13 23:29+0530\n" "Last-Translator: A S Alam \n" "Language-Team: testLokalize \n" @@ -16,8 +15,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -"X-Pootle-Path: /pa/lxpanel/po/pa.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /pa/lxpanel/po/pa.po\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Copyright (C) 2008-2011" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "ਪੈਨਲ" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "ਉਚਾਈ:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "ਚੌੜਾਈ:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "ਖੱਬੇ" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ਸੱਜੇ" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "ਉੱਤੇ" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "ਤਲ" @@ -173,7 +172,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -275,7 +274,7 @@ msgstr "ਸਪੇਸਰ" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "ਅਕਾਰ" @@ -668,7 +667,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -902,8 +901,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "ਟੈਕਸਟ" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1011,7 +1011,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1260,9 +1260,9 @@ msgstr "ਕੁਨੈਕਸ਼ਨ ਵਿਸ਼ੇਸ਼ਤਾ" #: ../plugins/netstatus/netstatus-dialog.c:123 -#, c-format +#, c-format, fuzzy msgid "Connection Properties: %s" -msgstr "" +msgstr "ਕੁਨੈਕਸ਼ਨ ਵਿਸ਼ੇਸ਼ਤਾ" #: ../plugins/netstatus/netstatus-dialog.c:136 #, c-format @@ -1336,13 +1336,14 @@ msgstr "ਇੰਟਰਫੇਸ ਨਾਂ" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "ਹਾਲਤ" #: ../plugins/netstatus/netstatus-iface.c:157 +#, fuzzy msgid "The interface state" -msgstr "" +msgstr "ਇੰਟਰਫੇਸ ਨਾਂ" #: ../plugins/netstatus/netstatus-iface.c:165 msgid "Stats" @@ -1574,141 +1575,141 @@ msgid "Sending/Receiving" msgstr "ਭੇਜੇ/ਲਏ" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "" @@ -1812,16 +1813,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "ਨੈੱਟਵਰਕ ਕੁਨੈਕਸ਼ਨ" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1830,255 +1831,256 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "ਪੈਨਲ ਪਸੰਦ" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "ਪੈਨਲ ਪਸੰਦ" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "ਸਥਿਤੀ" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "ਸੰਰਚਨਾ(_f)" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "ਨਾਂ(_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP ਐਡਰੈੱਸ:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "ਲਾਗਆਉਟ ਕਮਾਂਡ ਸੈੱਟ ਨਹੀਂ ਹੈ" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "ਮੌਜੂਦਾ ਲੋਡ ਕੀਤੀਆਂ ਪਲੱਗਇਨ" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2086,19 +2088,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2117,8 +2119,5 @@ #~ msgid "image" #~ msgstr "ਚਿੱਤਰ" -#~ msgid "text" -#~ msgstr "ਟੈਕਸਟ" - #~ msgid "Default layout:" #~ msgstr "ਡਿਫਾਲਟ ਲੇਆਉਟ:" diff -Nru lxpanel-0.10.0/po/pl.po lxpanel-0.10.1/po/pl.po --- lxpanel-0.10.0/po/pl.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/pl.po 2021-02-06 21:04:08.000000000 +0000 @@ -9,20 +9,20 @@ msgstr "" "Project-Id-Version: lxpanel 0.5.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-25 06:59+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: LANGUAGE \n" -"Language: pl\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495695544.309291\n" -"X-Pootle-Path: /pl/lxpanel/po/pl.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /pl/lxpanel/po/pl.po\n" +"X-POOTLE-MTIME: 1495695544.309291\n" #: ../src/configurator.c:148 msgid "" @@ -96,8 +96,8 @@ # a może "Chronione Prawami Autorskimi (C) 2009-2009" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Prawa autorskie (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Prawa autorskie (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -139,27 +139,27 @@ # msgid "% of edge" # msgstr "% krawędźi" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Wysokość:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Szerokość:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Lewo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Prawo" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Góra" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dół" @@ -185,8 +185,8 @@ msgstr "Wyloguj" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lekki panel GTK2+ dla środowisk graficznych UNIX\n" #: ../src/main.c:324 @@ -202,8 +202,7 @@ #: ../src/main.c:326 #, c-format msgid " --version -- print version and exit\n" -msgstr "" -" --version Wypisuje informacje o wersji i kończy działanie programu\n" +msgstr " --version Wypisuje informacje o wersji i kończy działanie programu\n" #. g_print(_(" --log -- set log level 0-5. 0 - none 5 - chatty\n")); #. g_print(_(" --configure -- launch configuration utility\n")); @@ -290,7 +289,7 @@ msgstr "Odstęp" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Rozmiar:" @@ -671,8 +670,9 @@ msgstr "Wyświetla aktywatory programów w postaci przycisków" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Pasek zadań wyświetla wszystkie otwarte okna i umożliwia manipulowanie nimi." @@ -751,8 +751,7 @@ #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" -msgstr "" -"Polecenie wykonywane po kliknięciu (domyślnie: wyświetlenie kalendarza)" +msgstr "Polecenie wykonywane po kliknięciu (domyślnie: wyświetlenie kalendarza)" #: ../plugins/dclock.c:440 msgid "Tooltip only" @@ -1010,7 +1009,8 @@ msgstr "Nakładka CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Wyświetla częstotliwość CPU i umożliwia zmianę jego zarządcy oraz " "częstotliwości" @@ -1031,8 +1031,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Błąd. Aby skonfigurować dźwięk, należy zainstalować odpowiedni program " -"(pavucontrol, alsamixer...)." +"Błąd. Aby skonfigurować dźwięk, należy zainstalować odpowiedni program (" +"pavucontrol, alsamixer...)." #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1348,7 +1348,7 @@ msgstr "Nazwa interfejsu" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stan" @@ -1533,8 +1533,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Nie można przeanalizować statystyk interfejsu z „%s”. prx_idx = %d; ptx_idx " -"= %d; brx_idx = %d; btx_idx = %d;" +"Nie można przeanalizować statystyk interfejsu z „%s”. prx_idx = %d; ptx_idx =" +" %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1590,22 +1590,22 @@ msgid "Sending/Receiving" msgstr "Wysyłanie/odbieranie" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateria %d: naładowana w %d%%, pozostało do naładowania: %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateria %d: naładowana w %d%%, pozostało %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Bateria %d: naładowana w %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1614,7 +1614,7 @@ "\n" "%sZnamionowa ilość energii:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1623,7 +1623,7 @@ "\n" "%sPełna energia:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1632,7 +1632,7 @@ "\n" "%sAktualna energia:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1641,7 +1641,7 @@ "\n" "%sAktualna moc:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1650,7 +1650,7 @@ "\n" "%sProjektowane pełne ładowanie:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1659,7 +1659,7 @@ "\n" "%sPełne ładowanie:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1668,7 +1668,7 @@ "\n" "%sBieżące ładowanie:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1677,7 +1677,7 @@ "\n" "%sBieżące natężenie:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1686,63 +1686,63 @@ "\n" "%sBieżące napięcie:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nie odnaleziono akumulatora" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Niski poziom baterii" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor baterii" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ukryj, jeśli nie ma baterii" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Polecenie alarmu" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Czas alarmu (ilość minut do rozładowania)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Kolor tła" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Kolor ładowania 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Kolor ładowania 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Kolor rozładowywania 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Kolor rozładowywania 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Grubość obramowania" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Wyświetlanie dodatkowych informacji" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Numer baterii do monitorowania" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Wyświetla wskaźnik stanu baterii używając ACPI" @@ -1841,15 +1841,15 @@ msgid "[N/A]" msgstr "n/d" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Wprowadź nowe położenie" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nowa lokalizacja:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1863,248 +1863,248 @@ "- kod pocztowy\n" "dla którego pobrać prognozę pogody." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Należy wprowadzić lokalizacje." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Nie odnaleziono lokalizacji „%s”!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferencje" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Wczytaj ponownie" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Zakończ" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferencje pogody" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Bieżąca lokalizacja" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Nie skonfigurowano" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Ustaw" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Wyświetl" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nazwa:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Jednostki:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metryczne (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "Angi_elskie (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognoza" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Aktualizacje" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Ręczne" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatyczne, co" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minut" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Zasób:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Zmień" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Aktualne warunki dla %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Lokalizacja:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Aktualizowano:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Odczuwana temperatura:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Wilgotność:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Ciśnienie:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Widoczność" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Wiatr:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Wschód słońca:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Zachód słońca:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prognoza dla %s niedostępna." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Nie ustalono lokalizacji." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Wyszukiwanie „%s”..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Nazwy lokalizacji pasujących do „%s”" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Miasto" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Kraj" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Aktualnie w " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Dziś: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Jutro: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Wtyczka pogody" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Wyświetla warunki pogodowe dla danej lokalizacji." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2112,19 +2112,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ps.po lxpanel-0.10.1/po/ps.po --- lxpanel-0.10.0/po/ps.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/ps.po 2021-02-06 21:03:34.000000000 +0000 @@ -2,12 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,8 +15,9 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Pootle-Path: /ps/lxpanel/po/ps.po\n" +"X-Generator: Translate Toolkit 2.0.0\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ps/lxpanel/po/ps.po\n" #: ../src/configurator.c:148 msgid "" @@ -81,7 +81,7 @@ msgstr "" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -122,27 +122,27 @@ msgid "Panel" msgstr "" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "" @@ -169,7 +169,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -265,7 +265,7 @@ msgstr "" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "" @@ -647,7 +647,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -974,7 +974,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1232,7 +1232,6 @@ msgid "%lu packet" msgid_plural "%lu packets" msgstr[0] "" -msgstr[1] "" #: ../plugins/netstatus/netstatus-dialog.c:400 #, c-format @@ -1299,7 +1298,7 @@ msgstr "" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "" @@ -1537,141 +1536,141 @@ msgid "Sending/Receiving" msgstr "" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "" @@ -1770,15 +1769,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1787,248 +1786,248 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2036,18 +2035,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/pt_BR.po lxpanel-0.10.1/po/pt_BR.po --- lxpanel-0.10.0/po/pt_BR.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/pt_BR.po 2021-02-06 21:07:33.000000000 +0000 @@ -5,24 +5,23 @@ # Henrique P. Machado , 2008-2009. # Og Maciel , 2009. # Sérgio Cipolla , 2010-2011. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2015-05-25 15:16+0000\n" "Last-Translator: Felipe Braga \n" "Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.7.0-alpha1\n" -"X-POOTLE-MTIME: 1432566999.000000\n" -"X-Pootle-Path: /pt_BR/lxpanel/po/pt_BR.po\n" "X-Pootle-Revision: 2483\n" +"X-Pootle-Path: /pt_BR/lxpanel/po/pt_BR.po\n" +"X-POOTLE-MTIME: 1432566999.000000\n" #: ../src/configurator.c:148 msgid "" @@ -95,7 +94,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Copyright (C) 2008-2014" #: ../src/panel.c:1379 @@ -136,27 +135,27 @@ msgid "Panel" msgstr "Painel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altura:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Largura:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Esquerda" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Direita" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Superior" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Inferior" @@ -182,8 +181,8 @@ msgstr "Desconectar" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - Painel leve em GTK2+ para ambientes UNIX\n" #: ../src/main.c:324 @@ -284,7 +283,7 @@ msgstr "Espaçador" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Tamanho" @@ -665,8 +664,9 @@ msgstr "Barra com botões para lançar aplicativos" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "A barra de tarefas mostra todas as janelas abertas e permite iconificá-las, " @@ -674,8 +674,7 @@ #: ../plugins/launchtaskbar.c:2483 msgid "Bar with buttons to launch application and/or show all opened windows" -msgstr "" -"Barra com botões para lançar aplicativos e/ou listar as janelas abertas" +msgstr "Barra com botões para lançar aplicativos e/ou listar as janelas abertas" #. Add Raise menu item. #: ../plugins/task-button.c:352 @@ -1004,7 +1003,8 @@ msgstr "Interface do CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Exibe a frequência atual da CPU e permite mudar modos (\"governors\") e a " "frequência" @@ -1024,8 +1024,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Erro, você precisa instalar um aplicativo para configurar o som " -"(pavucontrol, alsamixer ...)" +"Erro, você precisa instalar um aplicativo para configurar o som (" +"pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1343,7 +1343,7 @@ msgstr "O nome da interface" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Estado" @@ -1583,22 +1583,25 @@ msgid "Sending/Receiving" msgstr "Enviando/Recebendo" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateria: %d%% carregada, %d:%02d até ficar cheia" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateria: %d%% carregado, %d:%02d restante" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Bateria: %d%% carregada" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1607,7 +1610,7 @@ "\n" "%sEnergia total nominal:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1616,7 +1619,7 @@ "\n" "%sEnergia total:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1625,7 +1628,7 @@ "\n" "%sEnergia atual:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1634,7 +1637,7 @@ "\n" "%sPotência atual:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1643,7 +1646,7 @@ "\n" "%sCarga total nominal:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1652,7 +1655,7 @@ "\n" "%sCarga total:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1661,7 +1664,7 @@ "\n" "%sCarga atual:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1670,7 +1673,7 @@ "\n" "%sCorrente atual:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1679,64 +1682,64 @@ "\n" "%sTensão atual:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nenhuma bateria encontrada" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Bateria fraca" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor de baterias" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Esconder se não houver bateria" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Comando de alarme" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Tempo de alarme (minutos restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Cor de fundo" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Cor de carregamento 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Cor de carregamento 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Cor de descarregamento 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Cor de descarregamento 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Largura da borda" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Mostrar informações estendidas" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Interface para monitorar" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Exibir estado da bateria usando ACPI" @@ -1835,15 +1838,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Digite a nova localização" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Novo local:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1857,248 +1860,248 @@ "- código postal\n" "para o qual obter a previsão do tempo." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Você deve especificar um local." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Localização \"%s\" não encontrada!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferências" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Atualizar" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Sair" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferências climáticas" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Localização atual" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Sem configuração" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Definir" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Visualização" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nome:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unidades:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Métrica (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Inglês (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Previsão" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Atualizações:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nual" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automática, à cada" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutos" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Fonte:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Alterar" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condições atuais de %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Localização:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Última atualização:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Sensação térmica:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Umidade:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pressão:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilidade:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vento:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Nascer do sol:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Pôr-do-sol:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Previsão para %s indisponível" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Localização não definida." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Pesquisando por \"%s\"..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Localizações encontradas para \"%s\"" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Cidade" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "País" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Atualmente em " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Hoje: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Amanhã: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Plug-in de previsão do tempo" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Exibe as condições climáticas de um local." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2106,19 +2109,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/pt.po lxpanel-0.10.1/po/pt.po --- lxpanel-0.10.0/po/pt.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/pt.po 2021-02-06 21:08:29.000000000 +0000 @@ -8,21 +8,21 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2016-11-02 22:46+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: \n" -"Language: pt\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.11\n" -"X-POOTLE-MTIME: 1427376352.000000\n" -"X-Pootle-Path: /pt/lxpanel/po/pt.po\n" "X-Pootle-Revision: 71\n" -"X-Language: pt_PT\n" +"X-Pootle-Path: /pt/lxpanel/po/pt.po\n" "X-Source-Language: C\n" +"X-Language: pt_PT\n" +"X-POOTLE-MTIME: 1427376352.000000\n" #: ../src/configurator.c:148 msgid "" @@ -92,8 +92,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -133,27 +133,27 @@ msgid "Panel" msgstr "Painel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Altura:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Largura:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Esquerda" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Direita" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Superior" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Inferior" @@ -179,8 +179,8 @@ msgstr "Sair" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "Lxpanel %s - painel em GTK2+ para ambientes UNIX\n" #: ../src/main.c:324 @@ -280,7 +280,7 @@ msgstr "Separador" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Tamanho" @@ -662,8 +662,9 @@ msgstr "Barra com botões para iniciar aplicações" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "A barra de tarefas mostra todas as janelas abertas e permite minimizar, " @@ -999,7 +1000,8 @@ msgstr "Interface CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Mostra a frequência do CPU e permite mudar a frequência e os 'governors'" @@ -1020,8 +1022,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Tem que instalar uma aplicação para configurar o som (pavucontrol, " -"alsamixer ...)" +"Tem que instalar uma aplicação para configurar o som (pavucontrol, alsamixer " +"...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1336,7 +1338,7 @@ msgstr "Nome da interface" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Estado" @@ -1578,22 +1580,22 @@ msgid "Sending/Receiving" msgstr "Envio/receção" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Bateria: %d: %d%% carregada, %d:%02d até carregar" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Bateria: %d: %d%% carregada, restam %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Bateria: %d: %d%% carregada" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1602,7 +1604,7 @@ "\n" "%sEnergia total teórica:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1611,7 +1613,7 @@ "\n" "%sEnergia total:\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1620,7 +1622,7 @@ "\n" "%sEnergia atual:\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1629,7 +1631,7 @@ "\n" "%sPotência atual:\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1638,7 +1640,7 @@ "\n" "%sCarga total teórica:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1647,7 +1649,7 @@ "\n" "%sCarga total:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1656,7 +1658,7 @@ "\n" "%sCarga atual:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1665,7 +1667,7 @@ "\n" "%sAtual:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1674,63 +1676,63 @@ "\n" "%sVoltagem atual:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nenhuma bateria encontrada" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Bateria fraca" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor de bateria" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ocultar se não existir bateria" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Comando de alarme" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Tempo de alarme (minutos restantes)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Cor de fundo" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Cor de carga 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Cor de carga 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Cor de descarga 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Cor de descarga 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Largura do contorno" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Mostrar informação detalhada" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Número da bateria a monitorizar" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Mostra o estado da bateria via ACPI" @@ -1829,15 +1831,15 @@ msgid "[N/A]" msgstr "[N/D]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Digite a nova localização" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nova localização:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1851,248 +1853,248 @@ "- código postal\n" "da localização para a qual deseja obter as previsões." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Tem que especificar a localização." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "%s não foi encontrada!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Preferências" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Atualizar" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Sair" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Preferências meteorológicas" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Localização atual" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Não configurada" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Definir" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Mostrar" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Nome:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Unidades:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Métrico (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Imperial (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Previsão" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Atualizações:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuais" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automáticas, a cada" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minutos" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Fonte:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Mud_ar" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Condições meteorológicas para %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Localização:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Última atualização:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Parece:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Humidade:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pressão:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Visibilidade:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vento:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Nascer do Sol:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Por do Sol:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Previsão para %s não disponível." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Localização não definida." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "A pesquisar por %s..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Ocorrências para %s" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Cidade" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "País" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Atualmente em " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Hoje: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Amanhã: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Plugin meteorológico" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Mostra as condições meteorológicas de um local." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2100,18 +2102,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ro.po lxpanel-0.10.1/po/ro.po --- lxpanel-0.10.0/po/ro.po 2019-02-21 23:24:17.000000000 +0000 +++ lxpanel-0.10.1/po/ro.po 2021-02-06 21:07:15.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) 2012 THE LXPanel'S COPYRIGHT HOLDER # This file is distributed under the same license as the LXPanel package. # Mișu Moldovan , 2012. -# msgid "" msgstr "" "Project-Id-Version: LXPanel 0.5.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-10-09 12:57+0200\n" "Last-Translator: Mișu \n" "Language-Team: Romanian \n" -"Language: ro\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /ro/lxpanel/po/ro.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ro/lxpanel/po/ro.po\n" #: ../src/configurator.c:148 msgid "" @@ -88,7 +87,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Drepturi de autor (C) 2008-2011" #: ../src/panel.c:1379 @@ -129,27 +128,27 @@ msgid "Panel" msgstr "Panou" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Înălțime:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Lățime:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Stânga" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Dreapta" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Sus" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Jos" @@ -175,8 +174,8 @@ msgstr "Ieșire" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - un mic panou GTK2+ pentru desktopuri UNIX\n" #: ../src/main.c:324 @@ -278,7 +277,7 @@ msgstr "Distanțier" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Mărime" @@ -668,8 +667,9 @@ msgstr "Butoane pentru lansarea programelor" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Bara cu programe arată toate ferestrele deschise și vă permite să le " @@ -743,9 +743,12 @@ msgstr "Format pentru indicii" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Coduri de formatare: man 3 strftime; \\n pentru sfârșit de linie" +msgstr "" +"Coduri de formatare: man 3 strftime; \\n" +" pentru sfârșit de linie" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -1011,7 +1014,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1030,8 +1033,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Eroare! Trebuie să instalați un program pentru configurarea sunetului " -"(pavucontrol, alsamixer etc.)" +"Eroare! Trebuie să instalați un program pentru configurarea sunetului (" +"pavucontrol, alsamixer etc.)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1347,7 +1350,7 @@ msgstr "Numele interfeței" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stare" @@ -1590,143 +1593,146 @@ msgid "Sending/Receiving" msgstr "Trimitere/Primire" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterie: %d%% încărcată, mai durează %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterie: %d%% încărcată, mai ține %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Baterie: %d%% încărcată" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nu s-a identificat nicio baterie" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Monitor de baterie" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor de baterie" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ascunde dacă nu există o baterie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Comandă de alarmă" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Ora alarmei (minute rămase)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Culoare de fundal" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Culoare de încărcare 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Culoare de încărcare 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Culoare de descărcare 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Culoare de descărcare 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Lățimea chenarului" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Interfață de monitorizat" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Afișează starea bateriei folosind ACPI" @@ -1825,16 +1831,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Conexiune la rețea" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1843,257 +1849,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Preferințe pentru panou" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Preferințe pentru panou" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Orientare" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Con_figurare" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Nume:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 #, fuzzy msgid "C_hange" msgstr "Mod de schimbare" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "Adresă IP:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Comanda de ieșire nu este precizată" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Module încărcate curent" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Modul WNCKPager" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2101,19 +2108,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/ru.po lxpanel-0.10.1/po/ru.po --- lxpanel-0.10.0/po/ru.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/ru.po 2021-02-06 21:05:18.000000000 +0000 @@ -5,20 +5,20 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2019-02-22 03:48+0000\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2019-03-01 01:42+0000\n" "Last-Translator: Alexey Loginov \n" "Language-Team: Russian \n" -"Language: ru\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1550807294.690745\n" -"X-Pootle-Path: /ru/lxpanel/po/ru.po\n" "X-Pootle-Revision: 679\n" +"X-Pootle-Path: /ru/lxpanel/po/ru.po\n" +"X-POOTLE-MTIME: 1550807294.690745\n" #: ../src/configurator.c:148 msgid "" @@ -89,8 +89,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Права сохранены (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Права сохранены (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -130,27 +130,27 @@ msgid "Panel" msgstr "Панель" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Высота:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Ширина:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Слева" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Справа" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Сверху" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Снизу" @@ -177,8 +177,8 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" -msgstr "LXPanel %s - лёгковесная GTK2+ панель для UNIX-десктопов\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" +msgstr "LXPanel %s - лёгковесная GTK+ панель для UNIX-десктопов\n" #: ../src/main.c:324 #, c-format @@ -279,7 +279,7 @@ msgstr "Пространство" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Размер" @@ -577,8 +577,7 @@ #: ../data/ui/panel-pref.glade.h:41 msgid "Reserve space, and not covered by maximized windows" -msgstr "" -"Зарезервировать место и не закрывать окнами, развернутыми на весь экран" +msgstr "Зарезервировать место и не закрывать окнами, развернутыми на весь экран" #: ../data/ui/panel-pref.glade.h:42 msgid "Properties" @@ -662,7 +661,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Панель задач показывает все открытые окна, позволяя затенять или забирать " @@ -995,13 +994,12 @@ msgstr "Отображение CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Отображает частоту ЦП и позволяет управлять частотой" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." -msgstr "" -"Случилась проблема с ALSA (или pulseaudio). Проверьте логи, пожалуйста." +msgstr "Случилась проблема с ALSA (или pulseaudio). Проверьте логи, пожалуйста." #. Display current level in tooltip. #: ../plugins/volumealsa/volumealsa.c:613 @@ -1331,7 +1329,7 @@ msgstr "Имя интерфейса" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Состояние" @@ -1572,22 +1570,22 @@ msgid "Sending/Receiving" msgstr "Прием/Передача" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батарея %d: %d%% заряда, %d:%02d до полной зарядки" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батарея %d: %d%% заряда, %d:%02d осталось" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Батарея %d: %d%% заряда" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1596,7 +1594,7 @@ "\n" "%sРасчётная полная энергия:\t\t%5d мВт*ч" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1605,7 +1603,7 @@ "\n" "%sПолная энергия:\t\t\t%5d мВт*ч" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1614,7 +1612,7 @@ "\n" "%sТекущая энергия:\t\t\t%5d мВт*ч" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1623,7 +1621,7 @@ "\n" "%sТекущая мощность:\t\t\t%5d мВт" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1632,7 +1630,7 @@ "\n" "%sРасчётный полный заряд:\t%5d мА*ч" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1641,7 +1639,7 @@ "\n" "%sПолный заряд:\t\t\t%5d мА*ч" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1650,7 +1648,7 @@ "\n" "%sТекущий заряд:\t\t\t%5d мА*ч" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1659,7 +1657,7 @@ "\n" "%sТок сейчас:\t\t\t%5d мА" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1668,63 +1666,63 @@ "\n" "%sТекущее напряжение:\t\t%.3lf В" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Батареи не обнаружено" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Низкий заряд батареи" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Монитор батареи" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Спрятать при отсутствии батареи" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Команда будильника" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Время будильника (минут осталось)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Цвет фона" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Цвет заряда 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Цвет заряда 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Цвет разрядки 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Цвет разрядки 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Толщина рамки" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Показать дополнительную информацию" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Номер контролируемой батареи" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Показать уровень зарядки, используя ACPI" @@ -1824,15 +1822,15 @@ msgid "[N/A]" msgstr "[Н/Д]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Введите новое расположение" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Новое расположение:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1846,248 +1844,248 @@ "- почтовый код\n" "для выбора места для прогноза погоды." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Вы должны выбрать расположение." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Расположение '%s' не найдено!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Настройки" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Обновить" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Выйти" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Настройки погоды" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Расположение" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Не настроено" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Установить" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Показать" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Имя:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Единицы измерения:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Метрические (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Британские (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Прогноз" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Обновлять:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Вручную" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Автоматически, каждые" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "минут(ы)" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Источник:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Изменить" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Текущие условия в %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Расположение:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Последнее обновление:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "По ощущению:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Влажность:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Давление:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Видимость:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Ветер:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Восход Солнца:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Закат Солнца:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Прогноз для %s не доступен." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Расположение не выбрано." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Поиск '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Расположения подходящие под '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Город" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Страна" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Сейчас в " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Сегодня: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Завтра: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Состояние погоды" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Показывает состояние погоды." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "С" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "ССВ" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "СВ" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "ВСВ" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "В" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "ВЮВ" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "ЮВ" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "ЮЮВ" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "Ю" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "ЮЮЗ" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "ЮЗ" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "ЗЮЗ" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "З" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "ЗСЗ" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "СЗ" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "ССЗ" @@ -2095,18 +2093,18 @@ msgid "Yahoo! Weather" msgstr "Yahoo! Погода" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "миль/ч" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "м/с" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "м" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "OpenWeatherMap" diff -Nru lxpanel-0.10.0/po/sk.po lxpanel-0.10.1/po/sk.po --- lxpanel-0.10.0/po/sk.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/sk.po 2021-02-06 21:04:19.000000000 +0000 @@ -2,23 +2,23 @@ # Copyright (C) 2006 lxde team # This file is distributed under the same license as the lxpanel package. # Ivan Masár , 2007, 2009, 2010. -# +# Jose Riha , 2020. msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2019-02-23 20:59+0000\n" -"Last-Translator: mirek \n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2020-12-12 22:51+0100\n" +"Last-Translator: Jose Riha \n" "Language-Team: Slovak \n" -"Language: sk\n" +"Language: sk_SK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Pootle 2.8\n" -"X-Pootle-Path: /sk/lxpanel/po/sk.po\n" +"X-Generator: Poedit 2.4.1\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /sk/lxpanel/po/sk.po\n" "X-POOTLE-MTIME: 1550955553.433579\n" #: ../src/configurator.c:148 @@ -26,6 +26,9 @@ "Space reservation is not available for this panel because there is another " "monitor beyond this edge and reservation would cover it if enabled." msgstr "" +"Rezervovanie miesta nie je pre tento panel dostupné, pretože za týmto " +"okrajom je ďalšia obrazovka a rezervovanie miesta by ju, ak by bolo " +"povolené, zakrylo." #: ../src/configurator.c:632 msgid "Currently loaded plugins" @@ -81,15 +84,16 @@ msgid "translator-credits" msgstr "" "Ivan Masár , 2007, 2009.\n" -"Miroslav Biňas , 2018, 2019" +"Miroslav Biňas , 2018, 2019.\n" +"Jose Riha , 2020." #: ../src/panel.c:1360 msgid "LXPanel" msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -129,27 +133,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Výška:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Šírka:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vľavo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Vpravo" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Hore" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dolu" @@ -176,8 +180,8 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" -msgstr "lxpanel %s - odľahčený GTK2+ panel pre unixové pracovné prostredia\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" +msgstr "lxpanel %s - odľahčený GTK+ panel pre unixové pracovné prostredia\n" #: ../src/main.c:324 #, c-format @@ -229,23 +233,21 @@ "\n" #: ../src/input-button.c:147 -#, fuzzy msgid "LeftBtn" -msgstr "Vľavo" +msgstr "Ľavé tlačidlo" #: ../src/input-button.c:150 msgid "MiddleBtn" -msgstr "" +msgstr "Stredné tlačidlo" #: ../src/input-button.c:153 -#, fuzzy msgid "RightBtn" -msgstr "Vpravo" +msgstr "Pravé tlačidlo" #: ../src/input-button.c:156 #, c-format msgid "Btn%s" -msgstr "" +msgstr "Tlačidlo %s" #: ../src/input-button.c:228 #, c-format @@ -266,9 +268,8 @@ msgstr "Žiadny" #: ../src/input-button.c:336 -#, fuzzy msgid "Custom:" -msgstr "Vlastná farba" +msgstr "Vlastné:" #: ../src/input-button.c:413 #, c-format @@ -281,7 +282,7 @@ msgstr "Rozostup" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Veľkosť" @@ -290,9 +291,8 @@ msgstr "Vyhradiť miesto" #: ../data/ui/launchtaskbar.glade.h:1 ../plugins/launchtaskbar.c:2482 -#, fuzzy msgid "Application Launch and Task Bar" -msgstr "Spúšťací panel" +msgstr "Panel úloh a spúšťanie aplikácií" #. Launchtaskbar mode: launchbar, taskbar, or combined #: ../data/ui/launchtaskbar.glade.h:3 @@ -304,9 +304,8 @@ msgstr "Spúšťače" #: ../data/ui/launchtaskbar.glade.h:5 -#, fuzzy msgid "Launchbar" -msgstr "Priesvitnosť" +msgstr "Panel spúšťania" #: ../data/ui/launchtaskbar.glade.h:6 msgid "Show tooltips" @@ -326,7 +325,7 @@ #: ../data/ui/launchtaskbar.glade.h:10 msgid "Only show windows on the same monitor as the task bar" -msgstr "Okná zobrazovať len na tom istom monitore, na ktorom je panel úloh." +msgstr "Okná zobrazovať len na tom istom monitore, na ktorom je panel úloh" #: ../data/ui/launchtaskbar.glade.h:11 msgid "Use mouse wheel" @@ -342,11 +341,11 @@ #: ../data/ui/launchtaskbar.glade.h:14 msgid "Disable enlargement for small task icons" -msgstr "" +msgstr "Vypnúť zväčšenie pre malé ikony" #: ../data/ui/launchtaskbar.glade.h:15 msgid "Show task icons smaller than rest of panel icons" -msgstr "" +msgstr "Zobraziť ikony úloh menšie ako zvyšok ikon v paneli" #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" @@ -361,19 +360,16 @@ msgstr "Panel úloh" #: ../data/ui/launchtaskbar.glade.h:19 -#, fuzzy msgid "Only Application Launch Bar" -msgstr "Spúšťací panel" +msgstr "Iba panel spúšťania aplikácií" #: ../data/ui/launchtaskbar.glade.h:20 -#, fuzzy msgid "Only Task Bar (Window List)" -msgstr "Panel úloh (Zoznam okien)" +msgstr "Iba panel úloh (Zoznam okien)" #: ../data/ui/launchtaskbar.glade.h:21 -#, fuzzy msgid "Integrated Application Launch Bar and Task Bar" -msgstr "Spúšťací panel" +msgstr "Integrovaný panel spúšťania aplikácií a panel úloh" #: ../data/ui/netstatus.glade.h:1 msgid "Connection" @@ -471,22 +467,20 @@ msgstr "% percent" #: ../data/ui/panel-pref.glade.h:6 -#, fuzzy msgid "Err" msgstr "Chyba" #: ../data/ui/panel-pref.glade.h:7 -#, fuzzy msgid "Warn" -msgstr "Upozornenie1" +msgstr "Upozornenie" #: ../data/ui/panel-pref.glade.h:8 msgid "Info" -msgstr "" +msgstr "Informácie" #: ../data/ui/panel-pref.glade.h:9 msgid "All" -msgstr "" +msgstr "Všetko" #: ../data/ui/panel-pref.glade.h:10 msgid "Panel Preferences" @@ -670,16 +664,17 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Panel úloh zobrazuje všetky otvorené okná a umožňuje ich ikonifikovať, " "zatieniť alebo aktivovať" #: ../plugins/launchtaskbar.c:2483 -#, fuzzy msgid "Bar with buttons to launch application and/or show all opened windows" -msgstr "Panel s tlačidlami pre spúšťanie aplikácií" +msgstr "" +"Panel s tlačidlami pre spúšťanie aplikácií a/alebo zobrazenie všetkých otvorených " +"okien" #. Add Raise menu item. #: ../plugins/task-button.c:352 @@ -793,7 +788,7 @@ #: ../plugins/pager.c:141 msgid "Sorry, there was no window manager configuration program found." -msgstr "" +msgstr "Ľutujem, nebol nájdený žiadny program na nastavenie správcu okien." #: ../plugins/pager.c:193 ../plugins/pager.c:209 msgid "Desktop Pager" @@ -813,7 +808,7 @@ #: ../plugins/xkb/xkb-plugin.c:409 msgid "New session is required for this option to take effect" -msgstr "" +msgstr "Na to, aby sa prejavila táto voľba je potrebné vytvoriť nové sedenie" #. dialog #: ../plugins/xkb/xkb-plugin.c:590 @@ -831,9 +826,8 @@ #. dialog #: ../plugins/xkb/xkb-plugin.c:714 -#, fuzzy msgid "Select Layout Change Type" -msgstr "Vyberte súbor obrázka" +msgstr "Vybrať typ rozloženia klávesnice" #. dialog #: ../plugins/xkb/xkb-plugin.c:887 @@ -881,9 +875,8 @@ msgstr "Ponechať _systémové rozloženie" #: ../plugins/xkb/xkb-plugin.c:1374 -#, fuzzy msgid "Per Window Settings" -msgstr "Nastavenia panela" +msgstr "Nastavenie okna" #: ../plugins/xkb/xkb-plugin.c:1386 msgid "_Remember layout for each window" @@ -906,9 +899,8 @@ msgstr "Veľkosť ikony v paneli" #: ../plugins/xkb/xkb-plugin.c:1545 -#, fuzzy msgid "Handle keyboard layouts" -msgstr "Prepínať medzi dostupnými rozloženiami klávesnice" +msgstr "Prepínať medzi rozloženiami klávesníc" #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." @@ -949,9 +941,8 @@ msgstr "Označenie" #: ../plugins/dirmenu.c:366 -#, fuzzy msgid "Browse directory tree via menu (Author = PCMan)" -msgstr "Prechádzať strom adresárov pomocou menu (autor: PCMan)" +msgstr "Prechádzať adresárový strom pomocou ponuky (Autor = PCMan)" #: ../plugins/thermal/thermal.c:563 ../plugins/thermal/thermal.c:581 msgid "Temperature Monitor" @@ -985,14 +976,12 @@ #. FIXME: if off, disable two below #: ../plugins/thermal/thermal.c:571 -#, fuzzy msgid "Warning1 temperature" -msgstr "Upozornenie1 Teplota" +msgstr "Teplota Upozornenia1" #: ../plugins/thermal/thermal.c:572 -#, fuzzy msgid "Warning2 temperature" -msgstr "Upozornenie2 Teplota" +msgstr "Teplota Upozornenia2" #: ../plugins/thermal/thermal.c:582 msgid "Display system temperature" @@ -1004,14 +993,16 @@ "Frequency: %d MHz\n" "Governor: %s" msgstr "" +"Frekvencia: %d MHz\n" +"Regulátor: %s" #: ../plugins/cpufreq/cpufreq.c:401 msgid "CPUFreq frontend" -msgstr "" +msgstr "Používateľské rozhranie pre CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" -msgstr "" +msgid "Display CPU frequency and allow one to change governors and frequency" +msgstr "Zobraziť frekvenciu CPU a povoliť zmenu regulátorov a frekvencie" #: ../plugins/volumealsa/volumealsa.c:245 msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs." @@ -1030,6 +1021,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" +"Chyba, pre nastavenie zvuku musíte nainštalovať aplikáciu (pavucontrol, " +"alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1044,23 +1037,23 @@ #. Just to have these translated #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Line" -msgstr "" +msgstr "Vstupná sila zvuku" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "LineOut" -msgstr "" +msgstr "Výstupná sila zvuku" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Front" -msgstr "" +msgstr "Predný" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Surround" -msgstr "" +msgstr "Okolitý" #: ../plugins/volumealsa/volumealsa.c:1313 msgid "Speaker+LO" -msgstr "" +msgstr "Reproduktor+LO" #: ../plugins/volumealsa/volumealsa.c:1352 msgid "default" @@ -1069,7 +1062,7 @@ #. desc, index #: ../plugins/volumealsa/volumealsa.c:1412 msgid "Master" -msgstr "" +msgstr "Hlavný" #: ../plugins/volumealsa/volumealsa.c:1416 msgid "PCM" @@ -1081,15 +1074,15 @@ #: ../plugins/volumealsa/volumealsa.c:1442 msgid "Click for Volume Slider" -msgstr "" +msgstr "Kliknite pre posuvník hlasitosti" #: ../plugins/volumealsa/volumealsa.c:1446 msgid "Click for Toggle Mute" -msgstr "" +msgstr "Kliknite pre prepnutie stlmenia" #: ../plugins/volumealsa/volumealsa.c:1450 msgid "Click for Open Mixer" -msgstr "" +msgstr "Kliknutie pre spustenie zmiešavača zvuku" #. setup hotkeys #: ../plugins/volumealsa/volumealsa.c:1454 @@ -1116,7 +1109,7 @@ #: ../plugins/volumealsa/volumealsa.c:1519 msgid "Channel to Operate" -msgstr "" +msgstr "Kanál, ktorý bude obsluhovaný" #: ../plugins/volumealsa/volumealsa.c:1527 msgid "Command to Open Mixer" @@ -1129,7 +1122,7 @@ #: ../plugins/volumealsa/volumealsa.c:1554 #: ../plugins/volumealsa/volumealsa.c:1575 msgid "Display and control volume" -msgstr "" +msgstr "Zobraziť a ovládať hlasitosť" #: ../plugins/netstat/netstat.c:183 msgid "" @@ -1346,7 +1339,7 @@ msgstr "Názov rozhrania" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stav" @@ -1511,9 +1504,8 @@ msgstr "Nepodarilo sa otvoriť /proc/net/dev: %s" #: ../plugins/netstatus/netstatus-sysdeps.c:185 -#, fuzzy msgid "Could not parse /proc/net/dev. No data." -msgstr "Nepodarilo sa prečítať /proc/net/dev. Neznámy formát." +msgstr "Nie je možné spracovať /proc/net/dev. Žiadne údaje." #: ../plugins/netstatus/netstatus-sysdeps.c:190 msgid "Could not parse /proc/net/dev. Unknown format." @@ -1532,7 +1524,7 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Nepodarili sa zistiť štatistiky rozhrania z „%s“. prx_idx = %d; ptx_idx = " +"Nepodarilo sa zistiť štatistiky rozhrania z „%s“. prx_idx = %d; ptx_idx = " "%d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 @@ -1567,7 +1559,7 @@ #: ../plugins/netstatus/netstatus-sysdeps.c:637 msgid "Could not parse 'netstat' output. Unknown format" -msgstr "Nepodarilo sa prečítať výstup „netstat“. Neznámy formát." +msgstr "Nepodarilo sa prečítať výstup „netstat“. Neznámy formát" #: ../plugins/netstatus/netstatus-util.c:152 msgid "Disconnected" @@ -1589,141 +1581,159 @@ msgid "Sending/Receiving" msgstr "Odosiela/prijíma" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batéria %d: nabitá na %d %%, %d:%02d do plného nabitia" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batéria %d: nabitá na %d %%, %d: zostáva %02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batéria %d: nabitá na %d %%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" +"\n" +"%sEnergia plná, návrh:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" +"\n" +"%sEnergia plná:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" +"\n" +"%sEnergia teraz:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" +"\n" +"%sVýkon teraz:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" +"\n" +"%sPlne nabité, návrh:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" +"\n" +"%sPlne nabité:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" +"\n" +"%sNabitie teraz:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" +"\n" +"%sPrúd teraz:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" +"\n" +"%sAktuálne napätie:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Neboli nájdené batérie" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Slabá batéria" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Monitor batérie" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Skryť ak neexistujú batérie" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Príkaz budíka" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Čas budíka (zostáva minút)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Farba pozadia" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Farba nabíjania 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Farba nabíjania 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Farba vybíjania 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Farba vybíjania 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Šírka okraja" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Zobraziť rozširujúce informácie" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Počet batérií na monitorovanie" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Zobrazovať stav batérie pomocou ACPI" @@ -1750,43 +1760,39 @@ #. A label to allow for click through #: ../plugins/indicator/indicator.c:694 msgid "No Indicators" -msgstr "" +msgstr "Žiadny indikátor" #: ../plugins/indicator/indicator.c:863 ../plugins/indicator/indicator.c:881 msgid "Indicator applets" -msgstr "" +msgstr "Ukazovateľ appletov" #: ../plugins/indicator/indicator.c:865 -#, fuzzy msgid "Indicator Applications" -msgstr "Aplikácie" +msgstr "Ukazovateľ aplikácií" #: ../plugins/indicator/indicator.c:866 msgid "Clock Indicator" -msgstr "" +msgstr "Ukazovateľ hodín" #: ../plugins/indicator/indicator.c:867 msgid "Messaging Menu" -msgstr "" +msgstr "Ponuka správ" #: ../plugins/indicator/indicator.c:868 -#, fuzzy msgid "Network Menu" -msgstr "Menu adresára" +msgstr "Ponuka siete" #: ../plugins/indicator/indicator.c:869 msgid "Session Menu" -msgstr "" +msgstr "Ponuka sedenia" #: ../plugins/indicator/indicator.c:870 -#, fuzzy msgid "Sound Menu" -msgstr "Poskytnúť ponuku" +msgstr "Zvuk" #: ../plugins/indicator/indicator.c:882 -#, fuzzy msgid "Add indicator applets to the panel" -msgstr "Pridať oddeľovač do panela" +msgstr "Pridať indikátor appletov na panel" #: ../plugins/monitors/monitors.c:285 #, c-format @@ -1799,9 +1805,8 @@ msgstr "Využitie RAM: %.1fMB (%.2f%%)" #: ../plugins/monitors/monitors.c:732 ../plugins/monitors/monitors.c:821 -#, fuzzy msgid "Resource monitors" -msgstr "Monitorovať rozhranie" +msgstr "Sledovanie zdrojov" #: ../plugins/monitors/monitors.c:735 msgid "CPU color" @@ -1827,15 +1832,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Zadajte nové umiestnenie" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Nové umiestnenie:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1843,274 +1848,276 @@ "- postal code\n" "for which to retrieve the weather forecast." msgstr "" +"Zadajte:\n" +"- mesto alebo\n" +"- mesto a štát/krajinu alebo\n" +"- poštové smerovacie číslo,\n" +"pre ktoré sa má zisťovať predpoveď počasia." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Musíte zadať umiestnenie." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Umiestnenie '%s' sa nenašlo!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Predvoľby" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Obnoviť" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Ukončiť" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Predvoľby počasia" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Súčasná poloha" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" -msgstr "Kon_figurácia" +msgstr "Nič nanastavené" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "Na_staviť" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" -msgstr "" +msgstr "Zobrazenie" -#: ../plugins/weather/weatherwidget.c:1299 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" -msgstr "_Názov:" +msgstr "Názov:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Jednotky:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrické (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Anglické (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Predpoveď" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Aktualizácie:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuálne" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatické, každých" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minút" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Zdroj:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" -msgstr "" +msgstr "_Zmeniť" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Aktuálna predpoveď pre %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Poloha:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Posledná aktualizácia:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" -msgstr "" +msgstr "Pocitová teplota:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Vlhkosť:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Tlak:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Viditeľnosť:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vietor:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Východ slnka:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Západ slnka:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Predpoveď pre %s nie je dostupná." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Umiestnenie nie je zadané." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Vyhľadáva sa '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" -msgstr "" +msgstr "Umiestnenie zodpovedá '%s'" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Mesto" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Krajina" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 -#, fuzzy +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " -msgstr "Momentálne načítané moduly" +msgstr "Aktuálne v " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " -msgstr "Dnes:" +msgstr "Dnes: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Zajtra:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Predpoveď počasia" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Zobrazí predpoveď počasia pre danú lokáciu." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" -msgstr "" +msgstr "S" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" -msgstr "" +msgstr "SSV" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" -msgstr "" +msgstr "SV" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" -msgstr "" +msgstr "VSV" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" -msgstr "" +msgstr "V" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" -msgstr "" +msgstr "VJV" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" -msgstr "" +msgstr "JV" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" -msgstr "" +msgstr "JJV" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" -msgstr "" +msgstr "J" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" -msgstr "" +msgstr "JJZ" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" -msgstr "" +msgstr "JZ" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" -msgstr "" +msgstr "ZJZ" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" -msgstr "" +msgstr "Z" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" -msgstr "" +msgstr "ZSZ" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" -msgstr "" +msgstr "SZ" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" -msgstr "" +msgstr "SSZ" #: ../plugins/weather/yahooutil.c:1086 msgid "Yahoo! Weather" -msgstr "" +msgstr "Yahoo! Weather" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" -msgstr "" +msgstr "míle/h" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" -msgstr "" +msgstr "m/s" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" -msgstr "" +msgstr "m" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" -msgstr "" +msgstr "OpenWeatherMap" #~ msgid " --log -- set log level 0-5. 0 - none 5 - chatty\n" #~ msgstr "" @@ -2307,3 +2314,9 @@ #~ msgid "Plugins..." #~ msgstr "外掛..." + +#~ msgid "Model" +#~ msgstr "Model" + +#~ msgid "WNCKPager" +#~ msgstr "WNCKPager" diff -Nru lxpanel-0.10.0/po/sl.po lxpanel-0.10.1/po/sl.po --- lxpanel-0.10.0/po/sl.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/sl.po 2021-02-06 21:06:24.000000000 +0000 @@ -6,20 +6,20 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-10-26 18:32+0000\n" "Last-Translator: Klemen Košir \n" "Language-Team: Slovenian \n" -"Language: sl\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" -"%100==4 ? 3 : 0);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1414348370.000000\n" -"X-Pootle-Path: /sl/lxpanel/po/sl.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /sl/lxpanel/po/sl.po\n" +"X-POOTLE-MTIME: 1414348370.000000\n" #: ../src/configurator.c:148 msgid "" @@ -86,7 +86,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Avtorske pravice (C) 2008 - 2014" #: ../src/panel.c:1379 @@ -127,27 +127,27 @@ msgid "Panel" msgstr "Pult" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Višina:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Širina:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Levo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Desno" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Vrh" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dno" @@ -173,8 +173,8 @@ msgstr "Odjava" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "LXPanel %s - Na GTK2+ osnovan pult za sisteme UNIX.\n" #: ../src/main.c:324 @@ -276,7 +276,7 @@ msgstr "Presledek" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Velikost" @@ -657,8 +657,9 @@ msgstr "Vrstica z gumbi za zagon programov" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Opravilna vrstica pokaže vsa odprta okna in omogoča, da jih skrčite, zvijete " @@ -993,7 +994,8 @@ msgstr "Začelje CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "Prikazuje frekvenco CPE in omogoča prilagajanje upravljalnika ter frekvence" @@ -1331,7 +1333,7 @@ msgstr "Ime vmesnika" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stanje" @@ -1516,8 +1518,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Iz »%s« ni mogoče razčleniti statistike vmesnika. prx_idx = %d; ptx_idx = " -"%d; brx_idx = %d; btx_idx = %d;" +"Iz »%s« ni mogoče razčleniti statistike vmesnika. prx_idx = %d; ptx_idx = %d;" +" brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1572,26 +1574,29 @@ msgid "Sending/Receiving" msgstr "Pošiljanje/prejemanje" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" "Baterija: %d %%\n" "Polna čez: %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" "Baterija: %d %%\n" "Preostalo: %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Baterija: %d %%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1600,7 +1605,7 @@ "\n" "%sNačrtovana energija polne baterije:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1609,7 +1614,7 @@ "\n" "%sEnergija polne baterije:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1618,7 +1623,7 @@ "\n" "%sTrenutna energija baterije:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1627,7 +1632,7 @@ "\n" "%sTrenutna moč baterije:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1636,7 +1641,7 @@ "\n" "%sNačrtovana napolnjenost polne baterije:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1645,7 +1650,7 @@ "\n" "%sNapolnjenost polne baterije:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1654,7 +1659,7 @@ "\n" "%sTrenutna napolnjenost baterije:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1663,7 +1668,7 @@ "\n" "%sTrenutni tok baterije:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1672,65 +1677,65 @@ "\n" "%sTrenutna napetost:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Baterije ni mogoče najti" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Nadzornik baterije" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Nadzornik baterije" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Skrij, če baterija ni prisotna" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Ukaz ob opozorilu" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Čas opozorila pred prazno baterijo (v minutah)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Barva ozadja" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Polnjenje (1. barva)" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Polnjenje (2. barva)" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Praznjenje (1. barva)" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Praznjenje (2. barva)" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Širina obrobe" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Pokaži podrobnosti" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Nadzorovani vmesnik" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Prikazuje stanje baterije s pomočjo ACPI-ja" @@ -1829,15 +1834,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Vnesite novo mesto" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Novo mesto:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1851,248 +1856,248 @@ "- poštno številko mesta,\n" "za katerega želite vremensko napoved." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Prosimo, vnesite mesto." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Mesta »%s« ni mogoče najti." -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Možnosti" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Osveži" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Končaj" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Možnosti vremena" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Trenutno mesto" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ni nastavljeno" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "Na_stavi" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Prikaz" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Ime:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Enote:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Celzij (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Fahrenheit (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Napoved" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Posodobitve:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Ročno" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Samodejno, vsakih" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minut" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Vir:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Spre_meni" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Trenutne razmere v %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Mesto:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Nazadnje posodobljeno:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Občuti se kot:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Vlaga:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pritisk:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Vidljivost:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Veter:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Sončni vzhod:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Sončni zahod:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Vremenska napoved za %s ni na voljo." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Mesto ni nastavljeno." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Iskanje »%s« ..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Rezultati za »%s«" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Mesto" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Država" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Trenutno mesto: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Danes: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Jutri: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Vstavek za vremensko napoved" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Pokaže vremensko napoved za izbrano mesto" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2100,19 +2105,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/sr@latin.po lxpanel-0.10.1/po/sr@latin.po --- lxpanel-0.10.0/po/sr@latin.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/sr@latin.po 2021-02-06 21:02:44.000000000 +0000 @@ -2,26 +2,24 @@ # Copyright (C) The LXDE Project # This file is distributed under the same license as the LXPanel package. # Jay A. Fleming , 2009-2016. -# -# msgid "" msgstr "" "Project-Id-Version: LXPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-06-27 11:03+0000\n" "Last-Translator: Jay A. Fleming \n" "Language-Team: \n" -"Language: sr@latin\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498561410.714535\n" -"X-Pootle-Path: /sr@latin/lxpanel/po/sr@latin.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /sr@latin/lxpanel/po/sr@latin.po\n" +"X-POOTLE-MTIME: 1498561410.714535\n" #: ../src/configurator.c:148 msgid "" @@ -89,8 +87,8 @@ msgstr "LIks-Panel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Prava tvorca — 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Prava tvorca — 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -130,27 +128,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Visina:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Širina:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "levo" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "desno" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "gore" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "dole" @@ -176,8 +174,8 @@ msgstr "Odjavi se" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - olakšani GTK2+ panel za juniks radne površi\n" #: ../src/main.c:324 @@ -276,7 +274,7 @@ msgstr "Razdvajač — proširiv" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Veličina" @@ -657,8 +655,9 @@ msgstr "Traka sa dugmadima za pokretanje programa" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Traka zadataka prikazuje sve otvorene prozore i omogućuje upravljanje njima" @@ -995,7 +994,8 @@ msgstr "Sučelje za „CPUFreq“" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Prikazuje radni takt CPJ i omogućuje izmenu upravnika i radnog takta" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1013,8 +1013,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Greška. Postavite program za podešavanje zvuka („pavucontrol“, " -"„alsamixer“, ...)" +"Greška. Postavite program za podešavanje zvuka („pavucontrol“, „alsamixer“, " +"...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1331,7 +1331,7 @@ msgstr "Naziv priključka" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Stanje" @@ -1516,8 +1516,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"Ne mogu da pročitam statistiku za priključak iz „%s“. prx_idx = %d; ptx_idx " -"= %d; brx_idx = %d; btx_idx = %d;" +"Ne mogu da pročitam statistiku za priključak iz „%s“. prx_idx = %d; ptx_idx =" +" %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1571,22 +1571,22 @@ msgid "Sending/Receiving" msgstr "Slanje/Prijem" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Baterija %d: %d%% napunjena, %d:%02d dok ne bude puna" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Baterija %d: %d%% napunjena, %d:%02d preostalo" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Baterija %d: %d%% napunjena" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1595,7 +1595,7 @@ "\n" "%sProračunata puna energija:\t\t%5d mVt⋅č (mWh)" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1604,7 +1604,7 @@ "\n" "%sPuna energija:\t\t\t%5d mVt⋅č (mWh)" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1613,7 +1613,7 @@ "\n" "%sTekuća energija:\t\t\t%5d mVt⋅č (mWh)" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1622,7 +1622,7 @@ "\n" "%sTekuća snaga:\t\t\t%5d mVt (mW)" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1631,7 +1631,7 @@ "\n" "%sProračunat kapacitet baterije:\t%5d mA⋅č (mAh)" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1640,7 +1640,7 @@ "\n" "%sPun kapacitet:\t\t\t%5d mA⋅č (mAh)" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1649,7 +1649,7 @@ "\n" "%sTekući kapacitet:\t\t\t%5d mA⋅č (mAh)" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1658,7 +1658,7 @@ "\n" "%sTekuća struja:\t\t\t%5d mA (mA)" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1667,63 +1667,63 @@ "\n" "%sTekući napon:\t\t%.3lf V (V)" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Nema baterija" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Baterija je skoro prazna" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Nadgledač baterije" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ne prikazuj ako nema baterije" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Naredba za uzbunjivanje" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Vreme za uzbunu (preostalo minuta)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Pozadinska boja" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Boja pri punjenju 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Boja pri punjenju 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Boja pražnjenja 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Boja pražnjenja 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Širina ivice" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Prikaži opširnije podatke" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Količina nadgledanih baterija" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Prikaži stanje baterije koristeći ACPI" @@ -1822,15 +1822,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Unesi novo mesto" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Novo mesto:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1844,248 +1844,248 @@ "- poštanski broj\n" "za koji bi preuzeli vremensku prognozu." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Morate da navedete mesto." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Nisam pronašao mesto „%s“!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Podešavanja" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Obnovi" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Napusti" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Izveštaj o vremenu — postavke" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Trenutno mesto" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Nije podešeno" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Podesi" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Prikaz" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Naziv:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Jedinice:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_metrički (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_engleski (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognoza" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Provera:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "ru_čno" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_automatski, svakih" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minuta" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Izvor:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Promeni" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Trenutno stanje vremena — %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Mesto:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Proveravano:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Oseća se kao:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Vlažnost:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Pritisak:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Vidljivost:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vetar:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Izlazak sunca:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Zalazak sunca:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Vremenska prognoza za %s nije dostupna." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Niste postavili mesto." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Pretraga za '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Mesto odgovara za „%s“" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Grad" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Zemlja" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Trenutno: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Danas: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Sutra: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Izveštaj o vremenu" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Prikaži vremenske uslove za mesto." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2093,18 +2093,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/sr.po lxpanel-0.10.1/po/sr.po --- lxpanel-0.10.0/po/sr.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/sr.po 2021-02-06 21:06:03.000000000 +0000 @@ -2,26 +2,24 @@ # Copyright (C) The LXDE Project # This file is distributed under the same license as the LXPanel package. # Jay A. Fleming , 2009-2016. -# -# msgid "" msgstr "" "Project-Id-Version: LXPanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2018-12-23 18:15+0000\n" "Last-Translator: markos \n" "Language-Team: \n" -"Language: sr\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1545588924.767839\n" -"X-Pootle-Path: /sr/lxpanel/po/sr.po\n" "X-Pootle-Revision: 976\n" +"X-Pootle-Path: /sr/lxpanel/po/sr.po\n" +"X-POOTLE-MTIME: 1545588924.767839\n" #: ../src/configurator.c:148 msgid "" @@ -89,8 +87,8 @@ msgstr "ЛИкс-Панел" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Права творца — 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Права творца — 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -130,27 +128,27 @@ msgid "Panel" msgstr "Панел" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Висина:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Ширина:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "лево" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "десно" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "горе" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "доле" @@ -176,8 +174,8 @@ msgstr "Одјави се" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - олакшани ГТК2+ панел за јуникс радне површи\n" #: ../src/main.c:324 @@ -276,7 +274,7 @@ msgstr "Раздвајач — проширив" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Величина" @@ -657,8 +655,9 @@ msgstr "Трака са дугмадима за покретање програма" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Трака задатака приказује све отворене прозоре и омогућује управљање њима" @@ -994,7 +993,8 @@ msgstr "Сучеље за „CPUFreq“" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Приказује радни такт ЦПЈ и омогућује измену управника и радног такта" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1012,8 +1012,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Грешка. Поставите програм за подешавање звука („pavucontrol“, " -"„alsamixer“, ...)" +"Грешка. Поставите програм за подешавање звука („pavucontrol“, „alsamixer“, " +"...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1329,7 +1329,7 @@ msgstr "Назив прикључка" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Стање" @@ -1569,22 +1569,22 @@ msgid "Sending/Receiving" msgstr "Слање/Пријем" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батерија %d: %d%% напуњена, %d:%02d док не буде пуна" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батерија %d: %d%% напуњена, %d:%02d преостало" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Батерија %d: %d%% напуњена" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1593,7 +1593,7 @@ "\n" "%sПрорачуната пуна енергија:\t\t%5d мВт⋅ч (mWh)" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1602,7 +1602,7 @@ "\n" "%sПуна енергија:\t\t\t%5d мВт⋅ч (mWh)" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1611,7 +1611,7 @@ "\n" "%sТекућа енергија:\t\t\t%5d мВт⋅ч (mWh)" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1620,7 +1620,7 @@ "\n" "%sТекућа снага:\t\t\t%5d мВт (mW)" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1629,7 +1629,7 @@ "\n" "%sПрорачунат капацитет батерије:\t%5d мА⋅ч (mAh)" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1638,7 +1638,7 @@ "\n" "%sПун капацитет:\t\t\t%5d мА⋅ч (mAh)" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1647,7 +1647,7 @@ "\n" "%sТекући капацитет:\t\t\t%5d мА⋅ч (mAh)" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1656,7 +1656,7 @@ "\n" "%sТекућа струја:\t\t\t%5d мА (mA)" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1665,63 +1665,63 @@ "\n" "%sТекући напон:\t\t%.3lf В (V)" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Нема батерија" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Батерија је скоро празна" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Надгледач батерије" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Не приказуј ако нема батерије" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Наредба за узбуњивање" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Време за узбуну (преостало минута)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Позадинска боја" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Боја при пуњењу 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Боја при пуњењу 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Боја пражњења 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Боја пражњења 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Ширина ивице" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Прикажи опширније податке" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Количина надгледаних батерија" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Прикажи стање батерије користећи АЦПИ" @@ -1820,15 +1820,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Унеси ново место" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Ново место:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1842,248 +1842,248 @@ "- поштански број\n" "за који би преузели временску прогнозу." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Морате да наведете место." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Нисам пронашао место „%s“!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Подешавања" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Обнови" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Напусти" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Извештај о времену — поставке" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Тренутно место" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Није подешено" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Подеси" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Приказ" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Назив:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Јединице:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_метрички (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_енглески (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Прогноза" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Провера:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "ру_чно" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_аутоматски, сваких" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "минута" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Извор:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Промени" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Тренутно стање времена — %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Место:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Проверавано:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Осећа се као:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Влажност:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Притисак:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Видљивост:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Ветар:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Излазак сунца:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Залазак сунца:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Временска прогноза за %s није доступна." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Нисте поставили место." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Претрага за '%s'..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Место одговара за „%s“" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Град" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Земља" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Тренутно: " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Данас: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Сутра: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Извештај о времену" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Прикажи временске услове за место." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2091,18 +2091,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/sv.po lxpanel-0.10.1/po/sv.po --- lxpanel-0.10.0/po/sv.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/sv.po 2021-02-06 21:07:44.000000000 +0000 @@ -1,25 +1,24 @@ # Translation of lxpanel to Swedish # Copyright (C) 2009 Martin Bagge # This file is distributed under the same license as the lxpanel package. -# # Martin Bagge , 2009. msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-06-26 11:02+0000\n" "Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" -"Language: sv\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1498474976.967687\n" -"X-Pootle-Path: /sv/lxpanel/po/sv.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /sv/lxpanel/po/sv.po\n" +"X-POOTLE-MTIME: 1498474976.967687\n" #: ../src/configurator.c:148 msgid "" @@ -64,8 +63,7 @@ #: ../src/panel.c:1292 msgid "There is no room for another panel. All the edges are taken." -msgstr "" -"Det finns inte plats för ytterligare en panel. Alla kanter är upptagna." +msgstr "Det finns inte plats för ytterligare en panel. Alla kanter är upptagna." #: ../src/panel.c:1318 msgid "" @@ -92,8 +90,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Copyright © 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Copyright © 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -133,27 +131,27 @@ msgid "Panel" msgstr "Panel" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Höjd:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Bredd:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Vänster" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Höger" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Upptill" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Nedtilld" @@ -179,8 +177,8 @@ msgstr "Logga ut" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lättviktig GTK2+-panel för UNIX-skrivbord\n" #: ../src/main.c:324 @@ -279,7 +277,7 @@ msgstr "Tomrum" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Storlek" @@ -661,8 +659,9 @@ msgstr "Panel med knappar för att starta program" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Aktivitetspanelen visar alla öppnade fönster och möjliggör minimering, " @@ -999,7 +998,8 @@ msgstr "Gränssnittt till CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Visar och redigerar CPU-profil och -frekvens" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1017,8 +1017,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Fel, du behöver installera ett program för att kontrollera ljudet " -"(alsamixer, pavucontrol etc.)" +"Fel, du behöver installera ett program för att kontrollera ljudet (" +"alsamixer, pavucontrol etc.)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1333,7 +1333,7 @@ msgstr "Gränssnittets namn" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Status" @@ -1573,22 +1573,22 @@ msgid "Sending/Receiving" msgstr "Skickar/Tar emot" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Batteri %d: %d%% laddat, %d:%02d tills det är fullt" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Batteri %d: %d%% laddat, %d%02d kvar" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Batteri %d: %d%% laddat" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1597,7 +1597,7 @@ "\n" "%sEnergy full design:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1606,7 +1606,7 @@ "\n" "%sEnergy full:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1615,7 +1615,7 @@ "\n" "%sEnergy now:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1624,7 +1624,7 @@ "\n" "%sPower now:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1633,7 +1633,7 @@ "\n" "%sCharge full design:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1642,7 +1642,7 @@ "\n" "%sCharge full:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1651,7 +1651,7 @@ "\n" "%sCharge now:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1660,7 +1660,7 @@ "\n" "%sCurrent now:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1669,63 +1669,63 @@ "\n" "%sCurrent Voltage:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Inget batteri hittat" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Låg nivå i batteriet" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Batteriövervakning" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Göm om det inte finns något batteri" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarmkommando" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarmtid (minuter kvar)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Bakgrundsfärg" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Laddningsfärg 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Laddningsfärg 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Urladdningsfärg 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Urladdningsfärg 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Kantbredd" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Visa utökad information" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Antal batterier som ska övervakas" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Visa batteristatus med hjälp av ACPI" @@ -1824,15 +1824,15 @@ msgid "[N/A]" msgstr "[Ej tillämpbar]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Ange ny plats" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Ny plats:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1846,248 +1846,248 @@ "- postkod\n" "att hämta väderprognos för." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Du måste ange en plats." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Platsen \"%s\" hittades ej!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Egenskaper" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Uppdatera" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Avsluta" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Egenskaper för väder-instick" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Nuvarande plats" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Ingen inställd" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Ange" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Visa" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Namn:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Enheter:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrisk (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Engelsk (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Prognos" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Uppdateringar:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "Ma_nuellt" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Automatiskt, var" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "minut(er)" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Källa:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Ä_ndra" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Aktuella förhållanden för %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Plats:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Senast uppdaterad:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Känns som:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Luftfuktighet:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Lufttryck:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Sikt:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Vind:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Soluppgång:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Solnedgång:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Prognos för %s inte tillgänglig." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Plats ej angiven." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Söker efter \"%s\"..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Plats motsvarande \"%s\"" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Stad" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Land" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "För närvarande i " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Idag: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Imorgon: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Väder" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Visa väderförhållande för en plats." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2095,19 +2095,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/te.po lxpanel-0.10.1/po/te.po --- lxpanel-0.10.0/po/te.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/te.po 2021-02-06 21:08:17.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-07-09 18:48+0200\n" "Last-Translator: PraveenIlla \n" "Language-Team: LANGUAGE \n" -"Language: te\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /te/lxpanel/po/te.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /te/lxpanel/po/te.po\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "నకలుహక్కు (C) 2008-2011" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "ప్యానల్" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "ఎత్తు:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "వెడల్పు:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "ఎడమ" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "కుడి" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "ఉత్తమ" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "అడుగు" @@ -172,8 +171,8 @@ msgstr "లాగౌట్" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxప్యానల్ %s - యునిక్స్ డెస్క్‍టాప్‌ల కోసం తేలికపాటి GTK2+ ప్యానల్\n" #: ../src/main.c:324 @@ -275,7 +274,7 @@ msgstr "స్పేసర్" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "పరిమాణం" @@ -668,12 +667,13 @@ msgstr "అనువర్తనాలను ప్రారంభించుటకు బటన్లతో ఉన్న పట్టీ" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" -"తెరవబడిన అన్ని విండోలను చూపించుటకు మరియు వాటిని కనిష్ఠీకరించుటకు కార్యపట్టీ అనుమతిస్తుంది, వాటి ఛాయని " -"లేదా వాటిపై కేంద్రీకరిస్తుంది" +"తెరవబడిన అన్ని విండోలను చూపించుటకు మరియు వాటిని కనిష్ఠీకరించుటకు కార్యపట్టీ " +"అనుమతిస్తుంది, వాటి ఛాయని లేదా వాటిపై కేంద్రీకరిస్తుంది" #: ../plugins/launchtaskbar.c:2483 #, fuzzy @@ -743,9 +743,12 @@ msgstr "సాధనచిట్కా తీరు" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "ఫార్మేటు కోడులు: man 3 strftime; \\n for line break" +msgstr "" +"ఫార్మేటు కోడులు: man 3 strftime; \\n" +" for line break" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -906,8 +909,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "పాఠ్యం" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -920,7 +924,9 @@ #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." -msgstr "అన్ని విండోలను చిన్నగాచేయుటకు లెఫ్ట్ క్లిక్ చేయండి. వాటిని షేడ్ చేయాలంటే మధ్య క్లిక్ చేయండి." +msgstr "" +"అన్ని విండోలను చిన్నగాచేయుటకు లెఫ్ట్ క్లిక్ చేయండి. వాటిని షేడ్ చేయాలంటే మధ్" +"య క్లిక్ చేయండి." #: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255 msgid "Minimize All Windows" @@ -1019,7 +1025,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1038,7 +1044,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"దోషం, శబ్దాన్ని స్వరూపించుటకు మీరు ఒక అనువర్తనాన్ని స్థాపించాలి (pavucontol, alsamixer ...)" +"దోషం, శబ్దాన్ని స్వరూపించుటకు మీరు ఒక అనువర్తనాన్ని స్థాపించాలి (pavucontol, " +"alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1340,7 +1347,8 @@ "\n" "%s" msgstr "" -"కిందపేర్కొన్న సమస్యలను పరిష్కరించుటకు దయచేసి మీ వ్యవస్థ నిర్వాహకుడిని సంప్రదించండి:\n" +"కిందపేర్కొన్న సమస్యలను పరిష్కరించుటకు దయచేసి మీ వ్యవస్థ నిర్వాహకుడిని " +"సంప్రదించండి:\n" "\n" "%s" @@ -1353,7 +1361,7 @@ msgstr "అంతరవర్తి పేరు" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "స్థితి" @@ -1539,8 +1547,8 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"'%s నుండి అంతరవర్తి గణాంకాలను పార్స్ చేయుట వీలుకావడంలేదు'. prx_idx = %d; ptx_idx = %d; " -"brx_idx = %d; btx_idx = %d;" +"'%s నుండి అంతరవర్తి గణాంకాలను పార్స్ చేయుట వీలుకావడంలేదు'. prx_idx = %d; " +"ptx_idx = %d; brx_idx = %d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 #, fuzzy @@ -1595,143 +1603,146 @@ msgid "Sending/Receiving" msgstr "పంపుతున్నది/పొందుతున్నది" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "బ్యాటరీ: %d%% చార్జ్ అయినది, %d:%02d ఇంకా పూర్తగుటకు" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "బ్యాటరీ: %d%% చార్జ్ అయినది, %d:%02d మిగిలివున్నది" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "బ్యాటరీ: %d%% చార్జ్ అయినది" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "ఎటువంటి బ్యాటరీలు కనుగొనబడలేదు" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "బ్యాటరీ పర్యవేక్షకం" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "బ్యాటరీ పర్యవేక్షకం" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "ఒకవేళ అక్కడ ఎటువంటి బ్యాటరీలు లేనట్టయితే కనపడకుండాదాయి" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "అలారం ఆదేశం" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "అలారం సమయం (మిగిలిన నిముషాలు)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "నేపథ్యం రంగు" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "చార్జింగ్ రంగు 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "చార్జింగ్ రంగు 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "డిస్చార్జింగ్ రంగు 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "డిస్చార్జింగ్ రంగు 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "సరిహద్దు వెడల్పు" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "అంతరవర్తి నుంచి పర్యవేక్షకం వరకు" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI వాడి బ్యాటరీ స్థితిని చూపించు" @@ -1830,16 +1841,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "నెట్‌వర్క్ అనుసంధానం" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1848,256 +1859,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "ప్యానల్ ప్రాధాన్యతలు" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "ప్యానల్ ప్రాధాన్యతలు" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "ధోరణి" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "స్వరూపించు (_f)" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "పేరు(_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "ఐపీ చిరునామా:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "లాగౌట్ ఆదేశం అమర్చలేదు" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "ప్రస్తుతం లోడయిన ప్లగిన్‌లు" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "WNCKపేజర్ ప్లగిన్" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2105,19 +2117,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2151,9 +2163,6 @@ #~ msgid "image" #~ msgstr "బొమ్మ" -#~ msgid "text" -#~ msgstr "పాఠ్యం" - #~ msgid "Per application settings" #~ msgstr "అనువర్తనము అమరికలు" diff -Nru lxpanel-0.10.0/po/th.po lxpanel-0.10.1/po/th.po --- lxpanel-0.10.0/po/th.po 2019-02-26 19:34:23.000000000 +0000 +++ lxpanel-0.10.1/po/th.po 2021-02-06 21:05:48.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-26 19:06+0000\n" "Last-Translator: Andriy Grytsenko \n" "Language-Team: LANGUAGE \n" -"Language: th\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1551207972.752952\n" -"X-Pootle-Path: /th/lxpanel/po/th.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /th/lxpanel/po/th.po\n" +"X-POOTLE-MTIME: 1551207972.752952\n" #: ../src/configurator.c:148 msgid "" @@ -93,7 +92,7 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -134,27 +133,27 @@ msgid "Panel" msgstr "แผง" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "ความสูง:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "ความกว้าง" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "ซ้าย" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ขวา" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "บน" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "ล่าง" @@ -180,8 +179,8 @@ msgstr "ออกจากระบบ" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - lightweight GTK2+ แผงสำหรับ UNIX เดสก์ท็อป\n" #: ../src/main.c:324 @@ -280,7 +279,7 @@ msgstr "ตัวเว้นวรรค" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "ขนาด" @@ -358,12 +357,14 @@ msgstr "" #: ../data/ui/launchtaskbar.glade.h:19 +#, fuzzy msgid "Only Application Launch Bar" -msgstr "" +msgstr "แอพลิเคชั่นบาร์เปิด" #: ../data/ui/launchtaskbar.glade.h:20 +#, fuzzy msgid "Only Task Bar (Window List)" -msgstr "" +msgstr "แถบงาน (รายชื่อหน้าต่าง)" #: ../data/ui/launchtaskbar.glade.h:21 msgid "Integrated Application Launch Bar and Task Bar" @@ -661,8 +662,9 @@ msgstr "แถบที่มีปุ่มเพื่อเปิดโปรแกรม" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "แสดงให้เห็นแถบหน้าต่างทั้งหมดที่เปิดและอนุญาตให้พวกเขา iconify, " @@ -993,7 +995,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1163,13 +1165,15 @@ #: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375 #: ../plugins/netstat/netstat.c:386 +#, fuzzy msgid "Sent" -msgstr "" +msgstr "ส่งแล้ว:" #: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375 #: ../plugins/netstat/netstat.c:386 +#, fuzzy msgid "Received" -msgstr "" +msgstr "ได้รับแล้ว:" #: ../plugins/netstat/netstat.c:364 ../plugins/netstat/netstat.c:376 #: ../plugins/netstat/netstat.c:387 @@ -1322,7 +1326,7 @@ msgstr "ชื่ออินเตอร์เฟซ" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "สถานะ" @@ -1487,8 +1491,9 @@ msgstr "เปิด /proc/net/dev: %s ไม่ได้" #: ../plugins/netstatus/netstatus-sysdeps.c:185 +#, fuzzy msgid "Could not parse /proc/net/dev. No data." -msgstr "" +msgstr "ไม่สามารถแยก / proc / ืnet/ dev รูปแบบที่ไม่รู้จัก" #: ../plugins/netstatus/netstatus-sysdeps.c:190 msgid "Could not parse /proc/net/dev. Unknown format." @@ -1511,8 +1516,9 @@ "%d; btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 +#, fuzzy msgid "Could not parse /proc/net/wireless. No data." -msgstr "" +msgstr "ไม่สามารถแยก / proc / net / ไร้สาย รูปแบบที่ไม่รู้จัก" #: ../plugins/netstatus/netstatus-sysdeps.c:316 msgid "Could not parse /proc/net/wireless. Unknown format." @@ -1562,141 +1568,141 @@ msgid "Sending/Receiving" msgstr "การส่ง/การรับ" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "ไม่พบแบ็ตเตอรี่" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "การตรวจสอบแบตเตอรี่" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "ซ่อนถ้าไม่มีแบตเตอรี่" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "คำสั่งปลุก" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "เวลาปลุก (นาทีซ้าย)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "สีพื้นหลัง" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "โหลดสี 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "โหลดสี 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "ไม่โหลดสี 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "ไม่โหลดสี 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "ความกว้างเส้นขอบ" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "แสดงสถานะของแบตเตอรี่โดยใช้ ACPI" @@ -1776,8 +1782,9 @@ msgstr "" #: ../plugins/monitors/monitors.c:736 +#, fuzzy msgid "Display RAM usage" -msgstr "" +msgstr "แสดงการใช้งานของ CPU" #: ../plugins/monitors/monitors.c:737 msgid "RAM color" @@ -1795,15 +1802,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1812,248 +1819,249 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 +#, fuzzy msgid "Name:" -msgstr "" +msgstr "_ชื่อ:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2061,18 +2069,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/tr.po lxpanel-0.10.1/po/tr.po --- lxpanel-0.10.0/po/tr.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/tr.po 2021-02-06 21:02:10.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2017-05-22 14:39+0000\n" "Last-Translator: nyucel \n" "Language-Team: LANGUAGE \n" -"Language: tr\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1495463960.442967\n" -"X-Pootle-Path: /tr/lxpanel/po/tr.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /tr/lxpanel/po/tr.po\n" +"X-POOTLE-MTIME: 1495463960.442967\n" #: ../src/configurator.c:148 msgid "" @@ -28,9 +28,9 @@ "Bu kenarda başka bir ekran olduğu ve saklama eylemi etkinleştirilirse bunu " "kaplayacağından, boşluk saklama kullanılamıyor." -# Önceki çevirmene: takıntı borç, sorun, obsesyon (en çok bu kullanılır) ya da -# manita anlamına gelir. Yöresel ağızda ise mücevher. Ancak "plugin" anlamına -# gelmez. +# Önceki çevirmene: takıntı borç, sorun, obsesyon (en çok bu kullanılır) ya da +# manita anlamına gelir. Yöresel ağızda ise mücevher. Ancak "plugin" anlamına +# gelmez. #: ../src/configurator.c:632 msgid "Currently loaded plugins" msgstr "Şimdi yüklü olan yan uygulamalar" @@ -93,8 +93,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Telif Hakkı (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Telif Hakkı (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -134,27 +134,27 @@ msgid "Panel" msgstr "Tabla" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Yükseklik:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Genişlik:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Sol" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Sağ" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Üst" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Alt" @@ -180,8 +180,8 @@ msgstr "Çık" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX masaüstleri için hafif GTK2+ tablası\n" #: ../src/main.c:324 @@ -280,7 +280,7 @@ msgstr "Boşluk" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Boyut" @@ -345,8 +345,8 @@ msgid "Show task icons smaller than rest of panel icons" msgstr "" -# "en çok genişliği" Türkçe değil, kotarma olduğu besbelli. "Genişlik sınırı" -# veya "azami genişliği" uygundur. +# "en çok genişliği" Türkçe değil, kotarma olduğu besbelli. "Genişlik sınırı" +# veya "azami genişliği" uygundur. #: ../data/ui/launchtaskbar.glade.h:16 msgid "Maximum width of task button" msgstr "Görev düğmesinin azami genişliği" @@ -526,8 +526,8 @@ msgid "System theme" msgstr "Sistem teması" -# Donukluklu'nun Türkçesi mat veya "donuk"tur. Donukluklulukluluklu olmamassı -# için aynı anlamı veren ek tekrarlanmaz. +# Donukluklu'nun Türkçesi mat veya "donuk"tur. Donukluklulukluluklu olmamassı +# için aynı anlamı veren ek tekrarlanmaz. #: ../data/ui/panel-pref.glade.h:27 msgid "Solid color (with opacity)" msgstr "Düz renk (mat)" @@ -588,7 +588,7 @@ msgid "Properties" msgstr "Özellikler" -# % yüzde Türkçe değil. +# % yüzde Türkçe değil. #: ../data/ui/panel-pref.glade.h:43 msgid "Minimize panel when not in use" msgstr "Kullanımda değilken tablayı küçült" @@ -666,8 +666,9 @@ msgstr "Uygulama başlatmaya yarayan düğmeli çubuk" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Görev çubuğu bütün açık pencereleri gösterir ve onları simgeleştirmenize, " @@ -903,9 +904,9 @@ msgid "Handle keyboard layouts" msgstr "Klavye düzenleri arasında geçiş yap" -# İkinci eylem sadece başlık çubuğunun kalacağı biçimde pencereleri üste -# sarıyor. Dolayısılyla "gölgelemek" ya da "loşlaştırmak"tansa "sarmak" -# kelimesi daha uygun kalıyor. +# İkinci eylem sadece başlık çubuğunun kalacağı biçimde pencereleri üste +# sarıyor. Dolayısılyla "gölgelemek" ya da "loşlaştırmak"tansa "sarmak" +# kelimesi daha uygun kalıyor. #: ../plugins/wincmd.c:207 msgid "Left click to iconify all windows. Middle click to shade them." msgstr "Tüm pencereleri simgeleştirmek için sol tık. Sarmak için orta tık." @@ -954,12 +955,12 @@ msgid "Normal color" msgstr "Normal renk" -# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. +# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. #: ../plugins/thermal/thermal.c:566 msgid "Warning1 color" msgstr "Uyarı1 renk" -# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. +# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. #: ../plugins/thermal/thermal.c:567 msgid "Warning2 color" msgstr "Uyarı2 renk" @@ -1005,7 +1006,8 @@ msgstr "CPUFreq ön ucu" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" "İşlemci frekansını görüntüle ve frekans ile yönetim şeklini değiştirmeye " "izin ver" @@ -1342,7 +1344,7 @@ msgstr "Arayüz adı" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Durum" @@ -1487,7 +1489,7 @@ msgid "Econet" msgstr "Econet" -# KöBEK diye kısaltmaya gerek var mı? Kısaltma paranteze alınmış zaten +# KöBEK diye kısaltmaya gerek var mı? Kısaltma paranteze alınmış zaten #: ../plugins/netstatus/netstatus-iface.c:1002 msgid "IrLAP" msgstr "IrLAP" @@ -1583,22 +1585,22 @@ msgid "Sending/Receiving" msgstr "Gönderilen/Alınan" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Pil %d: %d%% dolu, dolmasına %d:%02d kaldı" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Pi %d: %d%% dolu, boşalmasına %d:%02d kaldı" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Pil %d: %d%% dolu" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1607,7 +1609,7 @@ "\n" "%sTasarım sırasındaki tüm enerji:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1616,7 +1618,7 @@ "\n" "%sTüm enerji:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1625,7 +1627,7 @@ "\n" "%sŞimdiki enerji:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1634,7 +1636,7 @@ "\n" "%sŞimdiki güç:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1643,7 +1645,7 @@ "\n" "%sTasarımdaki tüm şarj:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1652,7 +1654,7 @@ "\n" "%sTüm şarj:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1661,7 +1663,7 @@ "\n" "%sŞimdiki şarj:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1670,7 +1672,7 @@ "\n" "%sŞimdiki akım:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1679,65 +1681,65 @@ "\n" "%sŞimdiki Gerilim:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Pil bulunamadı" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Pil düşük" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Pil İzleyici" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Eğer pil yoksa gizle" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Alarm komutu" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Alarm süresi (kalan dakika)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Arkaplan rengi" -# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. -#: ../plugins/batt/batt.c:704 +# Türkçe'de "Doluyor rengi" denmez. Ben var pes etmek artık. +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Dolum rengi 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Dolum rengi 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Boşaltım rengi 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Boşaltım rengi 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Sınır genişliği" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Genişletilmiş Bilgi Göster" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "İzlenecek pil sayısı" -# GYGA: Gelişmiş Yapılandırma ve Güç Arayüzü -#: ../plugins/batt/batt.c:723 +# GYGA: Gelişmiş Yapılandırma ve Güç Arayüzü +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI kullanarak pil durumunu göster" @@ -1757,10 +1759,10 @@ msgid "Show ScrollLock" msgstr "Kaydırma Kilidini Göster" -# 1. Capslock!=BüyükİmceKilidi. . -# 2. Öz-Türkçecilik'ten önce düzgün imla! Türkçe'de "ve"den önce virgül olmaz. -# 3. Kilidin kendisinden değil tuş adından söz ettiği için (klavyenizdeki -# tuşun üzerinde ne yazıyor) Caps Lock vb. kullanılmalıdır. +# 1. Capslock!=BüyükİmceKilidi. . +# 2. Öz-Türkçecilik'ten önce düzgün imla! Türkçe'de "ve"den önce virgül olmaz. +# 3. Kilidin kendisinden değil tuş adından söz ettiği için (klavyenizdeki +# tuşun üzerinde ne yazıyor) Caps Lock vb. kullanılmalıdır. #: ../plugins/kbled/kbled.c:235 msgid "Indicators for CapsLock, NumLock, and ScrollLock keys" msgstr "Caps Lock, Num Lock ve Scroll Lock tuşları için göstergeler" @@ -1840,15 +1842,15 @@ msgid "[N/A]" msgstr "[N/A]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Yeni Konum Girin" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Yeni Konum:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1862,163 +1864,163 @@ "- şehir ve eyalet/ülke veya\n" "- posta kodu" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Bir konum belirlemelisiniz." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Konum '%s' bulunamadı!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Tercihler" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Yenile" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Çık" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Hava Durumu Tercihleri" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Geçerli Konum" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Yapılandırılmadı" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Ayarla" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Göster" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "İsim:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Birimler:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Metrik (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_İngiliz (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Hava Tahmini" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Güncellemeler:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "_Elle" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Otomatik, her" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "dakika" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Kaynak:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "Değiştir" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s için mevcut durum" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Konum:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Son güncelleme:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Hissedilen:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Nem:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Basınç:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Görüş mesafesi:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Rüzgar:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Gündoğumu:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Günbatımı:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "%s için hava tahmini kullanılamıyor." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Konum ayarlanmadı." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "'%s' aranıyor..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "'%s' için konum eşleşmeleri" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Şehir" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Ülke" @@ -2026,87 +2028,87 @@ # manita anlamına gelir. Yöresel ağızda ise mücevher. Ancak "plugin" anlamına # gelmez. #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Şu anda çık " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Bugün: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Yarın: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Hava Durumu Eklentisi" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Bir konumun hava durumunu göster." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2114,19 +2116,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/tt_RU.po lxpanel-0.10.1/po/tt_RU.po --- lxpanel-0.10.0/po/tt_RU.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/tt_RU.po 2021-02-06 21:05:58.000000000 +0000 @@ -1,22 +1,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# # Ainur Shakirov , 2011. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-01-19 11:06+0200\n" "Last-Translator: Ainur \n" -"Language: tt_RU\n" +"Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /tt_RU/lxpanel/po/tt_RU.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /tt_RU/lxpanel/po/tt_RU.po\n" #: ../src/configurator.c:148 msgid "" @@ -83,7 +83,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Copyright (C) 2008-2011" #: ../src/panel.c:1379 @@ -124,27 +124,27 @@ msgid "Panel" msgstr "Панель" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Биеклек:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Калынлык:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Сул якта" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Уң якта" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Өстә" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Аста" @@ -170,8 +170,8 @@ msgstr "Системадан чыгу" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX эш өстәле өчен җиңел GTK2+ панеле\n" #: ../src/main.c:324 @@ -273,7 +273,7 @@ msgstr "Аралык" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Зурлык" @@ -666,8 +666,9 @@ msgstr "Кушымталарны җибәрүче билгечекләр панеле" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Мәсьәлә панеле бөтен ачылган тәрәзәләрне күрсәтә, аларны күгәләтергә яки " @@ -741,9 +742,12 @@ msgstr "Ярдәмчек төре" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Код форматы: man 3 strftime; \\n юлларны өзү өчен" +msgstr "" +"Код форматы: man 3 strftime; \\n" +" юлларны өзү өчен" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -904,8 +908,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "текст" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1019,7 +1024,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1038,8 +1043,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Хата килеп чыкты. Тавыш белән идарә итү кушымталарын урнаштырырга кирәк " -"(мәс. pavucontrol, alsamixer һәм башк.)" +"Хата килеп чыкты. Тавыш белән идарә итү кушымталарын урнаштырырга кирәк (" +"мәс. pavucontrol, alsamixer һәм башк.)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1353,7 +1358,7 @@ msgstr "Интерфейс исеме" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Хәл" @@ -1595,143 +1600,146 @@ msgid "Sending/Receiving" msgstr "Тапшыру/Кабул итү" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батарея: %d%% корылган, тулуга кадәр %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батарея: %d%% корылган, %d:%02d калды" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Батарея: %d%% корылган" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Батарея табылмады" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Батарея мониторы" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Батарея мониторы" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Батарея булмаса качырырга" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Уяткыч командасы" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Уяткыч вакыты (минут калды)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Җирлекнең төсе" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Кору төсе 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Кору төсе 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Бушандыру төсе 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Бушандыру төсе 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Чик киңлеге" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Монитор өчен интерфейс" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "ACPI аша батарея торышын чагылдыру" @@ -1835,16 +1843,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Тоташу" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1853,256 +1861,257 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Панель көйләүләре" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Панель көйләүләре" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Урнашу" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Көй_ләү" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Исем:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP адресы:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Системадан чыгу командасы күрсәтелмәгән" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Йөкләнгән өстәлмәләр" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "Эш өстәлләрне күчерүчесе өстәлмәсе" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2110,19 +2119,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2153,9 +2162,6 @@ #~ msgid "image" #~ msgstr "рәсем" -#~ msgid "text" -#~ msgstr "текст" - #~ msgid "Per application settings" #~ msgstr "Кушымта көйләүләре" diff -Nru lxpanel-0.10.0/po/ug.po lxpanel-0.10.1/po/ug.po --- lxpanel-0.10.0/po/ug.po 2019-02-21 23:24:18.000000000 +0000 +++ lxpanel-0.10.1/po/ug.po 2021-02-06 21:03:19.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Gheyret Kenji , 2011. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2014-12-02 12:00+0000\n" "Last-Translator: system user <>\n" "Language-Team: Uyghur Computer Science Association \n" -"Language: ug\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.7.0-alpha1\n" -"X-POOTLE-MTIME: 1417521627.000000\n" -"X-Pootle-Path: /ug/lxpanel/po/ug.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ug/lxpanel/po/ug.po\n" +"X-POOTLE-MTIME: 1417521627.000000\n" #: ../src/configurator.c:148 msgid "" @@ -86,7 +85,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "نەشر ھوقۇقى (C) 2008-2011" #: ../src/panel.c:1379 @@ -127,27 +126,27 @@ msgid "Panel" msgstr "كۆزنەك" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "ئېگىزلىك:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "كەڭلىك:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "سول" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "ئوڭ" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "ئۈستى" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "ئاستى" @@ -173,8 +172,8 @@ msgstr "تىزىمدىن چىقىش" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" "lxpanel %s - بولسا يۇنىكىس(UNIX) ئۈستەلئۈستىلىرى ئۈچۈن يېنىك بولغان GTK2+ " "كۆزنەكچىسىدۇر\n" @@ -278,7 +277,7 @@ msgstr "بوشلۇق" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "چوڭلۇقى" @@ -669,8 +668,9 @@ msgstr "پروگرامما ئىجرا قىلىدىغان توپچىلار بار بالداق" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "ۋەزىپە بالدىقى بارلىق كۆزنەكنى كۆرسىتەلەيدىغان، سىنبەلگىلەشتۈرەلەيدىغان، " @@ -1012,7 +1012,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1346,7 +1346,7 @@ msgstr "ئېغىز ئاتى" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "ھالەت" @@ -1588,143 +1588,146 @@ msgid "Sending/Receiving" msgstr "يوللاۋاتىدۇ/قوبۇللاۋاتىدۇ" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "توكدان: %d%% توكلاندى، تولغۇچە %d:%02d بار" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "توكدان: %d%% توكلاندى، %d:%02d قالدى" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "توكدان: %d%% توكلاندى" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "توكدان بايقالمىدى" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "توكدان كۆزەتكۈ" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "توكدان كۆزەتكۈ" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "توكدان يوق بولسا يوشۇر" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "قوڭغۇراق بۇيرۇقى" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "قوڭغۇراق ۋاقتى (قالغان مىنۇت)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "تەگلىك رەڭگى" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "توكلاش رەڭگى 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "توكلاش رەڭگى 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "توكسىزلاش رەڭگى 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "توكسىزلاش رەڭگى 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "گىرۋەك كەڭلىكى" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "كۆرسەتكۈچ ئارايۈزى" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "توكدان ھالىتىنى ACPI نى ئىشلىتىپ كۆرسىتىش" @@ -1823,16 +1826,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "تور باغلىنىشى" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1841,257 +1844,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "كۆزنەكچە خاسلىقى" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "كۆزنەكچە خاسلىقى" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "يۆنىلىشى" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "تەڭشە(_F)" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "ئاتى(_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 #, fuzzy msgid "C_hange" msgstr "ئۆزگىرىش ھالىتى" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "IP ئادرېسى:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "چىقىش بۇيرۇقى بەلگىلەنمىگەن" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "نۆۋەتتە ئوقۇلغان قىستۇرمىلار" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "WNCKpager قىستۇرمىسى" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2099,19 +2103,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/uk.po lxpanel-0.10.1/po/uk.po --- lxpanel-0.10.0/po/uk.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/uk.po 2021-02-06 21:08:35.000000000 +0000 @@ -6,21 +6,21 @@ msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" -"PO-Revision-Date: 2019-02-21 10:51+0000\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" +"PO-Revision-Date: 2019-03-01 01:43+0000\n" "Last-Translator: Andriy Grytsenko \n" "Language-Team: UKRAINIAN \n" -"Language: uk\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.8\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /uk/lxpanel/po/uk.po\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1550746282.333639\n" -"X-Pootle-Path: /uk/lxpanel/po/uk.po\n" -"X-Pootle-Revision: 0\n" #: ../src/configurator.c:148 msgid "" @@ -90,8 +90,8 @@ msgstr "LX-панель" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "Всі права застережено (С) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "Всі права застережено (С) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -131,27 +131,27 @@ msgid "Panel" msgstr "Панель" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Висота:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Ширина:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Зліва" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Справа" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Зверху" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Внизу" @@ -178,8 +178,8 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" -msgstr "lxpanel %s - легка GTK2+ панель для робочого середовища UNIX\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" +msgstr "lxpanel %s - легка GTK+ панель для робочого середовища UNIX\n" #: ../src/main.c:324 #, c-format @@ -250,8 +250,7 @@ #: ../src/input-button.c:228 #, c-format msgid "Key combination '%s' cannot be used as a global hotkey, sorry." -msgstr "" -"Клавіші '%s' неможливо використовувати в якості глобального скорочення." +msgstr "Клавіші '%s' неможливо використовувати в якості глобального скорочення." #: ../src/input-button.c:231 ../src/input-button.c:415 #: ../plugins/netstatus/netstatus-iface.c:191 @@ -280,7 +279,7 @@ msgstr "Пропуск" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Розмір" @@ -662,7 +661,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Панель задач показує всі відкриті вікна і дозволяє згортати їх, відтіняти і " @@ -996,7 +995,7 @@ msgstr "Відображення CPUFreq" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "Показ та керування частотою та режимом процесора" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1016,8 +1015,8 @@ "Error, you need to install an application to configure the sound " "(pavucontrol, alsamixer ...)" msgstr "" -"Помилка, Вам потрібно встановити програму для налаштування звуку " -"(pavucontrol, alsamixer ...)" +"Помилка, Вам потрібно встановити програму для налаштування звуку (" +"pavucontrol, alsamixer ...)" #. Create a frame as the child of the viewport. #: ../plugins/volumealsa/volumealsa.c:895 @@ -1334,7 +1333,7 @@ msgstr "Назва інтерфейсу" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Стан" @@ -1574,22 +1573,22 @@ msgid "Sending/Receiving" msgstr "Відсилання/Отримання" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "Батарея %d: %d%% заряджено, %d:%02d до повної зарядки" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Батарея %d: %d%% заряджено, %d:%02d залишилося" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "Батарея %d: %d%% заряджено" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1598,7 +1597,7 @@ "\n" "%sПроектна повна енергія:\t\t%5d мВт*г" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1607,7 +1606,7 @@ "\n" "%sПовна енергія:\t\t\t%5d мВт*г" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1616,7 +1615,7 @@ "\n" "%sЕнергія зараз:\t\t\t%5d мВт*г" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1625,7 +1624,7 @@ "\n" "%sПотужність зараз:\t\t\t%5d мВт" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1634,7 +1633,7 @@ "\n" "%sПроектний повний заряд:\t%5d мА*г" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1643,7 +1642,7 @@ "\n" "%sПовний заряд:\t\t\t%5d мА*г" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1652,7 +1651,7 @@ "\n" "%sЗаряд зараз:\t\t\t%5d мА*г" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1661,7 +1660,7 @@ "\n" "%sСтрум зараз:\t\t\t%5d мА" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1670,63 +1669,63 @@ "\n" "%sНапруга зараз:\t\t\t%.3lf В" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Батарею не знайдено" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "Батарею розряджено" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Монітор батареї" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Приховати, якщо немає батареї" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Команда будильника" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Час будильника (залишилося хвилин)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Колір тла" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Колір зарядки 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Колір зарядки 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Колір розрядки 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Колір розрядки 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Ширина краю" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "Показати детальну інформацію" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "Номер батареї до спостереження" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Показувати статус батареї, використовуючи ACPI" @@ -1825,15 +1824,15 @@ msgid "[N/A]" msgstr "[Н/Д]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "Вкажіть нове місце" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "_Нове місце:" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1847,248 +1846,248 @@ "- поштовий індекс\n" "для отримання прогнозу погоди." -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "Необхідно вказати розташування." -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "Розташування «%s» не знайдено." -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "Налаштування" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "Оновити" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "Вийти" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "Параметри погоди" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "Поточне розташування" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "Не налаштовано" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "_Встановити" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "Відображення" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "Назва:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "Одиниці:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "_Метричні (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "_Англійські (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "Прогноз" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "Оновлення:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "В_ручну" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "_Автоматично, кожних" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "хвилин" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "Джерело:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "_Змінити" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "Поточні погодні умови для %s" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "Розташування:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "Останнє оновлення:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "Відчуття:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "Вологість:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "Тиск:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "Видимість:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "Вітер:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "Схід сонця:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "Захід сонця:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "Неможливо отримати прогноз для %s." -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "Розташування не обрано." -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "Пошук «%s»…" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "Місця що задовольняють «%s»" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "Місто" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "Країна" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "Зараз у " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "Сьогодні: " -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "Завтра: " -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "Додаток погоди" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "Показ умов погоди у визначеному місці." -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "Пн" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "ПнПнС" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "ПнС" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "СПнС" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "Сх" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "СПдС" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "ПдС" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "ПдПдС" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "Пд" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "ПдПдЗ" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "ПдЗ" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "ЗПдЗ" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "Зх" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "ЗПнЗ" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "ПнЗ" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "ПнПнЗ" @@ -2096,19 +2095,19 @@ msgid "Yahoo! Weather" msgstr "Yahoo! Погода" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "М/г" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "м/с" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "м" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "OpenWeatherMap" diff -Nru lxpanel-0.10.0/po/ur_PK.po lxpanel-0.10.1/po/ur_PK.po --- lxpanel-0.10.0/po/ur_PK.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/ur_PK.po 2021-02-06 21:02:01.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-07-23 20:00+0200\n" "Last-Translator: Muhammad Ali Makki \n" "Language-Team: Urdu \n" -"Language: ur\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ur_PK/lxpanel/po/ur_PK.po\n" "X-Poedit-Language: Urdu\n" -"X-Poedit-Country: PAKISTAN\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Pootle-Path: /ur_PK/lxpanel/po/ur_PK.po\n" -"X-Pootle-Revision: 0\n" +"X-Poedit-Country: PAKISTAN\n" #: ../src/configurator.c:148 msgid "" @@ -94,7 +93,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "کاپی رائٹ (C) 2008-2011" #: ../src/panel.c:1379 @@ -135,27 +134,27 @@ msgid "Panel" msgstr "پینل" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "اونچائی:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "چوڑائی:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "بائیں" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "دائیں" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "اوپر" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "نیچے" @@ -181,8 +180,8 @@ msgstr "لاگ آؤٹ" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "ایل ایکس پینل %s - ہلکا پھلکا GTK2+ پینل برائے یونکس ڈیسک ٹاپ\n" #: ../src/main.c:324 @@ -284,7 +283,7 @@ msgstr "خلاء" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "حجم" @@ -677,8 +676,9 @@ msgstr "اطلاقیہ چلانے کی پٹی بمع بٹن" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "ٹاسک بار تمام کھلی ہوئی ونڈوز کو دکھاتا ہے اور آپ کو انہیں چھوٹا کرنے، " @@ -752,6 +752,7 @@ msgstr "ٹول ٹِپ فارمیٹ" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "فارمیٹ کوڈ: man 3 strftime" @@ -918,8 +919,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "متن" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1032,7 +1034,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1364,7 +1366,7 @@ msgstr "مواجہ کا نام" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "حالت" @@ -1607,143 +1609,146 @@ msgid "Sending/Receiving" msgstr "ارسال/وصولی" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "بیٹری: %d%% چارج, %d:%02d بھرنے میں باقی ہےl" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "بیٹری: %d%% چارج شدہ, %d:%02d باقی" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "بیٹری: %d%% چارج شدہ" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "کوئی بیٹری نہیں پائی گئی" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "بیٹری مانیٹر" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "بیٹری مانیٹر" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "پوشیدہ کریں اگر کوئی بیٹری نہ ہو" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "الارم کمانڈ" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "الارم وقت (باقی منٹ)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "پس منظر رنگ" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "چارجنگ رنگ 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "چارجنگ رنگ 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "ڈسچارجنگ رنگ 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "ڈسچارجنگ رنگ 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "بارڈر کی چوڑائی" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "مواجہ برائے مانیٹر" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "بیٹری کی حالت دکھائیں ACPI کے استعمال سے" @@ -1851,16 +1856,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "نیٹ ورک اتصال" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1869,257 +1874,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "پینل ترجیحات" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "پینل ترجیحات" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "جہتیابی" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "_وضع کریں" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_نام:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 #, fuzzy msgid "Location:" msgstr "حرکت" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "آئی پی پتہ:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "لاگ آؤٹ کمانڈ مرتب نہیں ہے" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "حالیہ لوڈ کردہ پلگ ان" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "سادہ پیجر پلگ ان" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2127,19 +2133,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2170,9 +2176,6 @@ #~ msgid "image" #~ msgstr "تصویر" -#~ msgid "text" -#~ msgstr "متن" - #~ msgid "Per application settings" #~ msgstr "فی اطلاقیہ ترتیبات" diff -Nru lxpanel-0.10.0/po/ur.po lxpanel-0.10.1/po/ur.po --- lxpanel-0.10.0/po/ur.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/ur.po 2021-02-06 21:04:14.000000000 +0000 @@ -2,26 +2,25 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: lxpanel\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2009-07-23 20:11+0200\n" "Last-Translator: Muhammad Ali Makki \n" "Language-Team: Urdu \n" -"Language: ur\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 1.1.0\n" +"X-Pootle-Revision: 0\n" +"X-Pootle-Path: /ur/lxpanel/po/ur.po\n" "X-Poedit-Language: Urdu\n" -"X-Poedit-Country: PAKISTAN\n" "X-Poedit-SourceCharset: utf-8\n" -"X-Pootle-Path: /ur/lxpanel/po/ur.po\n" -"X-Pootle-Revision: 0\n" +"X-Poedit-Country: PAKISTAN\n" #: ../src/configurator.c:148 msgid "" @@ -94,7 +93,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "کاپی رائٹ (C) 2008-2011" #: ../src/panel.c:1379 @@ -135,27 +134,27 @@ msgid "Panel" msgstr "پینل" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "اونچائی:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "چوڑائی:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "بائیں" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "دائیں" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "اوپر" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "نیچے" @@ -181,8 +180,8 @@ msgstr "لاگ آؤٹ" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "ایل ایکس پینل %s - ہلکا پھلکا GTK2+ پینل برائے یونکس ڈیسک ٹاپ\n" #: ../src/main.c:324 @@ -284,7 +283,7 @@ msgstr "خلاء" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "حجم" @@ -677,8 +676,9 @@ msgstr "اطلاقیہ چلانے کی پٹی بمع بٹن" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "ٹاسک بار تمام کھلی ہوئی ونڈوز کو دکھاتا ہے اور آپ کو انہیں چھوٹا کرنے، " @@ -752,6 +752,7 @@ msgstr "ٹول ٹِپ فارمیٹ" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" msgstr "فارمیٹ کوڈ: man 3 strftime" @@ -918,8 +919,9 @@ msgstr "" #: ../plugins/xkb/xkb-plugin.c:1457 +#, fuzzy msgid "Text" -msgstr "" +msgstr "متن" #: ../plugins/xkb/xkb-plugin.c:1483 msgid "Panel Icon Size" @@ -1032,7 +1034,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1364,7 +1366,7 @@ msgstr "مواجہ کا نام" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "حالت" @@ -1607,143 +1609,146 @@ msgid "Sending/Receiving" msgstr "ارسال/وصولی" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "بیٹری: %d%% چارج, %d:%02d بھرنے میں باقی ہےl" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "بیٹری: %d%% چارج شدہ, %d:%02d باقی" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "بیٹری: %d%% چارج شدہ" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "کوئی بیٹری نہیں پائی گئی" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "بیٹری مانیٹر" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "بیٹری مانیٹر" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "پوشیدہ کریں اگر کوئی بیٹری نہ ہو" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "الارم کمانڈ" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "الارم وقت (باقی منٹ)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "پس منظر رنگ" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "چارجنگ رنگ 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "چارجنگ رنگ 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "ڈسچارجنگ رنگ 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "ڈسچارجنگ رنگ 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "بارڈر کی چوڑائی" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "مواجہ برائے مانیٹر" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "بیٹری کی حالت دکھائیں ACPI کے استعمال سے" @@ -1851,16 +1856,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "نیٹ ورک اتصال" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1869,257 +1874,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "پینل ترجیحات" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "پینل ترجیحات" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "جہتیابی" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "_وضع کریں" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_نام:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 #, fuzzy msgid "Location:" msgstr "حرکت" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "آئی پی پتہ:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "لاگ آؤٹ کمانڈ مرتب نہیں ہے" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "حالیہ لوڈ کردہ پلگ ان" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "سادہ پیجر پلگ ان" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2127,19 +2133,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" @@ -2170,9 +2176,6 @@ #~ msgid "image" #~ msgstr "تصویر" -#~ msgid "text" -#~ msgstr "متن" - #~ msgid "Per application settings" #~ msgstr "فی اطلاقیہ ترتیبات" diff -Nru lxpanel-0.10.0/po/vi.po lxpanel-0.10.1/po/vi.po --- lxpanel-0.10.0/po/vi.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/vi.po 2021-02-06 21:04:35.000000000 +0000 @@ -2,23 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2012-10-12 06:22+0200\n" "Last-Translator: Duy Hung \n" "Language-Team: LANGUAGE \n" -"Language: vi\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -"X-Pootle-Path: /vi/lxpanel/po/vi.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /vi/lxpanel/po/vi.po\n" #: ../src/configurator.c:148 msgid "" @@ -85,7 +84,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "Bản quyền (C) 2008-2011" #: ../src/panel.c:1379 @@ -126,27 +125,27 @@ msgid "Panel" msgstr "Bảng điều khiển" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "Chiều cao:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "Chiều rộng:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "Trái" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "Phải" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "Trên cùng" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "Dưới cùng" @@ -172,8 +171,8 @@ msgstr "Đăng xuất" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - bảng điều khiển GTK2+ gọn nhẹ cho màn hình nền UNIX\n" #: ../src/main.c:324 @@ -275,7 +274,7 @@ msgstr "Bộ dãn cách" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Kích thước" @@ -666,8 +665,9 @@ msgstr "Thanh công cụ với nút để khởi động ứng dụng" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" "Thanh tác vụ hiển thị tất cả các cửa sổ được mở và cho phép hiển thị chúng " @@ -741,9 +741,12 @@ msgstr "Định dạng chú giải" #: ../plugins/dclock.c:437 +#, c-format #, fuzzy, c-format msgid "Format codes: man 3 strftime; %n for line break" -msgstr "Định dạng mã: man 3 strftime; \\n for line break" +msgstr "" +"Định dạng mã: man 3 strftime; \\n" +" for line break" #: ../plugins/dclock.c:438 msgid "Action when clicked (default: display calendar)" @@ -1008,7 +1011,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1343,7 +1346,7 @@ msgstr "Tên giao diện" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "Trạng thái" @@ -1585,143 +1588,146 @@ msgid "Sending/Receiving" msgstr "Đang gửi/Đang nhận" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr ": %d%% sạc, %d:%02d đến khi đầy" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "Pin: %d%% đã nạp, %d:%02d còn lại" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "Pin: %d%% sạc" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "Không tìm thấy pin" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 #, fuzzy msgid "Battery low" msgstr "Pin màn hình" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "Pin màn hình" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "Ẩn nếu không có pin" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "Lệnh cảnh báo" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "Thời gianh cảnh báo (số phút còn lại)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Màu nền" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "Đang thêm màu 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "Đang thêm màu 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "Ngưng thêm màu 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "Ngưng thêm màu 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "Chiều rộng biên" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "Giao diện để giám sát" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "Hiển thị trạng thái pin sử dụng ACPI" @@ -1820,16 +1826,16 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 #, fuzzy msgid "_New Location:" msgstr "Kết nối mạng" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1838,257 +1844,258 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 #, fuzzy msgid "Preferences" msgstr "Tùy chọn bảng điều khiển" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 #, fuzzy msgid "Weather Preferences" msgstr "Tùy chọn bảng điều khiển" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 #, fuzzy msgid "Current Location" msgstr "Định hướng" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 #, fuzzy msgid "None configured" msgstr "Cấu _hình" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 #, fuzzy msgid "Name:" msgstr "_Tên:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 #, fuzzy msgid "C_hange" msgstr "Đổi kiểu" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 #, fuzzy msgid "Pressure:" msgstr "Địa chỉ IP:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 +#, c-format #, fuzzy, c-format msgid "Location not set." msgstr "Lệnh dăng xuất chưa được thiết lập" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 #, fuzzy msgid "Currently in " msgstr "Những plugin đã được nạp" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 #, fuzzy msgid "Weather Plugin" msgstr "WNCKpager plugin" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2096,19 +2103,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/zh_CN.po lxpanel-0.10.1/po/zh_CN.po --- lxpanel-0.10.0/po/zh_CN.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/zh_CN.po 2021-02-06 21:02:34.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: lxpanel 0.3.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2016-10-25 09:35+0800\n" "Last-Translator: Yinghua Wang \n" "Language-Team: Chinese (simplified) \n" -"Language: zh_CN\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1417570650.000000\n" -"X-Pootle-Path: /zh_CN/lxpanel/po/zh_CN.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /zh_CN/lxpanel/po/zh_CN.po\n" +"X-POOTLE-MTIME: 1417570650.000000\n" #: ../src/configurator.c:148 msgid "" @@ -87,8 +87,8 @@ msgstr "LXPanel" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" -msgstr "版权所有 (C) 2008-2019" +msgid "Copyright (C) 2008-2021" +msgstr "版权所有 (C) 2008-2021" #: ../src/panel.c:1379 msgid "Desktop panel for LXDE project" @@ -128,27 +128,27 @@ msgid "Panel" msgstr "面板" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "高度:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "宽度:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "左" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "右" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "上" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "下" @@ -174,8 +174,8 @@ msgstr "注销" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX 桌面的轻量级 GTK2+ 面板\n" #: ../src/main.c:324 @@ -274,7 +274,7 @@ msgstr "间距" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "大小" @@ -655,8 +655,9 @@ msgstr "用以快速启动应用程序的工具栏" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "面板显示所有开启的窗口,并让能窗口最小化、折叠、或取得焦点" @@ -987,7 +988,8 @@ msgstr "CPUFreq 前端" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "显示 CPU 频率,并可以更改调速器和频率" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1318,7 +1320,7 @@ msgstr "接口名称" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "状态" @@ -1502,9 +1504,7 @@ msgid "" "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" -msgstr "" -"无法从“%s”中解析接口统计。prx_idx = %d;ptx_idx = %d;brx_idx = %d;btx_idx " -"= %d;" +msgstr "无法从“%s”中解析接口统计。prx_idx = %d;ptx_idx = %d;brx_idx = %d;btx_idx = %d;" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1558,22 +1558,22 @@ msgid "Sending/Receiving" msgstr "发送/接受" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "电池 %d:电量 %d%%,充满还需 %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "电池 %d:电量 %d%%,可用时间 %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "电池 %d:电量 %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1582,7 +1582,7 @@ "\n" "%s满电设计值:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1591,7 +1591,7 @@ "\n" "%s满电:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1600,7 +1600,7 @@ "\n" "%s当前电量:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1609,7 +1609,7 @@ "\n" "%s当前功率:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1618,7 +1618,7 @@ "\n" "%s充满电设计值:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1627,7 +1627,7 @@ "\n" "%s充满:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1636,7 +1636,7 @@ "\n" "%s当前充电:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1645,7 +1645,7 @@ "\n" "%s当前电流:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1654,63 +1654,63 @@ "\n" "%s当前电压:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "没有电池" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "电池电量低" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "电池电量显示" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "没有电池时隐藏" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "发出警告时要运行的命令" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "电池剩余时间低于此数值时警告 (分钟)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "背景颜色" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "充电显示颜色 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "充电显示颜色 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "放电显示颜色 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "放电显示颜色 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "边框宽度" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "显示更多信息" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "要监控的电池序号" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "通过 ACPI 显示电池状态" @@ -1809,15 +1809,15 @@ msgid "[N/A]" msgstr "[不可用]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "输入新位置" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "新位置(_N):" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1831,248 +1831,248 @@ "- 邮政编码\n" "来获取天气预报。" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "您必须指定一个位置。" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "找不到“%s”这个地方!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "首选项" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "刷新" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "退出" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "天气首选项" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "当前位置" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "未配置" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "设置(_S)" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "显示" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "名称:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "单位:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "公制(_M)(°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "英制(_E)(°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "预报" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "更新:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "手动(_N)" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "自动,每隔(_A)" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "分钟" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "源:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "更改(_H)" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s 的当前状况" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "位置:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "上次更新于:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "体感:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "湿度:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "气压:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "能见度:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "风:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "日出:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "日落:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "没有 %s 的天气预报。" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "尚未设置位置。" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "正在搜索“%s”..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "与“%s”匹配的位置" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "城市" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "国家" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "当前位于 " -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "今天:" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "明天:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "天气插件" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "显示某个地方的天气状况。" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2080,19 +2080,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/zh_HK.po lxpanel-0.10.1/po/zh_HK.po --- lxpanel-0.10.0/po/zh_HK.po 2019-02-26 19:30:38.000000000 +0000 +++ lxpanel-0.10.1/po/zh_HK.po 2021-02-06 21:06:19.000000000 +0000 @@ -2,24 +2,23 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2019-02-26 19:17+0000\n" "Last-Translator: External Translation Source \n" "Language-Team: LANGUAGE \n" -"Language: zh_HK\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1551208643.454056\n" -"X-Pootle-Path: /zh_HK/lxpanel/po/zh_HK.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /zh_HK/lxpanel/po/zh_HK.po\n" +"X-POOTLE-MTIME: 1551208643.454056\n" #: ../src/configurator.c:148 msgid "" @@ -83,7 +82,7 @@ msgstr "" #: ../src/panel.c:1378 -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "" #: ../src/panel.c:1379 @@ -124,27 +123,27 @@ msgid "Panel" msgstr "" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "逆時針" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "順時針" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "" @@ -171,7 +170,7 @@ #: ../src/main.c:323 #, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "" #: ../src/main.c:324 @@ -267,7 +266,7 @@ msgstr "Spacer" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "Size" @@ -649,7 +648,7 @@ #: ../plugins/launchtaskbar.c:2463 msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "" @@ -976,7 +975,7 @@ msgstr "" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1300,7 +1299,7 @@ msgstr "" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "狀態" @@ -1309,8 +1308,9 @@ msgstr "" #: ../plugins/netstatus/netstatus-iface.c:165 +#, fuzzy msgid "Stats" -msgstr "" +msgstr "狀態" #: ../plugins/netstatus/netstatus-iface.c:166 msgid "The interface packets/bytes statistics" @@ -1538,141 +1538,141 @@ msgid "Sending/Receiving" msgstr "" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 #, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 #, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 #, c-format msgid "Battery %d: %d%% charged" msgstr "" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" "%sEnergy full design:\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" "%sEnergy full:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" "%sEnergy now:\t\t\t%5d mWh" msgstr "" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" "%sPower now:\t\t\t%5d mW" msgstr "" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" "%sCharge full design:\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" "%sCharge full:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" "%sCharge now:\t\t\t%5d mAh" msgstr "" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" "%sCurrent now:\t\t\t%5d mA" msgstr "" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" "%sCurrent Voltage:\t\t%.3lf V" msgstr "" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "Background color" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 msgid "Number of battery to monitor" msgstr "" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "" @@ -1771,15 +1771,15 @@ msgid "[N/A]" msgstr "" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1788,248 +1788,249 @@ "for which to retrieve the weather forecast." msgstr "" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 +#, fuzzy msgid "Name:" -msgstr "" +msgstr "名稱(_N):" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "" -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2037,18 +2038,18 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/po/zh_TW.po lxpanel-0.10.1/po/zh_TW.po --- lxpanel-0.10.0/po/zh_TW.po 2019-02-21 23:24:19.000000000 +0000 +++ lxpanel-0.10.1/po/zh_TW.po 2021-02-06 21:05:38.000000000 +0000 @@ -6,19 +6,19 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-22 00:29+0200\n" +"POT-Creation-Date: 2019-03-01 01:38+0200\n" "PO-Revision-Date: 2015-03-20 07:19+0000\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" -"Language: zh_TW\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.6.0-rc2\n" -"X-POOTLE-MTIME: 1426835946.000000\n" -"X-Pootle-Path: /zh_TW/lxpanel/po/zh_TW.po\n" "X-Pootle-Revision: 0\n" +"X-Pootle-Path: /zh_TW/lxpanel/po/zh_TW.po\n" +"X-POOTLE-MTIME: 1426835946.000000\n" #: ../src/configurator.c:148 msgid "" @@ -90,7 +90,7 @@ #: ../src/panel.c:1378 #, fuzzy -msgid "Copyright (C) 2008-2019" +msgid "Copyright (C) 2008-2021" msgstr "版權所有 (C) 2008-2014" #: ../src/panel.c:1379 @@ -131,27 +131,27 @@ msgid "Panel" msgstr "工作列" -#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22 +#: ../src/panel.c:1710 ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:22 msgid "Height:" msgstr "高度:" -#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21 +#: ../src/panel.c:1711 ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:21 msgid "Width:" msgstr "寬度:" -#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13 +#: ../src/panel.c:1712 ../data/ui/panel-pref.glade.h:13 msgid "Left" msgstr "左" -#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14 +#: ../src/panel.c:1713 ../data/ui/panel-pref.glade.h:14 msgid "Right" msgstr "右" -#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12 +#: ../src/panel.c:1719 ../data/ui/panel-pref.glade.h:12 msgid "Top" msgstr "上" -#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11 +#: ../src/panel.c:1720 ../data/ui/panel-pref.glade.h:11 msgid "Bottom" msgstr "下" @@ -177,8 +177,8 @@ msgstr "登出" #: ../src/main.c:323 -#, c-format -msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n" +#, c-format, fuzzy +msgid "lxpanel %s - lightweight GTK+ panel for UNIX desktops\n" msgstr "lxpanel %s - UNIX 桌面的輕量級 GTK2+ 工作列\n" #: ../src/main.c:324 @@ -279,7 +279,7 @@ msgstr "空白分隔" #: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32 -#: ../plugins/batt/batt.c:710 +#: ../plugins/batt/batt.c:714 msgid "Size" msgstr "大小" @@ -660,8 +660,9 @@ msgstr "具有應用程式啟動按鈕的工具列" #: ../plugins/launchtaskbar.c:2463 +#, fuzzy msgid "" -"Taskbar shows all opened windows and allow to iconify them, shade or get " +"Taskbar shows all opened windows and allows to iconify them, shade or get " "focus" msgstr "工作列顯示所有開啟的視窗,並能令視窗最小化、摺疊、或取得焦點" @@ -992,7 +993,8 @@ msgstr "CPUFreq 前端程式" #: ../plugins/cpufreq/cpufreq.c:402 -msgid "Display CPU frequency and allow to change governors and frequency" +#, fuzzy +msgid "Display CPU frequency and allow one to change governors and frequency" msgstr "顯示 CPU 的頻率,並可變更管控器及頻率" #: ../plugins/volumealsa/volumealsa.c:245 @@ -1326,7 +1328,7 @@ msgstr "介面名稱" #: ../plugins/netstatus/netstatus-iface.c:156 -#: ../plugins/weather/weatherwidget.c:2136 +#: ../plugins/weather/weatherwidget.c:2137 msgid "State" msgstr "狀態" @@ -1511,8 +1513,7 @@ "Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; " "brx_idx = %d; btx_idx = %d;" msgstr "" -"無法從 '%s'. prx_idx = %d; ptx_idx = %d; brx_idx = %d; btx_idx = %d; 解析介面" -"卡統計資料" +"無法從 '%s'. prx_idx = %d; ptx_idx = %d; brx_idx = %d; btx_idx = %d; 解析介面卡統計資料" #: ../plugins/netstatus/netstatus-sysdeps.c:312 msgid "Could not parse /proc/net/wireless. No data." @@ -1566,22 +1567,25 @@ msgid "Sending/Receiving" msgstr "傳送/接收" -#: ../plugins/batt/batt.c:155 +#: ../plugins/batt/batt.c:156 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d until full" msgstr "電池:剩餘電量 %d%%,充滿還需 %d:%02d" -#: ../plugins/batt/batt.c:169 +#: ../plugins/batt/batt.c:170 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged, %d:%02d left" msgstr "電池:剩餘電量 %d%%,剩餘可用時間 %d:%02d" -#: ../plugins/batt/batt.c:176 +#: ../plugins/batt/batt.c:177 +#, c-format #, fuzzy, c-format msgid "Battery %d: %d%% charged" msgstr "電池:剩餘電量 %d%%" -#: ../plugins/batt/batt.c:186 +#: ../plugins/batt/batt.c:187 #, c-format msgid "" "\n" @@ -1590,7 +1594,7 @@ "\n" "%s設計最大能量:\t\t%5d mWh" -#: ../plugins/batt/batt.c:188 +#: ../plugins/batt/batt.c:189 #, c-format msgid "" "\n" @@ -1599,7 +1603,7 @@ "\n" "%s最大能量:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:190 +#: ../plugins/batt/batt.c:191 #, c-format msgid "" "\n" @@ -1608,7 +1612,7 @@ "\n" "%s現有能量:\t\t\t%5d mWh" -#: ../plugins/batt/batt.c:192 +#: ../plugins/batt/batt.c:193 #, c-format msgid "" "\n" @@ -1617,7 +1621,7 @@ "\n" "%s現有功率:\t\t\t%5d mW" -#: ../plugins/batt/batt.c:195 +#: ../plugins/batt/batt.c:196 #, c-format msgid "" "\n" @@ -1626,7 +1630,7 @@ "\n" "%s設計最大充電量:\t%5d mAh" -#: ../plugins/batt/batt.c:197 +#: ../plugins/batt/batt.c:198 #, c-format msgid "" "\n" @@ -1635,7 +1639,7 @@ "\n" "%s最大充電量:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:199 +#: ../plugins/batt/batt.c:200 #, c-format msgid "" "\n" @@ -1644,7 +1648,7 @@ "\n" "%s現有充電量:\t\t\t%5d mAh" -#: ../plugins/batt/batt.c:201 +#: ../plugins/batt/batt.c:202 #, c-format msgid "" "\n" @@ -1653,7 +1657,7 @@ "\n" "%s現有電流:\t\t\t%5d mA" -#: ../plugins/batt/batt.c:204 +#: ../plugins/batt/batt.c:205 #, c-format msgid "" "\n" @@ -1662,64 +1666,64 @@ "\n" "%s現有電壓:\t\t%.3lf V" -#: ../plugins/batt/batt.c:242 +#: ../plugins/batt/batt.c:243 msgid "No batteries found" msgstr "沒有電池" -#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675 +#: ../plugins/batt/batt.c:546 ../plugins/batt/batt.c:679 msgid "Battery low" msgstr "電池電量低" -#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722 +#: ../plugins/batt/batt.c:702 ../plugins/batt/batt.c:726 msgid "Battery Monitor" msgstr "電池電量顯示" -#: ../plugins/batt/batt.c:700 +#: ../plugins/batt/batt.c:704 msgid "Hide if there is no battery" msgstr "沒有電池時隱藏" -#: ../plugins/batt/batt.c:701 +#: ../plugins/batt/batt.c:705 msgid "Alarm command" msgstr "發出警示時要執行的命令" -#: ../plugins/batt/batt.c:702 +#: ../plugins/batt/batt.c:706 msgid "Alarm time (minutes left)" msgstr "電池剩餘時間低於此數值時警示 (分鐘)" -#: ../plugins/batt/batt.c:703 +#: ../plugins/batt/batt.c:707 msgid "Background color" msgstr "背景顏色" -#: ../plugins/batt/batt.c:704 +#: ../plugins/batt/batt.c:708 msgid "Charging color 1" msgstr "充電顯示顏色 1" -#: ../plugins/batt/batt.c:705 +#: ../plugins/batt/batt.c:709 msgid "Charging color 2" msgstr "充電顯示顏色 2" -#: ../plugins/batt/batt.c:706 +#: ../plugins/batt/batt.c:710 msgid "Discharging color 1" msgstr "放電顯示顏色 1" -#: ../plugins/batt/batt.c:707 +#: ../plugins/batt/batt.c:711 msgid "Discharging color 2" msgstr "放電顯示顏色 2" -#: ../plugins/batt/batt.c:708 +#: ../plugins/batt/batt.c:712 msgid "Border width" msgstr "邊框寬度" -#: ../plugins/batt/batt.c:712 +#: ../plugins/batt/batt.c:716 msgid "Show Extended Information" msgstr "顯示額外資訊" -#: ../plugins/batt/batt.c:713 +#: ../plugins/batt/batt.c:717 #, fuzzy msgid "Number of battery to monitor" msgstr "要監控的介面" -#: ../plugins/batt/batt.c:723 +#: ../plugins/batt/batt.c:727 msgid "Display battery status using ACPI" msgstr "透過 ACPI 顯示電池狀態" @@ -1818,15 +1822,15 @@ msgid "[N/A]" msgstr "[不適用]" -#: ../plugins/weather/weatherwidget.c:807 +#: ../plugins/weather/weatherwidget.c:806 msgid "Enter New Location" msgstr "輸入新位置" -#: ../plugins/weather/weatherwidget.c:821 +#: ../plugins/weather/weatherwidget.c:820 msgid "_New Location:" msgstr "新位置(_N):" -#: ../plugins/weather/weatherwidget.c:832 +#: ../plugins/weather/weatherwidget.c:831 msgid "" "Enter the:\n" "- city, or\n" @@ -1840,248 +1844,248 @@ "- 郵遞區號\n" "總之能是取得天氣預測的位置。" -#: ../plugins/weather/weatherwidget.c:869 -#: ../plugins/weather/weatherwidget.c:1002 +#: ../plugins/weather/weatherwidget.c:868 +#: ../plugins/weather/weatherwidget.c:1001 msgid "You must specify a location." msgstr "必須指定位置。" -#: ../plugins/weather/weatherwidget.c:916 +#: ../plugins/weather/weatherwidget.c:915 #, c-format msgid "Location '%s' not found!" msgstr "找不到「%s」位置!" -#: ../plugins/weather/weatherwidget.c:1075 +#: ../plugins/weather/weatherwidget.c:1074 msgid "Preferences" msgstr "偏好設定" -#: ../plugins/weather/weatherwidget.c:1081 +#: ../plugins/weather/weatherwidget.c:1080 msgid "Refresh" msgstr "重新整理" -#: ../plugins/weather/weatherwidget.c:1087 +#: ../plugins/weather/weatherwidget.c:1086 msgid "Quit" msgstr "結束" -#: ../plugins/weather/weatherwidget.c:1254 +#: ../plugins/weather/weatherwidget.c:1253 msgid "Weather Preferences" msgstr "天氣偏好設定" -#: ../plugins/weather/weatherwidget.c:1268 +#: ../plugins/weather/weatherwidget.c:1267 msgid "Current Location" msgstr "目前位置" -#: ../plugins/weather/weatherwidget.c:1272 -#: ../plugins/weather/weatherwidget.c:1574 +#: ../plugins/weather/weatherwidget.c:1271 +#: ../plugins/weather/weatherwidget.c:1573 msgid "None configured" msgstr "未設定" -#: ../plugins/weather/weatherwidget.c:1274 -#: ../plugins/weather/weatherwidget.c:1571 +#: ../plugins/weather/weatherwidget.c:1273 +#: ../plugins/weather/weatherwidget.c:1570 msgid "_Set" msgstr "設定(_S)" -#: ../plugins/weather/weatherwidget.c:1295 +#: ../plugins/weather/weatherwidget.c:1294 msgid "Display" msgstr "顯示器" -#: ../plugins/weather/weatherwidget.c:1299 +#: ../plugins/weather/weatherwidget.c:1298 msgid "Name:" msgstr "名稱:" -#: ../plugins/weather/weatherwidget.c:1303 +#: ../plugins/weather/weatherwidget.c:1302 msgid "Units:" msgstr "單位:" -#: ../plugins/weather/weatherwidget.c:1307 +#: ../plugins/weather/weatherwidget.c:1306 msgid "_Metric (°C)" msgstr "公制(_M) (°C)" -#: ../plugins/weather/weatherwidget.c:1309 +#: ../plugins/weather/weatherwidget.c:1308 msgid "_English (°F)" msgstr "美制(_E) (°F)" -#: ../plugins/weather/weatherwidget.c:1344 +#: ../plugins/weather/weatherwidget.c:1343 msgid "Forecast" msgstr "預測" -#: ../plugins/weather/weatherwidget.c:1348 +#: ../plugins/weather/weatherwidget.c:1347 msgid "Updates:" msgstr "更新:" -#: ../plugins/weather/weatherwidget.c:1352 +#: ../plugins/weather/weatherwidget.c:1351 msgid "Ma_nual" msgstr "手動(_N)" -#: ../plugins/weather/weatherwidget.c:1356 +#: ../plugins/weather/weatherwidget.c:1355 msgid "_Automatic, every" msgstr "自動(_A),每" -#: ../plugins/weather/weatherwidget.c:1377 +#: ../plugins/weather/weatherwidget.c:1376 msgid "minutes" msgstr "分鐘" -#: ../plugins/weather/weatherwidget.c:1386 +#: ../plugins/weather/weatherwidget.c:1385 msgid "Source:" msgstr "來源:" -#: ../plugins/weather/weatherwidget.c:1522 +#: ../plugins/weather/weatherwidget.c:1521 msgid "C_hange" msgstr "變更(_H)" #. Both are available -#: ../plugins/weather/weatherwidget.c:1613 +#: ../plugins/weather/weatherwidget.c:1612 #, c-format msgid "Current Conditions for %s" msgstr "%s目前的天氣情況" -#: ../plugins/weather/weatherwidget.c:1637 +#: ../plugins/weather/weatherwidget.c:1636 msgid "Location:" msgstr "地點:" -#: ../plugins/weather/weatherwidget.c:1660 +#: ../plugins/weather/weatherwidget.c:1659 msgid "Last updated:" msgstr "最後更新:" -#: ../plugins/weather/weatherwidget.c:1694 +#: ../plugins/weather/weatherwidget.c:1693 msgid "Feels like:" msgstr "就好像:" -#: ../plugins/weather/weatherwidget.c:1720 +#: ../plugins/weather/weatherwidget.c:1719 msgid "Humidity:" msgstr "溼度:" -#: ../plugins/weather/weatherwidget.c:1747 +#: ../plugins/weather/weatherwidget.c:1746 msgid "Pressure:" msgstr "氣壓:" -#: ../plugins/weather/weatherwidget.c:1774 +#: ../plugins/weather/weatherwidget.c:1773 msgid "Visibility:" msgstr "能見度:" -#: ../plugins/weather/weatherwidget.c:1802 +#: ../plugins/weather/weatherwidget.c:1801 msgid "Wind:" msgstr "風向:" -#: ../plugins/weather/weatherwidget.c:1825 +#: ../plugins/weather/weatherwidget.c:1824 msgid "Sunrise:" msgstr "日出:" -#: ../plugins/weather/weatherwidget.c:1848 +#: ../plugins/weather/weatherwidget.c:1847 msgid "Sunset:" msgstr "日落:" -#: ../plugins/weather/weatherwidget.c:1954 -#: ../plugins/weather/weatherwidget.c:2295 +#: ../plugins/weather/weatherwidget.c:1955 +#: ../plugins/weather/weatherwidget.c:2306 #, c-format msgid "Forecast for %s unavailable." msgstr "無法提供%s的預測。" -#: ../plugins/weather/weatherwidget.c:1963 -#: ../plugins/weather/weatherwidget.c:2300 +#: ../plugins/weather/weatherwidget.c:1964 +#: ../plugins/weather/weatherwidget.c:2311 #, c-format msgid "Location not set." msgstr "未設定地點。" -#: ../plugins/weather/weatherwidget.c:1980 +#: ../plugins/weather/weatherwidget.c:1981 #, c-format msgid "Searching for '%s'..." msgstr "正在搜尋「%s」的資訊..." -#: ../plugins/weather/weatherwidget.c:2106 +#: ../plugins/weather/weatherwidget.c:2107 #, c-format msgid "Location matches for '%s'" msgstr "符合「%s」的地點" -#: ../plugins/weather/weatherwidget.c:2126 +#: ../plugins/weather/weatherwidget.c:2127 msgid "City" msgstr "城市" -#: ../plugins/weather/weatherwidget.c:2146 +#: ../plugins/weather/weatherwidget.c:2147 msgid "Country" msgstr "國家/地區" #. make it nice and pretty -#: ../plugins/weather/weatherwidget.c:2278 +#: ../plugins/weather/weatherwidget.c:2286 msgid "Currently in " msgstr "目前在" -#: ../plugins/weather/weatherwidget.c:2281 +#: ../plugins/weather/weatherwidget.c:2292 msgid "Today: " msgstr "今日:" -#: ../plugins/weather/weatherwidget.c:2282 +#: ../plugins/weather/weatherwidget.c:2293 msgid "Tomorrow: " msgstr "明日:" -#: ../plugins/weather/weather.c:419 +#: ../plugins/weather/weather.c:415 msgid "Weather Plugin" msgstr "天氣外掛程式" -#: ../plugins/weather/weather.c:420 +#: ../plugins/weather/weather.c:416 msgid "Show weather conditions for a location." msgstr "顯示某個位置的天氣情況。" -#: ../plugins/weather/yahooutil.c:51 +#: ../plugins/weather/yahooutil.c:51 ../plugins/weather/openweathermap.c:56 msgid "N" msgstr "" -#: ../plugins/weather/yahooutil.c:52 +#: ../plugins/weather/yahooutil.c:52 ../plugins/weather/openweathermap.c:57 msgid "NNE" msgstr "" -#: ../plugins/weather/yahooutil.c:53 +#: ../plugins/weather/yahooutil.c:53 ../plugins/weather/openweathermap.c:58 msgid "NE" msgstr "" -#: ../plugins/weather/yahooutil.c:54 +#: ../plugins/weather/yahooutil.c:54 ../plugins/weather/openweathermap.c:59 msgid "ENE" msgstr "" -#: ../plugins/weather/yahooutil.c:55 +#: ../plugins/weather/yahooutil.c:55 ../plugins/weather/openweathermap.c:60 msgid "E" msgstr "" -#: ../plugins/weather/yahooutil.c:56 +#: ../plugins/weather/yahooutil.c:56 ../plugins/weather/openweathermap.c:61 msgid "ESE" msgstr "" -#: ../plugins/weather/yahooutil.c:57 +#: ../plugins/weather/yahooutil.c:57 ../plugins/weather/openweathermap.c:62 msgid "SE" msgstr "" -#: ../plugins/weather/yahooutil.c:58 +#: ../plugins/weather/yahooutil.c:58 ../plugins/weather/openweathermap.c:63 msgid "SSE" msgstr "" -#: ../plugins/weather/yahooutil.c:59 +#: ../plugins/weather/yahooutil.c:59 ../plugins/weather/openweathermap.c:64 msgid "S" msgstr "" -#: ../plugins/weather/yahooutil.c:60 +#: ../plugins/weather/yahooutil.c:60 ../plugins/weather/openweathermap.c:65 msgid "SSW" msgstr "" -#: ../plugins/weather/yahooutil.c:61 +#: ../plugins/weather/yahooutil.c:61 ../plugins/weather/openweathermap.c:66 msgid "SW" msgstr "" -#: ../plugins/weather/yahooutil.c:62 +#: ../plugins/weather/yahooutil.c:62 ../plugins/weather/openweathermap.c:67 msgid "WSW" msgstr "" -#: ../plugins/weather/yahooutil.c:63 +#: ../plugins/weather/yahooutil.c:63 ../plugins/weather/openweathermap.c:68 msgid "W" msgstr "" -#: ../plugins/weather/yahooutil.c:64 +#: ../plugins/weather/yahooutil.c:64 ../plugins/weather/openweathermap.c:69 msgid "WNW" msgstr "" -#: ../plugins/weather/yahooutil.c:65 +#: ../plugins/weather/yahooutil.c:65 ../plugins/weather/openweathermap.c:70 msgid "NW" msgstr "" -#: ../plugins/weather/yahooutil.c:66 +#: ../plugins/weather/yahooutil.c:66 ../plugins/weather/openweathermap.c:71 msgid "NNW" msgstr "" @@ -2089,19 +2093,19 @@ msgid "Yahoo! Weather" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "Mph" msgstr "" -#: ../plugins/weather/openweathermap.c:347 +#: ../plugins/weather/openweathermap.c:365 msgid "m/s" msgstr "" -#: ../plugins/weather/openweathermap.c:501 +#: ../plugins/weather/openweathermap.c:535 msgid "m" msgstr "" -#: ../plugins/weather/openweathermap.c:916 +#: ../plugins/weather/openweathermap.c:932 msgid "OpenWeatherMap" msgstr "" diff -Nru lxpanel-0.10.0/src/main.c lxpanel-0.10.1/src/main.c --- lxpanel-0.10.0/src/main.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/src/main.c 2019-02-28 23:38:21.000000000 +0000 @@ -320,7 +320,7 @@ static void usage() { - g_print(_("lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n"), version); + g_print(_("lxpanel %s - lightweight GTK+ panel for UNIX desktops\n"), version); g_print(_("Command line options:\n")); g_print(_(" --help -- print this help and exit\n")); g_print(_(" --version -- print version and exit\n")); diff -Nru lxpanel-0.10.0/src/Makefile.in lxpanel-0.10.1/src/Makefile.in --- lxpanel-0.10.0/src/Makefile.in 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/src/Makefile.in 2021-02-06 21:15:56.000000000 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -105,6 +105,9 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = panel.h CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkglibdir)" \ + "$(DESTDIR)$(lxpanel_includedir)" +PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -132,8 +135,6 @@ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } -am__installdirs = "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(bindir)" \ - "$(DESTDIR)$(lxpanel_includedir)" LTLIBRARIES = $(pkglib_LTLIBRARIES) am__DEPENDENCIES_1 = liblxpanel_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @@ -152,7 +153,6 @@ liblxpanel_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(liblxpanel_la_LDFLAGS) $(LDFLAGS) -o $@ -PROGRAMS = $(bin_PROGRAMS) am__lxpanel_SOURCES_DIST = icon-grid-old.c bg.c gtk-run.c main.c \ menu-policy.c @ENABLE_MENU_CACHE_TRUE@am__objects_1 = lxpanel-menu-policy.$(OBJEXT) @@ -183,7 +183,22 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/liblxpanel_la-conf.Plo \ + ./$(DEPDIR)/liblxpanel_la-configurator.Plo \ + ./$(DEPDIR)/liblxpanel_la-dbg.Plo \ + ./$(DEPDIR)/liblxpanel_la-ev.Plo \ + ./$(DEPDIR)/liblxpanel_la-icon-grid.Plo \ + ./$(DEPDIR)/liblxpanel_la-input-button.Plo \ + ./$(DEPDIR)/liblxpanel_la-misc.Plo \ + ./$(DEPDIR)/liblxpanel_la-panel-plugin-move.Plo \ + ./$(DEPDIR)/liblxpanel_la-panel.Plo \ + ./$(DEPDIR)/liblxpanel_la-plugin.Plo \ + ./$(DEPDIR)/liblxpanel_la-space.Plo ./$(DEPDIR)/lxpanel-bg.Po \ + ./$(DEPDIR)/lxpanel-gtk-run.Po \ + ./$(DEPDIR)/lxpanel-icon-grid-old.Po \ + ./$(DEPDIR)/lxpanel-main.Po ./$(DEPDIR)/lxpanel-menu-policy.Po \ + ./$(DEPDIR)/lxpanelctl.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -499,8 +514,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -513,44 +528,6 @@ $(am__aclocal_m4_deps): panel.h: $(top_builddir)/config.status $(srcdir)/panel.h.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ - -install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ - } - -uninstall-pkglibLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ - done - -clean-pkglibLTLIBRARIES: - -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) - @list='$(pkglib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -liblxpanel.la: $(liblxpanel_la_OBJECTS) $(liblxpanel_la_DEPENDENCIES) $(EXTRA_liblxpanel_la_DEPENDENCIES) - $(AM_V_CCLD)$(liblxpanel_la_LINK) -rpath $(pkglibdir) $(liblxpanel_la_OBJECTS) $(liblxpanel_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ @@ -601,6 +578,44 @@ echo " rm -f" $$list; \ rm -f $$list +install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ + } + +uninstall-pkglibLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ + done + +clean-pkglibLTLIBRARIES: + -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) + @list='$(pkglib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +liblxpanel.la: $(liblxpanel_la_OBJECTS) $(liblxpanel_la_DEPENDENCIES) $(EXTRA_liblxpanel_la_DEPENDENCIES) + $(AM_V_CCLD)$(liblxpanel_la_LINK) -rpath $(pkglibdir) $(liblxpanel_la_OBJECTS) $(liblxpanel_la_LIBADD) $(LIBS) + lxpanel$(EXEEXT): $(lxpanel_OBJECTS) $(lxpanel_DEPENDENCIES) $(EXTRA_lxpanel_DEPENDENCIES) @rm -f lxpanel$(EXEEXT) $(AM_V_CCLD)$(lxpanel_LINK) $(lxpanel_OBJECTS) $(lxpanel_LDADD) $(LIBS) @@ -615,23 +630,29 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-conf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-configurator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-dbg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-ev.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-icon-grid.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-input-button.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-misc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-panel-plugin-move.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-panel.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-plugin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-space.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-bg.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-gtk-run.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-icon-grid-old.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-menu-policy.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanelctl.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-conf.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-configurator.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-dbg.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-ev.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-icon-grid.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-input-button.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-misc.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-panel-plugin-move.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-panel.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-plugin.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblxpanel_la-space.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-bg.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-gtk-run.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-icon-grid-old.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-main.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanel-menu-policy.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lxpanelctl.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -883,7 +904,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -915,9 +939,9 @@ done check-am: all-am check: check-am -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) +all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS) installdirs: - for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(lxpanel_includedir)"; do \ + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(lxpanel_includedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am @@ -956,7 +980,23 @@ clean-pkglibLTLIBRARIES mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/liblxpanel_la-conf.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-configurator.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-dbg.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-ev.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-icon-grid.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-input-button.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-misc.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-panel-plugin-move.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-panel.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-plugin.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-space.Plo + -rm -f ./$(DEPDIR)/lxpanel-bg.Po + -rm -f ./$(DEPDIR)/lxpanel-gtk-run.Po + -rm -f ./$(DEPDIR)/lxpanel-icon-grid-old.Po + -rm -f ./$(DEPDIR)/lxpanel-main.Po + -rm -f ./$(DEPDIR)/lxpanel-menu-policy.Po + -rm -f ./$(DEPDIR)/lxpanelctl.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1002,7 +1042,23 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/liblxpanel_la-conf.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-configurator.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-dbg.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-ev.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-icon-grid.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-input-button.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-misc.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-panel-plugin-move.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-panel.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-plugin.Plo + -rm -f ./$(DEPDIR)/liblxpanel_la-space.Plo + -rm -f ./$(DEPDIR)/lxpanel-bg.Po + -rm -f ./$(DEPDIR)/lxpanel-gtk-run.Po + -rm -f ./$(DEPDIR)/lxpanel-icon-grid-old.Po + -rm -f ./$(DEPDIR)/lxpanel-main.Po + -rm -f ./$(DEPDIR)/lxpanel-menu-policy.Po + -rm -f ./$(DEPDIR)/lxpanelctl.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -1024,7 +1080,7 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool \ clean-pkglibLTLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ diff -Nru lxpanel-0.10.0/src/panel.c lxpanel-0.10.1/src/panel.c --- lxpanel-0.10.0/src/panel.c 2019-02-26 21:45:49.000000000 +0000 +++ lxpanel-0.10.1/src/panel.c 2021-02-06 21:00:30.000000000 +0000 @@ -1375,7 +1375,7 @@ gdk_pixbuf_new_from_file(PACKAGE_DATA_DIR "/images/my-computer.png", NULL)); } - gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(about), _("Copyright (C) 2008-2019")); + gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(about), _("Copyright (C) 2008-2021")); gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(about), _( "Desktop panel for LXDE project")); gtk_about_dialog_set_license(GTK_ABOUT_DIALOG(about), "This program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."); gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(about), "http://lxde.org/"); diff -Nru lxpanel-0.10.0/src/panel.h lxpanel-0.10.1/src/panel.h --- lxpanel-0.10.0/src/panel.h 2019-02-26 21:47:02.000000000 +0000 +++ lxpanel-0.10.1/src/panel.h 2021-02-06 21:16:02.000000000 +0000 @@ -44,7 +44,7 @@ #define LXPANEL_CHECK_VERSION(_a,_b,_c) \ (0 > _a || \ (0 == _a && 10 > _b) || \ - (0 == _a && 10 == _b && 0 >= _c)) + (0 == _a && 10 == _b && 1 >= _c)) #define LX_TYPE_PANEL (lxpanel_get_type()) diff -Nru lxpanel-0.10.0/src/plugin.c lxpanel-0.10.1/src/plugin.c --- lxpanel-0.10.0/src/plugin.c 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/src/plugin.c 2021-01-29 22:28:51.000000000 +0000 @@ -29,7 +29,6 @@ #include "private.h" #include -#include #include #include #include diff -Nru lxpanel-0.10.0/TODO lxpanel-0.10.1/TODO --- lxpanel-0.10.0/TODO 2019-01-13 21:35:07.000000000 +0000 +++ lxpanel-0.10.1/TODO 2019-02-28 23:41:47.000000000 +0000 @@ -21,6 +21,5 @@ * check and use weather-* standard themed icons for weather plugin * "Remove this Launch Button" option in launchbar context menu * 'usb-unmount' plugin -* in 0.10.0 fix "GTK2+" string to just "GTK+", spelling errors "allow to" * show/hide Raise/Restore/Maximize/Iconify in button menu depending on task * get rid of GDK_ROOT_WINDOW() and gdk_get_default_root_window() and a_WM_STATE