New upstream version 1.26.1
This commit is contained in:
parent
fbb23c46d5
commit
1e0eb5116b
|
@ -0,0 +1,126 @@
|
|||
##########################################################
|
||||
# THE FOLLOWING LINES IS USED BY docker-build
|
||||
##########################################################
|
||||
requires:
|
||||
archlinux:
|
||||
# Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-terminal
|
||||
- autoconf-archive
|
||||
- clang
|
||||
- gcc
|
||||
- git
|
||||
- libsm
|
||||
- make
|
||||
- mate-common
|
||||
- mate-desktop
|
||||
- meson
|
||||
- vte3
|
||||
- which
|
||||
- yelp-tools
|
||||
|
||||
debian:
|
||||
# Useful URL: https://github.com/mate-desktop/debian-packages
|
||||
# Useful URL: https://salsa.debian.org/debian-mate-team/mate-terminal
|
||||
- autoconf-archive
|
||||
- autopoint
|
||||
- clang
|
||||
- clang-tools
|
||||
- cppcheck
|
||||
- gcc
|
||||
- git
|
||||
- libdconf-dev
|
||||
- libglib2.0-dev
|
||||
- libgtk-3-dev
|
||||
- libsm-dev
|
||||
- libvte-2.91-dev
|
||||
- libx11-dev
|
||||
- make
|
||||
- mate-common
|
||||
- meson
|
||||
- yelp-tools
|
||||
|
||||
fedora:
|
||||
# Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-terminal.git
|
||||
- autoconf-archive
|
||||
- clang
|
||||
- clang-analyzer
|
||||
- gcc
|
||||
- dconf-devel
|
||||
- desktop-file-utils
|
||||
- git
|
||||
- gtk3-devel
|
||||
- libSM-devel
|
||||
- make
|
||||
- mate-common
|
||||
- meson
|
||||
- redhat-rpm-config
|
||||
- vte291-devel
|
||||
|
||||
ubuntu:
|
||||
- autoconf-archive
|
||||
- autopoint
|
||||
- clang
|
||||
- clang-tools
|
||||
- gcc
|
||||
- git
|
||||
- libdconf-dev
|
||||
- libglib2.0-dev
|
||||
- libgtk-3-dev
|
||||
- libsm-dev
|
||||
- libvte-2.91-dev
|
||||
- libx11-dev
|
||||
- make
|
||||
- mate-common
|
||||
- meson
|
||||
- yelp-tools
|
||||
|
||||
variables:
|
||||
- 'CHECKERS="
|
||||
-enable-checker deadcode.DeadStores
|
||||
-enable-checker alpha.deadcode.UnreachableCode
|
||||
-enable-checker alpha.core.CastSize
|
||||
-enable-checker alpha.core.CastToStruct
|
||||
-enable-checker alpha.core.IdenticalExpr
|
||||
-enable-checker alpha.core.SizeofPtr
|
||||
-enable-checker alpha.security.ArrayBoundV2
|
||||
-enable-checker alpha.security.MallocOverflow
|
||||
-enable-checker alpha.security.ReturnPtrRange
|
||||
-enable-checker alpha.unix.SimpleStream
|
||||
-enable-checker alpha.unix.cstring.BufferOverlap
|
||||
-enable-checker alpha.unix.cstring.NotNullTerminated
|
||||
-enable-checker alpha.unix.cstring.OutOfBounds
|
||||
-enable-checker alpha.core.FixedAddr
|
||||
-enable-checker security.insecureAPI.strcpy"'
|
||||
|
||||
before_scripts:
|
||||
- if [ ${DISTRO_NAME} == "debian" ];then
|
||||
- egrep -lRZ 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_BEGIN_IGNORE_DEPRECATIONS/ /g'
|
||||
- egrep -lRZ 'G_GNUC_END_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_END_IGNORE_DEPRECATIONS/ /g'
|
||||
- fi
|
||||
|
||||
build_scripts:
|
||||
- NOCONFIGURE=1 ./autogen.sh
|
||||
- scan-build $CHECKERS ./configure --enable-compile-warnings=maximum
|
||||
- if [ $CPU_COUNT -gt 1 ]; then
|
||||
- scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT
|
||||
- else
|
||||
- scan-build $CHECKERS --keep-cc -o html-report make
|
||||
- fi
|
||||
- if [ ${DISTRO_NAME} == "debian" ];then
|
||||
- cppcheck --enable=warning,style,performance,portability,information,missingInclude .
|
||||
- fi
|
||||
|
||||
after_scripts:
|
||||
- make distcheck
|
||||
|
||||
releases:
|
||||
draft: false
|
||||
prerelease: false
|
||||
checksum: true
|
||||
file_glob: true
|
||||
files: mate-terminal-*.tar.xz
|
||||
github_release:
|
||||
tags: true
|
||||
overwrite: true
|
||||
base_version: 1.20.0
|
||||
notify_servers:
|
||||
- https://release.mate-desktop.org/release
|
|
@ -16,4 +16,4 @@
|
|||
#### Linux Distribution
|
||||
|
||||
|
||||
#### Link to downstream report of your Distribution
|
||||
#### Link to bugreport of your Distribution (requirement)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
[submodule "src/mate-submodules"]
|
||||
path = src/mate-submodules
|
||||
url = https://github.com/mate-desktop/mate-submodules.git
|
||||
ignore = untracked
|
204
.travis.yml
204
.travis.yml
|
@ -1,9 +1,14 @@
|
|||
# vim: set ts=2 sts=2 sw=2 expandtab :
|
||||
dist: xenial
|
||||
sudo: required
|
||||
language: bash
|
||||
dist: focal
|
||||
language: shell
|
||||
os: linux
|
||||
services:
|
||||
- docker
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- python3-pip
|
||||
- python3-setuptools
|
||||
|
||||
branches:
|
||||
except:
|
||||
|
@ -11,190 +16,37 @@ branches:
|
|||
|
||||
before_install:
|
||||
- curl -Ls -o docker-build https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/docker-build
|
||||
- curl -Ls -o gen-index https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/gen-index.sh
|
||||
- chmod +x docker-build gen-index
|
||||
- chmod +x docker-build
|
||||
|
||||
install:
|
||||
- sudo apt-get install -y python3-pip python3-setuptools
|
||||
- sudo pip3 install --upgrade pip
|
||||
- sudo pip install PyGithub
|
||||
- ./docker-build --name ${DISTRO} --config .travis.yml --install
|
||||
- pip3 install PyGithub
|
||||
- ./docker-build --name ${DISTRO} --config .build.yml --install
|
||||
|
||||
script:
|
||||
- ./docker-build --name ${DISTRO} --verbose --config .travis.yml --build scripts
|
||||
- ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts --build meson
|
||||
|
||||
notifications:
|
||||
irc:
|
||||
if: (tag OR branch = "1.26") AND
|
||||
repo = "mate-desktop/mate-terminal"
|
||||
channels:
|
||||
- "irc.libera.chat#mate-dev"
|
||||
template:
|
||||
- "[%{repository_name}] %{author}: %{commit_subject}"
|
||||
- "[%{branch}] %{commit} %{message} %{build_url}"
|
||||
on_success: never
|
||||
on_failure: always
|
||||
|
||||
deploy:
|
||||
- provider: pages
|
||||
github-token: $GITHUB_TOKEN
|
||||
#keep-history: true
|
||||
skip_cleanup: true
|
||||
committer-from-gh: true
|
||||
target-branch: gh-pages
|
||||
local-dir: html-report
|
||||
on:
|
||||
all_branches: true
|
||||
condition: ${DISTRO} =~ ^fedora.*$
|
||||
- provider: script
|
||||
script: ./docker-build --verbose --config .travis.yml --release github
|
||||
skip_cleanup: true
|
||||
edge: true
|
||||
script: ./docker-build --verbose --config .build.yml --release github
|
||||
on:
|
||||
tags: true
|
||||
condition: "${TRAVIS_TAG} =~ ^v.*$ && ${DISTRO} =~ ^fedora.*$"
|
||||
|
||||
after_success:
|
||||
- 'if [[ "$TRAVIS_SECURE_ENV_VARS" == "true" && "$TRAVIS_PULL_REQUEST" != "false" && ${DISTRO} =~ ^fedora.*$ ]]; then
|
||||
REPO_SLUG_ARRAY=(${TRAVIS_REPO_SLUG//\// });
|
||||
REPO_NAME=${REPO_SLUG_ARRAY[1]};
|
||||
URL="https://${REPO_NAME}.mate-desktop.dev";
|
||||
COMMENT="Code analysis completed";
|
||||
curl -H "Authorization: token $GITHUB_TOKEN" -X POST
|
||||
-d "{\"state\": \"success\", \"description\": \"$COMMENT\", \"context\":\"scan-build\", \"target_url\": \"$URL\"}"
|
||||
https://api.github.com/repos/${TRAVIS_REPO_SLUG}/statuses/${TRAVIS_PULL_REQUEST_SHA};
|
||||
fi'
|
||||
|
||||
env:
|
||||
- DISTRO="archlinux/base"
|
||||
# - DISTRO="archlinux:latest"
|
||||
- DISTRO="debian:testing"
|
||||
- DISTRO="fedora:latest"
|
||||
- DISTRO="ubuntu:19.10"
|
||||
|
||||
##########################################################
|
||||
# THE FOLLOWING LINES IS USED BY docker-build
|
||||
##########################################################
|
||||
requires:
|
||||
archlinux:
|
||||
# Useful URL: https://git.archlinux.org/svntogit/community.git/tree/mate-terminal
|
||||
- autoconf-archive
|
||||
- clang
|
||||
- gcc
|
||||
- git
|
||||
- libsm
|
||||
- make
|
||||
- mate-common
|
||||
- mate-desktop
|
||||
- vte3
|
||||
- which
|
||||
- yelp-tools
|
||||
|
||||
debian:
|
||||
# Useful URL: https://github.com/mate-desktop/debian-packages
|
||||
# Useful URL: https://salsa.debian.org/debian-mate-team/mate-terminal
|
||||
- autoconf-archive
|
||||
- autopoint
|
||||
- clang
|
||||
- clang-tools
|
||||
- cppcheck
|
||||
- gcc
|
||||
- git
|
||||
- libdconf-dev
|
||||
- libglib2.0-dev
|
||||
- libgtk-3-dev
|
||||
- libsm-dev
|
||||
- libvte-2.91-dev
|
||||
- libx11-dev
|
||||
- make
|
||||
- mate-common
|
||||
- yelp-tools
|
||||
|
||||
fedora:
|
||||
# Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-terminal.git
|
||||
- autoconf-archive
|
||||
- clang
|
||||
- clang-analyzer
|
||||
- cppcheck-htmlreport
|
||||
- gcc
|
||||
- dconf-devel
|
||||
- desktop-file-utils
|
||||
- git
|
||||
- gtk3-devel
|
||||
- libSM-devel
|
||||
- make
|
||||
- mate-common
|
||||
- redhat-rpm-config
|
||||
- vte291-devel
|
||||
|
||||
ubuntu:
|
||||
- autoconf-archive
|
||||
- autopoint
|
||||
- clang
|
||||
- clang-tools
|
||||
- git
|
||||
- libdconf-dev
|
||||
- libglib2.0-dev
|
||||
- libgtk-3-dev
|
||||
- libsm-dev
|
||||
- libvte-2.91-dev
|
||||
- libx11-dev
|
||||
- make
|
||||
- mate-common
|
||||
- yelp-tools
|
||||
|
||||
variables:
|
||||
- CFLAGS="-Wall -Werror=format-security -Wredundant-decls"
|
||||
- 'CHECKERS="
|
||||
-enable-checker deadcode.DeadStores
|
||||
-enable-checker alpha.deadcode.UnreachableCode
|
||||
-enable-checker alpha.core.CastSize
|
||||
-enable-checker alpha.core.CastToStruct
|
||||
-enable-checker alpha.core.IdenticalExpr
|
||||
-enable-checker alpha.core.SizeofPtr
|
||||
-enable-checker alpha.security.ArrayBoundV2
|
||||
-enable-checker alpha.security.MallocOverflow
|
||||
-enable-checker alpha.security.ReturnPtrRange
|
||||
-enable-checker alpha.unix.SimpleStream
|
||||
-enable-checker alpha.unix.cstring.BufferOverlap
|
||||
-enable-checker alpha.unix.cstring.NotNullTerminated
|
||||
-enable-checker alpha.unix.cstring.OutOfBounds
|
||||
-enable-checker alpha.core.FixedAddr
|
||||
-enable-checker security.insecureAPI.strcpy"'
|
||||
|
||||
before_scripts:
|
||||
- if [ ${DISTRO_NAME} == "debian" ];then
|
||||
- egrep -lRZ 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_BEGIN_IGNORE_DEPRECATIONS/ /g'
|
||||
- egrep -lRZ 'G_GNUC_END_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_END_IGNORE_DEPRECATIONS/ /g'
|
||||
- fi
|
||||
# Install mate-common from tarball
|
||||
- cd ${START_DIR}
|
||||
- '[ -f mate-common-1.23.3.tar.xz ] || curl -Ls -o mate-common-1.23.3.tar.xz http://pub.mate-desktop.org/releases/1.23/mate-common-1.23.3.tar.xz'
|
||||
- tar xf mate-common-1.23.3.tar.xz
|
||||
- cd mate-common-1.23.3
|
||||
- if [ ${DISTRO_NAME} == "debian" -o ${DISTRO_NAME} == "ubuntu" ];then
|
||||
- ./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu
|
||||
- else
|
||||
- ./configure --prefix=/usr
|
||||
- fi
|
||||
- make
|
||||
- make install
|
||||
|
||||
build_scripts:
|
||||
- ./autogen.sh --enable-compile-warnings=maximum
|
||||
- scan-build $CHECKERS ./configure --enable-compile-warnings=maximum
|
||||
- if [ $CPU_COUNT -gt 1 ]; then
|
||||
- scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT
|
||||
- else
|
||||
- scan-build $CHECKERS --keep-cc -o html-report make
|
||||
- fi
|
||||
- if [ ${DISTRO_NAME} == "debian" ];then
|
||||
- cppcheck --enable=warning,style,performance,portability,information,missingInclude .
|
||||
- fi
|
||||
|
||||
after_scripts:
|
||||
- if [ ${DISTRO_NAME} == "fedora" ];then
|
||||
- cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude .
|
||||
- cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport
|
||||
- ./gen-index -l 20 -i https://github.com/${OWNER_NAME}/mate-icon-theme/raw/master/mate/16x16/apps/utilities-terminal.png
|
||||
- fi
|
||||
- make distcheck
|
||||
|
||||
releases:
|
||||
draft: false
|
||||
prerelease: false
|
||||
checksum: true
|
||||
file_glob: true
|
||||
files: mate-terminal-*.tar.xz
|
||||
github_release:
|
||||
tags: true
|
||||
overwrite: true
|
||||
base_version: 1.20.0
|
||||
notify_servers:
|
||||
- https://release.mate-desktop.org/release
|
||||
# - DISTRO="ubuntu:rolling"
|
||||
|
|
23
.tx/config
23
.tx/config
|
@ -1,16 +1,17 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[MATE.master--mate-terminal]
|
||||
file_filter = po/<lang>.po
|
||||
source_file = mate-terminal.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[o:mate:p:MATE:r:1-26--mate-terminal]
|
||||
file_filter = po/<lang>.po
|
||||
source_file = mate-terminal.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
minimum_perc = 2
|
||||
|
||||
[MATE.master--mate-terminal-user-guide]
|
||||
file_filter = help/<lang>/<lang>.po
|
||||
source_file = help/mate-terminal.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
[o:mate:p:MATE:r:1-26--mate-terminal-user-guide]
|
||||
file_filter = help/<lang>/<lang>.po
|
||||
source_file = help/mate-terminal.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
minimum_perc = 2
|
||||
|
||||
|
|
13
Makefile.am
13
Makefile.am
|
@ -7,11 +7,13 @@ NULL =
|
|||
DISTCHECK_CONFIGURE_FLAGS = \
|
||||
--disable-schemas-install \
|
||||
--disable-silent-rules \
|
||||
--enable-compile-warnings=no \
|
||||
CFLAGS='-Wno-deprecated-declarations'
|
||||
|
||||
appdatadir = $(datadir)/metainfo
|
||||
appdata_in_files = mate-terminal.appdata.xml.in
|
||||
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
|
||||
appdata_DATA = mate-terminal.appdata.xml
|
||||
appdata_in_files = $(appdata_DATA:.xml=.xml.in)
|
||||
appdata_in_in_files = $(appdata_in_files:.xml.in=.xml.in.in)
|
||||
$(appdata_DATA): $(appdata_in_files)
|
||||
$(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
|
||||
|
||||
|
@ -30,15 +32,20 @@ EXTRA_DIST = \
|
|||
xmldocs.make \
|
||||
omf.make \
|
||||
mate-terminal.wrapper \
|
||||
$(appdata_in_files) \
|
||||
$(appdata_in_in_files) \
|
||||
$(man_MANS) \
|
||||
$(NULL)
|
||||
|
||||
CLEANFILES = \
|
||||
mate-terminal.appdata.xml \
|
||||
$(appdata_DATA) \
|
||||
$(desktop_DATA) \
|
||||
$(NULL)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
$(appdata_in_files) \
|
||||
$(NULL)
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
$(srcdir)/INSTALL \
|
||||
$(srcdir)/aclocal.m4 \
|
||||
|
|
53
NEWS
53
NEWS
|
@ -1,3 +1,56 @@
|
|||
### mate-terminal 1.26.1
|
||||
|
||||
* Translations update
|
||||
* meson build: drop desktop-file/appdata-file argument
|
||||
* Add GTK Style Class to context menu
|
||||
|
||||
### mate-terminal 1.26.0
|
||||
|
||||
* Translations update
|
||||
* update copyright to 2021
|
||||
* terminal-window: Remove -Wmissing-field-initializers warnings
|
||||
* build: underline package name and version in configure summary
|
||||
* build: Use PACKAGE_URL variable
|
||||
* Fix desktop file validation warning
|
||||
* update resource for transifex
|
||||
* Update copyright to 2021
|
||||
* Upgrade ui files
|
||||
* Remove unused macros
|
||||
* Remove the execution bit from two png files
|
||||
* profile-editor: Fix -Wsign-compare warning
|
||||
* Remove -Wfloat-conversion warnings
|
||||
* Help: fix permissions of images
|
||||
* add meson build system
|
||||
* terminal_profile_edit_dialog_page_scroll_event_cb is only used in profile-editor.c (#361)
|
||||
* README: Remove environment version number
|
||||
* Add compilation help
|
||||
* Add tab scrolling support for GTK3
|
||||
|
||||
### mate-terminal 1.25.0
|
||||
|
||||
* Translations update
|
||||
* use libegg submodules
|
||||
* Add git.mk to generate .gitignore
|
||||
* Compile code only when GDK supports X11
|
||||
* restore deprecated gtk_menu_popup for context-menu
|
||||
* Enable wayland support
|
||||
* profile-editor: Remove enum conversion warnings
|
||||
* terminal-encoding: Remove -Wformat warning
|
||||
* build: SMlib is dependent on ICElib
|
||||
* build: Isolate smclient
|
||||
* build: silent build warnings for distcheck
|
||||
* Add set-title-dialog.ui
|
||||
* build: do not override the default value for MATE_COMPILE_WARNINGS
|
||||
* terminal-window: expand the content of the comment on about dialog
|
||||
* Add confirm-close-dialog.ui
|
||||
* fix searching in terminal window
|
||||
* terminal-window: add icons to "open tab" and "close window/tab"
|
||||
* terminal-window: show VTE version in about dialog
|
||||
* fix url highlighting due to deprecation of vte_terminal_match_add_gregex
|
||||
* terminal-screen: prevent crash on bad term spawn due to redundant frees
|
||||
* Use user page on github when user email is private
|
||||
* Update authors
|
||||
|
||||
### mate-terminal 1.24.0
|
||||
|
||||
* Translations update
|
||||
|
|
14
README
14
README
|
@ -9,21 +9,27 @@ MATE terminal is a fork of GNOME terminal.
|
|||
How it works
|
||||
===
|
||||
|
||||
Profiles -
|
||||
Profiles -
|
||||
all settings are stored in profiles. prefs dialog edits the current
|
||||
profile
|
||||
|
||||
Session -
|
||||
Session -
|
||||
just the number of open windows/tabs and their profile is stored
|
||||
per-session
|
||||
|
||||
Command line options -
|
||||
|
||||
Command line options -
|
||||
do not overlap things that are preferences
|
||||
|
||||
|
||||
== Install ==
|
||||
|
||||
In order to build this program from the source code you need git installed and
|
||||
a working MATE environment, with the development tools installed
|
||||
properly.
|
||||
|
||||
Example:
|
||||
git submodule init
|
||||
git submodule update --remote --recursive
|
||||
./autogen.sh --prefix=/usr --sysconfdir=/etc \
|
||||
--disable-static --localstatedir=/var --with-gnu-ld
|
||||
make
|
||||
|
|
42
configure.ac
42
configure.ac
|
@ -1,6 +1,6 @@
|
|||
m4_define(mt_major_version, 1)
|
||||
m4_define(mt_minor_version, 24)
|
||||
m4_define(mt_micro_version, 0)
|
||||
m4_define(mt_minor_version, 26)
|
||||
m4_define(mt_micro_version, 1)
|
||||
m4_define(mt_version, mt_major_version.mt_minor_version.mt_micro_version)
|
||||
|
||||
m4_define(mt_api_version, 0)
|
||||
|
@ -28,7 +28,7 @@ AM_MAINTAINER_MODE([enable])
|
|||
|
||||
MATE_COMMON_INIT
|
||||
MATE_DEBUG_CHECK([no])
|
||||
MATE_COMPILE_WARNINGS([yes])
|
||||
MATE_COMPILE_WARNINGS
|
||||
#MATE_MAINTAINER_MODE_DEFINES
|
||||
|
||||
AC_C_BIGENDIAN
|
||||
|
@ -57,9 +57,30 @@ PKG_CHECK_MODULES([TERM],
|
|||
# smclient
|
||||
# ********
|
||||
|
||||
PKG_CHECK_MODULES(SMCLIENT, sm >= 1.0.0)
|
||||
AC_SUBST([SMCLIENT_CFLAGS])
|
||||
AC_SUBST([SMCLIENT_LIBS])
|
||||
# $enable_xsmp will be set to "yes" or "no"
|
||||
AC_ARG_ENABLE(smclient,
|
||||
[AC_HELP_STRING([--enable-smclient],
|
||||
[Explicitly enable or disable smclient])],
|
||||
[enable_smclient=$enableval],
|
||||
[enable_smclient=yes])
|
||||
|
||||
have_sm=no
|
||||
if test "x$enable_smclient" != "xno"; then
|
||||
PKG_CHECK_MODULES(LIBEGG, sm >= 1.0.0 ice >= 1.0.0 gtk+-3.0, have_sm=yes, [
|
||||
if test "x$enable_smclient" = "xyes"; then
|
||||
AC_MSG_ERROR([smclient enabled but SM library not found])
|
||||
fi
|
||||
])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(ENABLE_SMCLIENT, [test "x$have_sm" = "xyes"])
|
||||
|
||||
if test "x$have_sm" = "xyes"; then
|
||||
AC_DEFINE(HAVE_SMCLIENT, 1, [Have the SM development library])
|
||||
fi
|
||||
|
||||
AC_SUBST([LIBEGG_CFLAGS])
|
||||
AC_SUBST([LIBEGG_LIBS])
|
||||
|
||||
# *****
|
||||
# GSettings
|
||||
|
@ -125,8 +146,11 @@ AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
|
|||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
mate-terminal.appdata.xml.in
|
||||
mate-terminal.desktop.in
|
||||
src/Makefile
|
||||
src/mate-submodules/Makefile
|
||||
src/mate-submodules/libegg/Makefile
|
||||
src/org.mate.terminal.gschema.xml
|
||||
src/terminal-version.h
|
||||
help/Makefile
|
||||
|
@ -141,7 +165,10 @@ AC_OUTPUT
|
|||
# ****************************
|
||||
|
||||
echo "
|
||||
mate-terminal-$VERSION:
|
||||
Configure summary:
|
||||
|
||||
${PACKAGE_STRING}
|
||||
`echo $PACKAGE_STRING | sed "s/./=/g"`
|
||||
|
||||
prefix: ${prefix}
|
||||
source code location: ${srcdir}
|
||||
|
@ -150,5 +177,6 @@ echo "
|
|||
warning flags: ${WARN_CFLAGS}
|
||||
linker flags: ${LDFLAGS}
|
||||
|
||||
smclient support: ${have_sm}
|
||||
s/key support: ${enable_skey}
|
||||
"
|
||||
|
|
|
@ -0,0 +1,400 @@
|
|||
# git.mk, a small Makefile to autogenerate .gitignore files
|
||||
# for autotools-based projects.
|
||||
#
|
||||
# Copyright 2009, Red Hat, Inc.
|
||||
# Copyright 2010,2011,2012,2013 Behdad Esfahbod
|
||||
# Written by Behdad Esfahbod
|
||||
#
|
||||
# Copying and distribution of this file, with or without modification,
|
||||
# is permitted in any medium without royalty provided the copyright
|
||||
# notice and this notice are preserved.
|
||||
#
|
||||
# The latest version of this file can be downloaded from:
|
||||
GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk
|
||||
#
|
||||
# Bugs, etc, should be reported upstream at:
|
||||
# https://github.com/behdad/git.mk
|
||||
#
|
||||
# To use in your project, import this file in your git repo's toplevel,
|
||||
# then do "make -f git.mk". This modifies all Makefile.am files in
|
||||
# your project to -include git.mk. Remember to add that line to new
|
||||
# Makefile.am files you create in your project, or just rerun the
|
||||
# "make -f git.mk".
|
||||
#
|
||||
# This enables automatic .gitignore generation. If you need to ignore
|
||||
# more files, add them to the GITIGNOREFILES variable in your Makefile.am.
|
||||
# But think twice before doing that. If a file has to be in .gitignore,
|
||||
# chances are very high that it's a generated file and should be in one
|
||||
# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
|
||||
#
|
||||
# The only case that you need to manually add a file to GITIGNOREFILES is
|
||||
# when remove files in one of mostlyclean-local, clean-local, distclean-local,
|
||||
# or maintainer-clean-local make targets.
|
||||
#
|
||||
# Note that for files like editor backup, etc, there are better places to
|
||||
# ignore them. See "man gitignore".
|
||||
#
|
||||
# If "make maintainer-clean" removes the files but they are not recognized
|
||||
# by this script (that is, if "git status" shows untracked files still), send
|
||||
# me the output of "git status" as well as your Makefile.am and Makefile for
|
||||
# the directories involved and I'll diagnose.
|
||||
#
|
||||
# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
|
||||
# Makefile.am.sample in the git.mk git repo.
|
||||
#
|
||||
# Don't EXTRA_DIST this file. It is supposed to only live in git clones,
|
||||
# not tarballs. It serves no useful purpose in tarballs and clutters the
|
||||
# build dir.
|
||||
#
|
||||
# This file knows how to handle autoconf, automake, libtool, gtk-doc,
|
||||
# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu, appdata,
|
||||
# appstream, hotdoc.
|
||||
#
|
||||
# This makefile provides the following targets:
|
||||
#
|
||||
# - all: "make all" will build all gitignore files.
|
||||
# - gitignore: makes all gitignore files in the current dir and subdirs.
|
||||
# - .gitignore: make gitignore file for the current dir.
|
||||
# - gitignore-recurse: makes all gitignore files in the subdirs.
|
||||
#
|
||||
# KNOWN ISSUES:
|
||||
#
|
||||
# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
|
||||
# submodule doesn't find us. If you have configure.{in,ac} files in
|
||||
# subdirs, add a proxy git.mk file in those dirs that simply does:
|
||||
# "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
|
||||
# And add those files to git. See vte/gnome-pty-helper/git.mk for
|
||||
# example.
|
||||
#
|
||||
|
||||
|
||||
|
||||
###############################################################################
|
||||
# Variables user modules may want to add to toplevel MAINTAINERCLEANFILES:
|
||||
###############################################################################
|
||||
|
||||
#
|
||||
# Most autotools-using modules should be fine including this variable in their
|
||||
# toplevel MAINTAINERCLEANFILES:
|
||||
GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL = \
|
||||
$(srcdir)/aclocal.m4 \
|
||||
$(srcdir)/autoscan.log \
|
||||
$(srcdir)/configure.scan \
|
||||
`AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \
|
||||
test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \
|
||||
for x in \
|
||||
ar-lib \
|
||||
compile \
|
||||
config.guess \
|
||||
config.rpath \
|
||||
config.sub \
|
||||
depcomp \
|
||||
install-sh \
|
||||
ltmain.sh \
|
||||
missing \
|
||||
mkinstalldirs \
|
||||
test-driver \
|
||||
ylwrap \
|
||||
; do echo "$$AUX_DIR/$$x"; done` \
|
||||
`cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \
|
||||
head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done`
|
||||
#
|
||||
# All modules should also be fine including the following variable, which
|
||||
# removes automake-generated Makefile.in files:
|
||||
GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \
|
||||
`cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \
|
||||
while read f; do \
|
||||
case $$f in Makefile|*/Makefile) \
|
||||
test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \
|
||||
done`
|
||||
#
|
||||
# Modules that use libtool and use AC_CONFIG_MACRO_DIR() may also include this,
|
||||
# though it's harmless to include regardless.
|
||||
GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \
|
||||
`MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \
|
||||
if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \
|
||||
for x in \
|
||||
libtool.m4 \
|
||||
ltoptions.m4 \
|
||||
ltsugar.m4 \
|
||||
ltversion.m4 \
|
||||
lt~obsolete.m4 \
|
||||
; do echo "$$MACRO_DIR/$$x"; done; \
|
||||
fi`
|
||||
#
|
||||
# Modules that use gettext and use AC_CONFIG_MACRO_DIR() may also include this,
|
||||
# though it's harmless to include regardless.
|
||||
GITIGNORE_MAINTAINERCLEANFILES_M4_GETTEXT = \
|
||||
`MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \
|
||||
if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \
|
||||
for x in \
|
||||
codeset.m4 \
|
||||
extern-inline.m4 \
|
||||
fcntl-o.m4 \
|
||||
gettext.m4 \
|
||||
glibc2.m4 \
|
||||
glibc21.m4 \
|
||||
iconv.m4 \
|
||||
intdiv0.m4 \
|
||||
intl.m4 \
|
||||
intldir.m4 \
|
||||
intlmacosx.m4 \
|
||||
intmax.m4 \
|
||||
inttypes-pri.m4 \
|
||||
inttypes_h.m4 \
|
||||
lcmessage.m4 \
|
||||
lib-ld.m4 \
|
||||
lib-link.m4 \
|
||||
lib-prefix.m4 \
|
||||
lock.m4 \
|
||||
longlong.m4 \
|
||||
nls.m4 \
|
||||
po.m4 \
|
||||
printf-posix.m4 \
|
||||
progtest.m4 \
|
||||
size_max.m4 \
|
||||
stdint_h.m4 \
|
||||
threadlib.m4 \
|
||||
uintmax_t.m4 \
|
||||
visibility.m4 \
|
||||
wchar_t.m4 \
|
||||
wint_t.m4 \
|
||||
xsize.m4 \
|
||||
; do echo "$$MACRO_DIR/$$x"; done; \
|
||||
fi`
|
||||
|
||||
|
||||
|
||||
###############################################################################
|
||||
# Default rule is to install ourselves in all Makefile.am files:
|
||||
###############################################################################
|
||||
|
||||
git-all: git-mk-install
|
||||
|
||||
git-mk-install:
|
||||
@echo "Installing git makefile"
|
||||
@any_failed=; \
|
||||
find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
|
||||
if grep 'include .*/git.mk' $$x >/dev/null; then \
|
||||
echo "$$x already includes git.mk"; \
|
||||
else \
|
||||
failed=; \
|
||||
echo "Updating $$x"; \
|
||||
{ cat $$x; \
|
||||
echo ''; \
|
||||
echo '-include $$(top_srcdir)/git.mk'; \
|
||||
} > $$x.tmp || failed=1; \
|
||||
if test x$$failed = x; then \
|
||||
mv $$x.tmp $$x || failed=1; \
|
||||
fi; \
|
||||
if test x$$failed = x; then : else \
|
||||
echo "Failed updating $$x"; >&2 \
|
||||
any_failed=1; \
|
||||
fi; \
|
||||
fi; done; test -z "$$any_failed"
|
||||
|
||||
git-mk-update:
|
||||
wget $(GIT_MK_URL) -O $(top_srcdir)/git.mk
|
||||
|
||||
.PHONY: git-all git-mk-install git-mk-update
|
||||
|
||||
|
||||
|
||||
###############################################################################
|
||||
# Actual .gitignore generation:
|
||||
###############################################################################
|
||||
|
||||
$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk $(top_srcdir)/configure.ac
|
||||
@echo "git.mk: Generating $@"
|
||||
@{ \
|
||||
if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
|
||||
for x in \
|
||||
$(DOC_MODULE)-decl-list.txt \
|
||||
$(DOC_MODULE)-decl.txt \
|
||||
tmpl/$(DOC_MODULE)-unused.sgml \
|
||||
"tmpl/*.bak" \
|
||||
$(REPORT_FILES) \
|
||||
$(DOC_MODULE).pdf \
|
||||
xml html \
|
||||
; do echo "/$$x"; done; \
|
||||
FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \
|
||||
case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \
|
||||
if echo "$(SCAN_OPTIONS)" | grep -q "\-\-rebuild-types"; then \
|
||||
echo "/$(DOC_MODULE).types"; \
|
||||
fi; \
|
||||
if echo "$(SCAN_OPTIONS)" | grep -q "\-\-rebuild-sections"; then \
|
||||
echo "/$(DOC_MODULE)-sections.txt"; \
|
||||
fi; \
|
||||
if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
|
||||
for x in \
|
||||
$(SETUP_FILES) \
|
||||
$(DOC_MODULE).types \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
fi; \
|
||||
if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
|
||||
for lc in $(DOC_LINGUAS); do \
|
||||
for x in \
|
||||
$(if $(DOC_MODULE),$(DOC_MODULE).xml) \
|
||||
$(DOC_PAGES) \
|
||||
$(DOC_INCLUDES) \
|
||||
; do echo "/$$lc/$$x"; done; \
|
||||
done; \
|
||||
for x in \
|
||||
$(_DOC_OMF_ALL) \
|
||||
$(_DOC_DSK_ALL) \
|
||||
$(_DOC_HTML_ALL) \
|
||||
$(_DOC_MOFILES) \
|
||||
$(DOC_H_FILE) \
|
||||
"*/.xml2po.mo" \
|
||||
"*/*.omf.out" \
|
||||
; do echo /$$x; done; \
|
||||
fi; \
|
||||
if test "x$(HOTDOC)" = x; then :; else \
|
||||
$(foreach project, $(HOTDOC_PROJECTS),echo "/$(call HOTDOC_TARGET,$(project))"; \
|
||||
echo "/$(shell $(call HOTDOC_PROJECT_COMMAND,$(project)) --get-conf-path output)" ; \
|
||||
echo "/$(shell $(call HOTDOC_PROJECT_COMMAND,$(project)) --get-private-folder)" ; \
|
||||
) \
|
||||
for x in \
|
||||
.hotdoc.d \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
|
||||
for lc in $(HELP_LINGUAS); do \
|
||||
for x in \
|
||||
$(HELP_FILES) \
|
||||
"$$lc.stamp" \
|
||||
"$$lc.mo" \
|
||||
; do echo "/$$lc/$$x"; done; \
|
||||
done; \
|
||||
fi; \
|
||||
if test "x$(gsettings_SCHEMAS)" = x; then :; else \
|
||||
for x in \
|
||||
$(gsettings_SCHEMAS:.xml=.valid) \
|
||||
$(gsettings__enum_file) \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test "x$(appdata_XML)" = x; then :; else \
|
||||
for x in \
|
||||
$(appdata_XML:.xml=.valid) \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test "x$(appstream_XML)" = x; then :; else \
|
||||
for x in \
|
||||
$(appstream_XML:.xml=.valid) \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test -f $(srcdir)/po/Makefile.in.in; then \
|
||||
for x in \
|
||||
ABOUT-NLS \
|
||||
po/Makefile.in.in \
|
||||
po/Makefile.in.in~ \
|
||||
po/Makefile.in \
|
||||
po/Makefile \
|
||||
po/Makevars.template \
|
||||
po/POTFILES \
|
||||
po/Rules-quot \
|
||||
po/stamp-it \
|
||||
po/stamp-po \
|
||||
po/.intltool-merge-cache \
|
||||
"po/*.gmo" \
|
||||
"po/*.header" \
|
||||
"po/*.mo" \
|
||||
"po/*.sed" \
|
||||
"po/*.sin" \
|
||||
po/$(GETTEXT_PACKAGE).pot \
|
||||
intltool-extract.in \
|
||||
intltool-merge.in \
|
||||
intltool-update.in \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test -f $(srcdir)/configure; then \
|
||||
for x in \
|
||||
autom4te.cache \
|
||||
configure \
|
||||
config.h \
|
||||
stamp-h1 \
|
||||
libtool \
|
||||
config.lt \
|
||||
; do echo "/$$x"; done; \
|
||||
fi; \
|
||||
if test "x$(DEJATOOL)" = x; then :; else \
|
||||
for x in \
|
||||
$(DEJATOOL) \
|
||||
; do echo "/$$x.sum"; echo "/$$x.log"; done; \
|
||||
echo /site.exp; \
|
||||
fi; \
|
||||
if test "x$(am__dirstamp)" = x; then :; else \
|
||||
echo "$(am__dirstamp)"; \
|
||||
fi; \
|
||||
if test "x$(findstring libtool,$(LTCOMPILE))" = x -a "x$(findstring libtool,$(LTCXXCOMPILE))" = x -a "x$(GTKDOC_RUN)" = x; then :; else \
|
||||
for x in \
|
||||
"*.lo" \
|
||||
".libs" "_libs" \
|
||||
; do echo "$$x"; done; \
|
||||
fi; \
|
||||
for x in \
|
||||
.gitignore \
|
||||
$(GITIGNOREFILES) \
|
||||
$(CLEANFILES) \
|
||||
$(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
|
||||
$(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
|
||||
$(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
|
||||
so_locations \
|
||||
$(MOSTLYCLEANFILES) \
|
||||
$(TEST_LOGS) \
|
||||
$(TEST_LOGS:.log=.trs) \
|
||||
$(TEST_SUITE_LOG) \
|
||||
$(TESTS:=.test) \
|
||||
"*.gcda" \
|
||||
"*.gcno" \
|
||||
$(DISTCLEANFILES) \
|
||||
$(am__CONFIG_DISTCLEAN_FILES) \
|
||||
$(CONFIG_CLEAN_FILES) \
|
||||
TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
|
||||
"*.tab.c" \
|
||||
$(MAINTAINERCLEANFILES) \
|
||||
$(BUILT_SOURCES) \
|
||||
$(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \
|
||||
$(filter %_vala.stamp,$(DIST_COMMON)) \
|
||||
$(filter %.vapi,$(DIST_COMMON)) \
|
||||
$(filter $(addprefix %,$(notdir $(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))))),$(DIST_COMMON)) \
|
||||
Makefile \
|
||||
Makefile.in \
|
||||
"*.orig" \
|
||||
"*.rej" \
|
||||
"*.bak" \
|
||||
"*~" \
|
||||
".*.sw[nop]" \
|
||||
".dirstamp" \
|
||||
; do echo "/$$x"; done; \
|
||||
for x in \
|
||||
"*.$(OBJEXT)" \
|
||||
$(DEPDIR) \
|
||||
; do echo "$$x"; done; \
|
||||
} | \
|
||||
sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
|
||||
sed 's@/[.]/@/@g' | \
|
||||
LC_ALL=C sort | uniq > $@.tmp && \
|
||||
mv $@.tmp $@;
|
||||
|
||||
all: $(srcdir)/.gitignore gitignore-recurse-maybe
|
||||
gitignore: $(srcdir)/.gitignore gitignore-recurse
|
||||
|
||||
gitignore-recurse-maybe:
|
||||
@for subdir in $(DIST_SUBDIRS); do \
|
||||
case " $(SUBDIRS) " in \
|
||||
*" $$subdir "*) :;; \
|
||||
*) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
|
||||
esac; \
|
||||
done
|
||||
gitignore-recurse:
|
||||
@for subdir in $(DIST_SUBDIRS); do \
|
||||
test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \
|
||||
done
|
||||
|
||||
maintainer-clean: gitignore-clean
|
||||
gitignore-clean:
|
||||
-rm -f $(srcdir)/.gitignore
|
||||
|
||||
.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
@ -9,7 +9,7 @@
|
|||
<title>MATE Terminal Manual</title>
|
||||
|
||||
<copyright>
|
||||
<year>2015-2020</year>
|
||||
<year>2015-2021</year>
|
||||
<holder>MATE Documentation Project</holder>
|
||||
</copyright>
|
||||
<copyright>
|
||||
|
|
|
@ -0,0 +1,107 @@
|
|||
af
|
||||
am
|
||||
ar
|
||||
as
|
||||
ast
|
||||
az
|
||||
be
|
||||
bg
|
||||
bn
|
||||
bn_IN
|
||||
br
|
||||
bs
|
||||
ca
|
||||
ca@valencia
|
||||
cmn
|
||||
crh
|
||||
cs
|
||||
cy
|
||||
da
|
||||
de
|
||||
dz
|
||||
el
|
||||
en_AU
|
||||
en_CA
|
||||
en_GB
|
||||
eo
|
||||
es
|
||||
es_AR
|
||||
es_CL
|
||||
es_CO
|
||||
es_ES
|
||||
es_MX
|
||||
es_PR
|
||||
et
|
||||
eu
|
||||
fa
|
||||
fi
|
||||
fr
|
||||
fur
|
||||
fy
|
||||
ga
|
||||
gl
|
||||
gu
|
||||
ha
|
||||
he
|
||||
hi
|
||||
hr
|
||||
hu
|
||||
hy
|
||||
id
|
||||
ie
|
||||
ig
|
||||
is
|
||||
it
|
||||
ja
|
||||
ka
|
||||
kk
|
||||
kn
|
||||
ko
|
||||
ku
|
||||
ku_IQ
|
||||
ky
|
||||
lt
|
||||
lv
|
||||
mai
|
||||
mg
|
||||
mk
|
||||
ml
|
||||
mn
|
||||
mr
|
||||
ms
|
||||
nb
|
||||
nds
|
||||
ne
|
||||
nl
|
||||
nn
|
||||
oc
|
||||
or
|
||||
pa
|
||||
pl
|
||||
ps
|
||||
pt
|
||||
pt_BR
|
||||
ro
|
||||
ru
|
||||
si
|
||||
sk
|
||||
sl
|
||||
sq
|
||||
sr
|
||||
sr@latin
|
||||
sv
|
||||
ta
|
||||
te
|
||||
th
|
||||
tr
|
||||
ug
|
||||
uk
|
||||
ur
|
||||
uz
|
||||
vi
|
||||
wa
|
||||
xh
|
||||
yo
|
||||
zh_CN
|
||||
zh_HK
|
||||
zh_TW
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/mate/teams/13566/af/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/mate/teams/13566/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# samson <sambelet@yahoo.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# samson <sambelet@yahoo.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/mate/teams/13566/am/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: samson <sambelet@yahoo.com>, 2021\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/mate/teams/13566/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,17 +1,20 @@
|
|||
#
|
||||
# Translators:
|
||||
# Mosaab Alzoubi <moceap@hotmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# مهدي السطيفي <chinoune.mehdi@gmail.com>, 2018
|
||||
# Ahmad Dakhlallah <andy.afef@gmail.com>, 2019
|
||||
# Mosaab Alzoubi <moceap@hotmail.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# مهدي السطيفي <chinoune.mehdi@gmail.com>, 2021
|
||||
# Oukiki Saleh <salehoukiki@gmail.com>, 2021
|
||||
# Ahmd go <go.allen@protonmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Ahmad Dakhlallah <andy.afef@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Ahmad Dakhlallah <andy.afef@gmail.com>, 2019\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/mate/teams/13566/ar/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Ahmad Dakhlallah <andy.afef@gmail.com>, 2021\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/mate/teams/13566/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -23,7 +26,8 @@ msgctxt "_"
|
|||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"فريق عيون العرب للترجمة http://www.arabeyes.org :\n"
|
||||
"مصعب الزعبي\t<moceap@hotmail.com>"
|
||||
"مصعب الزعبي\t<moceap@hotmail.com>\n"
|
||||
"لينيكس العرب linuxarabia.co"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -32,7 +36,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -70,7 +74,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "مشروع دليل MATE"
|
||||
msgstr "مشروع توثيق ماتي"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -284,7 +288,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:234
|
||||
msgid "Starting MATE Terminal"
|
||||
msgstr ""
|
||||
msgstr "فتح طرفية ماتي"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:235
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Assamese (https://www.transifex.com/mate/teams/13566/as/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Assamese (https://app.transifex.com/mate/teams/13566/as/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Ḷḷumex03 <tornes@opmbx.org>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Iñigo Varela <ivarela@softastur.org>, 2018
|
||||
# Iñigo Varela <ivarela@softastur.org>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Ḷḷumex03, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Iñigo Varela <ivarela@softastur.org>, 2018\n"
|
||||
"Language-Team: Asturian (https://www.transifex.com/mate/teams/13566/ast/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Ḷḷumex03, 2021\n"
|
||||
"Language-Team: Asturian (https://app.transifex.com/mate/teams/13566/ast/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr "Manual de Terminal MATE"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1296,7 +1297,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:831
|
||||
msgid "Title and Command"
|
||||
msgstr "Titulu y Comandu"
|
||||
msgstr "Títulu y comandu"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:834
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/mate/teams/13566/az/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/mate/teams/13566/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Mihail Varantsou <meequz@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Mihail Varantsou <meequz@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Mihail Varantsou <meequz@gmail.com>, 2018\n"
|
||||
"Language-Team: Belarusian (https://www.transifex.com/mate/teams/13566/be/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Mihail Varantsou <meequz@gmail.com>, 2021\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/mate/teams/13566/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Любомир Василев, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Замфир Йончев <zamfir.yonchev@gmail.com>, 2018
|
||||
# Замфир Йончев <zamfir.yonchev@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Любомир Василев, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Замфир Йончев <zamfir.yonchev@gmail.com>, 2018\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/mate/teams/13566/bg/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2021\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/mate/teams/13566/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -37,7 +38,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Bengali (https://www.transifex.com/mate/teams/13566/bn/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Bengali (https://app.transifex.com/mate/teams/13566/bn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -31,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# umesh agarwal <umesh.agarwal1@gmail.com>, 2018
|
||||
# umesh agarwal <umesh.agarwal1@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: umesh agarwal <umesh.agarwal1@gmail.com>, 2018\n"
|
||||
"Language-Team: Bengali (India) (https://www.transifex.com/mate/teams/13566/bn_IN/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Bengali (India) (https://app.transifex.com/mate/teams/13566/bn_IN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Alan Monfort <alan.monfort@free.fr>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Alan Monfort <alan.monfort@free.fr>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Alan Monfort <alan.monfort@free.fr>, 2018\n"
|
||||
"Language-Team: Breton (https://www.transifex.com/mate/teams/13566/br/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Alan Monfort <alan.monfort@free.fr>, 2021\n"
|
||||
"Language-Team: Breton (https://app.transifex.com/mate/teams/13566/br/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Sky Lion <xskylionx@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Sky Lion <xskylionx@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Sky Lion <xskylionx@gmail.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/mate/teams/13566/bs/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Sky Lion <xskylionx@gmail.com>, 2021\n"
|
||||
"Language-Team: Bosnian (https://app.transifex.com/mate/teams/13566/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Francesc Famadas <kiski97@gmail.com>, 2018
|
||||
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2019
|
||||
# Francesc Famadas, 2021
|
||||
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2019\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/mate/teams/13566/ca/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/mate/teams/13566/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -20,9 +21,8 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Joan Duran <jodufi@gmail.com>, 2007, 2008, 2009\n"
|
||||
"Francesc Famadas <kiski97@gmail.com>, 2018\n"
|
||||
"Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2018, 2019"
|
||||
"Aniol Gervasi <tradueix@gmail.com>, 2009\n"
|
||||
"Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2018, 2019, 2020, 2021"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -31,8 +31,9 @@ msgstr "Manual del terminal de MATE"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
"<year>2015-2021</year> <holder>Projecte de documentació de MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Empar Montoro <emontra2018@gmail.com>, 2018
|
||||
# Jose Alfredo Murcia Andrés <joamuran@gmail.com>, 2018
|
||||
# Pilar Embid <embid.mar@gmail.com>, 2018
|
||||
# Jose Alfredo Murcia Andrés <joamuran@gmail.com>, 2021
|
||||
# Empar Montoro <emontra2018@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Pilar Embid <embid.mar@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Pilar Embid <embid.mar@gmail.com>, 2018\n"
|
||||
"Language-Team: Catalan (Valencian) (https://www.transifex.com/mate/teams/13566/ca@valencia/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Pilar Embid <embid.mar@gmail.com>, 2021\n"
|
||||
"Language-Team: Catalan (Valencian) (https://app.transifex.com/mate/teams/13566/ca@valencia/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -35,7 +36,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# 趙惟倫 <bluebat@member.fsf.org>, 2018
|
||||
# 趙惟倫 <bluebat@member.fsf.org>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: 趙惟倫 <bluebat@member.fsf.org>, 2018\n"
|
||||
"Language-Team: Chinese (Mandarin) (https://www.transifex.com/mate/teams/13566/cmn/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: 趙惟倫 <bluebat@member.fsf.org>, 2021\n"
|
||||
"Language-Team: Chinese (Mandarin) (https://app.transifex.com/mate/teams/13566/cmn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Crimean Turkish (https://www.transifex.com/mate/teams/13566/crh/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Crimean Turkish (https://app.transifex.com/mate/teams/13566/crh/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# LiberteCzech <liberte.czech@gmail.com>, 2018
|
||||
# ToMáš Marný, 2018
|
||||
# Lucas Lommer <drom@kdyne.net>, 2019
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# LiberteCzech <martin.kriz.czech@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# ToMáš Marný, 2021
|
||||
# Lukáš Lommer <drom@kdyne.net>, 2021
|
||||
# Roman Horník <roman.hornik@debian-linux.cz>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Lucas Lommer <drom@kdyne.net>, 2019\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/mate/teams/13566/cs/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Roman Horník <roman.hornik@debian-linux.cz>, 2021\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/mate/teams/13566/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,11 +30,8 @@ msgstr ""
|
|||
"Petr Tomeš <ptomes@gmail.com>\n"
|
||||
"Jakub Friedl <jfriedl@suse.cz>\n"
|
||||
"Lucas Lommer <drom@kdyne.net>\n"
|
||||
"Kamil Páral <ripper42@gmail.com>\n"
|
||||
"Petr Kovář <pknbe@volny.cz>\n"
|
||||
"Adrian Guniš <andygun696@gmail.com>\n"
|
||||
"Roman Horník <roman.hornik@debian-linux.cz>\n"
|
||||
"Jan Lafek <hlafek99@gmail.com>"
|
||||
"Roman Horník <roman.hornik@debian-linux.cz>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -41,8 +40,8 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>Projekt dokumentace MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -60,6 +59,8 @@ msgid ""
|
|||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
msgstr ""
|
||||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:30
|
||||
|
@ -131,7 +132,7 @@ msgstr "Dokumentační projekt GNOME"
|
|||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
msgid "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:71
|
||||
|
@ -155,7 +156,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Dokumentační tým GNOME společnosti Sun"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -284,7 +285,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:229
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "Začínáme"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:230
|
||||
|
@ -1779,6 +1780,8 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"DOKUMENT A JEHO UPRAVENÉ VERZE JSOU ŠÍŘENY V SOULADU SE ZNĚNÍM LICENCE GNU "
|
||||
"FREE DOCUMENTATION LICENSE S NÁSLEDUJÍCÍM USTANOVENÍM: <_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# ciaran, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# ciaran, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: ciaran, 2018\n"
|
||||
"Language-Team: Welsh (https://www.transifex.com/mate/teams/13566/cy/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: ciaran, 2021\n"
|
||||
"Language-Team: Welsh (https://app.transifex.com/mate/teams/13566/cy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Aputsiak Niels Janussen <aj@isit.gl>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Joe Hansen <joedalton2@yahoo.dk>, 2020
|
||||
# Aputsiak Niels Janussen <aputtu@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Joe Hansen <joedalton2@yahoo.dk>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>, 2020\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/mate/teams/13566/da/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>, 2021\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/mate/teams/13566/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -20,10 +21,10 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"\"Joe Hansen, 2012, 2013, 2014, 2015, 2016, 2017, 2018.\\n\"\n"
|
||||
"\"\\n\"\n"
|
||||
"\"Dansk-gruppen <dansk@dansk-gruppen.dk>\\n\"\n"
|
||||
"\"Mere info: http://www.dansk-gruppen.dk\""
|
||||
"Joe Hansen 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021.\n"
|
||||
"\n"
|
||||
"Dansk-gruppen <dansk@dansk-gruppen.dk>\n"
|
||||
"Mere info: http://www.dansk-gruppen.dk"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -32,8 +33,8 @@ msgstr "Manual for MATE-terminalen"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2020</year> <holder>MATE-dokumentationsprojektet</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>MATE-dokumentationsprojektet</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -72,7 +73,7 @@ msgstr "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "MATE-dokumentationsprojektet"
|
||||
msgstr "MATE-dokumentationsprojekt"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -132,7 +133,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "GNOME-dokumentationsprojektet"
|
||||
msgstr "GNOME-dokumentationsprojekt"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -163,7 +164,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr "Sun GNOME-dokumentationsholdet"
|
||||
msgstr "Suns GNOME-dokumentationshold"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -253,7 +254,7 @@ msgstr "<primary>terminalprogram</primary>"
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:203
|
||||
msgid "Introduction"
|
||||
msgstr "Introduktion"
|
||||
msgstr "Indledning"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:204
|
||||
|
@ -316,7 +317,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:229
|
||||
msgid "Getting Started"
|
||||
msgstr "Kom i gang"
|
||||
msgstr "Kom godt i gang"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:230
|
||||
|
@ -344,7 +345,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:240
|
||||
msgid "<guimenu>Applications</guimenu> menu"
|
||||
msgstr "<guimenu>Programmenuen</guimenu>"
|
||||
msgstr "Menuen <guimenu>Programmer</guimenu>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:242
|
||||
|
@ -624,7 +625,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:344
|
||||
msgid "Usage"
|
||||
msgstr "Forbrug"
|
||||
msgstr "Brug"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:346
|
||||
|
@ -1054,7 +1055,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:556
|
||||
msgid "To select and copy text:"
|
||||
msgstr "For at vælge og kopiere tekst"
|
||||
msgstr "For at vælge og kopiere tekst:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:558
|
||||
|
@ -1291,7 +1292,7 @@ msgid ""
|
|||
"In</guimenuitem></menuchoice>."
|
||||
msgstr ""
|
||||
"For at øge tekststørrelsen, vælg "
|
||||
"<menuchoice><guimenu>Visning</guimenu><guimenuitem>Zoom "
|
||||
"<menuchoice><guimenu>Vis</guimenu><guimenuitem>Zoom "
|
||||
"ind</guimenuitem></menuchoice>."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
|
@ -1345,8 +1346,8 @@ msgid ""
|
|||
"Type the new title in the <guilabel>Title</guilabel> text box. "
|
||||
"<application>MATE Terminal</application> applies the change immediately."
|
||||
msgstr ""
|
||||
"Tast den nye titel i tekstboksen <guilabel>Titel</guilabel>. <application"
|
||||
">MATE-terminalen</application> anvender ændringerne umiddelbart."
|
||||
"Tast den nye titel i tekstboksen <guilabel>Titel</guilabel>. "
|
||||
"<application>MATE-terminalen</application> anvender ændringerne umiddelbart."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:679
|
||||
|
@ -1470,7 +1471,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:743
|
||||
msgid "Preferences"
|
||||
msgstr "Præferencer"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:744
|
||||
|
@ -1593,10 +1594,10 @@ msgid ""
|
|||
"select text by word. See <xref linkend=\"mate-terminal-contents\"/> for more"
|
||||
" information about how to select text by word."
|
||||
msgstr ""
|
||||
"Brug denne tekstboks til at angive tegn eller tegngrupper, som <application"
|
||||
">MATE-terminalen</application> anser for at være ord, når du vælger tekst "
|
||||
"efter ord. Se <xref linkend=\"mate-terminal-contents\"/> for yderligere "
|
||||
"information om hvordan tekst efter ord vælges."
|
||||
"Brug denne tekstboks til at angive tegn eller tegngrupper, som "
|
||||
"<application>MATE-terminalen</application> anser for at være ord, når du "
|
||||
"vælger tekst efter ord. Se <xref linkend=\"mate-terminal-contents\"/> for "
|
||||
"yderligere information om hvordan tekst efter ord vælges."
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:831
|
||||
|
@ -2102,10 +2103,10 @@ msgid ""
|
|||
"you can do so by adding a copy of the license to the manual, as described in"
|
||||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Denne manual er en del af en samling af MATE-manualer distribueret under "
|
||||
"GFDL'en. Hvis du ønsker at distribuere denne manual separat fra samlingen, "
|
||||
"du kan gøre dette ved at tilføje en kopi af manualens licens, som beskrevet "
|
||||
"i afsnit 6 af denne licens."
|
||||
"Denne manual er en del af MATE-manualsamlingen distribueret under GFDL. Hvis"
|
||||
" du vil distribuere denne manual separat fra denne samling, kan du gøre det "
|
||||
"ved at tilføje en kopi af licensen til manualen, som beskrevet i sektion 6 "
|
||||
"af licensen."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
@ -2116,11 +2117,11 @@ msgid ""
|
|||
"aware of those trademarks, then the names are in capital letters or initial "
|
||||
"capital letters."
|
||||
msgstr ""
|
||||
"En stor del af de navne som anvendes af firmaer til at identificere deres "
|
||||
"produkter og tjenester hævdes som værende varemærker. Hvor disse navne "
|
||||
"fremgår i en hvilken som helst MATE-dokumentation, og medlemmerne af MATE-"
|
||||
"dokumentationsprojeket er gjort opmærksom på disse varemærker, så er disse "
|
||||
"navne vist med store bogstaver eller stort begyndelsesbogstav."
|
||||
"Mange af navnene brugt af firmaer til at skelne deres produkter og tjenester"
|
||||
" er registrerede varemærker. Der hvor disse navne optræder i MATE-"
|
||||
"dokumentationen, og medlemmerne af MATE-dokumentationsprojektet er blevet "
|
||||
"gjort opmærksomme på disse varemærker, er navnene skrevet med store "
|
||||
"bogstaver eller store forbogstaver."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:36
|
||||
|
@ -2142,14 +2143,14 @@ msgstr ""
|
|||
"GARANTIER OM AT DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET ER FRIT FOR"
|
||||
" DEFEKTER, PASSENDE TIL ET BESTEMT FORMÅL ELLER IKKE-KRÆNKENDE. DU HÆFTER "
|
||||
"SELV FOR HELE RISIKOEN VEDRØRENDE KVALITET, KORREKTHED OG YDELSE FOR "
|
||||
"DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET. SKULLE ET DOKUMENT, ELLER"
|
||||
" EN ÆNDRET VERSION AF ET DOKUMENT VISE SIG AT VÆRE DEFEKT PÅ EN HVILKEN SOM "
|
||||
"DOKUMENTET ELLER ÆNDREDE VERSIONER AF DOKUMENTET. SKULLE ET DOKUMENT, ELLER "
|
||||
"EN ÆNDRET VERSION AF ET DOKUMENT VISE SIG AT VÆRE DEFEKT PÅ EN HVILKEN SOM "
|
||||
"HELST MÅDE, HÆFTER DU FOR BETALING FOR EVENTUEL NØDVENDIG SERVICE, "
|
||||
"REPARATION ELLER KORREKTION (OG IKKE HVERKEN DEN OPRINDELIGE FORFATTER, "
|
||||
"SKRIBENT ELLER NOGEN ANDEN BIDRAGYDER). DENNE ERKLÆRING OM GARANTIFORBEHOLD "
|
||||
"ER EN ESSENTIEL DEL AF DENNE LICENS. INGEN BRUG AF NOGET DOKUMENT ELLER "
|
||||
"ÆNDRET VERSION AF DOKUMENTET ER AUTORISERET HERUNDER BORTSET FRA DENNE "
|
||||
"ANSVARSFRASKRIVELSE OG"
|
||||
"FORBEHOLDSERKLÆRING; OG"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:56
|
||||
|
@ -2168,10 +2169,10 @@ msgstr ""
|
|||
"UNDER INGEN OMSTÆNDIGHEDER OG UNDER INGEN JURIDISK TEORI, UANSET OM DET ER "
|
||||
"EN BEVIDST SKADENDE HANDLING (INKLUSIVE UFORSVARLIGHED) ELLER PÅ HVILKEN SOM"
|
||||
" HELST ANDEN MÅDE, KAN FORFATTEREN, SKRIBENT, BIDRAGYDERE, DISTRIBUTØRER "
|
||||
"ELLER LEVERANDØR AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER GØRES "
|
||||
"ELLER FORSYNER AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER GØRES "
|
||||
"ANSVARLIG OVERFOR NOGEN PERSON FOR NOGEN DIREKTE, INDIREKTE, SPECIEL, "
|
||||
"TILFÆLDIG ELLER FØLGENDE SKADE PÅFØRT NOGEN INKLUSIVE, UDEN BEGRÆNSNING, "
|
||||
"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTERFEJL ELLER -SVIGT, "
|
||||
"SKADE SOM FØLGE AF TAB AF RYGTE, ARBEJDSSTOP, COMPUTER-FEJL ELLER -SVIGT, "
|
||||
"ELLER ENHVER ANDEN FORM FOR SKADE ELLER TAB SOM ER OPSTÅET I FORBINDELSE MED"
|
||||
" BRUG AF DETTE DOKUMENT ELLER MODIFICEREDE VERSIONER HERAF, SELV HVIS EN "
|
||||
"SÅDAN PART HAR VÆRET INFORMERET OM MULIGHEDEN FOR SÅDANNE SKADER."
|
||||
|
@ -2183,13 +2184,14 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"DOKUMENTET OG ÆNDREDE VERSIONER AF DOKUMENTET STILLES TIL RÅDIGHED UNDER GNU"
|
||||
" FREE DOCOMENTATION LICENSE MED FØLGENDE BETINGELSER: <_:orderedlist-1/>"
|
||||
"DETTE DOKUMENT OG MODIFICEREDE VERSIONER GØRES TILGÆNGELIGT UNDER "
|
||||
"BETINGELSERNE I GNU FREE DOCUMENTATION LICENSE UNDER DEN FORUDSÆTNING AT: "
|
||||
"<_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr "Tilbagemeldinger"
|
||||
msgstr "Tilbagemelding"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
@ -2199,5 +2201,6 @@ msgid ""
|
|||
"user-guide/feedback\">MATE Feedback Page</link>."
|
||||
msgstr ""
|
||||
"For at rapportere en fejl eller komme med et forslag jævnfør MATE-terminalen"
|
||||
" eller denne manual, så følg retningslinjerne i <link xlink:href=\"help"
|
||||
":mate-user-guide/feedback\">MATE's side for tilbagemeldinger</link>."
|
||||
" eller denne manual, så følg retningslinjerne i <link "
|
||||
"xlink:href=\"help:mate-user-guide/feedback\">MATE's side for "
|
||||
"tilbagemeldinger</link>."
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
#
|
||||
# Translators:
|
||||
# Moritz Bruder <muesli4@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Tobias Bannert <tobannert@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Julian Rüger <jr98@gmx.net>, 2018
|
||||
# Marcel Artz <email@marcel-artz.de>, 2019
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2019
|
||||
# Moritz Bruder <muesli4@gmail.com>, 2021
|
||||
# Tobias Bannert <tobannert@gmail.com>, 2021
|
||||
# Julian Rüger <jr98@gmx.net>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Marcel Artz <email@marcel-artz.de>, 2021
|
||||
# Xpistian <xpistianbecker2@web.de>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2019\n"
|
||||
"Language-Team: German (https://www.transifex.com/mate/teams/13566/de/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Xpistian <xpistianbecker2@web.de>, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/mate/teams/13566/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +32,8 @@ msgstr ""
|
|||
"Hendrik Richter\n"
|
||||
"Christian Kirbach\n"
|
||||
"Wolfgang Stoeggl\n"
|
||||
"Tobias Bannert"
|
||||
"Tobias Bannert\n"
|
||||
"Marcel Artz"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -39,8 +42,8 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>Mate-Dokumentationsprojekt</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -155,7 +158,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr "Sun GNOME Dokumentationsteam"
|
||||
msgstr "Sun-GNOME-Dokumentationsteam"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -1652,7 +1655,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:1056
|
||||
msgid "Compatibility"
|
||||
msgstr "Kompatibilität"
|
||||
msgstr "SHA1: `12b529d17d1ecef39d9b0e1122fb5271e0534c0a`"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:1059
|
||||
|
@ -1795,14 +1798,19 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"DAS DOKUMENT SOWIE MODIFIZIERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN"
|
||||
" DER GNU FREE DOCUMENTATION LICENSE BEREITGESTELLT, MIT DEM WEITEREN "
|
||||
"DAS DOKUMENT SOWIE VERÄNDERTE VERSIONEN DAVON WERDEN UNTER DEN BEDINGUNGEN "
|
||||
"DER »GNU FREE DOCUMENTATION LICENSE« BEREITGESTELLT, MIT DEM WEITEREN "
|
||||
"VERSTÄNDNIS, DASS: <_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr "Rückmeldungen"
|
||||
msgstr ""
|
||||
"<iframe width=\"640\" height=\"360\" src=\"//www.youtube.com/embed/y4OpjoJiAGE?start=608\" frameborder=\"0\" allowfullscreen></iframe>\n"
|
||||
"\n"
|
||||
"### CuBox i4 Pro Review\n"
|
||||
"\n"
|
||||
"<iframe width=\"640\" height=\"360\" src=\"//www.youtube.com/embed/y4OpjoJiAGE?start=1925\" frameborder=\"0\" allowfullscreen></iframe>"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Dzongkha (https://www.transifex.com/mate/teams/13566/dz/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Dzongkha (https://app.transifex.com/mate/teams/13566/dz/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,20 +1,21 @@
|
|||
#
|
||||
# Translators:
|
||||
# kosmmart <kosmmartak@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# thunk <thunk77@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Αλέξανδρος Καπετάνιος <alexandros@gnugr.org>, 2018
|
||||
# 437c9d6e19936ed69f57bed9e0fe4716, 2018
|
||||
# TheDimitris15 <dhmhtrhs150@gmail.com>, 2019
|
||||
# anvo <fragos.george@hotmail.com>, 2019
|
||||
# anvo <fragos.george@hotmail.com>, 2021
|
||||
# thunk <thunk77@gmail.com>, 2021
|
||||
# 437c9d6e19936ed69f57bed9e0fe4716, 2021
|
||||
# kosmmart <kosmmartak@gmail.com>, 2021
|
||||
# TheDimitris15, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Alexandros Kapetanios <alexandros@gnugr.org>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: anvo <fragos.george@hotmail.com>, 2019\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/mate/teams/13566/el/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n"
|
||||
"Language-Team: Greek (https://app.transifex.com/mate/teams/13566/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -37,7 +38,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1778,10 +1779,9 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"Η οθόνη προσβασιμότητας πληκτρολογίου σας δείχνει την κατάσταση των "
|
||||
"χαρακτηριστικών προσβασιμότητας πληκτρολογίου όταν αυτά χρησιμοποιούνται. "
|
||||
"Για παράδειγμα, μπορείτε να δείτε ποια πλήκτρα τροποποίησης είναι ενεργά και"
|
||||
" ποια κουμπιά του ποντικιού πιέζονται μέσω του πληκτρολογίου."
|
||||
"ΤΟ ΕΓΓΡΑΦΟ ΚΑΙ ΤΡΟΠΟΠΟΙΗΜΕΝΕΣ ΕΚΔΟΣΕΙΣ ΤΟΥ ΕΓΓΡΑΦΟΥ ΠΑΡΕΧΟΝΤΑΙ ΜΕ ΤΟΥΣ ΟΡΟΥΣ"
|
||||
" ΤΗΣ ΑΔΕΙΑΣ ΤΕΚΜΗΡΙΩΣΗ ΕΛΕΥΘΕΡΟΥ ΛΟΓΙΣΜΙΚΟΥ GNU ΜΕ ΤΗΝ ΠΕΡΑΙΤΕΡΩ ΚΑΤΑΝΟΜΗ "
|
||||
"ΟΤΙ: <_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Michael Findlay <translate@cobber-linux.org>, 2018
|
||||
# Michael Findlay <translate@cobber-linux.org>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Michael Findlay <translate@cobber-linux.org>, 2018\n"
|
||||
"Language-Team: English (Australia) (https://www.transifex.com/mate/teams/13566/en_AU/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Michael Findlay <translate@cobber-linux.org>, 2021\n"
|
||||
"Language-Team: English (Australia) (https://app.transifex.com/mate/teams/13566/en_AU/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: English (Canada) (https://www.transifex.com/mate/teams/13566/en_CA/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: English (Canada) (https://app.transifex.com/mate/teams/13566/en_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,17 +1,18 @@
|
|||
#
|
||||
# Translators:
|
||||
# Michael Moroni <michaelmoroni@disroot.org>, 2018
|
||||
# fenris <fenris@folksprak.org>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Forecast <taisto@web.de>, 2018
|
||||
# Cora Loftis, 2018
|
||||
# Michael Moroni <michaelmoroni@disroot.org>, 2021
|
||||
# fenris <fenris@folksprak.org>, 2021
|
||||
# Forecast <taisto@web.de>, 2021
|
||||
# Cora Loftis, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Cora Loftis, 2018\n"
|
||||
"Language-Team: Esperanto (https://www.transifex.com/mate/teams/13566/eo/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Esperanto (https://app.transifex.com/mate/teams/13566/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -38,7 +39,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,32 +1,35 @@
|
|||
#
|
||||
# Translators:
|
||||
# Isabel Ortuño <isabel.ortuno1@gmail.com>, 2018
|
||||
# Adolfo Jayme-Barrientos, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# elio <micta2003@hotmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Joel Barrios <darkshram@gmail.com>, 2018
|
||||
# Andres Sanchez <blackatze93@gmail.com>, 2018
|
||||
# Rodrigo Lledó <rodhos92@gmail.com>, 2019
|
||||
# Toni Estévez <toni.estevez@gmail.com>, 2020
|
||||
# seacat <seacat.linux@gmail.com>, 2021
|
||||
# Adolfo Jayme-Barrientos, 2021
|
||||
# elio <micta2003@hotmail.com>, 2021
|
||||
# Joel Barrios <darkshram@gmail.com>, 2021
|
||||
# Isabel Ortuño <isabel.ortuno1@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Andres Sanchez <blackatze93@gmail.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Rodrigo Lledó <rodhos92@gmail.com>, 2021
|
||||
# Toni Estévez <toni.estevez@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Toni Estévez <toni.estevez@gmail.com>, 2020\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/mate/teams/13566/es/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Toni Estévez <toni.estevez@gmail.com>, 2021\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/mate/teams/13566/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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Toni Estevez <toni.estevez@gmail.com>, 2019\n"
|
||||
"Toni Estevez <toni.estevez@gmail.com>, 2020-2021\n"
|
||||
"Adolfo Jayme Barrientos <fitojb@ubuntu.com>, 2018\n"
|
||||
"Jorge González <jorgegonz@svn.gnome.org>, 2007-2010\n"
|
||||
"Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2003-2006\n"
|
||||
"Pablo Gonzalo del Campo <pablodc@bigfoot.com>, 2002-2003"
|
||||
|
@ -38,9 +41,9 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
"<year>2015-2020</year> <holder>Proyecto de documentación de MATE</holder>"
|
||||
"<year>2015-2021</year> <holder>Proyecto de documentación de MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -1454,7 +1457,7 @@ msgstr ""
|
|||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:931
|
||||
msgid "<guilabel>Custom</guilabel>"
|
||||
msgstr ""
|
||||
msgstr "<guilabel>Personalizado</guilabel>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:934
|
||||
|
@ -1720,10 +1723,10 @@ msgid ""
|
|||
"you can do so by adding a copy of the license to the manual, as described in"
|
||||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Este manual es parte de una colección de manuales de MATE distribuidos "
|
||||
"conforme a la GFDL. Si quiere distribuir este manual por separado de la "
|
||||
"colección, puede hacerlo añadiendo una copia de la licencia al manual, tal "
|
||||
"como se describe en la sección 6 de la licencia."
|
||||
"Este manual es parte de una colección de manuales de MATE distribuidos bajo "
|
||||
"la GFDL. Si quiere distribuir este manual por separado de la colección, "
|
||||
"puede hacerlo añadiendo una copia de la licencia al manual, tal y como se "
|
||||
"describe en la sección 6 de la licencia."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
@ -1734,9 +1737,9 @@ msgid ""
|
|||
"aware of those trademarks, then the names are in capital letters or initial "
|
||||
"capital letters."
|
||||
msgstr ""
|
||||
"Muchos de los nombres utilizados por las empresas para distinguir sus "
|
||||
"productos y servicios se consideran marcas comerciales. Cuando esos nombres "
|
||||
"aparecen en cualquier documentación de MATE y los miembros del proyecto de "
|
||||
"Muchos de los nombres usados por las empresas para distinguir sus productos "
|
||||
"y servicios se consideran marcas comerciales. Cuando esos nombres aparecen "
|
||||
"en cualquier documentación de MATE y los miembros del proyecto de "
|
||||
"documentación de MATE son conscientes de que se trata de marcas registradas,"
|
||||
" dichos nombres se escriben en letras mayúsculas o con inical mayúscula."
|
||||
|
||||
|
@ -1755,8 +1758,8 @@ msgid ""
|
|||
"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
|
||||
"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
|
||||
msgstr ""
|
||||
"EL DOCUMENTO SE PROPORCIONA «TAL CUAL», SIN GARANTÍA DE NINGÚN TIPO, NI "
|
||||
"EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL "
|
||||
"EL DOCUMENTO SE PROPORCIONA «TAL CUAL ESTA», SIN GARANTÍA DE NINGÚN TIPO, NI"
|
||||
" EXPLÍCITA NI IMPLÍCITA, INCLUYENDO, ENTRE OTRAS, LAS GARANTÍAS DE QUE EL "
|
||||
"DOCUMENTO O UNA VERSIÓN MODIFICADA DEL DOCUMENTO CAREZCA DE DEFECTOS "
|
||||
"COMERCIALES, SEA ADECUADO A UN PROPÓSITO PARTICULAR O INCUMPLA ALGUNA "
|
||||
"NORMATIVA. TODO RIESGO EN RELACIÓN CON LA CALIDAD, LA PRECISIÓN Y LA "
|
||||
|
|
|
@ -1,20 +1,21 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Reshi Starkey <rhapsody.girl@gmail.com>, 2018
|
||||
# Dario Badagnani <grupovmo@gmail.com>, 2018
|
||||
# Reshi Starkey <rhapsody.girl@gmail.com>, 2021
|
||||
# Dario Badagnani <grupovmo@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Dario Badagnani <grupovmo@gmail.com>, 2018\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/mate/teams/13566/es_AR/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Spanish (Argentina) (https://app.transifex.com/mate/teams/13566/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_AR\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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,20 +1,21 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# John Toro <johntoro@gmail.com>, 2018
|
||||
# Julian Borrero <julborre@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# John Toro <johntoro@gmail.com>, 2021
|
||||
# Julian Borrero <julborre@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Julian Borrero <julborre@gmail.com>, 2018\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/mate/teams/13566/es_CO/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Julian Borrero <julborre@gmail.com>, 2021\n"
|
||||
"Language-Team: Spanish (Colombia) (https://app.transifex.com/mate/teams/13566/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es_CO\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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Ivar Smolin <okul@linux.ee>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Ivar Smolin <okul@linux.ee>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# vaba <vaba@riseup.net>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/mate/teams/13566/et/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: vaba <vaba@riseup.net>, 2021\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/mate/teams/13566/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -23,7 +25,8 @@ msgstr ""
|
|||
"Ilmar Kerm <ikerm hot ee>, 2001, 2002.\n"
|
||||
"Tõivo Leedjärv <toivo linux ee>, 2002, 2003.\n"
|
||||
"Priit Laes <plaes plaes org>, 2004–2006, 2008, 2009\n"
|
||||
"Ivar Smolin <okul linux ee>, 2005–2010, 2014–2015, 2018."
|
||||
"Ivar Smolin <okul linux ee>, 2005–2010, 2014–2015, 2018.\n"
|
||||
"Marko Silluste, 2021."
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -32,7 +35,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Alexander Gabilondo <alexgabi@disroot.org>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Alexander Gabilondo <alexgabi@disroot.org>, 2021
|
||||
# Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2018\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/mate/teams/13566/eu/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2021\n"
|
||||
"Language-Team: Basque (https://app.transifex.com/mate/teams/13566/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -31,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Borderliner <psyringe@yandex.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Mahdi Pourghasem <mahdipourghasem@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Mahdi Pourghasem <mahdipourghasem@gmail.com>, 2021
|
||||
# Borderliner <psyringe@yandex.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Mahdi Pourghasem <mahdipourghasem@gmail.com>, 2018\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/mate/teams/13566/fa/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Borderliner <psyringe@yandex.com>, 2021\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/mate/teams/13566/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Lasse Liehu <larso@gmx.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Riku Viitanen <riisseli4@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Riku Viitanen <riisseli4@gmail.com>, 2021
|
||||
# Lasse Liehu <larso@gmx.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Riku Viitanen <riisseli4@gmail.com>, 2018\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/mate/teams/13566/fi/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/mate/teams/13566/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -34,7 +35,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,24 +1,28 @@
|
|||
#
|
||||
# Translators:
|
||||
# Laurent Napias <tamplan+transifex@free.fr>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Étienne Deparis <etienne@depar.is>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Xorg, 2018
|
||||
# Guillaume Fayard <guillaume2.fayard@wanadoo.fr>, 2018
|
||||
# Stéphane PETRUS <stephane.petrus@posteo.net>, 2019
|
||||
# Étienne Deparis <etienne@depar.is>, 2021
|
||||
# df3de0cb43d289cd23a753345b3743cd_a20684f, 2021
|
||||
# Guillaume Fayard <guillaume2.fayard@wanadoo.fr>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Tubuntu, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Laurent Napias, 2021
|
||||
# Laurent Napias <tamplan+transifex@free.fr>, 2021
|
||||
# Stéphane PETRUS <stephane.petrus@posteo.net>, 2021
|
||||
# jhoran1us <jhoran1us@yahoo.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stéphane PETRUS <stephane.petrus@posteo.net>, 2019\n"
|
||||
"Language-Team: French (https://www.transifex.com/mate/teams/13566/fr/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: jhoran1us <jhoran1us@yahoo.com>, 2021\n"
|
||||
"Language-Team: French (https://app.transifex.com/mate/teams/13566/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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
|
@ -46,13 +50,13 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>Projet de documentation MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
msgid "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:20
|
||||
|
@ -65,6 +69,8 @@ msgid ""
|
|||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
msgstr ""
|
||||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:30
|
||||
|
@ -79,12 +85,12 @@ msgstr ""
|
|||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:38
|
||||
msgid "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
|
||||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "Le projet de documentation MATE"
|
||||
msgstr "Projet de documentation MATE"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -131,7 +137,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "GNOME Documentation Project"
|
||||
msgstr "Projet de documentation GNOME"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -147,7 +153,7 @@ msgstr ""
|
|||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:84
|
||||
msgid "Paul Cutler"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:80
|
||||
|
@ -184,6 +190,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.4</revnumber> <date>janvier 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
|
@ -196,12 +203,14 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.2</revnumber> <date>août 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.1</revnumber> <date>août 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
|
@ -1448,7 +1457,7 @@ msgstr ""
|
|||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:931
|
||||
msgid "<guilabel>Custom</guilabel>"
|
||||
msgstr ""
|
||||
msgstr "<guilabel>Personnalisé</guilabel>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:934
|
||||
|
@ -1705,6 +1714,14 @@ msgid ""
|
|||
" of the GFDL at this <link xlink:href=\"help:fdl\" type=\"help\">link</link>"
|
||||
" or in the file COPYING-DOCS distributed with this manual."
|
||||
msgstr ""
|
||||
"Permission est accordée de copier, distribuer et/ou modifier ce document "
|
||||
"selon les termes de la Licence GNU de documentation libre (GFDL), Version "
|
||||
"1.1 ou ultérieure publiée par la Free Software Foundation sans section "
|
||||
"inaltérable, sans texte de première page ni de dernière page de couverture. "
|
||||
"Vous trouverez une copie (en anglais) de la GFDL en suivant ce <ulink "
|
||||
"type=\"help\" url=\"https://www.gnu.org/licenses/old-"
|
||||
"licenses/fdl-1.1.html\">lien</ulink> ou dans le fichier COPYING-DOCS fourni "
|
||||
"avec le présent manuel."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:13
|
||||
|
@ -1715,8 +1732,8 @@ msgid ""
|
|||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Ce manuel fait partie de la collection de manuels MATE distribués selon les "
|
||||
"termes de la licence de documentation libre GNU. Si vous souhaitez "
|
||||
"distribuer ce manuel indépendamment de la collection, vous devez joindre un "
|
||||
"termes de la Licence GNU de documentation libre. Si vous souhaitez "
|
||||
"distribuer ce manuel indépendamment de la collection, veuillez joindre un "
|
||||
"exemplaire de la licence au document, comme indiqué dans la section 6 de "
|
||||
"celle-ci."
|
||||
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Friulian (https://www.transifex.com/mate/teams/13566/fur/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Friulian (https://app.transifex.com/mate/teams/13566/fur/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Irish (https://www.transifex.com/mate/teams/13566/ga/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Irish (https://app.transifex.com/mate/teams/13566/ga/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2019
|
||||
# Miguel Anxo Bouzada <mbouzada@gmail.com>, 2020
|
||||
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Miguel Anxo Bouzada <mbouzada@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2020\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/mate/teams/13566/gl/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Galician (https://app.transifex.com/mate/teams/13566/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -31,9 +32,9 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
"<year>2015-2020</year> <holder>Proxecto de documentación do MATE</holder>"
|
||||
"<year>2015-2021</year> <holder>Proxecto de documentación do MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Milan Savaliya <milansavaliyaz@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Milan Savaliya <milansavaliyaz@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/mate/teams/13566/gu/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Milan Savaliya <milansavaliyaz@gmail.com>, 2021\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/mate/teams/13566/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,18 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# בר בוכובזה <bokovzabox@gmail.com>, 2018
|
||||
# Yaron Shahrabani <sh.yaron@gmail.com>, 2019
|
||||
# Yaron Shahrabani <sh.yaron@gmail.com>, 2021
|
||||
# בר בוכובזה <bokovzabox@gmail.com>, 2021
|
||||
# shy tzedaka <shaytzedaka123@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>, 2019\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/mate/teams/13566/he/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: 63f334ffc0709ba0fc2361b80bf3c0f0_00ffd1e <ab96c93ca0ac55ba7fa06385427e60dd_878890>, 2021\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/mate/teams/13566/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -19,7 +22,9 @@ msgstr ""
|
|||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr "Yaron Shahrabani <sh.yaron@gmail.com>"
|
||||
msgstr ""
|
||||
"Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Omer I.S. <omeritzicschwartz@gmail.com>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -28,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -221,7 +226,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:203
|
||||
msgid "Introduction"
|
||||
msgstr "היכרות"
|
||||
msgstr "מבוא"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:204
|
||||
|
@ -268,7 +273,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:229
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "מדריך התחלה"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:230
|
||||
|
@ -304,7 +309,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:247
|
||||
msgid "Command line"
|
||||
msgstr "שורת פקודה"
|
||||
msgstr "שורת הפקודה"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:249
|
||||
|
@ -1749,7 +1754,7 @@ msgstr ""
|
|||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
msgstr "משוב"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Panwar108 <caspian7pena@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Sadgamaya <g.raghavan.g@gmail.com>, 2018
|
||||
# Panwar108 <caspian7pena@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Sadgamaya <g.raghavan.g@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Sadgamaya <g.raghavan.g@gmail.com>, 2018\n"
|
||||
"Language-Team: Hindi (https://www.transifex.com/mate/teams/13566/hi/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Sadgamaya <g.raghavan.g@gmail.com>, 2021\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/mate/teams/13566/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -32,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1190,7 +1191,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:743
|
||||
msgid "Preferences"
|
||||
msgstr "वरीयताएँ"
|
||||
msgstr "सेटिंग्स"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:744
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Elvis M. Lukšić <meluksic@yahoo.com>, 2018
|
||||
# Ivica Kolić <ikoli@yahoo.com>, 2019
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Radovan Gundulić <radovangaming21@gmail.com>, 2021
|
||||
# Ivica Kolić <ikoli@yahoo.com>, 2021
|
||||
# Elvis M. Lukšić <meluksic@yahoo.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Ivica Kolić <ikoli@yahoo.com>, 2019\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/mate/teams/13566/hr/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Elvis M. Lukšić <meluksic@yahoo.com>, 2021\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/mate/teams/13566/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -51,7 +53,7 @@ msgstr "Priručnik MATE terminala"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1539,7 +1541,7 @@ msgstr "Efekti"
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:967
|
||||
msgid "<guilabel>Background</guilabel>"
|
||||
msgstr ""
|
||||
msgstr "<guilabel>Pozadina</guilabel>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:970
|
||||
|
@ -1749,6 +1751,16 @@ msgid ""
|
|||
"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
|
||||
"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
|
||||
msgstr ""
|
||||
"DOKUMENT SE NAVODI NA OSNOVU \"KAKO JE\", BEZ JAMSTVA BILO KOJE VRSTE, "
|
||||
"IZRAŽENE ILI IMPLICIRANE, UKLJUČUJUĆE, BEZ OGRANIČENJA, GARANCIJE DA JE "
|
||||
"DOKUMENT ILI MODIFICIRANA VERZIJA DOKUMENTA BESPLATNA ODBRANJA, . CIJELI "
|
||||
"RIZIK KAKOVOSTI, TOČNOSTI I IZVRŠENJA DOKUMENTA ILI MIJENJENE VERZIJE "
|
||||
"DOKUMENTA JE S Vama. TREBA BITI DOKUMENT ILI MODIFICIRANU VERZIJU DOZVOLITI "
|
||||
"U BILO KOJOM POZNATI, VAM (NE POČETNI PISAC, Autor ili bilo koji dobavljač) "
|
||||
"NARUČITE TROŠKOVE BILO KOJEG POTREBNOG SERVISIRANJA, POPRAVKA ILI POPRAVKE. "
|
||||
"OVO IZricanje odgovornosti jamstva je osnovni dio ove licence. NIKADA "
|
||||
"DOSTAVA DOKUMENTA ILI MIJENJENE VERZIJE DOKUMENTA NIJE OVDJE OVLAŠTENO "
|
||||
"IZVORNO IZ OVOG ODBORA; I"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:56
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
#
|
||||
# Translators:
|
||||
# KAMI KAMI <kami911@gmail.com>, 2018
|
||||
# Rezső Páder <rezso@rezso.net>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Falu <info@falu.me>, 2018
|
||||
# Balázs Meskó <meskobalazs@gmail.com>, 2018
|
||||
# Csaba Székely <szekelycsaba76@gmail.com>, 2019
|
||||
# Rezső Páder <rezso@rezso.net>, 2021
|
||||
# Falu <info@falu.me>, 2021
|
||||
# Csaba Székely <szekelycsaba76@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Balázs Meskó <meskobalazs@mailbox.org>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Csaba Székely <szekelycsaba76@gmail.com>, 2019\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/mate/teams/13566/hu/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Balázs Meskó <meskobalazs@mailbox.org>, 2021\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/mate/teams/13566/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -24,14 +24,14 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Dvornik László<dvornik at mate dot hu>\n"
|
||||
"Kelemen Gábor<kelemeng at mate dot hu>\n"
|
||||
"Tímár András<timar at mate dot hu>\n"
|
||||
"Kalman „KAMI” Szalai<kami911 at gmail dot com>\n"
|
||||
"Falu<info at falu dot me>\n"
|
||||
"Rezső Páder<rezso at rezso dot net>\n"
|
||||
"Zoltán Rápolthy<real_zolee at hotmail dot com>\n"
|
||||
"Meskó Balázs <mesko dot balazs at fsf dot hu>"
|
||||
"Dvornik László <dvornik at mate dot hu>\n"
|
||||
"Kelemen Gábor <kelemeng at mate dot hu>\n"
|
||||
"Kalman „KAMI” Szalai <kami911 at gmail dot com>\n"
|
||||
"Falu <info at falu dot me>\n"
|
||||
"Rezső Páder <rezso at rezso dot net>\n"
|
||||
"Zoltán Rápolthy <real_zolee at hotmail dot com>\n"
|
||||
"Meskó Balázs <mesko dot balazs at fsf dot hu>\n"
|
||||
"Tímár András <timar at mate dot hu>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -40,7 +40,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Siranush <ss.m.95@mail.ru>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Siranush <ss.m.95@mail.ru>, 2021
|
||||
# Avag Sayan <avo777772012@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Siranush <ss.m.95@mail.ru>, 2018\n"
|
||||
"Language-Team: Armenian (https://www.transifex.com/mate/teams/13566/hy/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Avag Sayan <avo777772012@gmail.com>, 2021\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/mate/teams/13566/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -18,7 +20,7 @@ msgstr ""
|
|||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr "թարգմանչի կրեդիտներ"
|
||||
msgstr "թարգմանչի երախտիք"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -27,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -65,7 +67,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "MATE փաստաթղթավորման նախագիծ"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -112,7 +114,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "GNOME փաստաթղթավորման նախագիծ"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -141,7 +143,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME փաստաթղթավորման թիմ"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -1748,7 +1750,7 @@ msgstr ""
|
|||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
msgstr "Արձագանք"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
|
687
help/id/id.po
687
help/id/id.po
File diff suppressed because it is too large
Load Diff
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Caarmi, 2019
|
||||
# Caarmi, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Caarmi, 2019\n"
|
||||
"Language-Team: Interlingue (https://www.transifex.com/mate/teams/13566/ie/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Caarmi, 2021\n"
|
||||
"Language-Team: Interlingue (https://app.transifex.com/mate/teams/13566/ie/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -17,7 +18,7 @@ msgstr ""
|
|||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr "OIS <mistresssilvara@hotmail.com>, 2019"
|
||||
msgstr "OIS <mistresssilvara@hotmail.com>, 2020"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
481
help/it/it.po
481
help/it/it.po
File diff suppressed because it is too large
Load Diff
526
help/ja/ja.po
526
help/ja/ja.po
File diff suppressed because it is too large
Load Diff
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/mate/teams/13566/ka/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Georgian (https://app.transifex.com/mate/teams/13566/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Kazakh (https://www.transifex.com/mate/teams/13566/kk/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>, 2021\n"
|
||||
"Language-Team: Kazakh (https://app.transifex.com/mate/teams/13566/kk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# karthik holla <karthikholla87@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Yogesh K S <yogesh@karnatakaeducation.org.in>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Sai Vinoba <saivinoba@sumati.net>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Yogesh K S <yogesh@karnatakaeducation.org.in>, 2018\n"
|
||||
"Language-Team: Kannada (https://www.transifex.com/mate/teams/13566/kn/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Sai Vinoba <saivinoba@sumati.net>, 2021\n"
|
||||
"Language-Team: Kannada (https://app.transifex.com/mate/teams/13566/kn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -20,7 +20,8 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"ಶಂಕರ್ ಪ್ರಸಾದ್ <svenkate@redhat.com>,ಕಾರ್ತಿಕ ಹೊಳ್ಳ <karthikholla87@gmail.com>"
|
||||
"ಶಂಕರ್ ಪ್ರಸಾದ್ <svenkate@redhat.com>,ಕಾರ್ತಿಕ ಹೊಳ್ಳ "
|
||||
"<karthikholla87@gmail.com>,ಸಾಯಿ ವಿನೋಬ<saivinoba@sumati.net>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1187,7 +1188,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:743
|
||||
msgid "Preferences"
|
||||
msgstr "ಆದ್ಯತೆಗಳು"
|
||||
msgstr "ಒಲವುಗಳು"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:744
|
||||
|
@ -1212,7 +1213,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:763
|
||||
msgid "General"
|
||||
msgstr "ಸಾಮಾನ್ಯ"
|
||||
msgstr "ಎಲ್ಲರ"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:766
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
#
|
||||
# Translators:
|
||||
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# 박정규(Jung-Kyu Park) <bagjunggyu@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# HanSol Park <totron114@gmail.com>, 2018
|
||||
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2021
|
||||
# 1763f4a4329a2376c933c5e919a36cbc_341ca53 <1f851310383599d03339229d772e1290_119292>, 2021
|
||||
# HanSol Park <totron114@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Junghee Lee <daemul72@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: HanSol Park <totron114@gmail.com>, 2018\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/mate/teams/13566/ko/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Junghee Lee <daemul72@gmail.com>, 2021\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/mate/teams/13566/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,6 +29,7 @@ msgstr ""
|
|||
"Yoo Duk Nam https://launchpad.net/~yoo2001818\n"
|
||||
"onlyeriko https://launchpad.net/~onlyeriko\n"
|
||||
"Seong-ho Cho <darkcircle.0426@gmail.com>\n"
|
||||
"JungHee Lee <daemul72@gmail.com>\n"
|
||||
"MATE Desktop Environment Team <https://www.transifex.com/mate/teams/13566/ko/>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
|
@ -36,8 +39,8 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>MATE 문서화 프로젝트</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -55,6 +58,8 @@ msgid ""
|
|||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
msgstr ""
|
||||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:30
|
||||
|
@ -74,7 +79,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "그놈 문서 프로젝트"
|
||||
msgstr "MATE 문서화 프로젝트"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -83,6 +88,8 @@ msgid ""
|
|||
"Team</surname></personname><affiliation> <orgname>MATE DESKTOP</orgname> "
|
||||
"</affiliation>"
|
||||
msgstr ""
|
||||
"<personname><surname>MATE 문서화 팀</surname></personname><affiliation> "
|
||||
"<orgname>MATE 데스크톱</orgname> </affiliation>"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:52
|
||||
|
@ -91,6 +98,9 @@ msgid ""
|
|||
"Team</surname></personname><affiliation> <orgname>Sun Microsystems</orgname>"
|
||||
" </affiliation>"
|
||||
msgstr ""
|
||||
"<personname><firstname>Sun</firstname><surname>GNOME 문서화 "
|
||||
"팀</surname></personname><affiliation> <orgname>Sun Microsystems</orgname> "
|
||||
"</affiliation>"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:55
|
||||
|
@ -99,6 +109,9 @@ msgid ""
|
|||
"Icaza</surname></personname><affiliation> <orgname>GNOME Documentation "
|
||||
"Project</orgname> </affiliation>"
|
||||
msgstr ""
|
||||
"<personname><firstname>Miguel</firstname><surname>de "
|
||||
"Icaza</surname></personname><affiliation> <orgname>GNOME 문서화 프로젝트</orgname> "
|
||||
"</affiliation>"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:58
|
||||
|
@ -106,6 +119,8 @@ msgid ""
|
|||
"<personname><firstname>Michael</firstname><surname>Zucchi</surname></personname><affiliation>"
|
||||
" <orgname>GNOME Documentation Project</orgname> </affiliation>"
|
||||
msgstr ""
|
||||
"<personname><firstname>Michael</firstname><surname>Zucchi</surname></personname><affiliation>"
|
||||
" <orgname>GNOME 문서화 프로젝트</orgname> </affiliation>"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:61
|
||||
|
@ -113,6 +128,8 @@ msgid ""
|
|||
"<personname><firstname>Alexander</firstname><surname>Kirillov</surname></personname><affiliation>"
|
||||
" <orgname>GNOME Documentation Project</orgname> </affiliation>"
|
||||
msgstr ""
|
||||
"<personname><firstname>Alexander</firstname><surname>Kirillov</surname></personname><affiliation>"
|
||||
" <orgname>GNOME 문서화 프로젝트</orgname> </affiliation>"
|
||||
|
||||
#. (itstool) path: publisher/publishername
|
||||
#. (itstool) path: revdescription/para
|
||||
|
@ -121,18 +138,18 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "그놈 문서 프로젝트"
|
||||
msgstr "GNOME 문서화 프로젝트"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
msgid "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:71
|
||||
msgid ""
|
||||
"<revnumber>2.9</revnumber> <date>January 2010</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.9</revnumber> <date>1월 2010</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:84
|
||||
|
@ -143,61 +160,62 @@ msgstr ""
|
|||
#: C/index.docbook:80
|
||||
msgid ""
|
||||
"<revnumber>2.8</revnumber> <date>March 2009</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.8</revnumber> <date>3월 2009</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:92 C/index.docbook:100 C/index.docbook:108
|
||||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME 문서화 팀"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
msgid ""
|
||||
"<revnumber>2.7</revnumber> <date>November 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.7</revnumber> <date>2003년 11월</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:96
|
||||
msgid ""
|
||||
"<revnumber>2.6</revnumber> <date>September 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.6</revnumber> <date>9월 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:104
|
||||
msgid "<revnumber>2.5</revnumber> <date>May 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.5</revnumber> <date>5월 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:116
|
||||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.4</revnumber> <date>1월 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
msgid ""
|
||||
"<revnumber>2.3</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.3</revnumber> <date>8월 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:140
|
||||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.2</revnumber> <date>8월 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.1</revnumber> <date>8월 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
msgid ""
|
||||
"<revnumber>2.0</revnumber> <date>April 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.0</revnumber> <date>4월 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:180
|
||||
|
@ -205,11 +223,13 @@ msgid ""
|
|||
"Miguel de Icaza, Michael Zucchi, Alexander Kirollov "
|
||||
"<email>docs@gnome.org</email>"
|
||||
msgstr ""
|
||||
"Miguel de Icaza, Michael Zucchi, Alexander Kirollov "
|
||||
"<email>docs@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:176
|
||||
msgid "<revnumber>1.0</revnumber> <date>May 2000</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>1.0</revnumber> <date>5월 2000</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: info/releaseinfo
|
||||
#: C/index.docbook:191
|
||||
|
@ -219,12 +239,12 @@ msgstr ""
|
|||
#. (itstool) path: article/indexterm
|
||||
#: C/index.docbook:195
|
||||
msgid "<primary>MATE Terminal</primary>"
|
||||
msgstr ""
|
||||
msgstr "<primary>MATE 터미널</primary>"
|
||||
|
||||
#. (itstool) path: article/indexterm
|
||||
#: C/index.docbook:198
|
||||
msgid "<primary>terminal application</primary>"
|
||||
msgstr ""
|
||||
msgstr "<primary>터미널 애플리케이션</primary>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:203
|
||||
|
@ -361,6 +381,8 @@ msgid ""
|
|||
"external ref='figures/mate-terminal-default.png' "
|
||||
"md5='fccdfe734f4180cb393cd23679d6dd18'"
|
||||
msgstr ""
|
||||
"external ref='figures/mate-terminal-default.png' "
|
||||
"md5='fccdfe734f4180cb393cd23679d6dd18'"
|
||||
|
||||
#. (itstool) path: screenshot/mediaobject
|
||||
#: C/index.docbook:266
|
||||
|
@ -369,6 +391,9 @@ msgid ""
|
|||
"format=\"PNG\"/> </imageobject> <textobject> <phrase>MATE Terminal default "
|
||||
"window</phrase> </textobject>"
|
||||
msgstr ""
|
||||
"<imageobject> <imagedata fileref=\"figures/mate-terminal-default.png\" "
|
||||
"format=\"PNG\"/> </imageobject> <textobject> <phrase>MATE 터미널 기본 창</phrase> "
|
||||
"</textobject>"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:276
|
||||
|
@ -500,6 +525,8 @@ msgid ""
|
|||
"external ref='figures/mate-terminal-tabbed.png' "
|
||||
"md5='fd1c1b81fec91087349f1500b82501fe'"
|
||||
msgstr ""
|
||||
"external ref='figures/mate-terminal-tabbed.png' "
|
||||
"md5='fd1c1b81fec91087349f1500b82501fe'"
|
||||
|
||||
#. (itstool) path: screenshot/mediaobject
|
||||
#: C/index.docbook:325
|
||||
|
@ -508,6 +535,9 @@ msgid ""
|
|||
"format=\"PNG\"/> </imageobject> <textobject> <phrase>MATE Terminal window "
|
||||
"with four tabs</phrase> </textobject>"
|
||||
msgstr ""
|
||||
"<imageobject> <imagedata fileref=\"figures/mate-terminal-tabbed.png\" "
|
||||
"format=\"PNG\"/> </imageobject> <textobject> <phrase>4개의 탭이 있는 MATE 터미널 "
|
||||
"창</phrase> </textobject>"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:335
|
||||
|
@ -1704,8 +1734,8 @@ msgid ""
|
|||
"you can do so by adding a copy of the license to the manual, as described in"
|
||||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"본 설명서는 GFDL에 따라 배포된 그놈 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 6에"
|
||||
" 따라 라이센스 사본을 설명서에 추가하면 됩니다."
|
||||
"본 설명서는 GFDL에 따라 배포된 MATE 설명서 컬렉션의 일부입니다. 본 설명서를 컬렉션과 별도로 배포하려는 경우에는 라이센스 조항 "
|
||||
"6에 따라 라이센스 사본을 설명서에 추가하면 됩니다."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
@ -1716,8 +1746,8 @@ msgid ""
|
|||
"aware of those trademarks, then the names are in capital letters or initial "
|
||||
"capital letters."
|
||||
msgstr ""
|
||||
"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. 그놈 문서에 사용된 이름과 그놈 문서 프로젝트의 구성원은 "
|
||||
"해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다."
|
||||
"기업의 제품과 서비스를 식별하기 위해 사용된 많은 이름은 상표로 간주됩니다. MATE 문서에 사용된 이름과 MATE 문서화 프로젝트의 "
|
||||
"구성원은 해당 상표로, 모두 대문자로 표시되거나 첫 글자가 대문자로 표시되어 있습니다."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:36
|
||||
|
@ -1765,6 +1795,8 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"문서 및 문서의 수정된 버전은 GNU 자유 문서화 라이센스의 조건에 따라 제공되며, 다음 사항을 더 잘 이해하고 있습니다: "
|
||||
"<_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Kurdish (https://www.transifex.com/mate/teams/13566/ku/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Kurdish (https://app.transifex.com/mate/teams/13566/ku/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# chingis, 2018
|
||||
# 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: chingis, 2018\n"
|
||||
"Language-Team: Kyrgyz (https://www.transifex.com/mate/teams/13566/ky/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: 41e38594a6ab66d45dbd71e8e44a0b16_36d21e8, 2021\n"
|
||||
"Language-Team: Kyrgyz (https://app.transifex.com/mate/teams/13566/ky/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Moo, 2018
|
||||
# Džiugas Grėbliūnas <dziugas.grebliunas@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Džiugas Grėbliūnas <dziugas.grebliunas@gmail.com>, 2021
|
||||
# Moo, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Džiugas Grėbliūnas <dziugas.grebliunas@gmail.com>, 2018\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/mate/teams/13566/lt/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Moo, 2021\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/mate/teams/13566/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
"Tomas Kuliavas <tokul@users.sourceforge.net>\n"
|
||||
"Gediminas Paulauskas <menesis@chatsubo.lt>\n"
|
||||
"Moo\n"
|
||||
"Džiugas Grėbliūnas <dziugas.grebliunas@gmail.com>"
|
||||
"Džiugas Grėbliūnas <dziugas.grebliunas@stud.lsmu.lt>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -39,8 +40,8 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>MATE dokumentacijos projektas</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -155,7 +156,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME dokumentacijos komanda"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# ciba43 <voiceofwise1@gmail.com>, 2018
|
||||
# duck <voiceofwise1@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: ciba43 <voiceofwise1@gmail.com>, 2018\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/mate/teams/13566/lv/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/mate/teams/13566/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -29,7 +30,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Maithili (https://www.transifex.com/mate/teams/13566/mai/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Maithili (https://app.transifex.com/mate/teams/13566/mai/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
help_media = [
|
||||
'figures/mate-terminal-default.png',
|
||||
'figures/mate-terminal-tabbed.png',
|
||||
]
|
||||
|
||||
gnome.yelp('mate-terminal',
|
||||
sources: ['index.docbook', 'legal.xml'],
|
||||
media: help_media,
|
||||
symlink_media: true,
|
||||
)
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Malagasy (https://www.transifex.com/mate/teams/13566/mg/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Malagasy (https://app.transifex.com/mate/teams/13566/mg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# exoos <mince.lesovski@gmail.com>, 2018
|
||||
# exoos <mince.lesovski@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: exoos <mince.lesovski@gmail.com>, 2018\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/mate/teams/13566/mk/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Macedonian (https://app.transifex.com/mate/teams/13566/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Malayalam (https://www.transifex.com/mate/teams/13566/ml/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/mate/teams/13566/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/mate/teams/13566/mn/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/mate/teams/13566/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Vaibhav S Dalvi <vaibhav.dlv@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Vaibhav S Dalvi <vaibhav.dlv@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Vaibhav S Dalvi <vaibhav.dlv@gmail.com>, 2018\n"
|
||||
"Language-Team: Marathi (https://www.transifex.com/mate/teams/13566/mr/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Vaibhav S Dalvi <vaibhav.dlv@gmail.com>, 2021\n"
|
||||
"Language-Team: Marathi (https://app.transifex.com/mate/teams/13566/mr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# abuyop <abuyop@gmail.com>, 2019
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# abuyop <abuyop@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: abuyop <abuyop@gmail.com>, 2019\n"
|
||||
"Language-Team: Malay (https://www.transifex.com/mate/teams/13566/ms/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: abuyop <abuyop@gmail.com>, 2021\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/mate/teams/13566/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,8 +28,8 @@ msgstr "Panduan Terminal MATE"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>Projek Dokumentasi MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -1050,7 +1051,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:556
|
||||
msgid "To select and copy text:"
|
||||
msgstr "Untuk memilih dan menyalin teks:"
|
||||
msgstr "Memilih dan menyalin teks:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:558
|
||||
|
@ -1074,7 +1075,7 @@ msgid ""
|
|||
"are selected individually."
|
||||
msgstr ""
|
||||
"Untuk memilih satu perkataan pada satu masa, dwi-klik pada aksara pertama "
|
||||
"yang mahu dipilih kemudian seret tetikus ke aksara terakhir yang "
|
||||
"yang mahu dipilih kemudian seret tetikus ke perkataan terakhir yang "
|
||||
"dikehendaki. Simbol dipilih secara berasingan."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
|
@ -1114,7 +1115,8 @@ msgid ""
|
|||
"a terminal by performing one of the following actions:"
|
||||
msgstr ""
|
||||
"Sebelum ini anda menyalin teks ke dalam papan keratan, anda juga boleh "
|
||||
"menampal teks ke dalam terminal dengan membuat langkah-langkah berikut:"
|
||||
"menampal teks ke dalam terminal dengan membuat salah satu daripada langkah-"
|
||||
"langkah berikut:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:586
|
||||
|
@ -1291,7 +1293,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Untuk besarkan saiz teks, pilih "
|
||||
"<menuchoice><guimenu>Lihat</guimenu><guimenuitem>Zum "
|
||||
"Masuk</guimenuitem></menuchoice>./"
|
||||
"Masuk</guimenuitem></menuchoice>."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:661
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Allan Nordhøy <epost@anotheragency.no>, 2018
|
||||
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2018
|
||||
# Jan Sherdahl, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Allan Nordhøy <epost@anotheragency.no>, 2021
|
||||
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2018\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/mate/teams/13566/nb/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2021\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/mate/teams/13566/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -38,7 +40,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -78,7 +80,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "MATE dokumentasjonsprosjekt"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -125,12 +127,12 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "GNOME dokumentasjonsprosjekt"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
msgid "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:71
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Sven Keeter <sven.keeter@gmail.com>, 2018
|
||||
# chautari <chautari@gmail.com>, 2018
|
||||
# Sven Keeter <sven.keeter@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# chautari <chautari@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: chautari <chautari@gmail.com>, 2018\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/mate/teams/13566/ne/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: chautari <chautari@gmail.com>, 2021\n"
|
||||
"Language-Team: Nepali (https://app.transifex.com/mate/teams/13566/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
#
|
||||
# Translators:
|
||||
# Pjotr <pjotrvertaalt@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Erik Bent <hj.bent.60@gmail.com>, 2018
|
||||
# dragnadh, 2018
|
||||
# René Devers <rene.devers@gmail.com>, 2018
|
||||
# Erik Bent <hj.bent.60@gmail.com>, 2021
|
||||
# dragnadh, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Pjotr <pjotrvertaalt@gmail.com>, 2021
|
||||
# b9b0d258fa591da5350b6e67cf68cd68_9fecbb4 <28506b9ff23f99a34b566250ce31bbad_250479>, 2021
|
||||
# kaasknak, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: René Devers <rene.devers@gmail.com>, 2018\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/mate/teams/13566/nl/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: kaasknak, 2021\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/mate/teams/13566/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -21,18 +23,7 @@ msgstr ""
|
|||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Launchpad-bijdragers:\n"
|
||||
" Daniël H. https://launchpad.net/~daan-is-here\n"
|
||||
" Mark Cilissen https://launchpad.net/~pixlism\n"
|
||||
" Peter van der Does https://launchpad.net/~pdoes\n"
|
||||
" Tom Louwrier https://launchpad.net/~tom-louwrier\n"
|
||||
" Twan Coenraad https://launchpad.net/~t.coenraad\n"
|
||||
" cumulus007 https://launchpad.net/~cumulus-007\n"
|
||||
" kactusrvm https://launchpad.net/~kactusrvm\n"
|
||||
" kriekske https://launchpad.net/~kriekenbuik-gmail\n"
|
||||
"Andere bijdragers:\n"
|
||||
"Pjotr"
|
||||
msgstr "Pjotr (pjotrvertaalt@gmail.com)"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -41,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -181,6 +172,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.4</revnumber> <date>januari 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
|
@ -193,12 +185,14 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.2</revnumber> <date>augustus 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.1</revnumber> <date>augustus 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
|
@ -1712,9 +1706,9 @@ msgid ""
|
|||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Deze handleiding maakt deel uit van een verzameling MATE handleidingen onder"
|
||||
" de GFDL. Als u deze handleiding afzonderlijk wil verspreiden, dan kan u dit"
|
||||
" door een kopie van de licentie van de handleiding toe te voegen, zoals "
|
||||
"beschreven in hoofdstuk 6 van de licentie."
|
||||
" de GFDL. Als u deze handleiding afzonderlijk wilt verspreiden, dan kan u "
|
||||
"dit doen door een kopie van de licentie aan de handleiding toe te voegen, "
|
||||
"zoals beschreven in hoofdstuk 6 van de licentie."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
@ -1725,6 +1719,11 @@ msgid ""
|
|||
"aware of those trademarks, then the names are in capital letters or initial "
|
||||
"capital letters."
|
||||
msgstr ""
|
||||
"Vele van de namen die worden gebruikt door bedrijven om hun producten en "
|
||||
"diensten te onderscheiden zijn vastgelegd als handelsmerken. Wanneer deze "
|
||||
"namen voorkomen in enige MATE documentatie, en wanneer de leden van het MATE"
|
||||
" Documentatie Project hierop attent zijn gemaakt, zullen deze namen in "
|
||||
"hoofdletters zijn of beginnen met hoofdletters."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:36
|
||||
|
@ -1741,6 +1740,18 @@ msgid ""
|
|||
"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
|
||||
"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
|
||||
msgstr ""
|
||||
"HET DOCUMENT WORDT AANGEBODEN OP EEN \"ZOALS HET IS\" BASIS, ZONDER ENIGE "
|
||||
"VORM VAN GARANTIE, ZOWEL UITGESPROKEN ALS GEÏMPLICEERD, INCLUSIEF, ZONDER "
|
||||
"BEPERKINGEN, GARANTIES DAT HET DOCUMENT OF DE AANGEPASTE VERSIE VAN HET "
|
||||
"DOCUMENT VRIJ IS VAN VERHANDELBARE GEBREKEN OF GESCHIKT IS VOOR EEN BEPAALD "
|
||||
"DOEL IS, OF GEEN INBREUK MAAKT. HET VOLLEDIGE RISICO BETREFFENDE DE "
|
||||
"KWALITEIT, ACCURAATHEID, EN PRESTATIES VAN HET DOCUMENT OF DE AANGEPASTE "
|
||||
"VERSIE VAN HET DOCUMENT LIGT BIJ U. INDIEN HET DOCUMENT DEFECT BLIJKT TE "
|
||||
"ZIJN IN ENIGE VORM, ZAL U (NIET DE INITIËLE SCHRIJVER, AUTEUR OF ENIGE "
|
||||
"BIJDRAGER) DE KOSTEN VOOR BENODIGD ONDERHOUD, REPARATIE OF CORRECTIE OP ZICH"
|
||||
" NEMEN. DEZE AANSPRAKELIJKHEIDSUITSLUITING IS EEN WEZENLIJK ONDERDEEL VAN "
|
||||
"DEZE LICENTIE. GEEN ENKEL GEBRUIK VAN DIT DOCUMENT OF AANGEPASTE VERSIE VAN "
|
||||
"HET DOCUMENT IS TOEGESTAAN ZONDER DEZE UITSLUITING VAN AANSPRAKELIJKHEID; EN"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:56
|
||||
|
@ -1756,6 +1767,17 @@ msgid ""
|
|||
"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
|
||||
" POSSIBILITY OF SUCH DAMAGES."
|
||||
msgstr ""
|
||||
"ONDER GEEN ENKELE OMSTANDIGHEDEN EN ONDER GEEN JURIDISCHE THEORIE, ZIJ HET "
|
||||
"WETTELIJK (INCLUSIEF NALATIGHEID), CONTRACT, OF ANDERZIJDS ZAL DE AUTEUR, "
|
||||
"INITIËLE AUTEUR, ENIGE BIJDRAGER VAN HET DOCUMENT OF DE AANGEPASTE VERSIE "
|
||||
"VAN HET DOCUMENT, NOCH ENIGE LEVERANCIER VAN EEN VAN DEZE PARTIJEN, "
|
||||
"AANSPRAKELIJK GEHOUDEN WORDEN DOOR ENIG PERSOON VOOR ENIGE DIRECTE, "
|
||||
"INDIRECTE, SPECIALE, INCIDENTELE, OF GEVOLG SCHADE IN ELKE VORM INCLUSIEF, "
|
||||
"ZONDER BEPERKING, SCHADE DOOR VERLIES VAN GOEDE WIL, WERK ONDERBREKING, "
|
||||
"COMPUTER FALEN OF STORING, OF ENIGE ANDERE VORM VAN SCHADE OF VERLIES ALS "
|
||||
"GEVOLGEN VAN HET GEBRUIKT VAN HET DOCUMENT EN DE AANGEPASTE VERSIES VAN HET "
|
||||
"DOCUMENT, ZELFS ALS ZO EEN PARTIJ GEÏNFORMEERD ZOU ZIJN OVER DE MOGELIJKHEID"
|
||||
" VAN ZULKE SCHADES."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:29
|
||||
|
@ -1764,6 +1786,9 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"HET DOCUMENT EN AANGEPASTE VERSIES VAN HET DOCUMENT WORDEN BESCHIKBAAR "
|
||||
"GESTELD ONDER DE VOORWAARDEN VAN DE GNU FREE DOCUMENTATION LICENTIE WAARBIJ "
|
||||
"BUITENDIEN GELDT DAT: <_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Øystein Steffensen-Alværvik <internett@protonmail.com>, 2018
|
||||
# Øystein Steffensen-Alværvik, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Andrew Rabbitt <rabbitt_a@outlook.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Øystein Steffensen-Alværvik <internett@protonmail.com>, 2018\n"
|
||||
"Language-Team: Norwegian Nynorsk (https://www.transifex.com/mate/teams/13566/nn/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Andrew Rabbitt <rabbitt_a@outlook.com>, 2021\n"
|
||||
"Language-Team: Norwegian Nynorsk (https://app.transifex.com/mate/teams/13566/nn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -20,7 +22,8 @@ msgctxt "_"
|
|||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
|
||||
"Eskild Hustvedt <eskildh@gnome.org>"
|
||||
"Eskild Hustvedt <eskildh@gnome.org>\n"
|
||||
"Andrew J Rabbitt <rabbitt_a@outlook.com>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -29,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -67,7 +70,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "MATE Dokumentasjonsprosjekt"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -114,7 +117,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "GNOME Dokumentasjonsprosjekt"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -143,7 +146,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME Dokumentasjonslag"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -1750,7 +1753,7 @@ msgstr ""
|
|||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
msgstr "Tilbakemelding"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
|
100
help/oc/oc.po
100
help/oc/oc.po
|
@ -1,16 +1,18 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Cédric Valmary <cvalmary@yahoo.fr>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Cfpo Miègjorn-Pirenèus <inactive+cfpomp@transifex.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Cédric Valmary <cvalmary@yahoo.fr>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# 48c2de07903ce5a77a8e90265f95c4c2_8909374 <837c8d0ab97b27e737893c19f79bd4de_348476>, 2021
|
||||
# Quentin PAGÈS, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Cfpo Miègjorn-Pirenèus <inactive+cfpomp@transifex.com>, 2018\n"
|
||||
"Language-Team: Occitan (post 1500) (https://www.transifex.com/mate/teams/13566/oc/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Quentin PAGÈS, 2023\n"
|
||||
"Language-Team: Occitan (post 1500) (https://app.transifex.com/mate/teams/13566/oc/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -21,8 +23,8 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Yannig Marchegay (Kokoyaya) <yannig@marchegay.org> & Cédric Valmary "
|
||||
"(totenoc.eu) <cvalmary@yahoo.fr>"
|
||||
"Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>, Cédric Valmary "
|
||||
"(totenoc.eu) <cvalmary@yahoo.fr>, Quentin Pagès"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -31,13 +33,13 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
msgid "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:20
|
||||
|
@ -50,6 +52,8 @@ msgid ""
|
|||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
msgstr ""
|
||||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:30
|
||||
|
@ -64,7 +68,7 @@ msgstr ""
|
|||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:38
|
||||
msgid "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
|
||||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
|
@ -116,12 +120,12 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr ""
|
||||
msgstr "GNOME Documentation Project"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
msgid "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:71
|
||||
|
@ -132,7 +136,7 @@ msgstr ""
|
|||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:84
|
||||
msgid "Paul Cutler"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:80
|
||||
|
@ -145,7 +149,7 @@ msgstr ""
|
|||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME Documentation Team"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
|
@ -169,6 +173,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
|
@ -181,12 +186,14 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
|
@ -271,7 +278,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:229
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "Començar"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:230
|
||||
|
@ -295,7 +302,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:240
|
||||
msgid "<guimenu>Applications</guimenu> menu"
|
||||
msgstr "Menut <guimenu>Applications</guimenu>"
|
||||
msgstr "Menú <guimenu>Aplicacions</guimenu>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:242
|
||||
|
@ -1510,7 +1517,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:964
|
||||
msgid "Effects"
|
||||
msgstr "Efièches"
|
||||
msgstr "Efèits"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:967
|
||||
|
@ -1586,7 +1593,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:1015
|
||||
msgid "Scrolling"
|
||||
msgstr "Desfilament"
|
||||
msgstr "Defilament"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:1018
|
||||
|
@ -1690,6 +1697,13 @@ msgid ""
|
|||
" of the GFDL at this <link xlink:href=\"help:fdl\" type=\"help\">link</link>"
|
||||
" or in the file COPYING-DOCS distributed with this manual."
|
||||
msgstr ""
|
||||
"Autorizacion vos es donada de copiar, distribuir e/o modificar aqueste "
|
||||
"document segon los tèrmes de la Licéncia GNU Free Documentation License "
|
||||
"(GFDL), Version 1.1 o ulteriora publicada per la Free Software Foundation "
|
||||
"sens seccion inalterabla, sens tèxt de primièra pagina de cubèrta ni tèxt de"
|
||||
" darrièra pagina de cubèrta. Trobaretz un exemplari de la GFDL en seguissent"
|
||||
" aqueste <link xlink:href=\"help:fdl\" type=\"help\">ligam</link> o dins lo "
|
||||
"fichièr COPYING-DOCS provesit amb lo present manual."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:13
|
||||
|
@ -1699,6 +1713,11 @@ msgid ""
|
|||
"you can do so by adding a copy of the license to the manual, as described in"
|
||||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Aqueste manual fa part de la colleccion de manuals de MATE distribuits jols "
|
||||
"tèrmes de la licéncia de documentacion liura GNU. Se volètz distribuir "
|
||||
"aqueste document a despart de la colleccion, o podètz far en ajustant un "
|
||||
"exemplar de la licéncia al manual, coma indicat a la seccion 6 de la "
|
||||
"licéncia."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
@ -1709,6 +1728,11 @@ msgid ""
|
|||
"aware of those trademarks, then the names are in capital letters or initial "
|
||||
"capital letters."
|
||||
msgstr ""
|
||||
"La màger part dels noms utilizats per las entrepresas per distinguir lors "
|
||||
"produches e servicis son de marcas depausadas. Quand aqueles noms apareisson"
|
||||
" dins la documentacion MATE e que los membres del projècte de Documentacion "
|
||||
"MATE son informats de l’existéncia d’aquelas marcas depausadas, siá aqueles "
|
||||
"noms entièrs, siá lor primièra letra es en majuscula."
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:36
|
||||
|
@ -1725,6 +1749,19 @@ msgid ""
|
|||
"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
|
||||
"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
|
||||
msgstr ""
|
||||
"LO DOCUMENT ES PROVESIT « TAL COMA ES » SENS CAP DE GARANTIDA DE QUIN TIPE "
|
||||
"QUE SIÁ, EXPLICITA O IMPLICADA, AQUÒ INCLUTZ, SENS CAP DE LIMIT, LAS "
|
||||
"GARANTIDAS QUE LO DOCUMENT O UNA VERSION MODIFICADA NON AJA PAS CAP DE "
|
||||
"DEFAUT, QUE SIÁ COMERCIABLE, QUE SIÁ ADAPTAT PER UN USATGE PARTICULAR O QUE "
|
||||
"ENFRANGA PAS LA LEI. TOT LO RISC RESPÈCTE A LA QUALITAT, L’EXACTITUD O LAS "
|
||||
"QUALITATS TECNICAS DEL DOCUMENT O DE SAS VERSIONS MODIFICADAS ES VÒSTRE. SE "
|
||||
"PER CAS LO DOCUMENT O UNA VERSION MODIFICADA S’AVERÈSSE DEFECTUÓS AL "
|
||||
"RESPÈCTE DE QUIN ASPÈCTE QUE SIÁ, VOSAUTRES (NON PAS LO REDACTOR INICIAL, "
|
||||
"L’AUTOR O QUIN CONTRIBUIDOR QUE SIÁ) ASSUMISSÈTZ LO CÒST DE TOTA MANTENENÇA,"
|
||||
" REPARACION O CORRECCION NECESSÀRIA. AQUESTA DESCARGA DE GARANTIDA "
|
||||
"CONSTITUÍS UNA PART ESSENCIALA D’AQUESTA LICÉNCIA. CAP D’UTILIZACION "
|
||||
"D’AQUESTE DOCUMENT O VERSION MODIFICADA ES AUTORIZADA LEVAT JOS AQUESTA "
|
||||
"DESCARGA DE GARANTIDA E"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:56
|
||||
|
@ -1740,6 +1777,16 @@ msgid ""
|
|||
"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
|
||||
" POSSIBILITY OF SUCH DAMAGES."
|
||||
msgstr ""
|
||||
"EN CAP DE CIRCONSTÀNCIA E JOS CAP D’INTERPRETACION LEGALA, QUE SIÁ DE "
|
||||
"RESPONSABILITAT CIVILA (NEGLIGÉNCIA INCLUSA), CONTRACTUALA O AUTRA, L’AUTOR,"
|
||||
" LO REDACTOR INICIAL, TOT CONTRIBUIDOR E TOT DISTRIBUIDOR D’AQUESTE DOCUMENT"
|
||||
" O DE SA VERSION MODIFICADA NI CAP DE PROVESIDOR D’AQUESTES PARTS SERÀN PAS "
|
||||
"RESPONSABLES AL RESPÈCTE DE QUIN DAMATGE DIRÈCTE, INDIRÈCTE, ESPECIAL O "
|
||||
"ACCIDENTAL QUE SIÁ DE TOT TIPE E TANBEN, SENS LIMITACION, LOS DAMATGES "
|
||||
"LIGATS A LA PÈRDA DE CLIENTÈLA, LAS INTERRUPCIONS DE TRABALH, ALS "
|
||||
"DEFALHIMENTS E DISFONCIONAMENTS INFORMATICS O TOTA AUTRA PÈRDA LIGADA A "
|
||||
"L’UTILIZACION DEL DOCUMENT E DE SAS VERSIONS MODIFICADAS, ATAL METEIS "
|
||||
"S’AQUESTES PART ÈRAN AVISATS DE LA POSSIBILITAT D’AQUESTES DAMATGES."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:29
|
||||
|
@ -1748,11 +1795,14 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"LOS DOCUMENTS E LAS VERSIONS MODIFICADAS D’AQUESTE DOCUMENT SON FORNITS JOLS"
|
||||
" TÈRMES DE LA LICÉNCIA DE DOCUMENTACION LIURA GNU ESTANT QUE : "
|
||||
"<_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
msgstr "Comentaris"
|
||||
|
||||
#. (itstool) path: formalpara/para
|
||||
#: C/legal.xml:78
|
||||
|
@ -1761,3 +1811,7 @@ msgid ""
|
|||
" or this manual, follow the directions in the <link xlink:href=\"help:mate-"
|
||||
"user-guide/feedback\">MATE Feedback Page</link>."
|
||||
msgstr ""
|
||||
"Per senhalar una avaria o per formular una suggestion a prepaus del Terminal"
|
||||
" MATE o aqueste manual, seguissètz las instruccions dins la <link "
|
||||
"xlink:href=\"help:mate-user-guide/feedback\">pagina de comentaris de "
|
||||
"MATE</link>."
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Oriya (https://www.transifex.com/mate/teams/13566/or/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Odia (https://app.transifex.com/mate/teams/13566/or/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2018\n"
|
||||
"Language-Team: Panjabi (Punjabi) (https://www.transifex.com/mate/teams/13566/pa/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2021\n"
|
||||
"Language-Team: Panjabi (Punjabi) (https://app.transifex.com/mate/teams/13566/pa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -31,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,21 +1,24 @@
|
|||
#
|
||||
# Translators:
|
||||
# Dominik Adrian Grzywak, 2018
|
||||
# Marcin GTriderXC <gtriderxc@yahoo.com>, 2018
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2018
|
||||
# Piotr Strębski <strebski@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Sir Polskacafe, 2018
|
||||
# Przemek P <ppjg@dami.pl>, 2018
|
||||
# Jan Bońkowski <bonkowskijan@gmail.com>, 2019
|
||||
# pietrasagh <pietrasagh@gmail.com>, 2020
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2021
|
||||
# Piotr Strębski <strebski@gmail.com>, 2021
|
||||
# Dominik Adrian Grzywak, 2021
|
||||
# Jan Bońkowski <bonkowskijan@gmail.com>, 2021
|
||||
# Marcin GTriderXC <gtriderxc@yahoo.com>, 2021
|
||||
# Sir Polskacafe, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Przemek P <ppjg@dami.pl>, 2021
|
||||
# Daniel Tokarzewski <bezimo@gmail.com>, 2021
|
||||
# Szymon Blaut <szymonblaut315@gmail.com>, 2021
|
||||
# pietrasagh <kowalik.piotr@pm.me>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: pietrasagh <pietrasagh@gmail.com>, 2020\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/mate/teams/13566/pl/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: pietrasagh <kowalik.piotr@pm.me>, 2022\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/mate/teams/13566/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,10 +29,16 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Tłumacze środowiska MATE, 2013-2014, 2016-2018\n"
|
||||
"Tłumacze środowiska MATE, 2014-2020\n"
|
||||
"\n"
|
||||
"Tomasz Bielecki, 2005\n"
|
||||
"Paweł Marciniak, 2007"
|
||||
"Zbigniew Chyla, 2002-2003\n"
|
||||
"Artur Flinta, 2003-2005\n"
|
||||
"Wadim Dziedzic, 2007-2009\n"
|
||||
"Tomasz Dominikowski, 2008-2009\n"
|
||||
"Joanna Mazgaj, 2009\n"
|
||||
"Piotr Drąg, 2010\n"
|
||||
"Aviary.pl, 2007-2010\n"
|
||||
"Daniel Tokarzewski, 2020"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -38,8 +47,8 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr "<year>2015-2021</year> <holder>dokumentacja projektu MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -125,7 +134,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "GNOME Documentation Project"
|
||||
msgstr "Dokumentacja projektu GNOME"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -283,7 +292,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:229
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "Pierwsze kroki"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:230
|
||||
|
@ -1746,6 +1755,18 @@ msgid ""
|
|||
"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION "
|
||||
"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND"
|
||||
msgstr ""
|
||||
"DOKUMENT JEST DOSTARCZANY W STANIE „TAK JAK JEST”, BEZ JAKIEGOKOLWIEK "
|
||||
"WYRAŻENIA, DOMNIEMANIA GWARANCJI, W TYM MIĘDZY INNYMI GWARANCJI, ŻE "
|
||||
"DOKUMENT LUB ZMODYFIKOWANA WERSJA DOKUMENTU JEST WOLNA OD WAD HANDLOWYCH LUB"
|
||||
" DO OKREŚLONEGO CELU -NARUSZENIE. CAŁKOWITE RYZYKO DOTYCZĄCE JAKOŚCI, "
|
||||
"DOKŁADNOŚCI I WYDAJNOŚCI DOKUMENTU LUB ZMODYFIKOWANEJ WERSJI DOKUMENTU "
|
||||
"SPOCZYWA NA UŻYTKOWNIKU. JEŻELI JAKIKOLWIEK DOKUMENT LUB ZMODYFIKOWANA "
|
||||
"WERSJA OKAŻE SIĘ WADLIWA POD JAKIMKOLWIEK WZGLĘGEM, UŻYTKOWNIK (NIE WSTĘPNY "
|
||||
"PISARZ, AUTOR CZY ŻADEN WSPÓŁPRACOWNIK) PONOSI KOSZTY WSZELKICH NIEZBĘDNYCH "
|
||||
"SERWISÓW, NAPRAW LUB POPRAWEK. NINIEJSZE WYŁĄCZENIE GWARANCJI STANOWI "
|
||||
"ISTOTNĄ CZĘŚĆ LICENCJI. ZGODNIE Z NINIEJSZYM WYŁĄCZENIEM ODPOWIEDZIALNOŚCI "
|
||||
"NIE JEST ZEZWOLONE NA KORZYSTANIE Z JAKICHKOLWIEK DOKUMENTÓW LUB "
|
||||
"ZMODYFIKOWANYCH WERSJI DOKUMENTU; ORAZ "
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/legal.xml:56
|
||||
|
@ -1761,6 +1782,16 @@ msgid ""
|
|||
"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
|
||||
" POSSIBILITY OF SUCH DAMAGES."
|
||||
msgstr ""
|
||||
"W ŻADNYM PRZYPADKU I W ŻADNEJ TEORII PRAWNEJ, CZY W DZIAŁANIU CZYNNYM (W TYM"
|
||||
" ZANIEDBANIA), UMOWY LUB W INNY SPOSÓB, AUTOR, PISARZ WSTĘPNY, "
|
||||
"WSPÓŁPRACOWNIK ANI DYSTRYBUTOR DOKUMENTU LUB ZMODYFIKOWANA WERSJA DOKUMENTU "
|
||||
"TAKICH STRON NIE PONOSI ODPOWIEDZIALNOŚCI WOBEC JAKICHKOLWIEK OSÓB ZA "
|
||||
"JAKIEKOLWIEK BEZPOŚREDNIE, POŚREDNIE, SZCZEGÓLNE, PRZYPADKOWE LUB WTÓRNE "
|
||||
"SZKODY JAKIEGOKOLWIEK CHARAKTERU, W TYM MIĘDZY INNYMI USZKODZENIA ZA UTRATĘ "
|
||||
"WŁAŚCIWOŚCI, PRZERWY W PRACY, AWARIE LUB INNE USZKODZENIA KOMPUTERA LUB "
|
||||
"STRATY WYNIKAJĄCE Z KORZYSTANIA Z DOKUMENTU I ZMODYFIKOWANYCH WERSJI "
|
||||
"DOKUMENTU, NAWET JEŚLI STRONA ZOSTAŁA POINFORMOWANA O MOŻLIWOŚCI WYSTĄPIENIA"
|
||||
" TAKICH SZKÓD."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:29
|
||||
|
@ -1769,6 +1800,9 @@ msgid ""
|
|||
"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: "
|
||||
"<_:orderedlist-1/>"
|
||||
msgstr ""
|
||||
"DOKUMENT I ZMODYFIKOWANE WERSJE DOKUMENTU SĄ DOSTARCZANE NA WARUNKACH "
|
||||
"LICENCJI WOLNEJ DOKUMENTACJI GNU Z DALSZYM ZROZUMIENIEM, "
|
||||
"ŻE:<_:orderedlist-1/>"
|
||||
|
||||
#. (itstool) path: formalpara/title
|
||||
#: C/legal.xml:77
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Pushto (https://www.transifex.com/mate/teams/13566/ps/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Pashto (https://app.transifex.com/mate/teams/13566/ps/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -28,7 +29,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,29 +1,33 @@
|
|||
#
|
||||
# Translators:
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Sérgio Marques <smarquespt@gmail.com>, 2018
|
||||
# Carlos Moreira, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Manuela Silva <manuelarodsilva@gmail.com>, 2018
|
||||
# José Vieira <jvieira33@sapo.pt>, 2018
|
||||
# Rui <xymarior@yandex.com>, 2019
|
||||
# Carlos Moreira, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Manuela Silva <mmsrs@sky.com>, 2021
|
||||
# Sérgio Marques <smarquespt@gmail.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# Rui <xymarior@yandex.com>, 2021
|
||||
# José Vieira <jvieira33@sapo.pt>, 2021
|
||||
# Guilherme Campos <guilhermemiguel97@hotmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Rui <xymarior@yandex.com>, 2019\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/mate/teams/13566/pt/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Guilherme Campos <guilhermemiguel97@hotmail.com>, 2021\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/mate/teams/13566/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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr "créditos - tradução"
|
||||
msgstr ""
|
||||
"Hugo Carvalho <hugokarvalho@hotmail.com>, 2018\n"
|
||||
"José Vieira <jvieira33@sapo.pt>, 2021"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -32,8 +36,9 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -119,7 +124,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "Projeto de Documentação do GNOME"
|
||||
msgstr "Projecto de Documentação do GNOME"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -131,6 +136,7 @@ msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
|||
msgid ""
|
||||
"<revnumber>2.9</revnumber> <date>January 2010</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.9</revnumber> <date>Janeiro 2010</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:84
|
||||
|
@ -142,6 +148,7 @@ msgstr "Paul Cutler"
|
|||
msgid ""
|
||||
"<revnumber>2.8</revnumber> <date>March 2009</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.8</revnumber> <date>Março 2009</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:92 C/index.docbook:100 C/index.docbook:108
|
||||
|
@ -155,17 +162,20 @@ msgstr "Equipa de Documentação Sun GNOME"
|
|||
msgid ""
|
||||
"<revnumber>2.7</revnumber> <date>November 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.7</revnumber> <date>Novembro 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:96
|
||||
msgid ""
|
||||
"<revnumber>2.6</revnumber> <date>September 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.6</revnumber> <date>Setembro 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:104
|
||||
msgid "<revnumber>2.5</revnumber> <date>May 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.5</revnumber> <date>Maio 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:116
|
||||
|
@ -180,6 +190,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.3</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.3</revnumber> <date>Agosto 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:140
|
||||
|
@ -200,6 +211,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.0</revnumber> <date>April 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.0</revnumber> <date>Abril 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:180
|
||||
|
@ -214,6 +226,7 @@ msgstr ""
|
|||
#: C/index.docbook:176
|
||||
msgid "<revnumber>1.0</revnumber> <date>May 2000</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>1.0</revnumber> <date>Maio 2000</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: info/releaseinfo
|
||||
#: C/index.docbook:191
|
||||
|
@ -321,7 +334,7 @@ msgstr "Linha de comando"
|
|||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:249
|
||||
msgid "Execute the following command: <command>mate-terminal</command>"
|
||||
msgstr ""
|
||||
msgstr "Execute o comando seguinte: <command>mate-terminal</command>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:252
|
||||
|
@ -628,7 +641,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:405
|
||||
msgid "Managing Profiles"
|
||||
msgstr ""
|
||||
msgstr "Gerindo Perfis"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:408
|
||||
|
@ -732,7 +745,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:475
|
||||
msgid "To delete a profile:"
|
||||
msgstr ""
|
||||
msgstr "Para apagar um perfil:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:480
|
||||
|
@ -836,7 +849,7 @@ msgstr ""
|
|||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:538
|
||||
msgid "Perform one of the following actions:"
|
||||
msgstr ""
|
||||
msgstr "Execute uma das acções seguintes:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:543
|
||||
|
@ -871,7 +884,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:556
|
||||
msgid "To select and copy text:"
|
||||
msgstr ""
|
||||
msgstr "Para seleccionar e copiar texto:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:558
|
||||
|
@ -952,7 +965,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:604
|
||||
msgid "To access a link:"
|
||||
msgstr ""
|
||||
msgstr "Para aceder a uma hiperligação:"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:606
|
||||
|
@ -1255,7 +1268,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:784
|
||||
msgid "<guilabel>Font</guilabel>"
|
||||
msgstr "<guilabel>Fonte</guilabel>"
|
||||
msgstr "<guilabel>Tipo de Letra</guilabel>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:787
|
||||
|
@ -1392,7 +1405,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:891
|
||||
msgid "Colours"
|
||||
msgstr ""
|
||||
msgstr "Cores"
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:894
|
||||
|
|
|
@ -1,26 +1,30 @@
|
|||
#
|
||||
# Translators:
|
||||
# b36c7cf4cf669a51ae00d04c19629819, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Marcelo Ghelman <marcelo.ghelman@gmail.com>, 2018
|
||||
# Victor Gonçalves <hotcyv@gmail.com>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# 58fae44c6c4ff84516f8c8656a7fb14d, 2018
|
||||
# Italo Penaforte <italo.penaforte@gmail.com>, 2018
|
||||
# Lucas Dias <lucasdiaas@outlook.com>, 2019
|
||||
# George Silva <algoritmo.linux@gmail.com>, 2019
|
||||
# Marcelo Ghelman <marcelo.ghelman@gmail.com>, 2021
|
||||
# Victor Gonçalves <hotcyv@gmail.com>, 2021
|
||||
# Lucas Dias <lucasdiaas@outlook.com>, 2021
|
||||
# Italo Penaforte <italo.penaforte@gmail.com>, 2021
|
||||
# 58fae44c6c4ff84516f8c8656a7fb14d, 2021
|
||||
# b36c7cf4cf669a51ae00d04c19629819, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
# George Silva <algoritmo.linux@gmail.com>, 2021
|
||||
# Josué Teodoro Moreira <jteodomo@gmail.com>, 2021
|
||||
# Luciano Luck, 2022
|
||||
# Doretox <doretox@protonmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: George Silva <algoritmo.linux@gmail.com>, 2019\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/mate/teams/13566/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Doretox <doretox@protonmail.com>, 2022\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/mate/teams/13566/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"
|
||||
|
||||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
|
@ -29,7 +33,6 @@ msgstr ""
|
|||
"Equipe de tradução no Transifex:\n"
|
||||
"Fabrizzio Alphonsus Soares https://www.transifex.com/accounts/profile/fabrizzio\n"
|
||||
"Alberto Federman Neto https://www.transifex.com/accounts/profile/albfneto\n"
|
||||
"Aldo Oliveira https://www.transifex.com/user/profile/AldoBR/\n"
|
||||
"Appes https://www.transifex.com/accounts/profile/apps\n"
|
||||
"arm332 https://www.transifex.com/accounts/profile/arm332\n"
|
||||
"augusteiner https://www.transifex.com/accounts/profile/augusteiner\n"
|
||||
|
@ -48,7 +51,9 @@ msgstr ""
|
|||
"Michele dos Santos da Silva https://www.transifex.com/accounts/profile/mchelem\n"
|
||||
"Thiago Cangussu https://www.transifex.com/accounts/profile/cangussu.thg\n"
|
||||
"vitorgatti https://www.transifex.com/accounts/profile/vitorgatti\n"
|
||||
"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/"
|
||||
"Ítalo Rangel Penaforte https://www.transifex.com/accounts/profile/italo.penaforte\n"
|
||||
"George Salu da Silva https://www.transifex.com/user/profile/George_salu_da_silva/\n"
|
||||
"Josué Teodoro Moreira https://www.transifex.com/user/profile/J0sueTM/"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -57,8 +62,9 @@ msgstr "Manual do Terminal MATE"
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
"<year>2015-2021</year> <holder> Projecto de Documentação do MATE</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
|
@ -263,7 +269,7 @@ msgstr ""
|
|||
#. (itstool) path: info/releaseinfo
|
||||
#: C/index.docbook:191
|
||||
msgid "This manual describes version 1.22 of MATE Terminal."
|
||||
msgstr ""
|
||||
msgstr "Este manual descreve a versão 1.22 do MATE Terminal."
|
||||
|
||||
#. (itstool) path: article/indexterm
|
||||
#: C/index.docbook:195
|
||||
|
@ -303,6 +309,11 @@ msgid ""
|
|||
"specified in your system account. You can switch to a different shell at any"
|
||||
" time."
|
||||
msgstr ""
|
||||
"Uma shell é um programa que interpreta e executa os comandos que você digita"
|
||||
" na interface de linha de comando. Quando você inicia o <application>MATE "
|
||||
"Terminal</application>, a aplicação inicia a shell padrão que é especificada"
|
||||
" na sua conta do sistema. Você pode mudar para uma shell diferente a "
|
||||
"qualquer momento."
|
||||
|
||||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:217
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Daniel <danny3@tutanota.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Daniel <danny3@tutanota.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Daniel <danny3@tutanota.com>, 2018\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/mate/teams/13566/ro/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Daniel <danny3@tutanota.com>, 2021\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/mate/teams/13566/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -27,7 +28,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
642
help/ru/ru.po
642
help/ru/ru.po
File diff suppressed because it is too large
Load Diff
|
@ -1,13 +1,14 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Sinhala (https://www.transifex.com/mate/teams/13566/si/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Sinhala (https://app.transifex.com/mate/teams/13566/si/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -26,7 +27,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
#
|
||||
# Translators:
|
||||
# Ján Ďanovský <dagsoftware@yahoo.com>, 2018
|
||||
# Dušan Kazik <prescott66@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Vendelín Slezák <klaykap@yandex.com>, 2018
|
||||
# Dušan Kazik <prescott66@gmail.com>, 2021
|
||||
# Vendelín Slezák <klaykap@yandex.com>, 2021
|
||||
# Ján Ďanovský <dagsoftware@yahoo.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Vendelín Slezák <klaykap@yandex.com>, 2018\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/mate/teams/13566/sk/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/mate/teams/13566/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -24,7 +25,8 @@ msgstr ""
|
|||
"Stanislav Višňovský\n"
|
||||
"Marcel Telka <marcel@telka.sk>\n"
|
||||
"Tibor Kaputa <tibbbi2@gmail.com>\n"
|
||||
"Dušan Kazik <prescott66@gmail.com>"
|
||||
"Dušan Kazik <prescott66@gmail.com>\n"
|
||||
"Ján Ďanovský <dagsoftware@yahoo.com>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -33,7 +35,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -1760,14 +1762,14 @@ msgid ""
|
|||
"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE"
|
||||
" POSSIBILITY OF SUCH DAMAGES."
|
||||
msgstr ""
|
||||
"V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE(AJ Z "
|
||||
"NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI "
|
||||
"PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANIEJ VERZIE, "
|
||||
"V ŽIADNOM PRÍPADE A ZA ŽIADNYCH PRÁVNYCH TEÓRIÍ, ČI ÚMYSELNÉ UBLÍŽENIE (AJ Z"
|
||||
" NEDBANLIVOSTI), ZMLUVOU, ALEBO INAK SA AUTOR, POČIATOČNÝ SPISOVATEĽ, VŠETCI"
|
||||
" PRISPIEVATELIA, DISTRIBÚTOR DOKUMENTU ALEBO JEHO MODIFIKOVANEJ VERZIE, "
|
||||
"ALEBO DODÁVATEĽ AKEJKOĽVEK STRANY, NEZODPOVEDÁ ŽIADNEJ OSOBE ZA AKÉKOĽVEK "
|
||||
"PRIAME, NEPRIAME, ZVLÁŠTNE, NÁHODNÉ, ALEBO VYPLÝVAJÚCE ŠKODY AKÉHOKOĽVEK "
|
||||
"CHARAKTERU, AKO OBMEDZENIA, STRATA DOBRÉHO MENA, PRERUŠENIE PRÁCE, ZLYHANIE"
|
||||
" POČÍTAČA ČI PORUCHY, ALEBO AKÉKOĽVEK INÉ ŠKODY A STRATY KTORÉ VZNIKNÚ, "
|
||||
"ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZÍ "
|
||||
"ALEBO SA BUDÚ VZŤAHOVAŤ NA POUŽÍVANIE TOHOTO DOKUMENTU ČI ZMENENÝCH VERZIÍ "
|
||||
"TOHTO DOKUMENTU AJ KEĎ STRANA BOLA INFORMOVANÁ O MOŽNOSTI TAKÝCHTO ŠKÔD."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Damir Jerovšek <jierro@windowslive.com>, 2018
|
||||
# jetomit <timotej.lazar@araneo.si>, 2018
|
||||
# Damir Mevkić <damir.mevkic@gmail.com>, 2019
|
||||
# Helena S <ele@tutamail.com>, 2020
|
||||
# Damir Jerovšek <jierro@windowslive.com>, 2021
|
||||
# Damir Mevkić 52K <damir.mevkic@gmail.com>, 2021
|
||||
# jetomit <timotej.lazar@araneo.si>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Helena S <ele@tutamail.com>, 2021
|
||||
# Arnold Marko <arnold.marko@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Helena S <ele@tutamail.com>, 2020\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/mate/teams/13566/sl/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Arnold Marko <arnold.marko@gmail.com>, 2021\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/mate/teams/13566/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +32,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -68,7 +70,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "MATE Projektna dokumentacija"
|
||||
msgstr "MATE projekt dokumentacije"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -115,7 +117,7 @@ msgstr ""
|
|||
#: C/index.docbook:135 C/index.docbook:147 C/index.docbook:159
|
||||
#: C/index.docbook:171 C/index.docbook:184
|
||||
msgid "GNOME Documentation Project"
|
||||
msgstr "GNOME Projektna dokumentacija"
|
||||
msgstr "GNOME Projekt dokumentacije"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
|
@ -168,6 +170,7 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
|
@ -180,12 +183,14 @@ msgstr ""
|
|||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Alban <nofbname@gmail.com>, 2018
|
||||
# Indrit Bashkimi <indrit.bashkimi@gmail.com>, 2018
|
||||
# Ardit Dani <ardit.dani@gmail.com>, 2019
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Alban <nofbname@gmail.com>, 2021
|
||||
# Ardit Dani <ardit.dani@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Ardit Dani <ardit.dani@gmail.com>, 2019\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/mate/teams/13566/sq/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Ardit Dani <ardit.dani@gmail.com>, 2021\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/mate/teams/13566/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -21,6 +21,7 @@ msgstr ""
|
|||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"Ardit Dani <ardit.dani@gmail.com>\n"
|
||||
"Elian Myftiu <elian@alblinux.net>\n"
|
||||
"Indrit Bashkimi <indrit.bashkimi@gmail.com>\n"
|
||||
"Laurent Dhima <laurenti@alblinux.net>"
|
||||
|
@ -32,7 +33,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
@ -70,7 +71,7 @@ msgstr ""
|
|||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
msgid "MATE Documentation Project"
|
||||
msgstr "Dokumentimi Projektit MATE"
|
||||
msgstr "Dokumentacion Projekti MATE"
|
||||
|
||||
#. (itstool) path: authorgroup/author
|
||||
#: C/index.docbook:49
|
||||
|
@ -1190,7 +1191,7 @@ msgstr ""
|
|||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:743
|
||||
msgid "Preferences"
|
||||
msgstr "Parapëlqimet"
|
||||
msgstr "Preferencë"
|
||||
|
||||
#. (itstool) path: section/para
|
||||
#: C/index.docbook:744
|
||||
|
@ -1700,6 +1701,10 @@ msgid ""
|
|||
"you can do so by adding a copy of the license to the manual, as described in"
|
||||
" section 6 of the license."
|
||||
msgstr ""
|
||||
"Ky manual është pjesë e një koleksioni të manualeve të MATE të shpërndara "
|
||||
"nën GFDL. Nëse dëshironi ta shpërndani këtë manual veçmas nga koleksioni, "
|
||||
"mund ta bëni duke shtuar një kopje të licencës në manual, siç përshkruhet në"
|
||||
" seksionin 6 të licencës."
|
||||
|
||||
#. (itstool) path: legalnotice/para
|
||||
#: C/legal.xml:20
|
||||
|
|
663
help/sr/sr.po
663
help/sr/sr.po
File diff suppressed because it is too large
Load Diff
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Ivan Pejić <ipejic@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Ivan Pejić <ipejic@gmail.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2018\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/mate/teams/13566/sr@latin/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Ivan Pejić <ipejic@gmail.com>, 2021\n"
|
||||
"Language-Team: Serbian (Latin) (https://app.transifex.com/mate/teams/13566/sr@latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
|
@ -1,18 +1,21 @@
|
|||
#
|
||||
# Translators:
|
||||
# Kristoffer Grundström <hamnisdude@gmail.com>, 2018
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Henrik Mattsson-Mårn <h@reglage.net>, 2018
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2018
|
||||
# Daniel Gullbransen <daniel@llama.nu>, 2018
|
||||
# crash <d.ubuntu@gmail.com>, 2019
|
||||
# Henrik Mattsson-Mårn <h@reglage.net>, 2021
|
||||
# crash <d.ubuntu@gmail.com>, 2021
|
||||
# eckeman <eckeman@zoho.com>, 2021
|
||||
# Daniel Gullbransen, 2021
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2021
|
||||
# Luna Jernberg <bittin@cafe8bitar.se>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
# Wolfgang Ulbrich <mate@raveit.de>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: crash <d.ubuntu@gmail.com>, 2019\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/mate/teams/13566/sv/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Wolfgang Ulbrich <mate@raveit.de>, 2021\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/mate/teams/13566/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -22,7 +25,7 @@ msgstr ""
|
|||
#. Put one translator per line, in the form NAME <EMAIL>, YEAR1, YEAR2
|
||||
msgctxt "_"
|
||||
msgid "translator-credits"
|
||||
msgstr "Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>"
|
||||
msgstr "Kristoffer Grundström <lovaren@gmail.com>"
|
||||
|
||||
#. (itstool) path: info/title
|
||||
#: C/index.docbook:9
|
||||
|
@ -31,13 +34,13 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:15
|
||||
msgid "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2009</year> <year>2010</year> <holder>Paul Cutler</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:20
|
||||
|
@ -50,6 +53,8 @@ msgid ""
|
|||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
msgstr ""
|
||||
"<year>2002</year> <year>2003</year> <year>2004</year> <holder>Sun "
|
||||
"Microsystems</holder>"
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:30
|
||||
|
@ -64,7 +69,7 @@ msgstr ""
|
|||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:38
|
||||
msgid "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
msgstr ""
|
||||
msgstr "<year>2000</year> <holder>Alexander Kirillov</holder>"
|
||||
|
||||
#. (itstool) path: publisher/publishername
|
||||
#: C/index.docbook:43
|
||||
|
@ -121,78 +126,87 @@ msgstr "Dokumentationsprojekt för GNOME"
|
|||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:75
|
||||
msgid "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler <email>pcutler@gnome.org</email>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:71
|
||||
msgid ""
|
||||
"<revnumber>2.9</revnumber> <date>January 2010</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.9</revnumber> <date>Januari 2010</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:84
|
||||
msgid "Paul Cutler"
|
||||
msgstr ""
|
||||
msgstr "Paul Cutler"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:80
|
||||
msgid ""
|
||||
"<revnumber>2.8</revnumber> <date>March 2009</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.8</revnumber> <date>Mars 2009</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:92 C/index.docbook:100 C/index.docbook:108
|
||||
#: C/index.docbook:120 C/index.docbook:132 C/index.docbook:144
|
||||
#: C/index.docbook:156 C/index.docbook:168
|
||||
msgid "Sun GNOME Documentation Team"
|
||||
msgstr ""
|
||||
msgstr "Sun GNOME Documentation Team"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:88
|
||||
msgid ""
|
||||
"<revnumber>2.7</revnumber> <date>November 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.7</revnumber> <date>November 2003</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:96
|
||||
msgid ""
|
||||
"<revnumber>2.6</revnumber> <date>September 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.6</revnumber> <date>September 2003</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:104
|
||||
msgid "<revnumber>2.5</revnumber> <date>May 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>2.5</revnumber><date>Maj 2003</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:116
|
||||
msgid ""
|
||||
"<revnumber>2.4</revnumber> <date>January 2003</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.4</revnumber> <date>Januari 2003</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:128
|
||||
msgid ""
|
||||
"<revnumber>2.3</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.3</revnumber> <date>Augusti 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:140
|
||||
msgid ""
|
||||
"<revnumber>2.2</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.2</revnumber> <date> Augusti 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:152
|
||||
msgid ""
|
||||
"<revnumber>2.1</revnumber> <date>August 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.1</revnumber> <date>Augusti 2002</date> <_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:164
|
||||
msgid ""
|
||||
"<revnumber>2.0</revnumber> <date>April 2002</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
"<revnumber>2.0</revnumber><date>April 2002</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: revdescription/para
|
||||
#: C/index.docbook:180
|
||||
|
@ -204,7 +218,7 @@ msgstr ""
|
|||
#. (itstool) path: revhistory/revision
|
||||
#: C/index.docbook:176
|
||||
msgid "<revnumber>1.0</revnumber> <date>May 2000</date> <_:revdescription-1/>"
|
||||
msgstr ""
|
||||
msgstr "<revnumber>1.0</revnumber> <date>Maj 2000</date><_:revdescription-1/>"
|
||||
|
||||
#. (itstool) path: info/releaseinfo
|
||||
#: C/index.docbook:191
|
||||
|
@ -356,6 +370,8 @@ msgid ""
|
|||
"external ref='figures/mate-terminal-default.png' "
|
||||
"md5='fccdfe734f4180cb393cd23679d6dd18'"
|
||||
msgstr ""
|
||||
"external ref='figures/mate-terminal-default.png' "
|
||||
"md5='fccdfe734f4180cb393cd23679d6dd18'"
|
||||
|
||||
#. (itstool) path: screenshot/mediaobject
|
||||
#: C/index.docbook:266
|
||||
|
@ -495,6 +511,8 @@ msgid ""
|
|||
"external ref='figures/mate-terminal-tabbed.png' "
|
||||
"md5='fd1c1b81fec91087349f1500b82501fe'"
|
||||
msgstr ""
|
||||
"external ref='figures/mate-terminal-tabbed.png' "
|
||||
"md5='fd1c1b81fec91087349f1500b82501fe'"
|
||||
|
||||
#. (itstool) path: screenshot/mediaobject
|
||||
#: C/index.docbook:325
|
||||
|
@ -1242,7 +1260,7 @@ msgstr ""
|
|||
#. (itstool) path: varlistentry/term
|
||||
#: C/index.docbook:784
|
||||
msgid "<guilabel>Font</guilabel>"
|
||||
msgstr ""
|
||||
msgstr "<guilabel>Teckensnitt</guilabel>"
|
||||
|
||||
#. (itstool) path: listitem/para
|
||||
#: C/index.docbook:787
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#
|
||||
# Translators:
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2018
|
||||
# Mooglie <mooglietech@gmail.com>, 2018
|
||||
# Mooglie <mooglietech@gmail.com>, 2021
|
||||
# Stefano Karapetsas <stefano@karapetsas.com>, 2021
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2020-01-13 14:52+0100\n"
|
||||
"PO-Revision-Date: 2018-10-05 19:26+0000\n"
|
||||
"Last-Translator: Mooglie <mooglietech@gmail.com>, 2018\n"
|
||||
"Language-Team: Tamil (https://www.transifex.com/mate/teams/13566/ta/)\n"
|
||||
"POT-Creation-Date: 2021-01-16 13:37+0100\n"
|
||||
"PO-Revision-Date: 2021-09-21 17:43+0000\n"
|
||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>, 2021\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/mate/teams/13566/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -30,7 +31,7 @@ msgstr ""
|
|||
|
||||
#. (itstool) path: info/copyright
|
||||
#: C/index.docbook:11
|
||||
msgid "<year>2015-2020</year> <holder>MATE Documentation Project</holder>"
|
||||
msgid "<year>2015-2021</year> <holder>MATE Documentation Project</holder>"
|
||||
msgstr ""
|
||||
|
||||
#. (itstool) path: info/copyright
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue