New upstream version 4.18.1.

This commit is contained in:
rtlhq 2023-04-02 10:19:24 +00:00
parent 11fdb43a4b
commit e18e041ba0
79 changed files with 3314 additions and 1260 deletions

1414
ChangeLog

File diff suppressed because it is too large Load Diff

23
NEWS
View File

@ -1,3 +1,26 @@
4.18.1 (2023-03-28)
======
- garcon-gtk: Add missing lock when filling the GtkMenu
- Wait for any async operation to finish before releasing locks
- Use GIcons for menu icons instead of loading surfaces
- Revert "garcon-gtk: Fix menu icon blurriness when UI scale factor !=
1"
- Revert "Load icons using icon theme scaling functions correctly"
- garcon-gtk: Properly update GtkMenu is_populated state
- Load icons using icon theme scaling functions correctly
- Translation Updates:
Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian,
Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China),
Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish,
Dutch, Eastern Armenian, English (Australia), English (United
Kingdom), Esperanto, Estonian, Finnish, French, Galician, Georgian,
German, Greek, Hebrew, Hindi, Hungarian, Icelandic, Indonesian,
Interlingue, Italian, Japanese, Kabyle, Kazakh, Korean, Lithuanian,
Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500),
Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish,
Ukrainian, Uyghur, Uzbek, Uzbek (Latin), Welsh
4.18.0 (2022-12-15)
======
- build: Bump requirements for Xfce 4.18

159
aclocal.m4 vendored
View File

@ -810,6 +810,165 @@ AS_HELP_STRING([--disable-$4],[Disable checking for $5]),
dnl XDT_FEATURE_DEPENDENCY(varname, package, version)
dnl
dnl Used only as an argument to XDT_CHECK_OPTIONAL_FEATURE(), this macro
dnl declares a dependency required for the feature to be enabled.
dnl
dnl If the dependency is checked and found, variables and substitutions will be
dnl created and set as in XDT_CHECK_PACKAGE(), plus varname_FOUND will be set
dnl to "yes", and HAVE_varname will be set in config.h.
dnl
dnl Note that, unlike with XDT_CHECK_OPTIONAL_PACKAGE(), no automake
dnl conditional is set for this dependency.
dnl
dnl See XDT_CHECK_OPTIONAL_FEATURE() for more information.
dnl
AC_DEFUN([XDT_FEATURE_DEPENDENCY],
[
AC_REQUIRE([XDT_PROG_PKG_CONFIG])
if test x"$xdt_feature_deps_check_only" = x"yes"; then
if ! $PKG_CONFIG --exists "$2 >= $3" >/dev/null 2>&1; then
if test x"$xdt_feature_deps_missing" = x""; then
xdt_feature_deps_missing="$2 >= $3"
else
xdt_feature_deps_missing="$xdt_feature_deps_missing, $2 >= $3"
fi
fi
else
XDT_CHECK_PACKAGE([$1], [$2], [$3],
[
AC_DEFINE([HAVE_$1], [1], [Define if $2 >= $3 present])
$1_FOUND="yes"
])
fi
])
dnl XDT_CHECK_OPTIONAL_FEATURE(varname, optionname, dependency-checks, [helpstring], [default])
dnl
dnl Introduces an --enable-optionname/--disable-optionname flag pair for a
dnl named feature. If neither flag is provided, the feature will be enabled or
dnl disabled depending on whether or not dependency-checks succeed or fail.
dnl If --enable-optionname is provided, the configure script will error out if
dnl the dependencies are not met. If --disable-optionname is provided, the
dnl feature will be disabled, and dependencies will not be checked.
dnl
dnl The dependency-checks argument should be a series of
dnl XDT_FEATURE_DEPENDENCY() macro calls, passed as a single quoted argument to
dnl XDT_CHECK_OPTIONAL_FEATURE().
dnl
dnl If helpstring is not provided, optionname is used instead.
dnl
dnl The default is "auto", and semantics are as described above. If default is
dnl set to "yes", then the feature will be required unless --disable-optionname
dnl is passed to configure. If default is set to "no", the feature will not be
dnl built unless --enable-optionname is passed.
dnl
dnl If the feature is enabled and dependencies are met, ENABLE_varname will be
dnl defined in config.h. Additionally, an automake conditional called
dnl ENABLE_varname will be created, and a shell variable called ENABLE_varname
dnl will set to "yes" or "no".
dnl
dnl Example usage:
dnl
dnl XDT_CHECK_OPTIONAL_FEATURE([WAYLAND],
dnl [wayland],
dnl [
dnl XDT_FEATURE_DEPENDENCY([GDK_WAYLAND], [gdk-wayland-3.0], [3.24.0])
dnl XDT_FEATURE_DEPENDENCY([GTK_LAYER_SHELL], [gtk-layer-shell-0], [0.7.0])
dnl ],
dnl [the Wayland windowing system])
dnl
dnl Note that there are no commas between the XDT_FEATURE_DEPENDENCY()
dnl invocations; they should all form a single "argument" to
dnl XDT_CHECK_OPTIONAL_FEATURE().
dnl
dnl Also note that you must quote the dependency-checks argument with square
dnl brackets, or you will get syntax errors in the generated configure script.
dnl
AC_DEFUN([XDT_CHECK_OPTIONAL_FEATURE],
[
AC_ARG_ENABLE([$2],
AS_HELP_STRING([--enable-$2], [Enable support for m4_default($4, $2) (default=m4_default([$5], [auto]))])
AS_HELP_STRING([--disable-$2], [Disable support for m4_default($4, $2)]),
[xdt_cv_$1_enabled=$enableval], [xdt_cv_$1_enabled=m4_default([$5], [auto])])
if test x"$xdt_cv_$1_enabled" != x"no"; then
xdt_feature_deps_check_only=yes
xdt_feature_deps_missing=
$3
if test x"$xdt_feature_deps_missing" = x""; then
xdt_feature_deps_check_only=
$3
ENABLE_$1="yes"
AC_DEFINE([ENABLE_$1], [1], [Define if m4_default($4, $2) is enabled])
AC_MSG_CHECKING([if m4_default($4, $2) is enabled])
AC_MSG_RESULT([yes])
else
AC_MSG_CHECKING([if m4_default($4, $2) is enabled])
AC_MSG_RESULT([dependencies missing: $xdt_feature_deps_missing])
if test x"$xdt_cv_$1_enabled" = x"yes"; then
AC_MSG_ERROR([support for m4_default($4, $2) was required, but dependencies were not met])
else
ENABLE_$1="no"
fi
fi
xdt_feature_deps_check_only=
xdt_feature_deps_missing=
else
ENABLE_$1="no"
AC_MSG_CHECKING([if m4_default($4, $2) is enabled])
AC_MSG_RESULT([disabled])
fi
AM_CONDITIONAL([ENABLE_$1], [test x"$ENABLE_$1" = x"yes"])
])
dnl XDT_CHECK_PACKAGE_BINARY(varname, package, pkgvarname, [binname])
dnl
dnl Finds a program by looking for a variable named pkgvarname in the
dnl pkg-config file for package. If found, varname (both a shell variable and
dnl automake substitution) is set to the name of the binary (and possibly full
dnl path, if that is how it is specified in the pkg-config file). If not found,
dnl or not present and executable, configure will exit with an error.
dnl
dnl Users can also override this detection by specfying a varname on the
dnl configure command line. In that case, the provided value is still checked
dnl to ensure it exists and is executable.
dnl
dnl If binname is not provided (for documentation purposes), pkgvarname will be
dnl used instead.
dnl
dnl Example usage:
dnl
dnl XDT_CHECK_PACKAGE_BINARY([GLIB_GENMARSHAL], [glib-2.0], [glib_genmarshal], [glib-genmarshal])
dnl
AC_DEFUN([XDT_CHECK_PACKAGE_BINARY],
[
AC_REQUIRE([XDT_PROG_PKG_CONFIG])
AC_ARG_VAR([$1], [Location of program ]m4_default($4, $3))
AC_MSG_CHECKING([for m4_default($4, $3)])
if test x"$$1" = x""; then
$1=`$PKG_CONFIG --variable=$3 $2`
fi
if test x"$$1" != x"" -a -x "$$1"; then
AC_MSG_RESULT([$$1])
else
AC_MSG_ERROR([could not find m4_default($4, $3). You can run:
./configure $1=/path/to/m4_default($4, $3)
to provide a custom location for it.])
fi
])
dnl XDT_CHECK_LIBX11()
dnl
dnl Executes various checks for X11. Sets LIBX11_CFLAGS, LIBX11_LDFLAGS

32
configure vendored
View File

@ -1,12 +1,12 @@
#! /bin/sh
# From configure.ac 4a56b1c.
# From configure.ac e401415.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for garcon 4.18.0.
# Generated by GNU Autoconf 2.71 for garcon 4.18.1.
#
# Report bugs to <https://gitlab.xfce.org/xfce/garcon>.
#
# Copyright (c) 2007-2011 Jannis Pohlmann <jannis@xfce.org>
# Copyright (c) 2012-2022 The Xfce development team
# Copyright (c) 2012-2023 The Xfce development team
#
#
#
@ -626,8 +626,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='garcon'
PACKAGE_TARNAME='garcon'
PACKAGE_VERSION='4.18.0'
PACKAGE_STRING='garcon 4.18.0'
PACKAGE_VERSION='4.18.1'
PACKAGE_STRING='garcon 4.18.1'
PACKAGE_BUGREPORT='https://gitlab.xfce.org/xfce/garcon'
PACKAGE_URL=''
@ -1487,7 +1487,7 @@ if test "$ac_init_help" = "long"; then
# 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 garcon 4.18.0 to adapt to many kinds of systems.
\`configure' configures garcon 4.18.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1559,7 +1559,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of garcon 4.18.0:";;
short | recursive ) echo "Configuration of garcon 4.18.1:";;
esac
cat <<\_ACEOF
@ -1698,7 +1698,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
garcon configure 4.18.0
garcon configure 4.18.1
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@ -1706,7 +1706,7 @@ This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
Copyright (c) 2007-2011 Jannis Pohlmann <jannis@xfce.org>
Copyright (c) 2012-2022 The Xfce development team
Copyright (c) 2012-2023 The Xfce development team
_ACEOF
exit
@ -1963,7 +1963,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by garcon $as_me 4.18.0, which was
It was created by garcon $as_me 4.18.1, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@ -3353,7 +3353,7 @@ fi
# Define the identity of the package.
PACKAGE='garcon'
VERSION='4.18.0'
VERSION='4.18.1'
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@ -3646,7 +3646,7 @@ GARCON_VERINFO=0:0:0
GARCON_VERSION_MAJOR=4
GARCON_VERSION_MINOR=18
GARCON_VERSION_MICRO=0
GARCON_VERSION_MICRO=1
GARCON_VERSION_API_MAJOR=1
GARCON_VERSION_API=$GARCON_VERSION_API_MAJOR
@ -6553,8 +6553,8 @@ esac
macro_version='2.4.7-dirty'
macro_revision='2.4.7'
macro_version='2.4.7.4-1ec8f-dirty'
macro_revision='2.4.7.4'
@ -17700,7 +17700,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by garcon $as_me 4.18.0, which was
This file was extended by garcon $as_me 4.18.1, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -17768,7 +17768,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
garcon config.status 4.18.0
garcon config.status 4.18.1
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"

View File

@ -30,8 +30,8 @@ m4_define([garcon_verinfo], [0:0:0])
m4_define([garcon_version_api_major], [1])
m4_define([garcon_version_major], [4])
m4_define([garcon_version_minor], [18])
m4_define([garcon_version_micro], [0])
m4_define([garcon_version_build], [4a56b1c])
m4_define([garcon_version_micro], [1])
m4_define([garcon_version_build], [e401415])
m4_define([garcon_version_tag], [])
m4_define([garcon_version], [garcon_version_major().garcon_version_minor().garcon_version_micro()ifelse(garcon_version_tag(), [git], [garcon_version_tag()-garcon_version_build()], [garcon_version_tag()])])
@ -49,12 +49,12 @@ dnl ***************************
dnl *** Initialize autoconf ***
dnl ***************************
AC_COPYRIGHT([Copyright (c) 2007-2011 Jannis Pohlmann <jannis@xfce.org>
Copyright (c) 2012-2022 The Xfce development team
Copyright (c) 2012-2023 The Xfce development team
])
AC_INIT([garcon], [garcon_version], [https://gitlab.xfce.org/xfce/garcon])
AC_PREREQ([2.69])
AC_CONFIG_MACRO_DIRS([m4])
AC_REVISION([4a56b1c])
AC_REVISION([e401415])
AC_CANONICAL_TARGET()
dnl ***************************

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
garcon (4.18.1-ok1) yangtze; urgency=medium
* New upstream version 4.18.1.
-- rtlhq <nobelxyz@163.com> Sun, 02 Apr 2023 10:09:21 +0800
garcon (4.18.0-ok1) yangtze; urgency=medium
* New upstream version 4.18.0.

204
debian/patches/01-fix-glib-264.patch vendored Normal file
View File

@ -0,0 +1,204 @@
From: openKylin Xfce SIG <xfce@lists.openkylin.top>
Date: Sat, 17 Dec 2022 04:31:19 +0000
Subject: fix-glib-264
---
configure | 52 ++++++++++++++++++++++++++--------------------------
configure.ac | 8 ++++----
2 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/configure b/configure
index 1700a09..47547f5 100755
--- a/configure
+++ b/configure
@@ -15122,9 +15122,9 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for glib-2.0 >= 2.66.0" >&5
-printf %s "checking for glib-2.0 >= 2.66.0... " >&6; }
- if $PKG_CONFIG "--atleast-version=2.66.0" "glib-2.0" >/dev/null 2>&1; then
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for glib-2.0 >= 2.64.0" >&5
+printf %s "checking for glib-2.0 >= 2.64.0... " >&6; }
+ if $PKG_CONFIG "--atleast-version=2.64.0" "glib-2.0" >/dev/null 2>&1; then
GLIB_VERSION=`$PKG_CONFIG --modversion "glib-2.0"`
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GLIB_VERSION" >&5
printf "%s\n" "$GLIB_VERSION" >&6; }
@@ -15141,7 +15141,7 @@ printf %s "checking GLIB_LIBS... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GLIB_LIBS" >&5
printf "%s\n" "$GLIB_LIBS" >&6; }
- GLIB_REQUIRED_VERSION=2.66.0
+ GLIB_REQUIRED_VERSION=2.64.0
@@ -15155,8 +15155,8 @@ printf "%s\n" "#define G_LOG_USE_STRUCTURED 1" >>confdefs.h
fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: setting GLIB_VERSION_MAX_ALLOWED and GLIB_VERSION_MIN_REQUIRED according to 2.66.0" >&5
-printf "%s\n" "$as_me: setting GLIB_VERSION_MAX_ALLOWED and GLIB_VERSION_MIN_REQUIRED according to 2.66.0" >&6;}
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: setting GLIB_VERSION_MAX_ALLOWED and GLIB_VERSION_MIN_REQUIRED according to 2.64.0" >&5
+printf "%s\n" "$as_me: setting GLIB_VERSION_MAX_ALLOWED and GLIB_VERSION_MIN_REQUIRED according to 2.64.0" >&6;}
@@ -15177,7 +15177,7 @@ printf "%s\n" "found, but $xdt_cv_version" >&6; }
echo "*** The required package glib-2.0 was found on your system,"
echo "*** but the installed version ($xdt_cv_version) is too old."
- echo "*** Please upgrade glib-2.0 to atleast version 2.66.0, or adjust"
+ echo "*** Please upgrade glib-2.0 to atleast version 2.64.0, or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you installed"
echo "*** the new version of the package in a nonstandard prefix so"
echo "*** pkg-config is able to find it."
@@ -15189,7 +15189,7 @@ printf "%s\n" "not found" >&6; }
echo "*** The required package glib-2.0 was not found on your system."
- echo "*** Please install glib-2.0 (atleast version 2.66.0) or adjust"
+ echo "*** Please install glib-2.0 (atleast version 2.64.0) or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you"
echo "*** installed the package in a nonstandard prefix so that"
echo "*** pkg-config is able to find it."
@@ -15347,9 +15347,9 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gio-2.0 >= 2.66.0" >&5
-printf %s "checking for gio-2.0 >= 2.66.0... " >&6; }
- if $PKG_CONFIG "--atleast-version=2.66.0" "gio-2.0" >/dev/null 2>&1; then
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gio-2.0 >= 2.64.0" >&5
+printf %s "checking for gio-2.0 >= 2.64.0... " >&6; }
+ if $PKG_CONFIG "--atleast-version=2.64.0" "gio-2.0" >/dev/null 2>&1; then
GIO_VERSION=`$PKG_CONFIG --modversion "gio-2.0"`
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GIO_VERSION" >&5
printf "%s\n" "$GIO_VERSION" >&6; }
@@ -15366,7 +15366,7 @@ printf %s "checking GIO_LIBS... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GIO_LIBS" >&5
printf "%s\n" "$GIO_LIBS" >&6; }
- GIO_REQUIRED_VERSION=2.66.0
+ GIO_REQUIRED_VERSION=2.64.0
@@ -15390,7 +15390,7 @@ printf "%s\n" "found, but $xdt_cv_version" >&6; }
echo "*** The required package gio-2.0 was found on your system,"
echo "*** but the installed version ($xdt_cv_version) is too old."
- echo "*** Please upgrade gio-2.0 to atleast version 2.66.0, or adjust"
+ echo "*** Please upgrade gio-2.0 to atleast version 2.64.0, or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you installed"
echo "*** the new version of the package in a nonstandard prefix so"
echo "*** pkg-config is able to find it."
@@ -15402,7 +15402,7 @@ printf "%s\n" "not found" >&6; }
echo "*** The required package gio-2.0 was not found on your system."
- echo "*** Please install gio-2.0 (atleast version 2.66.0) or adjust"
+ echo "*** Please install gio-2.0 (atleast version 2.64.0) or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you"
echo "*** installed the package in a nonstandard prefix so that"
echo "*** pkg-config is able to find it."
@@ -15773,9 +15773,9 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gobject-2.0 >= 2.66.0" >&5
-printf %s "checking for gobject-2.0 >= 2.66.0... " >&6; }
- if $PKG_CONFIG "--atleast-version=2.66.0" "gobject-2.0" >/dev/null 2>&1; then
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gobject-2.0 >= 2.64.0" >&5
+printf %s "checking for gobject-2.0 >= 2.64.0... " >&6; }
+ if $PKG_CONFIG "--atleast-version=2.64.0" "gobject-2.0" >/dev/null 2>&1; then
GOBJECT_VERSION=`$PKG_CONFIG --modversion "gobject-2.0"`
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_VERSION" >&5
printf "%s\n" "$GOBJECT_VERSION" >&6; }
@@ -15792,7 +15792,7 @@ printf %s "checking GOBJECT_LIBS... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_LIBS" >&5
printf "%s\n" "$GOBJECT_LIBS" >&6; }
- GOBJECT_REQUIRED_VERSION=2.66.0
+ GOBJECT_REQUIRED_VERSION=2.64.0
@@ -15816,7 +15816,7 @@ printf "%s\n" "found, but $xdt_cv_version" >&6; }
echo "*** The required package gobject-2.0 was found on your system,"
echo "*** but the installed version ($xdt_cv_version) is too old."
- echo "*** Please upgrade gobject-2.0 to atleast version 2.66.0, or adjust"
+ echo "*** Please upgrade gobject-2.0 to atleast version 2.64.0, or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you installed"
echo "*** the new version of the package in a nonstandard prefix so"
echo "*** pkg-config is able to find it."
@@ -15828,7 +15828,7 @@ printf "%s\n" "not found" >&6; }
echo "*** The required package gobject-2.0 was not found on your system."
- echo "*** Please install gobject-2.0 (atleast version 2.66.0) or adjust"
+ echo "*** Please install gobject-2.0 (atleast version 2.64.0) or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you"
echo "*** installed the package in a nonstandard prefix so that"
echo "*** pkg-config is able to find it."
@@ -15986,9 +15986,9 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gthread-2.0 >= 2.66.0" >&5
-printf %s "checking for gthread-2.0 >= 2.66.0... " >&6; }
- if $PKG_CONFIG "--atleast-version=2.66.0" "gthread-2.0" >/dev/null 2>&1; then
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gthread-2.0 >= 2.64.0" >&5
+printf %s "checking for gthread-2.0 >= 2.64.0... " >&6; }
+ if $PKG_CONFIG "--atleast-version=2.64.0" "gthread-2.0" >/dev/null 2>&1; then
GTHREAD_VERSION=`$PKG_CONFIG --modversion "gthread-2.0"`
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GTHREAD_VERSION" >&5
printf "%s\n" "$GTHREAD_VERSION" >&6; }
@@ -16005,7 +16005,7 @@ printf %s "checking GTHREAD_LIBS... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GTHREAD_LIBS" >&5
printf "%s\n" "$GTHREAD_LIBS" >&6; }
- GTHREAD_REQUIRED_VERSION=2.66.0
+ GTHREAD_REQUIRED_VERSION=2.64.0
@@ -16029,7 +16029,7 @@ printf "%s\n" "found, but $xdt_cv_version" >&6; }
echo "*** The required package gthread-2.0 was found on your system,"
echo "*** but the installed version ($xdt_cv_version) is too old."
- echo "*** Please upgrade gthread-2.0 to atleast version 2.66.0, or adjust"
+ echo "*** Please upgrade gthread-2.0 to atleast version 2.64.0, or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you installed"
echo "*** the new version of the package in a nonstandard prefix so"
echo "*** pkg-config is able to find it."
@@ -16041,7 +16041,7 @@ printf "%s\n" "not found" >&6; }
echo "*** The required package gthread-2.0 was not found on your system."
- echo "*** Please install gthread-2.0 (atleast version 2.66.0) or adjust"
+ echo "*** Please install gthread-2.0 (atleast version 2.64.0) or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you"
echo "*** installed the package in a nonstandard prefix so that"
echo "*** pkg-config is able to find it."
diff --git a/configure.ac b/configure.ac
index 72e99e8..2c65601 100644
--- a/configure.ac
+++ b/configure.ac
@@ -121,11 +121,11 @@ XDT_I18N([])
dnl ***********************************
dnl *** Check for required packages ***
dnl ***********************************
-XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.66.0])
-XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.66.0])
+XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.64.0])
+XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.64.0])
XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.15.6])
-XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.66.0])
-XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.66.0])
+XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.64.0])
+XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.64.0])
XDT_CHECK_PACKAGE([GTK3], [gtk+-3.0], [3.24.0])
XDT_CHECK_PACKAGE([LIBXFCE4UI2], [libxfce4ui-2], [4.15.7])

View File

@ -16,7 +16,7 @@
<ulink role="online-location" url="https://developer.xfce.org/&package_name;/index.html">https://developer.xfce.org/&package_name;/</ulink>.
</releaseinfo>
<copyright>
<year>2022</year>
<year>2023</year>
<holder>The Xfce Development Team</holder>
</copyright>
</bookinfo>

View File

@ -234,14 +234,14 @@ returned <a class="link" href="GarconMenu.html" title="GarconMenu"><span class="
6
7
8</pre></td>
<td class="listing_code"><pre class="programlisting"><span class="n">GarconMenu</span><span class="w"> </span><span class="o">*</span><span class="n">menu</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">garcon_menu_new</span><span class="w"> </span><span class="p">(</span><span class="n">filename</span><span class="p">);</span><span class="w"></span>
<td class="listing_code"><pre class="programlisting"><span class="n">GarconMenu</span><span class="w"> </span><span class="o">*</span><span class="n">menu</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">garcon_menu_new</span><span class="w"> </span><span class="p">(</span><span class="n">filename</span><span class="p">);</span>
<span class="k">if</span><span class="w"> </span><span class="p">(</span><span class="n">garcon_menu_load</span><span class="w"> </span><span class="p">(</span><span class="n">menu</span><span class="p">,</span><span class="w"> </span><span class="o">&amp;</span><span class="n">error</span><span class="p">))</span><span class="w"></span>
<span class="w"> </span><span class="p">...</span><span class="w"></span>
<span class="k">else</span><span class="w"></span>
<span class="w"> </span><span class="p">...</span><span class="w"></span>
<span class="k">if</span><span class="w"> </span><span class="p">(</span><span class="n">garcon_menu_load</span><span class="w"> </span><span class="p">(</span><span class="n">menu</span><span class="p">,</span><span class="w"> </span><span class="o">&amp;</span><span class="n">error</span><span class="p">))</span>
<span class="w"> </span><span class="p">...</span>
<span class="k">else</span>
<span class="w"> </span><span class="p">...</span>
<span class="n">g_object_unref</span><span class="w"> </span><span class="p">(</span><span class="n">menu</span><span class="p">);</span><span class="w"></span></pre></td>
<span class="n">g_object_unref</span><span class="w"> </span><span class="p">(</span><span class="n">menu</span><span class="p">);</span></pre></td>
</tr>
</tbody>
</table>

View File

@ -182,12 +182,12 @@ in use is compatible with the version of</p>
4
5
6</pre></td>
<td class="listing_code"><pre class="programlisting"><span class="k">const</span><span class="w"> </span><span class="n">gchar</span><span class="w"> </span><span class="o">*</span><span class="n">mismatch</span><span class="p">;</span><span class="w"></span>
<span class="n">mismatch</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">garcon_check_version</span><span class="w"> </span><span class="p">(</span><span class="n">GARCON_VERSION_MAJOR</span><span class="p">,</span><span class="w"></span>
<span class="w"> </span><span class="n">GARCON_VERSION_MINOR</span><span class="p">,</span><span class="w"></span>
<span class="w"> </span><span class="n">GARCON_VERSION_MICRO</span><span class="p">);</span><span class="w"></span>
<span class="k">if</span><span class="w"> </span><span class="p">(</span><span class="n">G_UNLIKELY</span><span class="w"> </span><span class="p">(</span><span class="n">mismatch</span><span class="w"> </span><span class="o">!=</span><span class="w"> </span><span class="nb">NULL</span><span class="p">))</span><span class="w"></span>
<span class="w"> </span><span class="n">g_error</span><span class="w"> </span><span class="p">(</span><span class="s">&quot;Version mismatch: %s&quot;</span><span class="p">,</span><span class="w"> </span><span class="n">mismatch</span><span class="p">);</span><span class="w"></span></pre></td>
<td class="listing_code"><pre class="programlisting"><span class="k">const</span><span class="w"> </span><span class="n">gchar</span><span class="w"> </span><span class="o">*</span><span class="n">mismatch</span><span class="p">;</span>
<span class="n">mismatch</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">garcon_check_version</span><span class="w"> </span><span class="p">(</span><span class="n">GARCON_VERSION_MAJOR</span><span class="p">,</span>
<span class="w"> </span><span class="n">GARCON_VERSION_MINOR</span><span class="p">,</span>
<span class="w"> </span><span class="n">GARCON_VERSION_MICRO</span><span class="p">);</span>
<span class="k">if</span><span class="w"> </span><span class="p">(</span><span class="n">G_UNLIKELY</span><span class="w"> </span><span class="p">(</span><span class="n">mismatch</span><span class="w"> </span><span class="o">!=</span><span class="w"> </span><span class="nb">NULL</span><span class="p">))</span>
<span class="w"> </span><span class="n">g_error</span><span class="w"> </span><span class="p">(</span><span class="s">&quot;Version mismatch: %s&quot;</span><span class="p">,</span><span class="w"> </span><span class="n">mismatch</span><span class="p">);</span></pre></td>
</tr>
</tbody>
</table>
@ -310,7 +310,7 @@ linked against at application run time.</p>
<hr>
<div class="refsect2">
<a name="GARCON-MICRO-VERSION:CAPS"></a><h3>GARCON_MICRO_VERSION</h3>
<pre class="programlisting">#define GARCON_MICRO_VERSION 0
<pre class="programlisting">#define GARCON_MICRO_VERSION 1
</pre>
<p>The micro version number of the garcon library.
Like garcon_micro_version, but from the headers used at

View File

@ -15,11 +15,11 @@
<div>
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">garcon Reference Manual</p></th></tr></table></div>
<div><p class="releaseinfo">
For garcon 4.18.0.
For garcon 4.18.1.
The latest version of this documentation can be found on-line at
<a class="ulink" href="https://developer.xfce.org/garcon/index.html" target="_top">https://developer.xfce.org/garcon/</a>.
</p></div>
<div><p class="copyright">Copyright © 2022 The Xfce Development Team</p></div>
<div><p class="copyright">Copyright © 2023 The Xfce Development Team</p></div>
</div>
<hr>
</div>

View File

@ -232,13 +232,16 @@ garcon_gtk_menu_finalize (GObject *object)
{
GarconGtkMenu *menu = GARCON_GTK_MENU (object);
/* wait for any async operation to finish */
g_mutex_lock (&menu->priv->load_lock);
g_mutex_unlock (&menu->priv->load_lock);
g_mutex_clear (&menu->priv->load_lock);
g_cond_clear (&menu->priv->load_cond);
/* Release menu */
if (menu->priv->menu != NULL)
g_object_unref (menu->priv->menu);
g_mutex_clear (&menu->priv->load_lock);
g_cond_clear (&menu->priv->load_cond);
(*G_OBJECT_CLASS (garcon_gtk_menu_parent_class)->finalize) (object);
}
@ -347,11 +350,13 @@ garcon_gtk_menu_show (GtkWidget *widget)
}
/* populate the GtkMenu at level 0 the first time it's shown */
g_mutex_lock (&menu->priv->load_lock);
if (G_UNLIKELY (menu->priv->is_loaded && ! menu->priv->is_populated))
{
garcon_gtk_menu_add (menu, GTK_MENU (menu), menu->priv->menu);
menu->priv->is_populated = TRUE;
}
g_mutex_unlock (&menu->priv->load_lock);
(*GTK_WIDGET_CLASS (garcon_gtk_menu_parent_class)->show) (widget);
}
@ -591,12 +596,14 @@ garcon_gtk_menu_load_finish (GObject *source_object,
/* destroy all GtkMenu items */
children = gtk_container_get_children (GTK_CONTAINER (menu));
g_list_free_full (children, (GDestroyNotify) gtk_widget_destroy);
menu->priv->is_populated = FALSE;
/* update the GtkMenu in place if shown */
if (menu->priv->is_loaded && gtk_widget_get_visible (GTK_WIDGET (menu)))
{
garcon_gtk_menu_add (menu, GTK_MENU (menu), menu->priv->menu);
else
menu->priv->is_populated = FALSE;
menu->priv->is_populated = TRUE;
}
}
@ -661,82 +668,66 @@ garcon_gtk_menu_reload (GarconGtkMenu *menu)
static GdkPixbuf*
garcon_gtk_menu_load_icon_pixbuf (const gchar *icon_name,
gint scale_factor)
static GtkWidget*
garcon_gtk_menu_load_icon (const gchar *icon_name)
{
gint w, h, size;
gchar *p, *name = NULL;
GdkPixbuf *pixbuf = NULL;
GtkIconTheme *icon_theme = gtk_icon_theme_get_default ();
gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &w, &h);
size = MIN (w, h);
GIcon *icon = NULL;
GtkWidget *image = NULL;
if (gtk_icon_theme_has_icon (icon_theme, icon_name))
{
pixbuf = gtk_icon_theme_load_icon (icon_theme,
icon_name, size * scale_factor,
GTK_ICON_LOOKUP_FORCE_SIZE, NULL);
icon = g_themed_icon_new (icon_name);
}
else
else if (g_path_is_absolute (icon_name)
&& g_file_test (icon_name, G_FILE_TEST_EXISTS)
&& !g_file_test (icon_name, G_FILE_TEST_IS_DIR))
{
if (g_path_is_absolute (icon_name))
{
pixbuf = gdk_pixbuf_new_from_file_at_scale (icon_name, w * scale_factor, h * scale_factor, TRUE, NULL);
GFile *file = g_file_new_for_path (icon_name);
icon = g_file_icon_new (file);
g_object_unref (file);
}
else
{
/* try to lookup names like application.png in the theme */
p = strrchr (icon_name, '.');
if (p)
const gchar *p = strrchr (icon_name, '.');
if (p != NULL)
{
name = g_strndup (icon_name, p - icon_name);
pixbuf = gtk_icon_theme_load_icon (icon_theme,
icon_name, size * scale_factor,
GTK_ICON_LOOKUP_FORCE_SIZE, NULL);
const gchar *slash = strrchr (icon_name, '/');
const gchar *start = slash != NULL && slash < p ? slash + 1 : icon_name;
gchar *name = g_strndup (start, p - start);
if (gtk_icon_theme_has_icon (icon_theme, name))
{
icon = g_themed_icon_new (name);
}
g_free (name);
name = NULL;
}
/* maybe they point to a file in the pixmaps folder */
if (G_UNLIKELY (pixbuf == NULL))
if (G_UNLIKELY (icon == NULL))
{
gchar *filename;
gchar *filename, *name;
filename = g_build_filename ("pixmaps", icon_name, NULL);
name = xfce_resource_lookup (XFCE_RESOURCE_DATA, filename);
g_free (filename);
}
if (name)
if (name != NULL)
{
pixbuf = gdk_pixbuf_new_from_file_at_scale (name, w * scale_factor, h * scale_factor, TRUE, NULL);
GFile *file = g_file_new_for_path (name);
icon = g_file_icon_new (file);
g_object_unref (file);
g_free (name);
}
}
}
return pixbuf;
}
static GtkWidget*
garcon_gtk_menu_load_icon (const gchar *icon_name,
gint scale_factor)
{
GtkWidget *image = NULL;
GdkPixbuf *pixbuf = NULL;
pixbuf = garcon_gtk_menu_load_icon_pixbuf (icon_name, scale_factor);
if (G_LIKELY (pixbuf != NULL))
if (G_LIKELY (icon != NULL))
{
cairo_surface_t *surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale_factor, NULL);
g_object_unref (G_OBJECT (pixbuf));
image = gtk_image_new_from_surface (surface);
cairo_surface_destroy (surface);
/* Turn the icon into a GtkImage */
image = gtk_image_new_from_gicon (icon, GTK_ICON_SIZE_MENU);
g_object_unref (icon);
}
else
{
@ -749,67 +740,17 @@ garcon_gtk_menu_load_icon (const gchar *icon_name,
static void
garcon_gtk_menu_item_scale_factor_changed (GtkWidget *menu_item,
GParamSpec *pspec,
const gchar *icon_name)
{
GdkPixbuf *pixbuf;
gint scale_factor;
g_return_if_fail (GTK_IS_MENU_ITEM (menu_item));
g_return_if_fail (icon_name != NULL);
scale_factor = gtk_widget_get_scale_factor (menu_item);
pixbuf = garcon_gtk_menu_load_icon_pixbuf (icon_name, scale_factor);
if (G_LIKELY (pixbuf))
{
GtkWidget *image = NULL;
GtkWidget *box;
box = gtk_bin_get_child (GTK_BIN (menu_item));
if (GTK_IS_BOX (box))
{
GList *children = gtk_container_get_children (GTK_CONTAINER (box));
for (GList *l = children; l != NULL; l = l->next)
{
if (GTK_IS_IMAGE (l->data))
{
image = GTK_WIDGET (l->data);
break;
}
}
g_list_free (children);
}
if (image != NULL)
{
GdkWindow *window = gtk_widget_get_window (menu_item);
cairo_surface_t *surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale_factor, window);
gtk_image_set_from_surface (GTK_IMAGE (image), surface);
cairo_surface_destroy (surface);
}
g_object_unref (G_OBJECT (pixbuf));
}
}
static GtkWidget*
garcon_gtk_menu_create_menu_item (gboolean show_menu_icons,
const gchar *name,
const gchar *icon_name,
gint scale_factor)
const gchar *icon_name)
{
GtkWidget *mi;
GtkWidget *image;
gchar *icon_name_copy;
if (show_menu_icons)
{
image = garcon_gtk_menu_load_icon (icon_name, scale_factor);
image = garcon_gtk_menu_load_icon (icon_name);
gtk_widget_show (image);
}
else
@ -819,11 +760,6 @@ garcon_gtk_menu_create_menu_item (gboolean show_menu_icons,
mi = xfce_gtk_image_menu_item_new (name, NULL, NULL, NULL, NULL, image, NULL);
icon_name_copy = g_strdup (icon_name);
g_object_set_data_full (G_OBJECT (mi), "--garcon-icon-name", icon_name_copy, g_free);
g_signal_connect (mi, "notify::scale-factor",
G_CALLBACK (garcon_gtk_menu_item_scale_factor_changed), icon_name_copy);
return mi;
}
@ -834,8 +770,7 @@ garcon_gtk_menu_pack_actions_menu (GtkWidget *menu,
GarconMenuItem *menu_item,
GList *actions,
const gchar *parent_icon_name,
gboolean show_menu_icons,
gint scale_factor)
gboolean show_menu_icons)
{
GList *iter;
GtkWidget *mi;
@ -862,8 +797,7 @@ garcon_gtk_menu_pack_actions_menu (GtkWidget *menu,
mi = garcon_gtk_menu_create_menu_item (show_menu_icons,
garcon_menu_item_action_get_name (action),
action_icon_name,
scale_factor);
action_icon_name);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), mi);
g_signal_connect_object (G_OBJECT (mi), "activate",
@ -884,14 +818,13 @@ garcon_gtk_menu_add_actions (GarconGtkMenu *menu,
const gchar *parent_icon_name)
{
GtkWidget *submenu, *mi;
gint scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (menu));
submenu = gtk_menu_new ();
/* Add the parent item again, this time something the user can click to execute */
mi = garcon_gtk_menu_create_menu_item (menu->priv->show_menu_icons,
garcon_menu_item_get_name (menu_item),
parent_icon_name, scale_factor);
parent_icon_name);
gtk_menu_shell_append (GTK_MENU_SHELL (submenu), mi);
/* we need to store the GarconGtkMenu with this item so we can
@ -902,8 +835,7 @@ garcon_gtk_menu_add_actions (GarconGtkMenu *menu,
gtk_widget_show (mi);
garcon_gtk_menu_pack_actions_menu (submenu, menu_item, actions,
parent_icon_name, menu->priv->show_menu_icons,
scale_factor);
parent_icon_name, menu->priv->show_menu_icons);
return submenu;
}
@ -994,7 +926,6 @@ garcon_gtk_menu_add (GarconGtkMenu *menu,
{
GList *elements, *li;
GtkWidget *mi;
gint scale_factor;
const gchar *name, *icon_name;
const gchar *comment;
GtkWidget *submenu;
@ -1005,8 +936,6 @@ garcon_gtk_menu_add (GarconGtkMenu *menu,
g_return_if_fail (GTK_IS_MENU (gtk_menu));
g_return_if_fail (GARCON_IS_MENU (garcon_menu));
scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (menu));
elements = garcon_menu_get_elements (garcon_menu);
for (li = elements; li != NULL; li = li->next)
{
@ -1039,7 +968,7 @@ garcon_gtk_menu_add (GarconGtkMenu *menu,
icon_name = "applications-other";
/* build the menu item */
mi = garcon_gtk_menu_create_menu_item (menu->priv->show_menu_icons, name, icon_name, scale_factor);
mi = garcon_gtk_menu_create_menu_item (menu->priv->show_menu_icons, name, icon_name);
gtk_menu_shell_append (GTK_MENU_SHELL (gtk_menu), mi);
/* if the menu item has actions such as "Private browsing mode"
@ -1124,7 +1053,7 @@ garcon_gtk_menu_add (GarconGtkMenu *menu,
icon_name = "applications-other";
/* build the menu item */
mi = garcon_gtk_menu_create_menu_item (menu->priv->show_menu_icons, name, icon_name, scale_factor);
mi = garcon_gtk_menu_create_menu_item (menu->priv->show_menu_icons, name, icon_name);
gtk_menu_shell_append (GTK_MENU_SHELL (gtk_menu), mi);
gtk_menu_item_set_submenu (GTK_MENU_ITEM (mi), submenu);
@ -1392,15 +1321,13 @@ garcon_gtk_menu_get_desktop_actions_menu (GarconMenuItem *item)
GList *actions = NULL;
const gchar *parent_icon_name;
gboolean show_menu_icons = FALSE;
gint scale_factor;
actions = garcon_menu_item_get_actions (item);
g_return_val_if_fail (actions != NULL, NULL);
parent_icon_name = garcon_menu_item_get_icon_name (item);
scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (submenu));
garcon_gtk_menu_pack_actions_menu (submenu, item, actions, parent_icon_name, show_menu_icons, scale_factor);
garcon_gtk_menu_pack_actions_menu (submenu, item, actions, parent_icon_name, show_menu_icons);
g_list_free (actions);
return GTK_MENU (submenu);

View File

@ -57,7 +57,7 @@ G_BEGIN_DECLS
* application compile time, rather than from the library
* linked against at application run time.
**/
#define GARCON_MICRO_VERSION 0
#define GARCON_MICRO_VERSION 1
/**
* GARCON_CHECK_VERSION:

View File

@ -394,9 +394,13 @@ garcon_menu_finalize (GObject *object)
{
GarconMenu *menu = GARCON_MENU (object);
/* wait for any async operation to finish */
g_mutex_lock (&menu->priv->load_lock);
g_mutex_unlock (&menu->priv->load_lock);
g_mutex_clear (&menu->priv->load_lock);
/* Clear resources allocated in the load process */
garcon_menu_clear (menu);
g_mutex_clear (&menu->priv->load_lock);
/* Free file */
if (menu->priv->file != NULL)

View File

@ -2,7 +2,7 @@
## DO NOT EDIT - This file generated from ./build-aux/ltmain.in
## by inline-source v2019-02-19.15
# libtool (GNU libtool) 2.4.7-dirty
# libtool (GNU libtool) 2.4.7.4-1ec8f-dirty
# Provide generalized library-building support services.
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
@ -31,8 +31,8 @@
PROGRAM=libtool
PACKAGE=libtool
VERSION=2.4.7-dirty
package_revision=2.4.7
VERSION=2.4.7.4-1ec8f-dirty
package_revision=2.4.7.4
## ------ ##
@ -2215,7 +2215,7 @@ func_version ()
# End:
# Set a version string.
scriptversion='(GNU libtool) 2.4.7-dirty'
scriptversion='(GNU libtool) 2.4.7.4-1ec8f-dirty'
# func_echo ARG...
@ -2306,7 +2306,7 @@ include the following information:
compiler: $LTCC
compiler flags: $LTCFLAGS
linker: $LD (gnu? $with_gnu_ld)
version: $progname (GNU libtool) 2.4.7-dirty
version: $progname (GNU libtool) 2.4.7.4-1ec8f-dirty
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
@ -7558,10 +7558,11 @@ func_mode_link ()
# -fsanitize=* Clang/GCC memory and address sanitizer
# -fuse-ld=* Linker select flags for GCC
# -Wa,* Pass flags directly to the assembler
# -Werror, -Werror=* Report (specified) warnings as errors
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
-specs=*|-fsanitize=*|-fuse-ld=*|-Wa,*)
-specs=*|-fsanitize=*|-fuse-ld=*|-Wa,*|-Werror|-Werror=*)
func_quote_arg pretty "$arg"
arg=$func_quote_arg_result
func_append compile_command " $arg"

10
m4/ltversion.m4 vendored
View File

@ -10,15 +10,15 @@
# @configure_input@
# serial 4245 ltversion.m4
# serial 4249 ltversion.m4
# This file is part of GNU Libtool
m4_define([LT_PACKAGE_VERSION], [2.4.7-dirty])
m4_define([LT_PACKAGE_REVISION], [2.4.7])
m4_define([LT_PACKAGE_VERSION], [2.4.7.4-1ec8f-dirty])
m4_define([LT_PACKAGE_REVISION], [2.4.7.4])
AC_DEFUN([LTVERSION_VERSION],
[macro_version='2.4.7-dirty'
macro_revision='2.4.7'
[macro_version='2.4.7.4-1ec8f-dirty'
macro_revision='2.4.7.4'
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
_LT_DECL(, macro_revision, 0)
])

View File

@ -1,17 +1,20 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# samson <sambelet@yahoo.com>, 2016-2017
# Xfce Bot <transifex@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: garcon\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Amharic (http://www.transifex.com/xfce/garcon/language/am/)\n"
"POT-Creation-Date: 2023-03-17 10:36+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>, 2023\n"
"Language-Team: Amharic (https://www.transifex.com/xfce/teams/16840/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +141,7 @@ msgstr "ስርአት"
msgid "System tools and utilities"
msgstr "የ ስርአት መሳሪያዎች እና መገልገያዎች"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "ፋይሉ \"%s\" አልተገኘም"
@ -153,25 +156,27 @@ msgstr "የ ዝርዝር ፋይል ዳታ መጫን አልተቻለም %s: %s"
msgid "Could not load menu file data from %s"
msgstr "የ ዝርዝር ፋይል ዳታ መጫን አልተቻለም ከ %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "ትእዛዝ መፈጸም አልተቻለም \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "ስህተት ማስነሻ"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\"ን ማስነሳት አልተቻለም: ይህ አካል አስነሺዎችን ለ መፍጠር እና ለማረም እና ከ ዴስክቶፕ ጋር ለማገናኘት ያስፈልጋል"
msgstr ""
"\"exo-desktop-item-edit\"ን ማስነሳት አልተቻለም: ይህ አካል አስነሺዎችን ለ መፍጠር እና ለማረም እና ከ "
"ዴስክቶፕ ጋር ለማገናኘት ያስፈልጋል"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_መዝጊያ"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "የ መተግበሪያ ዝርዝር መጫን አልተቻለም"

View File

@ -1,19 +1,20 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# كريم أولاد الشلحة <herr.linux88@gmail.com>, 2013
# Salem Yaslem <xlmnxp@outlook.sa>, 2021
# كريم أولاد الشلحة <herr.linux88@gmail.com>, 2013
# Xfce Bot <transifex@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: garcon\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Arabic (http://www.transifex.com/xfce/garcon/language/ar/)\n"
"POT-Creation-Date: 2023-03-17 10:36+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>, 2023\n"
"Language-Team: Arabic (https://www.transifex.com/xfce/teams/16840/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +141,7 @@ msgstr "النّظام"
msgid "System tools and utilities"
msgstr "أدوات النظام"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "لم بتم العثور على الملف \"%s\""
@ -155,25 +156,26 @@ msgstr "لا يمكن تحميل ملف قائمة البيانات من %s: %s"
msgid "Could not load menu file data from %s"
msgstr "لا يمكن تحميل ملف قائمة البيانات من %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "فشل تفنيد الأمر \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "خطأ في الإقلاع"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "فشل في تنفيذ \"exo-desktop-item-edit\", الضروري لإنشاء و تحرير عناصر القائمة"
msgstr ""
"فشل في تنفيذ \"exo-desktop-item-edit\", الضروري لإنشاء و تحرير عناصر القائمة"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_أغلق"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "فشل في تحميل قائمة التطبيقات"

View File

@ -1,19 +1,20 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# enolp <enolp@softastur.org>, 2015,2020
# Ḷḷumex03, 2014
# Ḷḷumex03, 2014
# Xfce Bot <transifex@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: garcon\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Asturian (http://www.transifex.com/xfce/garcon/language/ast/)\n"
"POT-Creation-Date: 2023-03-17 10:36+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>, 2023\n"
"Language-Team: Asturian (https://www.transifex.com/xfce/teams/16840/ast/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +141,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Ferramientes del sistema y utilidaes"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Nun s'alcontro'l ficheru «%s»"
@ -155,25 +156,27 @@ msgstr "Nun pudieron cargase los datos del ficheru de menú de %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nun pudieron cargase los datos del ficheru de menú de %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Fallu al executar el comandu «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Fallu de llanzamientu"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nun pue executase «exo-desktop-item-edit», el programa que se rique pa crear y editar los elementos del menú."
msgstr ""
"Nun pue executase «exo-desktop-item-edit», el programa que se rique pa crear"
" y editar los elementos del menú."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Zarrar"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Fallu al cargar el menú d'aplicaciones"

View File

@ -1,18 +1,20 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Сяргей Снапкоўскі, 2018
# Сяргей Снапкоўскі, 2018
# Xfce Bot <transifex@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: garcon\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Belarusian (http://www.transifex.com/xfce/garcon/language/be/)\n"
"POT-Creation-Date: 2023-03-17 10:36+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>, 2023\n"
"Language-Team: Belarusian (https://www.transifex.com/xfce/teams/16840/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +141,7 @@ msgstr "Сістэма"
msgid "System tools and utilities"
msgstr "Сістэмныя інструменты і ўтыліты"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Файл \"%s\" не знойдзены"
@ -154,25 +156,27 @@ msgstr "Не атрымалася загрузіць даныя файла ме
msgid "Could not load menu file data from %s"
msgstr "Не атрымалася загрузіць даныя файла меню з %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Не атрымалася выканаць загад \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Памылка запуску"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Немагчыма запусціць \"exo-desktop-item-edit\", што патрабуецца для рэдагавання элементаў меню."
msgstr ""
"Немагчыма запусціць \"exo-desktop-item-edit\", што патрабуецца для "
"рэдагавання элементаў меню."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "Закры_ць"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Не атрымалася загрузіць меню праграм"

View File

@ -1,20 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Kiril Kirilov <cybercop_montana@abv.bg>, 2016,2022
# Любомир Василев, 2015
# Красимир Беров, 2021
# Любомир Василев, 2016
# Kiril Kirilov <cybercop_montana@abv.bg>, 2023
# Любомир Василев, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Красимир Беров, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 18:25+0000\n"
"Last-Translator: Kiril Kirilov <cybercop_montana@abv.bg>\n"
"Language-Team: Bulgarian (http://www.transifex.com/xfce/garcon/language/bg/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Bulgarian (https://www.transifex.com/xfce/teams/16840/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -103,7 +107,7 @@ msgstr "Приложения, които не попадат в друга гр
#: ../data/xfce/xfce-personal.directory.in.h:1
msgid "Personal"
msgstr "Лични"
msgstr "За лично ползване"
#: ../data/xfce/xfce-personal.directory.in.h:2
msgid "Personal settings"
@ -123,7 +127,7 @@ msgstr "Предпазители на екрана"
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
msgstr "Аплети за предпазителя на екрана"
msgstr "Аплети за предпазител на екрана"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
@ -141,7 +145,7 @@ msgstr "Система"
msgid "System tools and utilities"
msgstr "Системни инструменти"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Файлът „%s“ не е открит"
@ -156,25 +160,27 @@ msgstr "Не може да се зареди файл за меню от %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Не може да се зареди файл за меню от %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Не може да бъде изпълнена команда „%s“."
msgstr "Неуспех при изпълнението на команда „%s“."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Грешка при стартиране"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Не може да стартира \"exo-desktop-item-edit\", което се изисква за да създавате и редактирате елементи в менюто."
msgstr ""
"Не може да стартира \"exo-desktop-item-edit\", което се изисква за да "
"създавате и редактирате елементи в менюто."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Затваряне"
msgstr "Затваряне"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Не може да бъде заредено менюто на приложенията"

View File

@ -1,19 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Andre Miranda <andre42m@gmail.com>, 2019
# Ashraful Islam <rediancool@gmail.com>, 2019
# Jamil Ahmed <jamil@ankur.org.bd>, 2010
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Ashraful Islam <rediancool@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Bengali (http://www.transifex.com/xfce/garcon/language/bn/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Ashraful Islam <rediancool@gmail.com>, 2023\n"
"Language-Team: Bengali (https://www.transifex.com/xfce/teams/16840/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +143,7 @@ msgstr "সিস্টেম"
msgid "System tools and utilities"
msgstr ""
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr ""
@ -155,25 +158,27 @@ msgstr "%2$s: %1$s থেকে মেনু ফাইলের তথ্য প
msgid "Could not load menu file data from %s"
msgstr "%s থেকে মেনু ফাইলের তথ্য পড়া যাচ্ছে না"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" কমান্ডটি এক্সিকিউট করতে ব্যর্থ।"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "চালুকরণ ত্রুটি "
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\" চালু করতে অক্ষম, যা মেনু আইটেমগুলি তৈরি এবং সম্পাদনা করতে প্রয়োজন।"
msgstr ""
"\"exo-desktop-item-edit\" চালু করতে অক্ষম, যা মেনু আইটেমগুলি তৈরি এবং "
"সম্পাদনা করতে প্রয়োজন।"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "বন্ধ (_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "অ্যপ্লিকেশন মেনু লোড করতে ব্যর্থ"

View File

@ -1,20 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Carles Muñoz Gorriz <carlesmu@internautas.org>, 2011
# Davidmp <medipas@gmail.com>, 2015
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2017
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2016
# Carles Muñoz Gorriz <carlesmu@internautas.org>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Catalan (http://www.transifex.com/xfce/garcon/language/ca/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Catalan (https://www.transifex.com/xfce/teams/16840/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -141,7 +144,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Eines i utilitats del sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "No s'ha trobat el fitxer \"%s\""
@ -156,25 +159,27 @@ msgstr "No s'han pogut carregar les dades del fitxer de menú de «%s»: %s"
msgid "Could not load menu file data from %s"
msgstr "No s'han pogut carregar les dades del fitxer de menú de «%s»"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Ha fallat l'execució de l'ordre «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Error de llançament"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "No es pot llançar «exo-desktop-item-edit», el qual es requereix per crear i editar els elements del menú."
msgstr ""
"No es pot llançar «exo-desktop-item-edit», el qual es requereix per crear i "
"editar els elements del menú."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "Tan_ca"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Ha fallat la càrrega del menú d'aplicacions"

View File

@ -1,20 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Alois Nešpor <info@aloisnespor.info>, 2013
# Michal Várady <miko.vaji@gmail.com>, 2016
# Miro Hrončok <churchyard@gmail.com>, 2008
# Pavel Borecki <pavel.borecki@gmail.com>, 2018-2019
# Pavel Borecki <pavel.borecki@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Czech (http://www.transifex.com/xfce/garcon/language/cs/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Czech (https://www.transifex.com/xfce/teams/16840/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -141,7 +143,7 @@ msgstr "Systém"
msgid "System tools and utilities"
msgstr "Systémové nástroje"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Soubor „%s“ nenalezen"
@ -156,25 +158,27 @@ msgstr "Nedaří se načíst data souboru nabídky z %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nedaří se načíst data souboru nabídky z %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Nepodařilo se spustit příkaz %s."
msgstr "Nepodařilo se spustit příkaz %s."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Chyba při spuštění"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nedaří se spustit „exo-desktop-item-edit“. Tato aplikace je potřebná pro vytváření a úpravu položek nabídky."
msgstr ""
"Nedaří se spustit „exo-desktop-item-edit“. Tato aplikace je potřebná pro "
"vytváření a úpravu položek nabídky."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Zavřit"
msgstr "_Zavřít"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Načtení nabídky aplikací se nezdařilo"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Geraint Rowlands <ansbaradigeidfran@gmail.com>, 2018
# Ian Low, 2022
# Ian Low, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Geraint Rowlands <ansbaradigeidfran@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Ian Low, 2022\n"
"Language-Team: Welsh (http://www.transifex.com/xfce/garcon/language/cy/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Geraint Rowlands <ansbaradigeidfran@gmail.com>, 2023\n"
"Language-Team: Welsh (https://www.transifex.com/xfce/teams/16840/cy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +143,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Ategolion ac offer system"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Ni ganfuwyd ffeil \"%s\""
@ -154,25 +158,27 @@ msgstr "Methu llwytho data ffeil llamlen o %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Methu llwytho data ffeil llamlen o %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Methu rhedeg gorchymyn \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Gwall Agor"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Methu agor \"exo-desktop-item-edit\", sydd ei angen i greu a golygu eitemau llamlen."
msgstr ""
"Methu agor \"exo-desktop-item-edit\", sydd ei angen i greu a golygu eitemau "
"llamlen."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Cau"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Methu llwytho'r llamlen rhaglenni"

View File

@ -1,22 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Aputsiak Niels Janussen <aj@isit.gl>, 2013
# Aputsiak Niels Janussen <aj@isit.gl>, 2013
# Linuxbruger <y.z@live.dk>, 2018
# Per Kongstad <p_kongstad@op.pl>, 2009,2016
# scootergrisen, 2017
# scootergrisen, 2017-2019,2022
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# scootergrisen, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-03-13 23:52+0000\n"
"Last-Translator: scootergrisen\n"
"Language-Team: Danish (http://www.transifex.com/xfce/garcon/language/da/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: scootergrisen, 2023\n"
"Language-Team: Danish (https://www.transifex.com/xfce/teams/16840/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -77,7 +77,7 @@ msgstr "Multimedie"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
msgstr "Lyd- og videoafspillere samt editorer"
msgstr ""
#: ../data/xfce/xfce-network.directory.in.h:1
msgid "Internet"
@ -85,7 +85,7 @@ msgstr "Internet"
#: ../data/xfce/xfce-network.directory.in.h:2
msgid "Applications for Internet access"
msgstr "Programmer til internetadgang"
msgstr ""
#: ../data/xfce/xfce-office.directory.in.h:1
msgid "Office"
@ -93,7 +93,7 @@ msgstr "Kontor"
#: ../data/xfce/xfce-office.directory.in.h:2
msgid "Office and productivity applications"
msgstr "Kontor- og produktivitetsprogrammer"
msgstr ""
#: ../data/xfce/xfce-other.directory.in.h:1
msgid "Other"
@ -105,7 +105,7 @@ msgstr "Programmer som ikke passer i de andre kategorier"
#: ../data/xfce/xfce-personal.directory.in.h:1
msgid "Personal"
msgstr "Personlige"
msgstr ""
#: ../data/xfce/xfce-personal.directory.in.h:2
msgid "Personal settings"
@ -121,7 +121,7 @@ msgstr "Videnskabelig software"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
msgstr "Pauseskærme"
msgstr ""
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
@ -143,10 +143,10 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Systemværktøjer og -redskaber"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Filen \"%s\" blev ikke fundet"
msgstr ""
#: ../garcon/garcon-menu-parser.c:277
#, c-format
@ -158,25 +158,27 @@ msgstr "Kunne ikke indlæse data for menufil fra %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Kunne ikke indlæse data for menufil fra %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Kunne ikke køre kommandoen \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Fejl ved start"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Kunne ikke starte \"exo-desktop-item-edit\", som er nødvendigt for at oprette eller redigere menupunkter."
msgstr ""
"Kunne ikke starte \"exo-desktop-item-edit\", som er nødvendigt for at "
"oprette eller redigere menupunkter."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Luk"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Kunne ikke indlæse programmenuen"

View File

@ -1,22 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Andreas Eitel <github-aneitel@online.de>, 2022
# Enrico Tröger <enrico@xfce.org>, 2009
# Harald Judt <h.judt@gmx.at>, 2013
# Jannis Pohlmann <jannis@xfce.org>, 2007,2009
# Thomas Schütz <xfce@thschuetz.de>, 2012
# Tobias Bannert <tobannert@gmail.com>, 2014,2016
# Andreas Eitel <github-aneitel@online.de>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Tobias Bannert <tobannert@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 07:36+0000\n"
"Last-Translator: Andreas Eitel <github-aneitel@online.de>\n"
"Language-Team: German (http://www.transifex.com/xfce/garcon/language/de/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Tobias Bannert <tobannert@gmail.com>, 2023\n"
"Language-Team: German (https://www.transifex.com/xfce/teams/16840/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -73,7 +74,7 @@ msgstr "Einstellungen für verschiedene Geräte"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Multimedia"
msgstr "Unterhaltungsmedien"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -143,7 +144,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Systemwerkzeuge und Hilfsprogramme"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Datei »%s« wurde nicht gefunden"
@ -158,25 +159,27 @@ msgstr "Menüinformationen konnten nicht aus der Datei »%s« geladen werden: %s
msgid "Could not load menu file data from %s"
msgstr "Menüinformationen konnten nicht aus der Datei »%s« geladen werden"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Befehl »%s« konnte nicht ausführt werden."
msgstr "Befehl »%s« konnte nicht ausgeführt werden."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Startfehler"
msgstr "Fehler beim Starten"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "»exo-desktop-item-edit« kann nicht gestartet werden, was zum Erstellen und Bearbeiten von Menüeinträgen benötigt wird."
msgstr ""
"»exo-desktop-item-edit« kann nicht gestartet werden, was zum Erstellen und "
"Bearbeiten von Menüeinträgen benötigt wird."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "S_chließen"
msgstr "_Schließen"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Anwendungsmenü konnte nicht geladen werden"

View File

@ -1,21 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Ápo. <apostolos.papadimitriu@gmail.com>, 2017
# Efstathios Iosifidis <iefstathios@gmail.com>, 2014
# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012
# ebal <ebalaskas@ebalaskas.gr>, 2008
# Ioannis LM, 2022
# Ioannis LM, 2023
# Efstathios Iosifidis <iefstathios@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Ioannis LM, 2022\n"
"Language-Team: Greek (http://www.transifex.com/xfce/garcon/language/el/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Greek (https://www.transifex.com/xfce/teams/16840/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -142,7 +144,7 @@ msgstr "Σύστημα"
msgid "System tools and utilities"
msgstr "Εργαλεία και βοηθητικά προγράμματα συστήματος"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Το αρχείο \"%s\" δε βρέθηκε"
@ -157,25 +159,27 @@ msgstr "Δεν μπορούν να φορτωθούν τα δεδομένα απ
msgid "Could not load menu file data from %s"
msgstr "Δεν μπορούν να φορτωθούν τα δεδομένα από το αρχείο μενού %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Αποτυχία εκτέλεσης της εντολής \"%s\"."
msgstr "Απέτυχε η εκτέλεση της εντολής \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Σφάλμα εκκίνησης"
msgstr "Σφάλμα έναρξης"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Αδυναμία εκίνησης του \"exo-desktop-item-edit\", το οποίο είναι απαραίτητο για τη δημιουργία και επεξεργασία αντικειμένων των μενού."
msgstr ""
"Αδύνατη η έναρξη του \"exo-desktop-item-edit\", που απαιτείται για τη "
"δημιουργία και επεξεργασία αντικειμένων των μενού."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Κλείσιμο"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Αποτυχία φόρτωσης μενού εφαρμογών"

View File

@ -1,18 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Michael Findlay <translate@cobber-linux.org>, 2013
# Michael Findlay <translate@cobber-linux.org>, 2016
# Xfce Bot <transifex@xfce.org>, 2023
# Michael Findlay <translate@cobber-linux.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: English (Australia) (http://www.transifex.com/xfce/garcon/language/en_AU/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Michael Findlay <translate@cobber-linux.org>, 2023\n"
"Language-Team: English (Australia) (https://www.transifex.com/xfce/teams/16840/en_AU/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +142,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "System tools and utilities"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "File \"%s\" not found"
@ -154,25 +157,27 @@ msgstr "Could not load menu file data from %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Could not load menu file data from %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Failed to execute command \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Launch Error"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Unable to launch \"exo-desktop-item-edit\", which is required to create and edit menu items."
msgstr ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Close"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Failed to load the applications menu"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Andi Chandler <andi@gowling.com>, 2017,2022
# Jackson Doak <noskcaj@ubuntu.com>, 2013
# Andi Chandler <andi@gowling.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Robert Readman <robert_readman@hotmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Andi Chandler <andi@gowling.com>, 2017,2022\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/xfce/garcon/language/en_GB/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Robert Readman <robert_readman@hotmail.com>, 2023\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/xfce/teams/16840/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +143,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "System tools and utilities"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "File \"%s\" not found"
@ -154,25 +158,27 @@ msgstr "Could not load menu file data from %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Could not load menu file data from %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Failed to execute command \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Launch Error"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Unable to launch \"exo-desktop-item-edit\", which is required to create and edit menu items."
msgstr ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Close"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Failed to load the applications menu"

View File

@ -1,18 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Edson César Cunha de Oliveira <edsono@gmail.com>, 2014
# Pierre Vittet, 2012
# Xfce Bot <transifex@xfce.org>, 2023
# Edson César Cunha de Oliveira <edsono@gmail.com>, 2023
# Robin van der Vliet <info@robinvandervliet.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Esperanto (http://www.transifex.com/xfce/garcon/language/eo/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Esperanto (https://www.transifex.com/xfce/teams/16840/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +144,7 @@ msgstr "Sistemo"
msgid "System tools and utilities"
msgstr "Sistemaj iloj kaj utilaĵoj"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Ne trovis la dosieron \"%s\""
@ -154,25 +159,25 @@ msgstr "Ne povis ŝargi la datumojn de menudosiero el %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Ne povis ŝargi la datumojn de menudosiero el %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Fiaskis lanĉi la komando \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Fermi"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Fiaskis ŝargi la aplikaĵa menuo"

View File

@ -1,29 +1,29 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Abel Martín <abel.martin.ruiz@gmail.com>, 2008
# Adolfo Jayme-Barrientos, 2015
# Adolfo Jayme-Barrientos, 2015
# Fitoschido, 2015
# 629cf3e396111bb8c5fb6664e2dbc91d, 2016
# mc <correomc2000-ing@yahoo.es>, 2013
# prflr88 <prflr88@gmail.com>, 2014-2015
# Toni Estévez <toni.estevez@gmail.com>, 2019,2021-2022
# Toni Estévez <toni.estevez@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Adolfo Jayme-Barrientos, 2023
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 22:10+0000\n"
"Last-Translator: Toni Estévez <toni.estevez@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/xfce/garcon/language/es/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Pablo Lezaeta Reyes <prflr88@gmail.com>, 2023\n"
"Language-Team: Spanish (https://www.transifex.com/xfce/teams/16840/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
@ -145,7 +145,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Herramientas y utilidades del sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "No se ha encontrado el archivo «%s»"
@ -160,25 +160,27 @@ msgstr "No se han podido cargar los datos del archivo de menú de %s: %s"
msgid "Could not load menu file data from %s"
msgstr "No se han podido cargar los datos del archivo de menú de %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "No se ha podido ejecutar la orden «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Error de ejecución"
msgstr "Error al iniciar"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "No se puede ejecutar «exo-desktop-item-edit», que es imprescindible para crear y editar elementos del menú."
msgstr ""
"No se puede ejecutar «exo-desktop-item-edit», que es imprescindible para "
"crear y editar elementos del menú."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Cerrar"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "No se ha podido cargar el menú de aplicaciones"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Mattias Põldaru <mahfiaz@gmail.com>, 2014
# Priit Jõerüüt <transifex@joeruut.com>, 2020,2022
# Priit Jõerüüt <transifex@joeruut.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Mattias Põldaru <mahfiaz@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-07 14:14+0000\n"
"Last-Translator: Priit Jõerüüt <transifex@joeruut.com>\n"
"Language-Team: Estonian (http://www.transifex.com/xfce/garcon/language/et/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Mattias Põldaru <mahfiaz@gmail.com>, 2023\n"
"Language-Team: Estonian (https://www.transifex.com/xfce/teams/16840/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +143,7 @@ msgstr "Süsteem"
msgid "System tools and utilities"
msgstr "Süsteemi tööriistad ja vahendid"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Faili „%s“ ei leidunud"
@ -154,25 +158,27 @@ msgstr "Menüüfaili andmeid ei suudetud laadida failist %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Menüüfaili andmeid ei suudetud laadida failist %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Käsu „%s“ käivitamine ebaõnnestus."
msgstr "Käsu \\„%s\\” täitmine ebaõnnestus."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Viga käivitamisel"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ei saa käivitada „exo-desktop-item-edit“, mida on vaja menüükirjete loomiseks ja muutmiseks."
msgstr ""
"Ei saa käivitada „exo-desktop-item-edit“, mida on vaja menüükirjete "
"loomiseks ja muutmiseks."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Sulge"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Rakenduste menüü laadimine nurjus"

View File

@ -1,19 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# beriain, 2018
# beriain, 2022
# Piarres Beobide <pi@beobide.net>, 2008-2010
# beriain, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-12 14:51+0000\n"
"Last-Translator: beriain\n"
"Language-Team: Basque (http://www.transifex.com/xfce/garcon/language/eu/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Basque (https://www.transifex.com/xfce/teams/16840/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +143,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Sistema tresna eta lanabesak"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" fitxategia ez da aurkitu"
@ -155,25 +158,27 @@ msgstr "Ezin da %s-etik menuaren fitxategi datuak kargatu: %s."
msgid "Could not load menu file data from %s"
msgstr "Ezin da %s-etik menuaren fitxategi datuak kargatu"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Ezin da \"%s\" komandoa exekutatu."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Errorea abiaraztean"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ezin izan da \"exo-desktop-item-edit\" abiarazi, menuetako elementuak sortu eta editatzeko beharrezkoa dena."
msgstr ""
"Ezin izan da \"exo-desktop-item-edit\" abiarazi, menuetako elementuak sortu "
"eta editatzeko beharrezkoa dena."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Itxi"
msgstr "I_txi"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Huts aplikazio menua kargatzean"

View File

@ -1,18 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2013,2019
# Pasi Lallinaho <pasi@shimmerproject.org>, 2017
# Pasi Lallinaho <pasi@shimmerproject.org>, 2023
# a0e71e34efd53e9524ff69b7abbb498c_b427056, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Finnish (http://www.transifex.com/xfce/garcon/language/fi/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2023\n"
"Language-Team: Finnish (https://www.transifex.com/xfce/teams/16840/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -69,7 +75,7 @@ msgstr "Eräiden laitteiden asetukset"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Ääni ja video"
msgstr "Multimedia"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -109,11 +115,11 @@ msgstr "Henkilökohtaiset asetukset"
#: ../data/xfce/xfce-science.directory.in.h:1
msgid "Science"
msgstr ""
msgstr "Tiede"
#: ../data/xfce/xfce-science.directory.in.h:2
msgid "Scientific software"
msgstr ""
msgstr "Tiedeohjelmistot"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
@ -139,7 +145,7 @@ msgstr "Järjestelmä"
msgid "System tools and utilities"
msgstr "Järjestelmän työkalut ja hyötyohjelmat"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Tiedostoa \"%s\" ei löydy"
@ -154,25 +160,27 @@ msgstr "Valikkotiedoston %s lataaminen epäonnistui: %s"
msgid "Could not load menu file data from %s"
msgstr "Valikkotiedoston %s lataaminen epäonnistui"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Komennon \"%s\" suorittaminen epäonnistui."
msgstr "Komennon ”%s” suorittaminen epäonnistui."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Käynnistysvirhe"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ei voida käynnistää \"exo-desktop-item-edit\" -toimintoa, jota tarvitaan valikon kohteiden luomiseen ja muokkaamiseen."
msgstr ""
"Ei voida käynnistää \"exo-desktop-item-edit\" -toimintoa, jota tarvitaan "
"valikon kohteiden luomiseen ja muokkaamiseen."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Sulje"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Sovellusvalikon lataaminen epäonnistui"

View File

@ -1,28 +1,31 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Charles Monzat <c.monzat@laposte.net>, 2018
# Charles Monzat <c.monzat@laposte.net>, 2018
# jc1 <jc1.quebecos@gmail.com>, 2013
# jc1 <jc1.quebecos@gmail.com>, 2013,2022
# Maximilian Schleiss <maximilian@xfce.org>, 2009
# Urien Desterres <urien.desterres@gmail.com>, 2014
# Yannick Le Guen <leguen.yannick@gmail.com>, 2014,2016,2018
# Yannick Le Guen <leguen.yannick@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# jc1 <jc1.quebecos@gmail.com>, 2023
# Urien Desterres <urien.desterres@gmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Charles Monzat <c.monzat@laposte.net>, 2023
# David D, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 22:20+0000\n"
"Last-Translator: jc1 <jc1.quebecos@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/xfce/garcon/language/fr/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: David D, 2023\n"
"Language-Team: French (https://www.transifex.com/xfce/teams/16840/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
@ -118,7 +121,7 @@ msgstr "Science"
#: ../data/xfce/xfce-science.directory.in.h:2
msgid "Scientific software"
msgstr "Logiciel scientifique"
msgstr "Logiciels scientifiques"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
@ -126,7 +129,7 @@ msgstr "Économiseurs décran"
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
msgstr "Applets déconomiseur décran"
msgstr "Applets économiseurs décran"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
@ -144,7 +147,7 @@ msgstr "Système"
msgid "System tools and utilities"
msgstr "Outils et utilitaires système"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fichier « %s » introuvable"
@ -159,25 +162,27 @@ msgstr "Impossible de charger les données du fichier de menu depuis %s : %s"
msgid "Could not load menu file data from %s"
msgstr "Impossible de charger les données du fichier de menu depuis %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Impossible dexécuter la commande « %s »."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Erreur lors du lancement"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Impossible de lancer « exo-desktop-item-edit », qui est nécessaire à la création et la modification des éléments du menu."
msgstr ""
"Impossible de lancer « exo-desktop-item-edit », qui est nécessaire à la "
"création et la modification des éléments du menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Fermer"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Impossible de charger le menu des applications"

View File

@ -1,20 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Daniel Muñiz Fontoira <dani@damufo.eu>, 2019
# Daniel Muñiz Fontoira <dani@damufo.eu>, 2017
# Leandro Regueiro <leandro.regueiro@gmail.com>, 2008-2009
# Xosé, 2015,2017
# Xosé, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Daniel Muñiz Fontoira <dani@damufo.eu>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Galician (http://www.transifex.com/xfce/garcon/language/gl/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Galician (https://www.transifex.com/xfce/teams/16840/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -141,7 +144,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Utilidades e ferramentas do sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Non se atopou o ficheiro «%s»"
@ -156,25 +159,27 @@ msgstr "Non se puido cargar os datos do ficheiro de menú %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Non se puido cargar os datos do ficheiro de menú desde %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Produciuse un fallo ao executar a orde «%s»."
msgstr "Produciuse un fallo ao executar a orde \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Produciuse un fallo ao iniciar"
msgstr "Fallo ao iniciar"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Non se puido iniciar «exo-desktop-item-edit», que é necesario para crear e editar elementos do menú."
msgstr ""
"Non se puido iniciar «exo-desktop-item-edit», que é necesario para crear e "
"editar elementos do menú."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Pechar"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Produciuse un fallo ao cargar o menú de aplicacións"

View File

@ -1,24 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Elishai Eliyahu <elishai@mailfence.com>, 2016
# Elishai Eliyahu <elishai@mailfence.com>, 2022
# gk <genghiskhan@gmx.ca>, 2014,2016
# Hezy Amiel <open@hezyamiel.com>, 2010
# Omer I.S. <omeritzicschwartz@gmail.com>, 2021
# Omer I.S. <omeritzicschwartz@gmail.com>, 2020
# Omer I.S. <omeritzicschwartz@gmail.com>, 2020
# Yaron Shahrabani <sh.yaron@gmail.com>, 2013
# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Elishai Eliyahu <elishai@mailfence.com>, 2023
# gk <genghiskhan@gmx.ca>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Elishai Eliyahu <elishai@mailfence.com>, 2022\n"
"Language-Team: Hebrew (http://www.transifex.com/xfce/garcon/language/he/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Hebrew (https://www.transifex.com/xfce/teams/16840/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -145,7 +145,7 @@ msgstr "מערכת"
msgid "System tools and utilities"
msgstr "כלי ועזרי מערכת"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "הקובץ \"%s\" לא נמצא"
@ -160,25 +160,27 @@ msgstr "לא יכול לטעון מידע קובץ תפריט מתוך %s: %s "
msgid "Could not load menu file data from %s"
msgstr "לא היתה אפשרות לטעון נתוני קובץ תפריט מתוך %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "נכשל לבצע פקודה \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "שגיאת מפעיל"
msgstr "שגיאת שיגור"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "לא ניתן להפעיל את \"exo-desktop-item-edit\", שנדרש ליצירה ולעריכה של פריטי תפריט."
msgstr ""
"לא ניתן להפעיל את \"exo-desktop-item-edit\", שנדרש ליצירה ולעריכה של פריטי "
"תפריט."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_סגור"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "נכשל לטעון את תפריט יישומים"

View File

@ -1,17 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Panwar108 <caspian7pena@gmail.com>, 2018-2019,2022
# Xfce Bot <transifex@xfce.org>, 2023
# Panwar108 <caspian7pena@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2018-2019,2022\n"
"Language-Team: Hindi (http://www.transifex.com/xfce/garcon/language/hi/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2023\n"
"Language-Team: Hindi (https://www.transifex.com/xfce/teams/16840/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +142,7 @@ msgstr "सिस्टम"
msgid "System tools and utilities"
msgstr "सिस्टम साधन व उपयोगिताएँ"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "फ़ाइल \"%s\" नहीं मिली"
@ -153,25 +157,27 @@ msgstr "%s से मेन्यू फाइल का डाटा लोड
msgid "Could not load menu file data from %s"
msgstr "%s से मेन्यू फाइल का डाटा लोड नहीं हो सका"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" कमांड निष्पादित करने में त्रुटि।"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "लॉन्च त्रुटि"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\" को लॉन्च नहीं किया जा सका, जो मेन्यू वस्तुओं को बनाने व संपादित करने हेतु आवश्यक है।"
msgstr ""
"\"exo-desktop-item-edit\" को लॉन्च नहीं किया जा सका, जो मेन्यू वस्तुओं को "
"बनाने व संपादित करने हेतु आवश्यक है।"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "बंद करें (_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "अनुप्रयोग मेन्यू लोड करने में विफल"

View File

@ -1,20 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Ivica Kolić <ikoli@yahoo.com>, 2013
# Ivica Kolić <ikoli@yahoo.com>, 2010
# Lovro Kudelić <lovro.kudelic@outlook.com>, 2016
# Petar Koretić<petar.koretic@gmail.com>, 2010
# Lovro Kudelić <lovro.kudelic@outlook.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Ivica Kolić <ikoli@yahoo.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Croatian (http://www.transifex.com/xfce/garcon/language/hr/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Ivica Kolić <ikoli@yahoo.com>, 2023\n"
"Language-Team: Croatian (https://www.transifex.com/xfce/teams/16840/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -75,7 +78,7 @@ msgstr "Multimedija"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
msgstr "Audio i video alati za puštanje i uređivanje"
msgstr "Audio i video svirači i uređivači"
#: ../data/xfce/xfce-network.directory.in.h:1
msgid "Internet"
@ -141,7 +144,7 @@ msgstr "Sustav"
msgid "System tools and utilities"
msgstr "Alati i pomagala sustava"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Datoteka \"%s\" nije pronađena"
@ -156,25 +159,27 @@ msgstr "Ne mogu učitati datoteku izbornika iz %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Ne mogu učitati datoteku izbornika iz %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Neuspjlo izvršenje naredbe \"%s\"."
msgstr "Neuspjelo izvršenje naredbe \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Greška pokretanja"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ne mogu pokrenuti \"exo-desktop-item-edit\" što je potrebno za kreiranje i uređivanje stavki izbornika."
msgstr ""
"Ne mogu pokrenuti \"exo-desktop-item-edit\" što je potrebno za kreiranje i "
"uređivanje stavki izbornika."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Zatvori"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Neuspjelo učitavanje izbornika programa"

View File

@ -1,19 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Benedek Imre <nucleo@indamail.hu>, 2013
# Gábor P., 2017
# SZERVÁC Libre art Attila Libre art, 2022
# SZERVÁC Libre art Attila Libre art, 2023
# Gábor P., 2023
# Benedek Imre <nucleo@indamail.hu>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-28 14:58+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: SZERVÁC Libre art Attila Libre art, 2022\n"
"Language-Team: Hungarian (http://www.transifex.com/xfce/garcon/language/hu/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Hungarian (https://www.transifex.com/xfce/teams/16840/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +145,7 @@ msgstr "Rendszer"
msgid "System tools and utilities"
msgstr "Rendszereszközök és segédprogramok"
#: ../garcon/garcon-menu.c:712
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "A fájl („%s”) nem található"
@ -155,25 +160,27 @@ msgstr "Nem tölthetők be a menüfájl adatai innen: %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nem tölthetők be a menüfájl adatai innen: %s"
#: ../garcon-gtk/garcon-gtk-menu.c:407
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "A parancs („%s”) végrehajtása meghiúsult."
#: ../garcon-gtk/garcon-gtk-menu.c:433
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Indítási hiba"
#: ../garcon-gtk/garcon-gtk-menu.c:435
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nem indítható el az \"exo-desktop-item-edit\", melyre szükség van a menüelemek létrehozásához és szerkesztéséhez."
msgstr ""
"Nem indítható el az \"exo-desktop-item-edit\", melyre szükség van a "
"menüelemek létrehozásához és szerkesztéséhez."
#: ../garcon-gtk/garcon-gtk-menu.c:437
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Bezárás"
#: ../garcon-gtk/garcon-gtk-menu.c:586
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Az alkalmazások menü betöltése meghiúsult"

View File

@ -1,17 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Hayk Andreasyan <hayk.andreasyan@realschool.am>, 2019
# Xfce Bot <transifex@xfce.org>, 2023
# Real School <localization@ehayq.am>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Armenian (http://www.transifex.com/xfce/garcon/language/hy/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Real School <localization@ehayq.am>, 2023\n"
"Language-Team: Armenian (https://www.transifex.com/xfce/teams/16840/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +142,7 @@ msgstr "Համակարգ"
msgid "System tools and utilities"
msgstr "Համակարգային գործիքներ և օժանդակ ծրագրեր"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "«%s» նիշը չի գտնվել"
@ -153,25 +157,27 @@ msgstr "Չհաջողվեց բեռնել ընտրացանկի տվյալները
msgid "Could not load menu file data from %s"
msgstr "Չհաջողվեց բեռնել ընտրացանկի տվյալները %s֊ից"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Չհաջողվեց գործարկել «%s» հրամանը:"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Գործարկման սխալ"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Չհաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջվում է ցանկերի ստեղծման եւ խմբագրման համար։"
msgstr ""
"Չհաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջվում է ցանկերի "
"ստեղծման եւ խմբագրման համար։"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Փակել"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Չհաջողվեց բեռնել հավելվածների ցանկը"

View File

@ -1,18 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Hayk Andreasyan <hayk.andreasyan@realschool.am>, 2019
# Real School <localization@ehayq.am>, 2019
# Xfce Bot <transifex@xfce.org>, 2023
# Hayk Andreasyan <hayk.andreasyan@realschool.am>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Armenian (Armenia) (http://www.transifex.com/xfce/garcon/language/hy_AM/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Hayk Andreasyan <hayk.andreasyan@realschool.am>, 2023\n"
"Language-Team: Armenian (Armenia) (https://www.transifex.com/xfce/teams/16840/hy_AM/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +142,7 @@ msgstr "Համակարգ"
msgid "System tools and utilities"
msgstr "Համակարգային գործիքներ եւ աւժանդակ ծրագրեր "
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "«%s» նիշը չի գտնուել"
@ -154,25 +157,27 @@ msgstr "Չյաջողուեց բեռնել ընտրացանկի տուեալնե
msgid "Could not load menu file data from %s"
msgstr "Չյաջողուեց բեռնել ընտրացանկի տուեալները %s֊ից"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Չյաջողուեց գործարկել «%s» հրամանը:"
msgstr "Չյաջողոեւց գործարկել «%s» հրամանը:"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Գործարկման սխալ"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Չյաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջուում է ցանկերի ստեղծման եւ խմբագրման համար։"
msgstr ""
"Չյաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջուում է ցանկերի "
"ստեղծման եւ խմբագրման համար։"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Փակել"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Չյաջողուեց բեռնել յաւելուածների ցանկը"

View File

@ -1,18 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Hayk Andreasyan <hayk.andreasyan@realschool.am>, 2019
# Real School <localization@ehayq.am>, 2019
# Xfce Bot <transifex@xfce.org>, 2023
# Real School <localization@ehayq.am>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Eastern Armenian (http://www.transifex.com/xfce/garcon/language/hye/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Real School <localization@ehayq.am>, 2023\n"
"Language-Team: Eastern Armenian (https://www.transifex.com/xfce/teams/16840/hye/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +142,7 @@ msgstr "Համակարգ"
msgid "System tools and utilities"
msgstr "Համակարգային գործիքներ եւ աւժանդակ ծրագրեր "
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "«%s» նիշը չի գտնուել"
@ -154,25 +157,27 @@ msgstr "Չյաջողուեց բեռնել ընտրացանկի տուեալնե
msgid "Could not load menu file data from %s"
msgstr "Չյաջողուեց բեռնել ընտրացանկի տուեալները %s֊ից"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Չյաջողուեց գործարկել «%s» հրամանը:"
msgstr "Չյաջողոեւց գործարկել «%s» հրամանը:"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Գործարկման սխալ"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Չյաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջուում է ցանկերի ստեղծման եւ խմբագրման համար։"
msgstr ""
"Չյաջողուեց գործարկել «exo-desktop-item-edit»֊ը, որը պահանջուում է ցանկերի "
"ստեղծման եւ խմբագրման համար։"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Փակել"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Չյաջողուեց բեռնել յաւելուածների ցանկը"

View File

@ -1,20 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Andhika Padmawan <andhika.padmawan@gmail.com>, 2010
# se7entime <se7entime@disroot.org>, 2013
# se7entime <se7entime@disroot.org>, 2013
# Triyan W. Nugroho <triyan.wn@gmail.com>, 2022
# Triyan W. Nugroho <triyan.wn@gmail.com>, 2023
# Kukuh Syafaat <syafaatkukuh@gmail.com>, 2023
# se7entime <se7entime@disroot.org>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-27 21:57+0000\n"
"Last-Translator: Triyan W. Nugroho <triyan.wn@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/xfce/garcon/language/id/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Indonesian (https://www.transifex.com/xfce/teams/16840/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -127,7 +131,7 @@ msgstr "Aplet penyimpan layar"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "Konfigurasi"
msgstr "Pengaturan"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -141,7 +145,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Utilitas sistem"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Berkas \"%s\" tak ditemukan"
@ -156,25 +160,27 @@ msgstr "Gagal memuat data berkas menu dari %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Gagal memuat data berkas menu dari %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Gagal menjalankan perintah \"%s\"."
msgstr "Gagal mengeksekusi perintah \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Peluncuran Gagal"
msgstr "Galat Peluncur"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Tidak dapat meluncurkan \"exo-desktop-item-edit\", yang diperlukan untuk membuat dan menyunting item menu."
msgstr ""
"Tidak dapat meluncurkan \"exo-desktop-item-edit\", yang diperlukan untuk "
"membuat dan menyunting item menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Tutup"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Gagal memuat menu aplikasi"

View File

@ -1,16 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Xfce Bot <transifex@xfce.org>, 2023
# Caarmi, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Interlingue (http://www.transifex.com/xfce/garcon/language/ie/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Caarmi, 2023\n"
"Language-Team: Interlingue (https://www.transifex.com/xfce/teams/16840/ie/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -137,7 +142,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Utensiles del sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "File «%s» ne esset trovat"
@ -152,25 +157,27 @@ msgstr "Ne successat cargar data de menú ex %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Ne successat cargar data de menú ex %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Ne successat executer li comande «%s»"
msgstr "Ne successat executer li comande «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Errore de lansa"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ne successat lansar «exo-desktop-item-edit» quel es necesse por crear e modificar elementes del menú."
msgstr ""
"Ne successat lansar «exo-desktop-item-edit» quel es necesse por crear e "
"modificar elementes del menú."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Cluder"
msgstr "_Clúder"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Ne successat cargar li menú de applicationes"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Sveinn í Felli <sv1@fellsnet.is>, 2011,2013-2014,2017,2019
# Sveinn í Felli <sveinki@nett.is>, 2011,2013
# Xfce Bot <transifex@xfce.org>, 2023
# Sveinn í Felli <sv1@fellsnet.is>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Icelandic (http://www.transifex.com/xfce/garcon/language/is/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Icelandic (https://www.transifex.com/xfce/teams/16840/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -65,7 +69,7 @@ msgstr "Vélbúnaður"
#: ../data/xfce/xfce-hardware.directory.in.h:2
msgid "Settings for several hardware devices"
msgstr "Stillingar fyrir ýmis tæki"
msgstr "Stillingar á ýmsum vélbúnaði"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
@ -105,7 +109,7 @@ msgstr "Einka"
#: ../data/xfce/xfce-personal.directory.in.h:2
msgid "Personal settings"
msgstr "Einkastillingar"
msgstr "Persónulegar stillingar"
#: ../data/xfce/xfce-science.directory.in.h:1
msgid "Science"
@ -133,13 +137,13 @@ msgstr "Forrit til stillinga á skjáborði og kerfi"
#: ../data/xfce/xfce-system.directory.in.h:1
msgid "System"
msgstr "Kerfið"
msgstr "Kerfis"
#: ../data/xfce/xfce-system.directory.in.h:2
msgid "System tools and utilities"
msgstr "Kerfisforrit og nytjatól"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Skráin \"%s\" fannst ekki"
@ -154,25 +158,27 @@ msgstr "Gat ekki hlaðið inn gögnum úr valmyndaskránni %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Gat ekki hlaðið inn gögnum úr valmyndaskránni %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Mistókst að framkvæma skipunina \"%s\"."
msgstr "Gat ekki keyrt skipun \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Villa í ræsingu"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Tókst ekki að keyra \"exo-desktop-item-edit\", sem er forsenda þess að hægt sé að búa til og breyta færslum í valmyndum."
msgstr ""
"Tókst ekki að keyra \"exo-desktop-item-edit\", sem er forsenda þess að hægt "
"sé að búa til og breyta færslum í valmyndum."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "Lo_ka"
msgstr "_Loka"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Mistókst að hlaða inn forritavalmyndinni"

View File

@ -1,24 +1,28 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Cristian Marchi <cri.penta@gmail.com>, 2010,2013,2016
# Emanuele Petriglia <transifex@emanuelepetriglia.com>, 2018
# Emanuele Petriglia <transifex@emanuelepetriglia.com>, 2022
# Emanuele Petriglia <transifex@emanuelepetriglia.com>, 2023
# Cristian Marchi <cri.penta@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 14:04+0000\n"
"Last-Translator: Emanuele Petriglia <transifex@emanuelepetriglia.com>\n"
"Language-Team: Italian (http://www.transifex.com/xfce/garcon/language/it/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Italian (https://www.transifex.com/xfce/teams/16840/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
@ -70,7 +74,7 @@ msgstr "Impostazioni per vari dispositivi hardware"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Multimedia"
msgstr "Contenuti multimediali"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -140,7 +144,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Strumenti e utilità di sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "File \"%s\" non trovato"
@ -155,25 +159,27 @@ msgstr "Impossibile caricare i dati del file di menu \"%s\": %s"
msgid "Could not load menu file data from %s"
msgstr "Impossibile caricare i dati del file di menu \"%s\""
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Impossibile eseguire il comando \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Errore di avvio"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Impossibile avviare \"exo-desktop-item-edit\", necessario per creare e modificare gli elementi del menu."
msgstr ""
"Impossibile avviare \"exo-desktop-item-edit\", necessario per creare e "
"modificare gli elementi del menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Chiudi"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Impossibile caricare il menu delle applicazioni"

View File

@ -1,18 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Daichi Kawahata <daichi@xfce.org>, 2007
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2016,2022
# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 04:11+0000\n"
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>\n"
"Language-Team: Japanese (http://www.transifex.com/xfce/garcon/language/ja/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>, 2023\n"
"Language-Team: Japanese (https://www.transifex.com/xfce/teams/16840/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -21,7 +26,7 @@ msgstr ""
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
msgstr "アクセサリ"
msgstr "アクセサリ"
#: ../data/xfce/xfce-accessories.directory.in.h:2
msgid "Common desktop tools and applications"
@ -125,7 +130,7 @@ msgstr "スクリーンセーバーアプレット"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "設定"
msgstr "設定マネージャー"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -139,7 +144,7 @@ msgstr "システム"
msgid "System tools and utilities"
msgstr "システムツールおよびユーティリティです"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "ファイル \"%s\" が見つかりませんでした"
@ -154,25 +159,25 @@ msgstr "%s からのメニューファイルデータを読み込めませんで
msgid "Could not load menu file data from %s"
msgstr "%s からメニューファイルデータを読み込めませんでした"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "コマンド \"%s\" の実行に失敗しました。"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "実行エラー"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\" を実行できません。これはメニューアイテムの作成と編集に必要です。"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "閉じる(_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "アプリケーションメニューの読み込みに失敗しました"

View File

@ -1,17 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# ზურაბი დავითაშვილი <zdavitashvili0@gmail.com>, 2020
# Xfce Bot <transifex@xfce.org>, 2023
# ზურაბი დავითაშვილი <zurabi@tuta.io>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Georgian (http://www.transifex.com/xfce/garcon/language/ka/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: ზურაბი დავითაშვილი <zurabi@tuta.io>, 2023\n"
"Language-Team: Georgian (https://www.transifex.com/xfce/teams/16840/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +142,7 @@ msgstr "სისტემა"
msgid "System tools and utilities"
msgstr "სისტემის ხელსაწყოები"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "ფაილი \"%s\" ვერ მოიძებნა"
@ -153,25 +157,27 @@ msgstr "%s: %s-(ი)დან ვერ მოხერხდა მენიუ
msgid "Could not load menu file data from %s"
msgstr "%s-(ი)დან ვერ მოხერხდა მენიუს ფაილის მონაცემების ჩატვირთვა"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" ბრძანების გაშვება ვერ მოხერხდა."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "შეცდომა გაშვებაში"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\"-ის გაშვება შეუძლებელია, რომელიც საჭიროა მენიუს საგნების შექმნისა და რედაქტირებისათვის."
msgstr ""
"\"exo-desktop-item-edit\"-ის გაშვება შეუძლებელია, რომელიც საჭიროა მენიუს "
"საგნების შექმნისა და რედაქტირებისათვის."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "დახურვა"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "პროგრამების მენიუს ჩატვირთვა ვერ მოხერხდა"

View File

@ -1,18 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Kahina Messaoudi, 2021
# ZiriSut, 2021
# Slimane Selyan AMIRI <selyan.kab@protonmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# ZiriSut, 2023
# Kahina Messaoudi, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Kabyle (http://www.transifex.com/xfce/garcon/language/kab/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Kahina Messaoudi, 2023\n"
"Language-Team: Kabyle (https://www.transifex.com/xfce/teams/16840/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +144,7 @@ msgstr "Anagraw"
msgid "System tools and utilities"
msgstr "Ifecka n unagraw akked tanfiwin"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Afaylu \"%s\" ulac-it "
@ -154,25 +159,27 @@ msgstr "Ur izmir ara ad d-issali isefka n ufaylu n wumuɣ seg %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Ur izmir ara ad d-issali isefka n ufaylu n wumuɣ seg %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Aselkem n tludna yecceḍ \"%s\". "
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Tuccḍa deg usenker "
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "D awezɣi ad yekker \"exo-desktop-item-edit\", i yettusran i tmerna d uẓrag n yiferdisen n wumuɣ."
msgstr ""
"D awezɣi ad yekker \"exo-desktop-item-edit\", i yettusran i tmerna d uẓrag n"
" yiferdisen n wumuɣ."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Mdel"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Asali n wumuɣ n yisnasen yecceḍ"

View File

@ -1,17 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2010,2013,2016,2022
# Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2010,2013,2016,2022\n"
"Language-Team: Kazakh (http://www.transifex.com/xfce/garcon/language/kk/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Kazakh (https://www.transifex.com/xfce/teams/16840/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +143,7 @@ msgstr "Жүйелік"
msgid "System tools and utilities"
msgstr "Жүйелік құралдар"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" файлы табылмады"
@ -153,25 +158,27 @@ msgstr "%s ішінен мәзір ақпаратын жүктеп алу мүм
msgid "Could not load menu file data from %s"
msgstr "%s ішінен мәзір ақпаратын жүктеп алу мүмкін емес"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" командасын орындау сәтсіз аяқталды"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Жөнелту қатесі"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "\"exo-desktop-item-edit\" жөнелту қатесі, ол мәзір элементтерін жасау және түзету үшін керек."
msgstr ""
"\"exo-desktop-item-edit\" жөнелту қатесі, ол мәзір элементтерін жасау және "
"түзету үшін керек."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Жабу"
msgstr "Жаб_у"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Қолданбалар мәзірін жүктеу сәтсіз аяқталды"

View File

@ -1,18 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Cybertramp <paran_son@outlook.com>, 2022
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2011-2013,2016,2022
# Cybertramp <paran_son@outlook.com>, 2023
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Seong-ho Cho <darkcircle.0426@gmail.com>, 2011-2013,2016,2022\n"
"Language-Team: Korean (http://www.transifex.com/xfce/garcon/language/ko/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Korean (https://www.transifex.com/xfce/teams/16840/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -25,7 +30,7 @@ msgstr "보조프로그램"
#: ../data/xfce/xfce-accessories.directory.in.h:2
msgid "Common desktop tools and applications"
msgstr "공통 데스크톱 도구와 프로그램"
msgstr "일반적인 데스크톱 툴과 프로그램"
#: ../data/xfce/xfce-development.directory.in.h:1
msgid "Development"
@ -33,7 +38,7 @@ msgstr "개발"
#: ../data/xfce/xfce-development.directory.in.h:2
msgid "Software development tools"
msgstr "프로그램 개발 도구"
msgstr "소프트웨어 개발 툴"
#: ../data/xfce/xfce-education.directory.in.h:1
msgid "Education"
@ -41,7 +46,7 @@ msgstr "교육"
#: ../data/xfce/xfce-education.directory.in.h:2
msgid "Educational software"
msgstr "교육 프로그램"
msgstr "교육적 소프트웨어"
#: ../data/xfce/xfce-games.directory.in.h:1
msgid "Games"
@ -49,11 +54,11 @@ msgstr "게임"
#: ../data/xfce/xfce-games.directory.in.h:2
msgid "Games, puzzles, and other fun software"
msgstr "게임, 퍼즐 그리고 다른 재미있는 프로그램"
msgstr "게임, 퍼즐, 그리고 다른 재밌는 소프트웨어"
#: ../data/xfce/xfce-graphics.directory.in.h:1
msgid "Graphics"
msgstr "그래픽"
msgstr "그래픽"
#: ../data/xfce/xfce-graphics.directory.in.h:2
msgid "Graphics creation and manipulation applications"
@ -97,7 +102,7 @@ msgstr "기타"
#: ../data/xfce/xfce-other.directory.in.h:2
msgid "Applications that don't fit into other categories"
msgstr "다른 분류에 맞지 않 프로그램"
msgstr "다른 분류에 맞지 않 프로그램"
#: ../data/xfce/xfce-personal.directory.in.h:1
msgid "Personal"
@ -139,7 +144,7 @@ msgstr "시스템"
msgid "System tools and utilities"
msgstr "시스템 도구와 유틸리티"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" 파일이 없습니다"
@ -154,25 +159,25 @@ msgstr "%s에서 메뉴 파일 데이터를 불러올 수 없습니다: %s"
msgid "Could not load menu file data from %s"
msgstr "%s에서 메뉴 파일 데이터를 불러올 수 없습니다"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" 명령 실행에 실패했습니다."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "실행 오류"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "데스크톱에 실행 아이콘과 링크를 만들고 수정할 때 필요한 \"exo-desktop-item-edit\"을 실행하지 못했습니다."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "닫기(_C)"
msgstr "닫기(_O)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "프로그램 메뉴 불러오기에 실패했습니다"

View File

@ -1,19 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Algimantas Margevičius <margevicius.algimantas@gmail.com>, 2012
# Moo, 2015-2017,2020,2022
# Ričardas Vasiulis <ricardas.v@inbox.lt>, 2010
# Xfce Bot <transifex@xfce.org>, 2023
# Moo, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 10:33+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/xfce/garcon/language/lt/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Lithuanian (https://www.transifex.com/xfce/teams/16840/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -70,7 +73,7 @@ msgstr "Nustatymai keliems aparatinės įrangos įrenginiams"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Garsas ir vaizdas"
msgstr "Daugialypė terpė"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -140,7 +143,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Sistemos įrankiai ir priemonės"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Failas „%s” nerastas"
@ -155,25 +158,27 @@ msgstr "Nepavyko įkelti meniu failo duomenų iš %s:%s"
msgid "Could not load menu file data from %s"
msgstr "Nepavyko įkelti meniu failo duomenų iš %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Nepavyko įvykdyti komandos „%s”."
msgstr "Nepavyko paleisti komandos „%s”."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Paleidimo klaida"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nepavyko paleisti „exo-desktop-item-edit“, kuris yra reikalingas, norint kurti ir redaguoti meniu elementus."
msgstr ""
"Nepavyko paleisti „exo-desktop-item-edit“, kuris yra reikalingas, norint "
"kurti ir redaguoti meniu elementus."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Užverti"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Nepavyko įkelti programų meniu"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# abuyop <abuyop@gmail.com>, 2016,2022
# Puretech <terjemah.puretech@gmail.com>, 2013
# Xfce Bot <transifex@xfce.org>, 2023
# abuyop <abuyop@gmail.com>, 2023
# Puretech <terjemah.puretech@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: abuyop <abuyop@gmail.com>, 2016,2022\n"
"Language-Team: Malay (http://www.transifex.com/xfce/garcon/language/ms/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Puretech <terjemah.puretech@gmail.com>, 2023\n"
"Language-Team: Malay (https://www.transifex.com/xfce/teams/16840/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -129,7 +133,7 @@ msgstr "Tetapan"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
msgstr "Alikasi tetapan destop dan sistem"
msgstr "Aplikasi tetapan desktop dan sistem"
#: ../data/xfce/xfce-system.directory.in.h:1
msgid "System"
@ -139,7 +143,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Peralatan dan utiliti sistem"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fail \"%s\" tidak dijumpai"
@ -154,25 +158,27 @@ msgstr "Tidak dapat memuat data fail menu dari %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Tidak dapat memuat data fail menu dari %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Gagal melaksanakan arahan \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Ralat Lancar"
msgstr "Ralat Dilancarkan"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Tidak dapat melancarkan \"exo-desktop-item-edit\", yang diperlukan untuk mencipta dan menyunting item menu."
msgstr ""
"Tidak dapat melancarkan \"exo-desktop-item-edit\", yang diperlukan untuk "
"mencipta dan menyunting item menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Tutup"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Gagal memuatkan menu aplikasi"

View File

@ -1,21 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Allan Nordhøy <epost@anotheragency.no>, 2016
# heskjestad <cato@heskjestad.xyz>, 2022
# Harald H. <haarektrans@gmail.com>, 2014
# heskjestad <cato@heskjestad.xyz>, 2019
# Terje Uriansrud <terje@uriansrud.net>, 2010
# Allan Nordhøy <epost@anotheragency.no>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Harald H. <haarektrans@gmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# heskjestad <cato@heskjestad.xyz>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-04 17:28+0000\n"
"Last-Translator: heskjestad <cato@heskjestad.xyz>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/xfce/garcon/language/nb/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: heskjestad <cato@heskjestad.xyz>, 2023\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/xfce/teams/16840/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -84,7 +87,7 @@ msgstr "Internett"
#: ../data/xfce/xfce-network.directory.in.h:2
msgid "Applications for Internet access"
msgstr "Programmer for Internett-tilgang"
msgstr "Programvare for Internett-tilgang"
#: ../data/xfce/xfce-office.directory.in.h:1
msgid "Office"
@ -142,7 +145,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Systemverktøy"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fant ikke filen «%s»"
@ -157,25 +160,27 @@ msgstr "Klarte ikke laste menyfildata fra %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Klarte ikke laste menyfildata fra %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Klarte ikke kjøre kommandoen «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Feil ved programstart"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Klarte ikke å starte «exo-desktop-item-edit», som er påkrevd for opprette eller redigere menyelementer."
msgstr ""
"Klarte ikke å starte «exo-desktop-item-edit», som er påkrevd for opprette "
"eller redigere menyelementer."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Lukk"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Klarte ikke å laste programmenyen"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Pjotr <pjotrvertaalt@gmail.com>, 2013,2016-2017,2020,2022
# Pjotr pjotrvertaalt@gmail.com , 2011,2013
# Xfce Bot <transifex@xfce.org>, 2023
# Pjotr <pjotrvertaalt@gmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-04 21:50+0000\n"
"Last-Translator: Pjotr <pjotrvertaalt@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/xfce/garcon/language/nl/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Dutch (https://www.transifex.com/xfce/teams/16840/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -89,7 +93,7 @@ msgstr "Kantoor"
#: ../data/xfce/xfce-office.directory.in.h:2
msgid "Office and productivity applications"
msgstr "Kantoor- en productiviteitstoepassingen"
msgstr "Kantoor- en productiviteittoepassingen"
#: ../data/xfce/xfce-other.directory.in.h:1
msgid "Other"
@ -139,7 +143,7 @@ msgstr "Systeem"
msgid "System tools and utilities"
msgstr "Systeemgereedschap en hulpmiddelen"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Bestand '%s' niet gevonden"
@ -154,25 +158,27 @@ msgstr "Kon gegevens van menubestand niet laden vanuit %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Kon gegevens van menubestand niet laden vanuit %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Kon opdracht '%s' niet uitvoeren"
msgstr "Kon opdracht '%s' niet uitvoeren."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Opstartfout"
msgstr "Startfout"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Kon 'exo-desktop-item-edit' niet starten, hetgeen vereist is voor het maken en bewerken van menu-onderdelen."
msgstr ""
"Kon 'exo-desktop-item-edit' niet starten, hetgeen vereist is voor het maken "
"en bewerken van menu-onderdelen."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Sluiten"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Kon het toepassingenmenu niet laden"

View File

@ -1,19 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Eivind Ødegård <gingermig@yahoo.no>, 2012
# Kevin Brubeck Unhammer <unhammer+dill@mm.st>, 2015,2017
# Øystein Steffensen-Alværvik, 2017
# Øystein Steffensen-Alværvik, 2023
# Kevin Brubeck Unhammer <unhammer+dill@mm.st>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/xfce/garcon/language/nn/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Norwegian Nynorsk (https://www.transifex.com/xfce/teams/16840/nn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +144,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Systemverktøy"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fann ikkje fila «%s»"
@ -155,25 +159,27 @@ msgstr "Greidde ikkje lasta menyfildata frå %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Greidde ikkje lasta menyfildata frå %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Klarte ikkje køyra kommandoen «%s»."
msgstr "Klarte ikkje køyra kommandoen «%s»"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Startfeil"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Kunne ikkje starte «exo-desktop-item-edit» som krevast for å opprette og redigere menyobjekt."
msgstr ""
"Kunne ikkje starte «exo-desktop-item-edit» som krevast for å opprette og "
"redigere menyobjekt."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Lukk"
msgstr "_Lat att"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Klarte ikkje lasta programmenyen"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Cédric Valmary <cvalmary@yahoo.fr>, 2013
# Quentin PAGÈS, 2020,2022
# Quentin PAGÈS, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Cédric Valmary <cvalmary@yahoo.fr>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2013-07-02 20:32+0000\n"
"Last-Translator: Quentin PAGÈS, 2020,2022\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/xfce/garcon/language/oc/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>, 2023\n"
"Language-Team: Occitan (post 1500) (https://www.transifex.com/xfce/teams/16840/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -57,7 +61,7 @@ msgstr "Infografia"
#: ../data/xfce/xfce-graphics.directory.in.h:2
msgid "Graphics creation and manipulation applications"
msgstr "Aplicacions graficas per la creacion e la manipulacion"
msgstr "Aplicacions de creacion e de manipulacion de grafics"
#: ../data/xfce/xfce-hardware.directory.in.h:1
msgid "Hardware"
@ -65,7 +69,7 @@ msgstr "Material"
#: ../data/xfce/xfce-hardware.directory.in.h:2
msgid "Settings for several hardware devices"
msgstr "Paramètres per mantun periferic"
msgstr "Paramètres per mantun periferics"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
@ -125,7 +129,7 @@ msgstr "Empeutons d'estalviador d'ecran"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "Paramètres"
msgstr "Parametratge"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -137,9 +141,9 @@ msgstr "Sistèma"
#: ../data/xfce/xfce-system.directory.in.h:2
msgid "System tools and utilities"
msgstr "Aisinas e utilitaris sistèma"
msgstr "Aisinas e utilitaris del sistèma"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fichièr \"%s\" pas trobat"
@ -154,25 +158,27 @@ msgstr "Impossible de cargar las donadas del fichièr de menú dempuèi %s : %s"
msgid "Could not load menu file data from %s"
msgstr "Impossible de cargar las donadas del fichièr de menú dempuèi %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Impossible d'executar la comanda « %s »."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Error al moment de l'aviada"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Impossible daviar « exo-desktop-item-edit », ques necessari a la creacion e ledicion dels aviadors e dels ligams sul burèu."
msgstr ""
"Impossible daviar « exo-desktop-item-edit », ques necessari a la creacion "
"e ledicion dels aviadors e dels ligams sul burèu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Tampar"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Impossible de cargar lo menú de las aplicacions"

View File

@ -1,20 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# marcin mikołajczak <me@mkljczk.pl>, 2016
# Marek Adamski, 2022
# Piotr Sokół <psokol.l10n@gmail.com>, 2010,2013
# Piotr Strębski <strebski@gmail.com>, 2013
# Piotr Sokół <psokol.l10n@gmail.com>, 2023
# Piotr Strębski <strebski@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Marek Adamski, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 05:49+0000\n"
"Last-Translator: Marek Adamski\n"
"Language-Team: Polish (http://www.transifex.com/xfce/garcon/language/pl/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Marek Adamski, 2023\n"
"Language-Team: Polish (https://www.transifex.com/xfce/teams/16840/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -141,7 +145,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Przechowuje narzędzia do zarządzania systemem"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Nie odnaleziono pliku „%s”"
@ -156,25 +160,27 @@ msgstr "Nie udało się wczytać pliku menu %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nie udało się wczytać pliku menu %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Nie udało się wykonać polecenia „%s”."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Problem z uruchamianiem"
msgstr "Błąd uruchamiania"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nie udało się uruchomić \"exo-desktop-item-edit\", który jest wymagany do tworzenia i edytowania pozycji w menu."
msgstr ""
"Nie udało się uruchomić „exo-desktop-item-edit”, który jest wymagany do "
"tworzenia i edytowania pozycji w menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "Za_mknij"
msgstr "_Zamknij"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Nie udało się wczytać menu programów"

View File

@ -1,24 +1,28 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Hugo Carvalho <hugokarvalho@hotmail.com>, 2020,2022
# José Vieira <jvieira33@sapo.pt>, 2020
# Nuno Miguel <nunomgue@gmail.com>, 2013,2016
# José Vieira <jvieira33@sapo.pt>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Hugo Carvalho <hugokarvalho@hotmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-02 15:06+0000\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/xfce/garcon/language/pt/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Portuguese (https://www.transifex.com/xfce/teams/16840/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
@ -58,7 +62,9 @@ msgstr "Gráficos"
#: ../data/xfce/xfce-graphics.directory.in.h:2
msgid "Graphics creation and manipulation applications"
msgstr "Aplicações para criação e manipulação de imagens e outros elementos de base gráfica"
msgstr ""
"Aplicações para criação e manipulação de imagens e outros elementos de base "
"gráfica"
#: ../data/xfce/xfce-hardware.directory.in.h:1
msgid "Hardware"
@ -98,7 +104,7 @@ msgstr "Outras"
#: ../data/xfce/xfce-other.directory.in.h:2
msgid "Applications that don't fit into other categories"
msgstr "Aplicações não enquadráveis noutras categorias"
msgstr "Aplicações que não se enquadram noutras categorias"
#: ../data/xfce/xfce-personal.directory.in.h:1
msgid "Personal"
@ -122,7 +128,7 @@ msgstr "Proteção de ecrã"
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
msgstr "\"Applets\" de proteção do ecrã"
msgstr "Mini-aplicações de proteção de ecrã"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
@ -140,7 +146,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Ferramentas e utilitários do sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "O ficheiro \"%s\" não foi encontrado"
@ -148,32 +154,34 @@ msgstr "O ficheiro \"%s\" não foi encontrado"
#: ../garcon/garcon-menu-parser.c:277
#, c-format
msgid "Could not load menu file data from %s: %s"
msgstr "Incapaz de carregar os dados do menu em %s: %s"
msgstr "Não foi possível carregar os dados do menu a partir de %s: %s"
#: ../garcon/garcon-menu-parser.c:284
#, c-format
msgid "Could not load menu file data from %s"
msgstr "Incapaz de carregar os dados do menu em %s"
msgstr "Não foi possível carregar os dados do menu a partir de %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Falhou ao executar comando \"%s\"."
msgstr "Falha ao executar comando \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Erro de lançamento"
msgstr "Erro do lançador"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Incapaz de iniciar \"exo-desktop-item-edit\", necessário para criar e editar lançadores itens do menu."
msgstr ""
"Não foi possível iniciar o \"exo-desktop-item-edit\", necessário para criar "
"e editar itens do menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Fechar"
msgstr "Fe_char"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Falhou o carregamento do menu de aplicações"
msgstr "Falha ao carregar o menu de aplicações"

View File

@ -1,27 +1,29 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Andre Miranda <andre42m@gmail.com>, 2016
# C. E., 2022
# Henrique P. Machado <hpmachado@gnome.org>, 2010
# Og Maciel <ogmaciel@gnome.org>, 2007
# Rafael Fontenelle <rffontenelle@gmail.com>, 2013
# secipolla <secipolla@gmail.com>, 2011
# Giálisson Rocha, 2023
# Andre Miranda <andre42m@gmail.com>, 2023
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-08 00:57+0000\n"
"Last-Translator: Michael Martins <michaelfm21@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/xfce/garcon/language/pt_BR/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/xfce/teams/16840/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: ../data/xfce/xfce-accessories.directory.in.h:1
msgid "Accessories"
@ -143,7 +145,7 @@ msgstr "Sistema"
msgid "System tools and utilities"
msgstr "Ferramentas e utilitários do sistema"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Arquivo \"%s\" não encontrado"
@ -158,25 +160,27 @@ msgstr "Não foi possível carregar dados de arquivo de menu de %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Não foi possível carregar dados de arquivo de menu de %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Falha ao executar o comando \"%s\"."
msgstr "Falhou ao executar o comando \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Erro ao lançar"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Não foi possível executar \"exo-desktop-item-edit\", que é necessário para criar e editar itens de menu."
msgstr ""
"Não foi possível executar \"exo-desktop-item-edit\", que é necessário para "
"criar e editar itens de menu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Fechar"
msgstr "Fe_char"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Falha ao carregar o menu de aplicativos"

View File

@ -1,19 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Alexe Moldovan, 2017
# Mișu Moldovan <dumol@xfce.org>, 2015
# vyper <xvirusxx@gmail.com>, 2016
# Alexe Moldovan, 2023
# Dumitru Moldovan <dumol@gnome.org>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Marius Ghita, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Romanian (http://www.transifex.com/xfce/garcon/language/ro/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Marius Ghita, 2023\n"
"Language-Team: Romanian (https://www.transifex.com/xfce/teams/16840/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -110,11 +115,11 @@ msgstr "Preferințe personale"
#: ../data/xfce/xfce-science.directory.in.h:1
msgid "Science"
msgstr ""
msgstr "Știință"
#: ../data/xfce/xfce-science.directory.in.h:2
msgid "Scientific software"
msgstr ""
msgstr "Software științific"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
@ -140,7 +145,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Utilitare de sistem"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Fișierul „%s” nu a fost găsit"
@ -155,25 +160,27 @@ msgstr "Nu s-au putut încărca datele fișierului meniu din %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nu s-au putut încărca datele fișierului meniu din %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Nu s-a putut executa comanda „%s”."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Eroare de lansare"
msgstr "Eroare la lansare"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nu se poate lansa \"exo-desktop-item-edit\", care este necesar pentru a crea și edita elemente de meniu."
msgstr ""
"Nu se poate lansa \"exo-desktop-item-edit\", care este necesar pentru a crea"
" și edita elemente de meniu."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Închide"
msgstr "În_chide"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Nu s-a putut încărca meniul programelor"

View File

@ -1,24 +1,26 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Aleksandr P, 2010,2012
# Aleksey Kabanov <ak099@mail.ru>, 2013
# Alexander Matveyev <a.s.matveyev@gmail.com>, 2010
# Andrei Stepanov, 2022
# Artem Zolochevskiy <artem.zolochevskiy@gmail.com>, 2011-2012
# Denis Koryavov <dkoryavov@yandex.ru>, 2010
# Sergey Alyoshin <alyoshin.s@gmail.com>, 2016
# Simple88, 2016
# Andrei Stepanov, 2023
# Aleksey Kabanov <ak099@mail.ru>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Lowrider <pams@imail.ru>, 2023
# Sergey Alyoshin <alyoshin.s@gmail.com>, 2023
# Артём Котлубай <artemkotlubai@yandex.ru>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-03-11 16:00+0000\n"
"Last-Translator: Andrei Stepanov\n"
"Language-Team: Russian (http://www.transifex.com/xfce/garcon/language/ru/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Артём Котлубай <artemkotlubai@yandex.ru>, 2023\n"
"Language-Team: Russian (https://www.transifex.com/xfce/teams/16840/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -31,7 +33,7 @@ msgstr "Инструменты"
#: ../data/xfce/xfce-accessories.directory.in.h:2
msgid "Common desktop tools and applications"
msgstr "Стандартные утилиты и приложения"
msgstr "Стандартные средства и приложения"
#: ../data/xfce/xfce-development.directory.in.h:1
msgid "Development"
@ -55,7 +57,7 @@ msgstr "Игры"
#: ../data/xfce/xfce-games.directory.in.h:2
msgid "Games, puzzles, and other fun software"
msgstr "Игры, головоломки и другие развлекательные программы"
msgstr "Игры, головоломки и другое развлекательное ПО"
#: ../data/xfce/xfce-graphics.directory.in.h:1
msgid "Graphics"
@ -79,7 +81,7 @@ msgstr "Мультимедиа"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
msgstr "Аудио/видео проигрыватели и редакторы"
msgstr "Мультимедиа проигрыватели и редакторы"
#: ../data/xfce/xfce-network.directory.in.h:1
msgid "Internet"
@ -123,11 +125,11 @@ msgstr "Научные программы"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
msgstr "Хранители экрана"
msgstr "Экранные заставки"
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
msgstr "Хранители экрана"
msgstr "Мини-программы экранных заставок"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
@ -145,7 +147,7 @@ msgstr "Система"
msgid "System tools and utilities"
msgstr "Средства администрирования системы"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Файл «%s» не найден"
@ -160,25 +162,27 @@ msgstr "Не удалось загрузить данные файла меню
msgid "Could not load menu file data from %s"
msgstr "Не удалось загрузить данные файла меню из %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Не удалось выполнить команду «%s»."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Ошибка запуска"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Невозможно запустить «exo-desktop-item-edit», которая необходима для редактирования элементов меню."
msgstr ""
"Невозможно запустить «exo-desktop-item-edit», которая необходима для "
"редактирования элементов меню."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Закрыть"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Не удалось загрузить меню приложений"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Dušan Kazik <prescott66@gmail.com>, 2016
# Slavko <linux@slavino.sk>, 2015
# Xfce Bot <transifex@xfce.org>, 2023
# Dušan Kazik <prescott66@gmail.com>, 2023
# Slavko <linux@slavino.sk>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Slovak (http://www.transifex.com/xfce/garcon/language/sk/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Slavko <linux@slavino.sk>, 2023\n"
"Language-Team: Slovak (https://www.transifex.com/xfce/teams/16840/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -109,11 +113,11 @@ msgstr "Osobné nastavenia"
#: ../data/xfce/xfce-science.directory.in.h:1
msgid "Science"
msgstr ""
msgstr "Veda"
#: ../data/xfce/xfce-science.directory.in.h:2
msgid "Scientific software"
msgstr ""
msgstr "Vedecký softvér"
#: ../data/xfce/xfce-screensavers.directory.in.h:1
msgid "Screensavers"
@ -139,7 +143,7 @@ msgstr "Systém"
msgid "System tools and utilities"
msgstr "Systémové nástroje a programy"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Súbor „%s” nenájdený"
@ -154,25 +158,27 @@ msgstr "Nemožno načítať dáta súboru menu z %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Nemožno načítať dáta súboru menu z %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Zlyhalo spustenie príkazu „%s”."
msgstr "Nepodarilo sa spustiť príkaz „%s“."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Chyba pri spustení"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Nie je možné spustiť \"exo-desktop-item-edit\". Táto aplikácia je vyžadovaná pri vytváraní a úpravu položiek ponuky."
msgstr ""
"Nie je možné spustiť \"exo-desktop-item-edit\". Táto aplikácia je vyžadovaná"
" pri vytváraní a úpravu položiek ponuky."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Zatvoriť"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Zlyhalo načítanie menu aplikácií"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# 8b03701f910565d01acaec9ce3f558ab_e9f0fee <b5b06e8f85fb8288fe43ad0bc2422d94_32848>, 2013,2017
# Arnold Marko <arnold.marko@gmail.com>, 2020,2022
# Xfce Bot <transifex@xfce.org>, 2023
# Arnold Marko <arnold.marko@gmail.com>, 2023
# 8b03701f910565d01acaec9ce3f558ab_e9f0fee <b5b06e8f85fb8288fe43ad0bc2422d94_32848>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 10:23+0000\n"
"Last-Translator: Arnold Marko <arnold.marko@gmail.com>\n"
"Language-Team: Slovenian (http://www.transifex.com/xfce/garcon/language/sl/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: 8b03701f910565d01acaec9ce3f558ab_e9f0fee <b5b06e8f85fb8288fe43ad0bc2422d94_32848>, 2023\n"
"Language-Team: Slovenian (https://www.transifex.com/xfce/teams/16840/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +143,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Sistemska orodja in pripomočki"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Datoteka \"%s\" ni bila najdena"
@ -154,25 +158,27 @@ msgstr "Podatkov iz datoteke menija ni bilo mogoče naložiti iz %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Podatkov iz datoteke menija ni bilo mogoče naložiti iz %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Izvajanje ukaza \"%s\" ni uspelo."
msgstr "Izvedba ukaza \"%s\" je spodletela."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Napaka zagonaob zagonu"
msgstr "Napaka ob zagonu"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Ni mogoče zagnati \"exo-desktop-item-edit\", ki je potreben za ustvarjanje in urejanje postavk menija."
msgstr ""
"Ni mogoče zagnati \"exo-desktop-item-edit\", ki je potreben za ustvarjanje "
"in urejanje postavk menija."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Zapri"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Nalaganje programskega menija ni uspelo"

View File

@ -1,19 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Besnik Bleta <besnik@programeshqip.org>, 2007
# Besnik Bleta <besnik@programeshqip.org>, 2007,2020,2022
# Besnik Bleta <besnik@programeshqip.org>, 2019-2020
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Besnik Bleta <besnik@programeshqip.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 10:40+0000\n"
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
"Language-Team: Albanian (http://www.transifex.com/xfce/garcon/language/sq/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>, 2023\n"
"Language-Team: Albanian (https://www.transifex.com/xfce/teams/16840/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -42,7 +45,7 @@ msgstr "Edukim"
#: ../data/xfce/xfce-education.directory.in.h:2
msgid "Educational software"
msgstr "Programe edukimi"
msgstr "Software edukativ"
#: ../data/xfce/xfce-games.directory.in.h:1
msgid "Games"
@ -58,7 +61,7 @@ msgstr "Grafika"
#: ../data/xfce/xfce-graphics.directory.in.h:2
msgid "Graphics creation and manipulation applications"
msgstr "Aplikacione për krijim dhe manipulim grafike"
msgstr "Aplikacione për krijim dhe manipulim grafik"
#: ../data/xfce/xfce-hardware.directory.in.h:1
msgid "Hardware"
@ -122,7 +125,7 @@ msgstr "Ekrankursyes"
#: ../data/xfce/xfce-screensavers.directory.in.h:2
msgid "Screensaver applets"
msgstr "Aplikacionthe ekrankursyesi"
msgstr "Aplikacionthe ekrankursyes"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
@ -130,7 +133,7 @@ msgstr "Rregullime"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
msgstr "Aplikacione për rregullime desktopi dhe sistemi"
msgstr "Aplikacione rregullimi desktopi dhe sistemi"
#: ../data/xfce/xfce-system.directory.in.h:1
msgid "System"
@ -140,7 +143,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Mjete dhe të dobishëm sistemi"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Kartela \"%s\" su gjet"
@ -155,25 +158,27 @@ msgstr "Su ngarkuan dot të dhëna menuje kartele prej %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Su ngarkuan dot të dhëna menuje kartele prej %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Su arrit të përmbushej urdhri \"%s\"."
msgstr "Dështoi përmbushja e urdhrit \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Gabim Nisjeje"
msgstr "Gabim Nisësi"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Sarrihet të niset \"exo-desktop-item-edit\", që është i domosdoshëm për krijim dhe përpunim zërash menuje."
msgstr ""
"Sarrihet të niset \"exo-desktop-item-edit\", që është i domosdoshëm për "
"krijim dhe përpunim zërash menuje."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Mbylle"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Su arrit të ngarkohej menuja e aplikacioneve"

View File

@ -1,20 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2012
# Саша Петровић <salepetronije@gmail.com>, 2013
# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2012
# Саша Петровић <salepetronije@gmail.com>, 2013,2016-2017
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
# Саша Петровић <salepetronije@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-06 10:43+0000\n"
"Last-Translator: Саша Петровић <salepetronije@gmail.com>\n"
"Language-Team: Serbian (http://www.transifex.com/xfce/garcon/language/sr/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Саша Петровић <salepetronije@gmail.com>, 2023\n"
"Language-Team: Serbian (https://www.transifex.com/xfce/teams/16840/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -51,7 +53,7 @@ msgstr "Игре"
#: ../data/xfce/xfce-games.directory.in.h:2
msgid "Games, puzzles, and other fun software"
msgstr "Игре, слагалице, и други забавни програми"
msgstr "Игре, слагалице, и остала забава"
#: ../data/xfce/xfce-graphics.directory.in.h:1
msgid "Graphics"
@ -71,7 +73,7 @@ msgstr "Подешавања неких уређаја"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Звук и видео"
msgstr "Мултимедија"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -79,19 +81,19 @@ msgstr "Програми за извођење и уређивање звука
#: ../data/xfce/xfce-network.directory.in.h:1
msgid "Internet"
msgstr "Интернет"
msgstr "Мрежа"
#: ../data/xfce/xfce-network.directory.in.h:2
msgid "Applications for Internet access"
msgstr "Програми за приступање Интернету"
msgstr "Програми за приступ мрежи"
#: ../data/xfce/xfce-office.directory.in.h:1
msgid "Office"
msgstr "Уред"
msgstr "Канцеларија"
#: ../data/xfce/xfce-office.directory.in.h:2
msgid "Office and productivity applications"
msgstr "Програми за уређивање докуменеата и стваралаштво"
msgstr "Канцеларијски и производни прогррами"
#: ../data/xfce/xfce-other.directory.in.h:1
msgid "Other"
@ -99,7 +101,7 @@ msgstr "Остало"
#: ../data/xfce/xfce-other.directory.in.h:2
msgid "Applications that don't fit into other categories"
msgstr "Програми који не припадају осталим врстама"
msgstr "Програми који не припадају осталим категоријама"
#: ../data/xfce/xfce-personal.directory.in.h:1
msgid "Personal"
@ -107,7 +109,7 @@ msgstr "Лично"
#: ../data/xfce/xfce-personal.directory.in.h:2
msgid "Personal settings"
msgstr "Личне поставке"
msgstr "Лична подешавања"
#: ../data/xfce/xfce-science.directory.in.h:1
msgid "Science"
@ -141,7 +143,7 @@ msgstr "Систем"
msgid "System tools and utilities"
msgstr "Системски програми и помагала"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Датотека „%s“ није пронађена"
@ -149,32 +151,34 @@ msgstr "Датотека „%s“ није пронађена"
#: ../garcon/garcon-menu-parser.c:277
#, c-format
msgid "Could not load menu file data from %s: %s"
msgstr "Нисам успео да учитам податке датотеке изборника из %s: %s"
msgstr "Не могу да учитам податке датотеке изборника из %s: %s"
#: ../garcon/garcon-menu-parser.c:284
#, c-format
msgid "Could not load menu file data from %s"
msgstr "Нисам успео да учитам податке датотеке изборника из %s"
msgstr "Не могу да учитам податке датотеке изборника из %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Нисам успео да извршим наредбу „%s“."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Грешка покретања"
msgstr "Грешка покретања програма"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Нисам успео покренути „exo-desktop-item-edit“, што је неопходно за стварање и уређивање ставки изборника."
msgstr ""
"Нисам успео покренути „exo-desktop-item-edit“, што је неопходно за стварање "
"и уређивање ставки изборника."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "Затвори"
msgstr "_Затвори"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Нисам успео учитати изборник програма"

View File

@ -1,19 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Daniel Nylander <po@danielnylander.se>, 2009-2010
# Luna Jernberg <bittin@cafe8bitar.se>, 2022
# Påvel Nicklasson <pavel2@frimix.se>, 2016
# Luna Jernberg <bittin@cafe8bitar.se>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Påvel Nicklasson <pavel2@frimix.se>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 12:18+0000\n"
"Last-Translator: Luna Jernberg <bittin@cafe8bitar.se>\n"
"Language-Team: Swedish (http://www.transifex.com/xfce/garcon/language/sv/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Swedish (https://www.transifex.com/xfce/teams/16840/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +144,7 @@ msgstr "System"
msgid "System tools and utilities"
msgstr "Systemverktyg och tillbehör"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Filen \"%s\" hittades inte"
@ -155,25 +159,27 @@ msgstr "Det gick inte att läsa in menyfildata från %s: %s"
msgid "Could not load menu file data from %s"
msgstr "Det gick inte att läsa in menyfildata från %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Misslyckades utföra kommandot \"%s\"."
msgstr "Det gick inte att köra kommandot \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Startfel"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Det gick inte att starta \"exo-desktop-item-edit\", som krävs för att skapa och redigera menyobjekt."
msgstr ""
"Det gick inte att starta \"exo-desktop-item-edit\", som krävs för att skapa "
"och redigera menyobjekt."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Stäng"
msgstr "S_täng"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Misslyckades läsa in programmenyn"

View File

@ -1,18 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# ప్రవీణ్ ఇళ్ళ <mail2ipn@gmail.com>, 2011
# ప్రవీణ్ ఇళ్ళ <mail2ipn@gmail.com>, 2014
# Xfce Bot <transifex@xfce.org>, 2023
# ప్రవీణ్ ఇళ్ళ <mail2ipn@gmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Telugu (http://www.transifex.com/xfce/garcon/language/te/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Telugu (https://www.transifex.com/xfce/teams/16840/te/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -69,7 +73,7 @@ msgstr "వివిధ హార్డ్‌వేర్ పరికరాల
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "బహుళమా్యమం"
msgstr "బహుళమా్యమం"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -139,7 +143,7 @@ msgstr "వ్యవస్థ"
msgid "System tools and utilities"
msgstr "వ్యవస్థ సాధనాలు మరియు వినియోగాలు"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" దస్త్రం కనపడలేదు"
@ -154,25 +158,25 @@ msgstr "%s నుండి మెనూ దస్త్రాన్ని లో
msgid "Could not load menu file data from %s"
msgstr "%s నుండి మెనూ దస్త్రాన్ని లోడుచేయుట వీలుకాదు"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" ఆదేశాన్ని అమలుపరుచుటలో విఫలమైంది."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "ప్రారంభ దోషము"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "మూసివేయి (_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "అనువర్తనాల మెనూ నింపుటలో విఫలమైంది"

View File

@ -1,17 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Theppitak Karoonboonyanan <thep@linux.thai.net>, 2013
# Xfce Bot <transifex@xfce.org>, 2023
# Theppitak Karoonboonyanan <theppitak@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Thai (http://www.transifex.com/xfce/garcon/language/th/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Theppitak Karoonboonyanan <theppitak@gmail.com>, 2023\n"
"Language-Team: Thai (https://www.transifex.com/xfce/teams/16840/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -124,7 +128,7 @@ msgstr "แอพเพล็ตของโปรแกรมรักษาห
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "ตั้งค่า"
msgstr "การตั้งค่า"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -138,7 +142,7 @@ msgstr "ระบบ"
msgid "System tools and utilities"
msgstr "เครื่องมือระบบ"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "ไม่พบแฟ้ม \"%s\""
@ -153,25 +157,27 @@ msgstr "ไม่สามารถโหลดข้อมูลแฟ้มเ
msgid "Could not load menu file data from %s"
msgstr "ไม่สามารถโหลดข้อมูลแฟ้มเมนูจาก %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "เรียกทำงานคำสั่ง \"%s\" ไม่สำเร็จ"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "ข้อผิดพลาดในการเรียกทำงาน"
msgstr "เรียกทำงานผิดพลาด"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "ไม่สามารถเรียกทำงาน \"exo-desktop-item-edit\" ซึ่งจำเป็นในการสร้างและแก้ไขรายการเมนูต่างๆ"
msgstr ""
"ไม่สามารถเรียกทำงาน \"exo-desktop-item-edit\" "
"ซึ่งจำเป็นในการสร้างและแก้ไขรายการเมนูต่างๆ"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "ปิ_ด"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "โหลดเมนูโปรแกรมไม่สำเร็จ"

View File

@ -1,22 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Ayhan YALÇINSOY <ayhanyalcinsoy@gmail.com>, 2010
# Emin Tufan Çetin <etcetin@gmail.com>, 2022
# Gökmen Görgen <gkmngrgn@gmail.com>, 2008
# Necdet Yücel <necdetyucel@gmail.com>, 2013,2016
# Nimet Senem Özkızıklı <nimetsenem@gmail.com>, 2008
# Volkan Gezer <volkangezer@gmail.com>, 2013
# Emin Tufan Çetin <etcetin@gmail.com>, 2023
# Volkan Gezer <volkangezer@gmail.com>, 2023
# Necdet Yücel <necdetyucel@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-01 18:47+0000\n"
"Last-Translator: Emin Tufan Çetin <etcetin@gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/xfce/garcon/language/tr/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Turkish (https://www.transifex.com/xfce/teams/16840/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -73,7 +75,7 @@ msgstr "Çeşitli donanım aygıtları için ayarlar"
#: ../data/xfce/xfce-multimedia.directory.in.h:1
msgid "Multimedia"
msgstr "Çokluortam"
msgstr "Çoklu Ortam"
#: ../data/xfce/xfce-multimedia.directory.in.h:2
msgid "Audio and video players and editors"
@ -143,7 +145,7 @@ msgstr "Sistem"
msgid "System tools and utilities"
msgstr "Sistem araçları ve uygulamaları"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" dosyası bulunamadı"
@ -158,25 +160,27 @@ msgstr "%s den menü dosya verisi yüklenemedi: %s"
msgid "Could not load menu file data from %s"
msgstr "%s den menü dosya verisi yüklenemedi"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" komutu çalıştırılamadı."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Çalıştırma Hatası"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Menü nesnelerini oluşturmak ve düzenlemek için geçerli olan \"exo-desktop-item-edit\" başlatılamadı."
msgstr ""
"Menü nesnelerini oluşturmak ve düzenlemek için geçerli olan \"exo-desktop-"
"item-edit\" başlatılamadı."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Kapat"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Uygulama menüsü yüklenemedi"

View File

@ -1,17 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Gheyret Kenji <gheyret@yahoo.com>, 2021
# Nick Schermer <nick@xfce.org>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Gheyret Kenji <gheyret@yahoo.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Uyghur (http://www.transifex.com/xfce/garcon/language/ug/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Gheyret Kenji <gheyret@yahoo.com>, 2023\n"
"Language-Team: Uyghur (https://www.transifex.com/xfce/teams/16840/ug/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +143,7 @@ msgstr "سىستېما"
msgid "System tools and utilities"
msgstr "سىستېما قوراللىرى"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "ھۆججەت «%s» تېپىلمىدى"
@ -153,25 +158,27 @@ msgstr "%s دىن تىزىملىك ھۆججەت سانلىق-مەلۇماتلى
msgid "Could not load menu file data from %s"
msgstr "%s دىن تىزىملىك ھۆججەت سانلىق-مەلۇماتلىرىنى ئوقۇغىلى بولمىدى"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "بۇيرۇق «%s»نى ئىجرا قىلىش مەغلۇپ بولدى."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "ئىجرا قىلىش خاتالىقى"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "ئۈستەلئۈستىگە تىزىملىك ياساش ياكى تەھرىرلەشتە زۆرۈر بولغان \"exo-desktop-item-edit\" نى ئىجرا قىلالمىدى."
msgstr ""
"ئۈستەلئۈستىگە تىزىملىك ياساش ياكى تەھرىرلەشتە زۆرۈر بولغان \"exo-desktop-"
"item-edit\" نى ئىجرا قىلالمىدى."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "تاقا(_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "پروگرامما تىزىملىكىنى ئوقۇش مەغلۇپ بولدى"

View File

@ -1,18 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Dmitry Nikitin <luckas_fb@mail.ru>, 2008
# Yarema aka Knedlyk <yupadmin@gmail.com>, 2013,2016,2022
# Xfce Bot <transifex@xfce.org>, 2023
# Yarema aka Knedlyk <yupadmin@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-04 13:30+0000\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/xfce/garcon/language/uk/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>, 2023\n"
"Language-Team: Ukrainian (https://www.transifex.com/xfce/teams/16840/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -125,7 +128,7 @@ msgstr "Аплети для зберігачів екрану"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "Налаштування"
msgstr "Параметри"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -139,7 +142,7 @@ msgstr "Система"
msgid "System tools and utilities"
msgstr "Інструменти та утиліти для системи"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "Файл \"%s\" не знайдено"
@ -154,25 +157,27 @@ msgstr "Не вдалось завантажити файл даних меню
msgid "Could not load menu file data from %s"
msgstr "Не вдалось завантажити файл даних меню з %s"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "Не вдалося виконати команду \"%s\"."
msgstr "Не вдається виконати команду \"%s\"."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Помилка запуску"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "Неможливо запустити \"exo-desktop-item-edit\", яка потрібна для створення та редагування пунктів меню."
msgstr ""
"Неможливо запустити \"exo-desktop-item-edit\", яка потрібна для створення та"
" редагування пунктів меню."
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Закрити"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Не вдалося завантажити меню програм"

View File

@ -1,18 +1,21 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# U A <u.almasov@gmail.com>, 2013
# U A <u.almasov@gmail.com>, 2013
# Xfce Bot <transifex@xfce.org>, 2023
# Umidjon Almasov <umidjon@almasov.uz>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Uzbek (http://www.transifex.com/xfce/garcon/language/uz/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Umidjon Almasov <umidjon@almasov.uz>, 2023\n"
"Language-Team: Uzbek (https://www.transifex.com/xfce/teams/16840/uz/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -139,7 +142,7 @@ msgstr "Tizim"
msgid "System tools and utilities"
msgstr "Tizim vositalari va utilitalar"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" fayli topilmadi"
@ -154,25 +157,25 @@ msgstr "Menyu faylining ma'lumotini %s dan yuklab bo'lmadi: %s"
msgid "Could not load menu file data from %s"
msgstr "Menyu faylining ma'lumotini %s dan yuklab bo'lmadi"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" buyrug'ini bajarish muvaffaqiyatsiz tugadi."
msgstr "\"%s\" buyrig'ini ishga tushirish muvaffaqiyatsiz tugadi."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "Ishga tushirish xatosi"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "_Yopish"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Dasturlar menyusini yuklash muvaffaqiyatsiz tugadi"

View File

@ -1,17 +1,20 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# U A <u.almasov@gmail.com>, 2013
# Umidjon Almasov <umidjon@almasov.uz>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Uzbek (Latin) (http://www.transifex.com/xfce/garcon/language/uz@Latn/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Umidjon Almasov <umidjon@almasov.uz>, 2023\n"
"Language-Team: Uzbek (Latin) (https://www.transifex.com/xfce/teams/16840/uz@Latn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -138,7 +141,7 @@ msgstr "Tizim"
msgid "System tools and utilities"
msgstr "Tizim vositalari va utilitalar"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "\"%s\" fayli topilmadi"
@ -153,25 +156,25 @@ msgstr "Menyu faylining ma'lumotini %s dan yuklab bo'lmadi: %s"
msgid "Could not load menu file data from %s"
msgstr "Menyu faylining ma'lumotini %s dan yuklab bo'lmadi"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "\"%s\" buyrug'ini bajarish muvaffaqiyatsiz tugadi."
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr ""
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "Dasturlar menyusini yuklash muvaffaqiyatsiz tugadi"

View File

@ -1,22 +1,23 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Chipong Luo <chipong.luo@yahoo.com>, 2011-2012
# Chris K. Zhang <plutino@gmail.com>, 2009
# Hunt Xu <mhuntxu@gmail.com>, 2009-2010
# 玉堂白鹤 <yjwork@qq.com>, 2013
# 玉堂 白鹤 <squeeze@189.cn>, 2010
# 玉堂白鹤 <yjwork@qq.com>, 2016,2022
# 玉堂白鹤 <yjwork@qq.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Chipong Luo <chipong.luo@yahoo.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-11 05:06+0000\n"
"Last-Translator: 玉堂白鹤 <yjwork@qq.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/xfce/garcon/language/zh_CN/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Chinese (China) (https://www.transifex.com/xfce/teams/16840/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -143,7 +144,7 @@ msgstr "系统"
msgid "System tools and utilities"
msgstr "系统工具和实用程序"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "未找到文件 “%s”"
@ -158,25 +159,25 @@ msgstr "未能从 %s 载入菜单文件数据:%s"
msgid "Could not load menu file data from %s"
msgstr "未能从 %s 载入菜单文件数据"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "无法执行命令 “%s”。"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "启动错误"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "未能启动 “exo-desktop-item-edit”它是创建和编辑菜单项目所需的。"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "关闭(_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "无法载入应用程序菜单"

View File

@ -1,19 +1,22 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Cheng-Chia Tseng <pswo10680@gmail.com>, 2010
# Ivan <personal@live.hk>, 2020
# Walter Cheuk <wwycheuk@gmail.com>, 2013
# Ivan <personal@live.hk>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Walter Cheuk <wwycheuk@gmail.com>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-01-31 23:45+0000\n"
"Last-Translator: Xfce Bot <transifex@xfce.org>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/xfce/garcon/language/zh_HK/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Walter Cheuk <wwycheuk@gmail.com>, 2023\n"
"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/xfce/teams/16840/zh_HK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -140,7 +143,7 @@ msgstr "系統"
msgid "System tools and utilities"
msgstr "系統工具與公用程式"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "找不到「%s」檔案"
@ -155,25 +158,25 @@ msgstr "無法從 %s 載入選單檔資料:%s"
msgid "Could not load menu file data from %s"
msgstr "無法從 %s 載入選單檔資料"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "未能執行「%s」指令。"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "啟動發生錯誤"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "無法啟動 「exo-desktop-item-edit」, 創建和編輯選單項所必需的。"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "關閉(_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "未能載入應用程式選單"

View File

@ -1,21 +1,24 @@
# 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 <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Cheng-Chia Tseng <pswo10680@gmail.com>, 2010
# Hsiu-Ming Chang <cges30901@gmail.com>, 2018
# 黃柏諺 <s8321414@gmail.com>, 2016
# Walter Cheuk <wwycheuk@gmail.com>, 2013,2019
# 黃柏諺 <s8321414@gmail.com>, 2022
# 黃柏諺 <s8321414@gmail.com>, 2023
# Xfce Bot <transifex@xfce.org>, 2023
# Walter Cheuk <wwycheuk@gmail.com>, 2023
# Hsiu-Ming Chang <cges30901@gmail.com>, 2023
# Nick Schermer <nick@xfce.org>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Garcon\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-01 00:45+0100\n"
"PO-Revision-Date: 2022-02-07 02:27+0000\n"
"Last-Translator: 黃柏諺 <s8321414@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/xfce/garcon/language/zh_TW/)\n"
"POT-Creation-Date: 2023-03-17 10:38+0100\n"
"PO-Revision-Date: 2023-03-17 09:36+0000\n"
"Last-Translator: Nick Schermer <nick@xfce.org>, 2023\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/xfce/teams/16840/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -128,7 +131,7 @@ msgstr "螢幕保護面板程式"
#: ../data/xfce/xfce-settings.directory.in.h:1
msgid "Settings"
msgstr "設定"
msgstr "設定"
#: ../data/xfce/xfce-settings.directory.in.h:2
msgid "Desktop and system settings applications"
@ -142,7 +145,7 @@ msgstr "系統"
msgid "System tools and utilities"
msgstr "系統工具與公用程式"
#: ../garcon/garcon-menu.c:707
#: ../garcon/garcon-menu.c:716
#, c-format
msgid "File \"%s\" not found"
msgstr "找不到「%s」檔案"
@ -157,25 +160,25 @@ msgstr "無法從 %s 載入選單檔資料:%s"
msgid "Could not load menu file data from %s"
msgstr "無法從 %s 載入選單檔資料"
#: ../garcon-gtk/garcon-gtk-menu.c:380
#: ../garcon-gtk/garcon-gtk-menu.c:412
#, c-format
msgid "Failed to execute command \"%s\"."
msgstr "未能執行「%s」指令。"
msgstr "未能執行「%s」。"
#: ../garcon-gtk/garcon-gtk-menu.c:406
#: ../garcon-gtk/garcon-gtk-menu.c:438
msgid "Launch Error"
msgstr "啟動發生錯誤"
#: ../garcon-gtk/garcon-gtk-menu.c:408
#: ../garcon-gtk/garcon-gtk-menu.c:440
msgid ""
"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
"edit menu items."
msgstr "無法啟動「exo-desktop-item-edit」此為建立及編輯選單項目所必需。"
#: ../garcon-gtk/garcon-gtk-menu.c:410
#: ../garcon-gtk/garcon-gtk-menu.c:442
msgid "_Close"
msgstr "關閉(_C)"
#: ../garcon-gtk/garcon-gtk-menu.c:928
#: ../garcon-gtk/garcon-gtk-menu.c:591
msgid "Failed to load the applications menu"
msgstr "未能載入應用程式選單"