diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 5cf9694..0000000 --- a/.bzrignore +++ /dev/null @@ -1,70 +0,0 @@ -aclocal.m4 -autom4te.cache -*.bz2 -compile -config.h -config.h.in -config.log -config.status -configure -depcomp -gnome-doc-utils.make -*.gz -INSTALL -install-sh -Makefile -Makefile.in -missing -mkinstalldirs -stamp-h -stamp-h1 -stamp-h.in -zenity.spec -data/Makefile -data/Makefile.in -help/C/Makefile -help/C/Makefile.in -help/C/omf_timestamp -help/C/zenity-C.omf.out -help/es/.xml2po.mo -help/es/zenity.xml -help/fr/.xml2po.mo -help/fr/zenity.xml -help/sr/*.in -help/sr/Makefile -help/sr/*.out -help/sr/omf_timestamp -help/uk/.xml2po.mo -help/uk/zenity.xml -help/Makefile -help/Makefile.in -help/zenity-*.omf -po/*.gmo -po/*.mo -po/*.pot -po/Makefile -po/Makefile.in -po/Makefile.in.in -po/POTFILES -po/cat-id-tbl.c -po/stamp-cat-id -po/po2tbl.sed -po/po2tbl.sed.in -po/messages -po/missing -po/stamp-it -src/zenity.gladep -src/zenity -src/Makefile.in -src/Makefile -src/gdialog -help/zenity.pot -src/.deps -help/*/.xml2po.mo -help/bg/zenity.xml -help/de/zenity.xml -help/en_GB/zenity.xml -help/fi/zenity.xml -help/oc/zenity.xml -help/ru/zenity.xml -help/sv/zenity.xml diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index a880aeb..0000000 --- a/.cvsignore +++ /dev/null @@ -1,22 +0,0 @@ -aclocal.m4 -autom4te.cache -*.bz2 -compile -config.h -config.h.in -config.log -config.status -configure -depcomp -gnome-doc-utils.make -*.gz -INSTALL -install-sh -Makefile -Makefile.in -missing -mkinstalldirs -stamp-h -stamp-h1 -stamp-h.in -zenity.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14125a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.vscode +build +CMakeLists.txt.user +*.autosave diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 7437fd7..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,11 +0,0 @@ -variables: - DEPENDENCIES: gettext gettext-devel gcc redhat-rpm-config meson libtool git - gtk3-devel yelp-tools - -build_fedora_33: - image: fedora:33 - before_script: - - dnf install -y --nogpgcheck $DEPENDENCIES - script: - - meson --buildtype=debug build - - ninja -v -C build diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9cda9e0 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,38 @@ +cmake_minimum_required(VERSION 3.13.0) + +# Start Project +project(zenity) + +# PIC +set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) + +# Warnings +add_compile_options(-Wall -Wextra -Werror -Wpointer-arith -Wnull-dereference -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare) +add_link_options(-Wl,--no-undefined) +add_definitions(-D_GNU_SOURCE) +set(CMAKE_C_STANDARD 99) +set(CMAKE_CXX_STANDARD 11) + +# GTK+ +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK3 REQUIRED IMPORTED_TARGET "gtk+-3.0>=3.16.0") +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET "glib-2.0>=2.43.4") +link_libraries(PkgConfig::GTK3 PkgConfig::GLIB) + +# X11 +find_package(X11 REQUIRED) +link_libraries(${X11_LIBRARIES}) + +# Build +add_custom_command( + OUTPUT ".gresource.c" + COMMAND glib-compile-resources + ARGS "--target" "${CMAKE_BINARY_DIR}/.gresource.c" "--generate-source" "--sourcedir" "${CMAKE_SOURCE_DIR}/src" "${CMAKE_SOURCE_DIR}/src/.gresource.xml" + DEPENDS "src/.gresource.xml" "src/zenity.ui" +) +add_executable(zenity src/entry.c src/tree.c src/option.c src/util.c src/main.c "${CMAKE_BINARY_DIR}/.gresource.c") +target_compile_definitions(zenity PRIVATE "-DG_LOG_DOMAIN=\"Zenity\"") + +# Install +install(TARGETS zenity DESTINATION "${CMAKE_INSTALL_BINDIR}") +install(FILES src/zenity.ui DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/zenity") diff --git a/data/.cvsignore b/data/.cvsignore deleted file mode 100644 index 282522d..0000000 --- a/data/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -Makefile -Makefile.in diff --git a/data/meson.build b/data/meson.build deleted file mode 100644 index 339b3cf..0000000 --- a/data/meson.build +++ /dev/null @@ -1,13 +0,0 @@ -install_man('zenity.1') - -install_data( - ['zenity.png', - 'zenity-calendar.png', - 'zenity-list.png', - 'zenity-file.png', - 'zenity-progress.png', - 'zenity-text.png', - 'zenity-scale.png', - 'zenity-entry.png', - 'zenity-notification.png'] - ) diff --git a/data/zenity-calendar.png b/data/zenity-calendar.png deleted file mode 100644 index 873528a..0000000 Binary files a/data/zenity-calendar.png and /dev/null differ diff --git a/data/zenity-entry.png b/data/zenity-entry.png deleted file mode 100644 index 3621ea3..0000000 Binary files a/data/zenity-entry.png and /dev/null differ diff --git a/data/zenity-file.png b/data/zenity-file.png deleted file mode 100644 index bac6392..0000000 Binary files a/data/zenity-file.png and /dev/null differ diff --git a/data/zenity-list.png b/data/zenity-list.png deleted file mode 100644 index 5a593b7..0000000 Binary files a/data/zenity-list.png and /dev/null differ diff --git a/data/zenity-notification.png b/data/zenity-notification.png deleted file mode 100644 index 6b44ef9..0000000 Binary files a/data/zenity-notification.png and /dev/null differ diff --git a/data/zenity-progress.png b/data/zenity-progress.png deleted file mode 100644 index b789e02..0000000 Binary files a/data/zenity-progress.png and /dev/null differ diff --git a/data/zenity-scale.png b/data/zenity-scale.png deleted file mode 100644 index 8526c31..0000000 Binary files a/data/zenity-scale.png and /dev/null differ diff --git a/data/zenity-text.png b/data/zenity-text.png deleted file mode 100644 index 0756992..0000000 Binary files a/data/zenity-text.png and /dev/null differ diff --git a/data/zenity.1 b/data/zenity.1 deleted file mode 100644 index 8b957fa..0000000 --- a/data/zenity.1 +++ /dev/null @@ -1,421 +0,0 @@ -.TH ZENITY 1 "December 2011" -.SH NAME -zenity \- display GTK+ dialogs -.SH SYNOPSIS -.B zenity -.RI [ options ] -.SH DESCRIPTION -\fBzenity\fP is a program that will display GTK+ dialogs, and return -(either in the return code, or on standard output) the users -input. This allows you to present information, and ask for information -from the user, from all manner of shell scripts. -.PP -For example, \fBzenity \-\-question\fP will return either 0, 1 or 5, -depending on whether the user pressed \fIOK\fP, \fICancel\fP or timeout -has been reached. \fBzenity --entry\fP will output on standard output -what the user typed into the text entry field. -.PP -Comprehensive documentation is available in the GNOME Help Browser. -.SH OPTIONS -This program follows the usual GNU command line syntax, with long -options starting with two dashes (`-'). - -.PP -Dialog options - -.TP -.B \-\-calendar -Display calendar dialog -.TP -.B \-\-entry -Display text entry dialog -.TP -.B \-\-error -Display error dialog -.TP -.B \-\-file\-selection -Display file selection dialog -.TP -.B \-\-info -Display info dialog -.TP -.B \-\-list -Display list dialog -.TP -.B \-\-notification -Display notification -.TP -.B \-\-progress -Display progress indication dialog -.TP -.B \-\-question -Display question dialog -.TP -.B \-\-text-info -Display text information dialog -.TP -.B \-\-warning -Display warning dialog -.TP -.B \-\-scale -Display scale dialog -.TP -.B \-\-color-selection -Display color selection dialog -.TP -.B \-\-password -Display password dialog -.TP -.B \-\-forms -Display forms dialog - -.PP -General options - -.TP -.B \-\-title=TITLE -Set the dialog title -.TP -.B \-\-window-icon=ICONPATH -Set the window icon with the path to an image. Alternatively, one of the four stock icons can be used: 'error', 'info', 'question' or 'warning' -.TP -.B \-\-icon-name=ICONNAME -The name of the icon to display on the dialog to override the default stock icons -.TP -.B \-\-width=WIDTH -Set the dialog width -.TP -.B \-\-height=HEIGHT -Set the dialog height -.TP -.B \-\-timeout=TIMEOUT -Set the dialog timeout in seconds -.PP -Calendar options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-day=INT -Set the calendar day -.TP -.B \-\-month=INT -Set the calendar month -.TP -.B \-\-year=INT -Set the calendar year -.TP -.B \-\-date-format=PATTERN -Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y - -.PP -Text entry options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-entry-text=STRING -Set the entry text -.TP -.B \-\-hide-text -Hide the entry text - -.PP -Error options -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-no\-wrap -Do not enable text wrapping -.TP -.B \-\-no\-markup -Do not enable pango markup - -.PP -File selection options -.TP -.B \-\-filename=FILENAME -Set the file or directory to be selected by default -.TP -.B \-\-multiple -Allow selection of multiple filenames in file selection dialog -.TP -.B \-\-directory -Activate directory-only selection -.TP -.B \-\-save -Activate save mode -.TP -.B \-\-separator=SEPARATOR -Specify separator character when returning multiple filenames -.TP -.B \-\-confirm\-overwrite -Confirm file selection if filename already exists -.TP -.B \-\-file\-filter=NAME | PATTERN1 PATTERN2 -Sets a filename filter - - -.PP -Info options -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-no\-wrap -Do not enable text wrapping -.TP -.B \-\-no\-markup -Do not enable pango markup - -.PP -List options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-column=STRING -Set the column header -.TP -.B \-\-checklist -Use check boxes for first column -.TP -.B \-\-radiolist -Use radio buttons for first column -.TP -.B \-\-separator=STRING -Set output separator character -.TP -.B \-\-multiple -Allow multiple rows to be selected -.TP -.B \-\-editable -Allow changes to text -.TP -.B \-\-print-column=NUMBER -Specify what column to print to standard output. The default is to return -the first column. 'ALL' may be used to print all columns. -.TP -.B \-\-hide\-column=NUMBER -Hide a specific column -.TP -.B \-\-hide\-header -Hides the column headers - -.PP -Notification options - -.TP -.B \-\-text=STRING -Set the notification text -.TP -.B \-\-listen -Listen for commands on stdin. Commands include 'message', 'tooltip', 'icon', and 'visible' separated by a colon. For example, 'message: Hello world', 'visible: false', or 'icon: /path/to/icon'. The icon command also accepts the four stock icon: 'error', 'info', 'question', and 'warning' - -.PP -Progress options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-percentage=INT -Set initial percentage -.TP -.B \-\-auto\-close -Close dialog when 100% has been reached -.TP -.B \-\-auto\-kill -Kill parent process if cancel button is pressed -.TP -.B \-\-pulsate -Pulsate progress bar -.TP -.B \-\-no\-cancel -Hides the cancel button - -.PP -Question options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-no\-wrap -Do not enable text wrapping -.TP -.B \-\-no\-markup -Do not enable pango markup -.TP -.B \-\-ok\-label -Set the text of the OK button -.TP -.B \-\-cancel\-label -Set the text of the cancel button - -.PP -Text options - -.TP -.B \-\-filename=FILENAME -Open file -.TP -.B \-\-editable -Allow changes to text -.TP -.B \-\-checkbox=TEXT -Enable a checkbox for use like a 'I read and accept the terms.' -.TP -.B \-\-ok\-label -Set the text of the OK button -.TP -.B \-\-cancel\-label -Set the text of the cancel button - -.PP -Warning options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-no\-wrap -Do not enable text wrapping -.TP -.B \-\-no\-markup -Do not enable pango markup - -.PP -Scale options - -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-value=VALUE -Set initial value -.TP -.B \-\-min\-value=VALUE -Set minimum value -.TP -.B \-\-max\-value=VALUE -Set maximum value -.TP -.B \-\-step=VALUE -Set step size -.TP -.B \-\-print\-partial -Print partial values -.TP -.B \-\-hide\-value -Hide value - -.PP -Color selection options - -.TP -.B \-\-color=VALUE -Set the initial color -.TP -.B \-\-show\-palette -Show the palette - -.PP -Password dialog options - -.TP -.B \-\-username -Display the username field - -.PP -Forms dialog options - -.TP -.B \-\-add\-entry=FIELDNAME -Add a new Entry in forms dialog -.TP -.B \-\-add\-password=FIELDNAME -Add a new Password Entry in forms dialog -.TP -.B \-\-add\-calendar=FIELDNAME -Add a new Calendar in forms dialog -.TP -.B \-\-text=STRING -Set the dialog text -.TP -.B \-\-separator=STRING -Set output separator character -.TP -.B \-\-forms\-date-format=PATTERN -Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y - -.PP -Miscellaneous options - -.TP -.B \-?, \-\-help -Show summary of options. -.TP -.B \-\-about -Display an about dialog. -.TP -.B \-\-version -Show version of program. - -.PP -Also the standard GTK+ options are accepted. For more information about the GTK+ options, execute following command. -.IP -zenity \-\-help\-gtk - -.SH ENVIRONMENT - -Normally, zenity detects the terminal window from which it was launched and -keeps itself above that window. This behavior can be disabled by unsetting the -WINDOWID environment variable. - -.SH EXAMPLES - -Display a file selector with the title \fISelect a file to -remove\fP. The file selected is returned on standard output. -.IP -zenity \-\-title="Select a file to remove" \-\-file-selection -.PP -Display a text entry dialog with the title \fISelect Host\fP and the -text \fISelect the host you would like to flood-ping\fP. The entered -text is returned on standard output. -.IP -zenity \-\-title "Select Host" \-\-entry \-\-text "Select the host you would like to flood-ping" -.PP -Display a dialog, asking \fIMicrosoft Windows has been found! Would -you like to remove it?\fP. The return code will be 0 (true in shell) -if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected. -.IP -zenity \-\-question \-\-title "Alert" \-\-text "Microsoft Windows has been found! Would you like to remove it?" -.PP -Show the search results in a list dialog with the title \fISearch Results\fP -and the text \fIFinding all header files...\fP. -.IP -find . \-name '*.h' | zenity \-\-list \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files" -.PP -Show a notification in the message tray -.IP -zenity \-\-notification \-\-window-icon=update.png \-\-text "System update necessary!" -.PP -Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected -.IP -zenity \-\-list \-\-checklist \-\-column "Buy" \-\-column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste -.PP -Display a progress dialog while searching for all the postscript files in your home directory -.P -find $HOME \-name '*.ps' | zenity \-\-progress \-\-pulsate -.SH AUTHOR -\fBZenity\fP was written by Glynn Foster . -.P -This manual page was written by Ross Burton . - -.SH SEE ALSO -\fBdialog\fP(1) diff --git a/data/zenity.png b/data/zenity.png deleted file mode 100644 index 3c9c59a..0000000 Binary files a/data/zenity.png and /dev/null differ diff --git a/help/.cvsignore b/help/.cvsignore deleted file mode 100644 index c0adfa1..0000000 --- a/help/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Makefile -Makefile.in -zenity-*.omf diff --git a/help/C/.cvsignore b/help/C/.cvsignore deleted file mode 100644 index 66e859f..0000000 --- a/help/C/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -Makefile -Makefile.in -omf_timestamp -zenity-C.omf.out diff --git a/help/C/calendar.page b/help/C/calendar.page deleted file mode 100644 index 22b8bfa..0000000 --- a/help/C/calendar.page +++ /dev/null @@ -1,69 +0,0 @@ - - - - Use the --calendar option. - - - Calendar Dialog -

- Use the --calendar option to create a calendar dialog. Zenity returns the selected date to standard output. If no date is specified on the command line, the dialog uses the current date. -

-

- The calendar dialog supports the following options: -

- - - - - <cmd>--text</cmd>=<var>text</var> -

Specifies the text that is displayed in the calendar dialog.

-
- - - <cmd>--day</cmd>=<var>day</var> -

Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive.

-
- - - <cmd>--month</cmd>=<var>month</var> -

Specifies the month that is selected in the calendar dialog. month must be a number between 1 and 12 inclusive.

-
- - - <cmd>--year</cmd>=<var>year</var> -

Specifies the year that is selected in the calendar dialog.

-
- - - <cmd>--date-format</cmd>=<var>format</var> -

Specifies the format that is returned from the calendar dialog after date selection. The default format depends on your locale. Format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y.

-
- -
- -

- The following example script shows how to create a calendar dialog: -

- - -#!/bin/sh - - -if zenity --calendar \ ---title="Select a Date" \ ---text="Click on a date to select that date." \ ---day=10 --month=8 --year=2004 - then echo $? - else echo "No date selected" -fi - - - -
- Calendar Dialog Example - Zenity calendar dialog example - -
-
diff --git a/help/C/color-selection.page b/help/C/color-selection.page deleted file mode 100644 index 6a3bd28..0000000 --- a/help/C/color-selection.page +++ /dev/null @@ -1,56 +0,0 @@ - - - - Use the --color-selection option. - - - Color Selection Dialog -

- Use the --color-selection option to create a color selection dialog. -

-

- The color selection dialog supports the following options: -

- - - - - <cmd>--color</cmd>=<var>VALUE</var> -

Set the initial color.(ex: #FF0000)

-
- - - <cmd>--show-palette</cmd> -

Show the palette.

-
- -
- -

- The following example script shows how to create a color selection dialog: -

- - -#!/bin/sh - -COLOR=`zenity --color-selection --show-palette` - -case $? in - 0) - echo "You selected $COLOR.";; - 1) - echo "No color selected.";; - -1) - echo "An unexpected error has occurred.";; -esac - - -
- Color Selection Dialog Example - Zenity color selection dialog example - -
- -
diff --git a/help/C/entry.page b/help/C/entry.page deleted file mode 100644 index baa6924..0000000 --- a/help/C/entry.page +++ /dev/null @@ -1,58 +0,0 @@ - - - - Use the --entry option. - - - Text Entry Dialog -

- Use the --entry option to create a text entry dialog. Zenity returns the contents of the text entry to standard output. -

-

- The text entry dialog supports the following options: -

- - - - - <cmd>--text</cmd>=<var>text</var> -

Specifies the text that is displayed in the text entry dialog.

-
- - - <cmd>--entry-text</cmd>=<var>text</var> -

Specifies the text that is displayed in the entry field of the text entry dialog.

-
- - - <cmd>--hide-text</cmd> -

Hides the text in the entry field of the text entry dialog.

-
- -
- -

- The following example script shows how to create a text entry dialog: -

- - -#!/bin/sh - -if zenity --entry \ ---title="Add new profile" \ ---text="Enter name of new profile:" \ ---entry-text "NewProfile" - then echo $? - else echo "No name entered" -fi - - - -
- Text Entry Dialog Example - Zenity text entry dialog example - -
-
diff --git a/help/C/error.page b/help/C/error.page deleted file mode 100644 index 78c6315..0000000 --- a/help/C/error.page +++ /dev/null @@ -1,31 +0,0 @@ - - - - Use the --error option. - - - Error Dialog -

- Use the --error option to create an error dialog. -

- -

- The following example script shows how to create an error dialog: -

- - -#!/bin/bash - -zenity --error \ ---text="Could not find /var/log/syslog." - - - -
- Error Dialog Example - Zenity error dialog example - -
-
diff --git a/help/C/figures/zenity-calendar-screenshot.png b/help/C/figures/zenity-calendar-screenshot.png deleted file mode 100644 index 7e5f1e3..0000000 Binary files a/help/C/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-colorselection-screenshot.png b/help/C/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index ba9e2b7..0000000 Binary files a/help/C/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-entry-screenshot.png b/help/C/figures/zenity-entry-screenshot.png deleted file mode 100644 index 8035893..0000000 Binary files a/help/C/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-error-screenshot.png b/help/C/figures/zenity-error-screenshot.png deleted file mode 100644 index bcebe83..0000000 Binary files a/help/C/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-fileselection-screenshot.png b/help/C/figures/zenity-fileselection-screenshot.png deleted file mode 100644 index c65720a..0000000 Binary files a/help/C/figures/zenity-fileselection-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-forms-screenshot.png b/help/C/figures/zenity-forms-screenshot.png deleted file mode 100644 index da0b1cb..0000000 Binary files a/help/C/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-information-screenshot.png b/help/C/figures/zenity-information-screenshot.png deleted file mode 100644 index 8219e2f..0000000 Binary files a/help/C/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-list-screenshot.png b/help/C/figures/zenity-list-screenshot.png deleted file mode 100644 index dd82bf5..0000000 Binary files a/help/C/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-notification-listen-screenshot.png b/help/C/figures/zenity-notification-listen-screenshot.png deleted file mode 100644 index 54ff142..0000000 Binary files a/help/C/figures/zenity-notification-listen-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-notification-screenshot.png b/help/C/figures/zenity-notification-screenshot.png deleted file mode 100644 index 8632fca..0000000 Binary files a/help/C/figures/zenity-notification-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-password-screenshot.png b/help/C/figures/zenity-password-screenshot.png deleted file mode 100644 index e6b501b..0000000 Binary files a/help/C/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-progress-screenshot.png b/help/C/figures/zenity-progress-screenshot.png deleted file mode 100644 index f415820..0000000 Binary files a/help/C/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-question-screenshot.png b/help/C/figures/zenity-question-screenshot.png deleted file mode 100644 index f772438..0000000 Binary files a/help/C/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-scale-screenshot.png b/help/C/figures/zenity-scale-screenshot.png deleted file mode 100644 index 28beeca..0000000 Binary files a/help/C/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-text-screenshot.png b/help/C/figures/zenity-text-screenshot.png deleted file mode 100644 index b108368..0000000 Binary files a/help/C/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/C/figures/zenity-warning-screenshot.png b/help/C/figures/zenity-warning-screenshot.png deleted file mode 100644 index 85830c2..0000000 Binary files a/help/C/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/C/file-selection.page b/help/C/file-selection.page deleted file mode 100644 index ed1a4bb..0000000 --- a/help/C/file-selection.page +++ /dev/null @@ -1,71 +0,0 @@ - - - - Use the --file-selection option. - - - File Selection Dialog -

- Use the --file-selection option to create a file selection dialog. Zenity returns the selected files or directories to standard - output. The default mode of the file selection dialog is open. -

-

- The file selection dialog supports the following options: -

- - - - - <cmd>--filename</cmd>=<var>filename</var> -

Specifies the file or directory that is selected in the file selection dialog when the dialog is first shown.

-
- - - <cmd>--multiple</cmd> -

Allows the selection of multiple filenames in the file selection dialog.

-
- - - <cmd>--directory</cmd> -

Allows only selection of directories in the file selection dialog.

-
- - - <cmd>--save</cmd> -

Set the file selection dialog into save mode.

-
- - - <cmd>--separator</cmd>=<var>separator</var> -

Specifies the string that is used to divide the returned list of filenames.

-
- -
- -

- The following example script shows how to create a file selection dialog: -

- - -#!/bin/sh - -FILE=`zenity --file-selection --title="Select a File"` - -case $? in - 0) - echo "\"$FILE\" selected.";; - 1) - echo "No file selected.";; - -1) - echo "An unexpected error has occurred.";; -esac - - -
- File Selection Dialog Example - Zenity file selection dialog example - -
-
diff --git a/help/C/forms.page b/help/C/forms.page deleted file mode 100644 index 2b8ac54..0000000 --- a/help/C/forms.page +++ /dev/null @@ -1,84 +0,0 @@ - - - - Use the --forms option. - - - Forms Dialog -

- Use the --forms option to create a forms dialog. -

- -

- The forms dialog supports the following options: -

- - - - - <cmd>--add-entry</cmd>=<var>FieldName</var> -

Add a new Entry in forms dialog.

-
- - - --add-password<cmd></cmd>=<var>FieldName</var> -

Add a new Password Entry in forms dialog. (Hide text)

-
- - - <cmd>--add-calendar</cmd>=<var>FieldName</var> -

Add a new Calendar in forms dialog.

-
- - - <cmd>--text</cmd>=<var>TEXT</var> -

Set the dialog text.

-
- - - <cmd>--separator</cmd>=<var>SEPARATOR</var> -

Set output separator character. (Default: | )

-
- - - <cmd>--forms-date-format</cmd>=<var>PATTERN</var> -

Set the format for the returned date. The default format depends on your locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y.

-
- -
- -

- The following example script shows how to create a forms dialog: -

- - -#!/bin/sh - -zenity --forms --title="Add Friend" \ - --text="Enter information about your friend." \ - --separator="," \ - --add-entry="First Name" \ - --add-entry="Family Name" \ - --add-entry="Email" \ - --add-calendar="Birthday" >> addr.csv - -case $? in - 0) - echo "Friend added.";; - 1) - echo "No friend added." - ;; - -1) - echo "An unexpected error has occurred." - ;; -esac - - -
- Forms Dialog Example - Zenity forms dialog example - -
-
diff --git a/help/C/index.page b/help/C/index.page deleted file mode 100644 index b407c64..0000000 --- a/help/C/index.page +++ /dev/null @@ -1,31 +0,0 @@ - - - - Sun Java Desktop System Documentation Team - - - Glynn Foster - - - Nicholas Curran - - - - Yasumichi Akahoshi - yasumichi@vinelinux.org - - - - -Zenity Manual - -
- Dialogs -
-
diff --git a/help/C/info.page b/help/C/info.page deleted file mode 100644 index 84d4cc0..0000000 --- a/help/C/info.page +++ /dev/null @@ -1,31 +0,0 @@ - - - - Use the --info option. - - - Info Dialog -

- Use the --info option to create an information dialog. -

- -

- The following example script shows how to create an information dialog: -

- - -#!/bin/bash - -zenity --info \ ---text="Merge complete. Updated 3 of 10 files." - - - -
- Information Dialog Example - Zenity information dialog example - -
-
diff --git a/help/C/intro.page b/help/C/intro.page deleted file mode 100644 index da022d4..0000000 --- a/help/C/intro.page +++ /dev/null @@ -1,35 +0,0 @@ - - - - Zenity enables you to create the various types of simple dialog. - - -Introduction -

- Zenity enables you to create the following types of simple dialog: -

- - -

Calendar

-

File selection

-

Forms

-

List

-

Notification icon

-

Message

- -

Error

-

Information

-

Question

-

Warning

-
-
-

Password entry

-

Progress

-

Text entry

-

Text information

-

Scale

-

Color selection

-
-
diff --git a/help/C/l10n.txt b/help/C/l10n.txt deleted file mode 100755 index f03a73f..0000000 --- a/help/C/l10n.txt +++ /dev/null @@ -1,88 +0,0 @@ -Zenity Manual V2.0 - ------------------------- -SUMMARY OF CHANGES ------------------------- - -Created by: Breda McColgan -Date: July 2004 -Manual version: 2.0 - ------------------------- -SCREENSHOT INSTRUCTIONS ------------------------- - -To create the screenshots, perform the following steps: -1. Create a directory called /tmp/l10n_scripts. -2. Copy the scripts to the /tmp/l10n_scripts directory. -3. Edit the appropriate script (see below) - to replace the English text with the localised text, where applicable. -4. Ensure that all scripts are executable. - If necessary, run the following command: - chmod +x -5. Run the script from the /tmp/l10n_scripts directory, as follows: - cd /tmp/l10n_scripts - . ./ - - -zenity-calendar-screenshot.png -============================== - - = calendar.sh - - -zenity-entry-screenshot.png -=========================== - - = text_entry.sh - - - -zenity-error-screenshot.png -=========================== - - = error.sh - - -zenity-fileselection-screenshot.png -=================================== - - = file_sel.sh - - -zenity-information-screenshot.png -================================= - - = info.sh - - -zenity-list-screenshot.png -========================== - - = list.sh - - -zenity-progress-screenshot.png -============================== - - = progress.sh - - -zenity-question-screenshot.png -============================== - - = question.sh - - -zenity-text-screenshot.png -========================== - - = text_info.sh -Select cvs.txt from the File Selector dialog. -Resize the window so that only the text appears -- no blank space. - - -zenity-warning-screenshot.png -============================= - - = warning.sh diff --git a/help/C/l10n_scripts/calendar.sh b/help/C/l10n_scripts/calendar.sh deleted file mode 100755 index cf0f45e..0000000 --- a/help/C/l10n_scripts/calendar.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - - if zenity --calendar \ - --title="Select a Date" \ - --text="Click on a date to select that date." \ - --day=10 --month=8 --year=2004 - then echo $? - else echo "No date selected" - fi - diff --git a/help/C/l10n_scripts/cvs.txt b/help/C/l10n_scripts/cvs.txt deleted file mode 100755 index f470f66..0000000 --- a/help/C/l10n_scripts/cvs.txt +++ /dev/null @@ -1,51 +0,0 @@ -Getting the most out of CVS in GNOME -==================================== - -Introductory Beginnings- - -Current Versions System, CVS, is a powerful -method of allowing many developers -to work on the same source code. It is used - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/help/C/l10n_scripts/error.sh b/help/C/l10n_scripts/error.sh deleted file mode 100755 index 7d93857..0000000 --- a/help/C/l10n_scripts/error.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - - zenity --error \ - --text="Could not find /var/log/syslog." diff --git a/help/C/l10n_scripts/filesel.sh b/help/C/l10n_scripts/filesel.sh deleted file mode 100755 index e9abe1d..0000000 --- a/help/C/l10n_scripts/filesel.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -FILE=`zenity --file-selection --title="Select a File"` - -case $? in - 0) - echo "\"$FILE\" selected.";; - 1) - echo "No file selected.";; - -1) - echo "No file selected.";; -esac - diff --git a/help/C/l10n_scripts/info.sh b/help/C/l10n_scripts/info.sh deleted file mode 100755 index 2c19cfb..0000000 --- a/help/C/l10n_scripts/info.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - - zenity --info \ - --text="Merge complete. Updated 3 of 10 files." diff --git a/help/C/l10n_scripts/list.sh b/help/C/l10n_scripts/list.sh deleted file mode 100755 index cc8304d..0000000 --- a/help/C/l10n_scripts/list.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -zenity --list \ - --title="Choose the Bugs You Wish to View" \ - --column="Bug Number" --column="Severity" --column="Description" \ - 992383 Normal "GtkTreeView crashes on multiple selections" \ - 293823 High "GNOME Dictionary does not handle proxy" \ - 393823 Critical "Menu editing does not work in GNOME 2.0" diff --git a/help/C/l10n_scripts/notification.sh b/help/C/l10n_scripts/notification.sh deleted file mode 100755 index b7de9ab..0000000 --- a/help/C/l10n_scripts/notification.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -/gnome/head/cvs/zenity/src/zenity --notification \ ---window-icon="info" \ ---text="There are system updates necessary!" diff --git a/help/C/l10n_scripts/progress.sh b/help/C/l10n_scripts/progress.sh deleted file mode 100755 index 225c90a..0000000 --- a/help/C/l10n_scripts/progress.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -( -echo "10" ; sleep 1 -echo "# Updating mail logs" ; sleep 1 -echo "20" ; sleep 1 -echo "# Resetting cron jobs" ; sleep 1 -echo "50" ; sleep 1 -echo "This line will just be ignored" ; sleep 1 -echo "75" ; sleep 1 -echo "# Rebooting system" ; sleep 1 -echo "100" ; sleep 1 -) | -zenity --progress --title="Update System Logs" --text="Scanning mail logs..." --percentage=0 - -if [ "$?" = -1 ] ; then - zenity --error --text="Update cancelled." -fi - diff --git a/help/C/l10n_scripts/question.sh b/help/C/l10n_scripts/question.sh deleted file mode 100755 index 6ed9374..0000000 --- a/help/C/l10n_scripts/question.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - - zenity --question \ - --text="Are you sure you wish to proceed?" diff --git a/help/C/l10n_scripts/text_entry.sh b/help/C/l10n_scripts/text_entry.sh deleted file mode 100755 index 4afd006..0000000 --- a/help/C/l10n_scripts/text_entry.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - - if zenity --entry \ - --title="Add an Entry" \ - --text="Enter your _password:" \ - --entry-text "password" \ - --hide-text - then echo $? - else echo "No password entered" - fi - diff --git a/help/C/l10n_scripts/text_info.sh b/help/C/l10n_scripts/text_info.sh deleted file mode 100755 index 711e51d..0000000 --- a/help/C/l10n_scripts/text_info.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -FILE=`zenity --file-selection \ - --title="Select a File"` - -case $? in - 0) - zenity --text-info \ - --title=$FILE \ - --filename=$FILE \ - --editable 2>/tmp/tmp.txt;; - 1) - echo "No file selected.";; - -1) - echo "No file selected.";; -esac - diff --git a/help/C/l10n_scripts/warning.sh b/help/C/l10n_scripts/warning.sh deleted file mode 100755 index a39af9a..0000000 --- a/help/C/l10n_scripts/warning.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - - zenity --warning \ - --text="Disconnect the power cable to avoid electrical shock." diff --git a/help/C/legal.xml b/help/C/legal.xml deleted file mode 100644 index b93767a..0000000 --- a/help/C/legal.xml +++ /dev/null @@ -1,79 +0,0 @@ - - -

This work is licensed under a - GNU Free - Documentation License Version 1.1 or any later version.

- -

- Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation - License (GFDL), Version 1.1 or any later version published - by the Free Software Foundation with no Invariant Sections, - no Front-Cover Texts, and no Back-Cover Texts. You can find - a copy of the GFDL at this - link. -

-

This manual is part of a collection of GNOME manuals - distributed under the GFDL. If you want to distribute this - manual separately from the collection, you can do so by - adding a copy of the license to the manual, as described in - section 6 of the license. -

- -

- Many of the names used by companies to distinguish their - products and services are claimed as trademarks. Where those - names appear in any GNOME documentation, and the members of - the GNOME Documentation Project are made aware of those - trademarks, then the names are in capital letters or initial - capital letters. -

- -

- DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED - UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE - WITH THE FURTHER UNDERSTANDING THAT: -

- - -

DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR - IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES - THAT THE DOCUMENT OR MODIFIED VERSION OF THE - DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR - A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE - RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE - OF THE DOCUMENT OR MODIFIED VERSION OF THE - DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR - MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY - CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY - SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS - LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED - VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER - EXCEPT UNDER THIS DISCLAIMER; AND -

-
- -

UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL - THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), - CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, - INITIAL WRITER, ANY CONTRIBUTOR, OR ANY - DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION - OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH - PARTIES, BE LIABLE TO ANY PERSON FOR ANY - DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES OF ANY CHARACTER - INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS - OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR - MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR - LOSSES ARISING OUT OF OR RELATING TO USE OF THE - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, - EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF - THE POSSIBILITY OF SUCH DAMAGES. -

-
-
-
diff --git a/help/C/list.page b/help/C/list.page deleted file mode 100644 index 0d83820..0000000 --- a/help/C/list.page +++ /dev/null @@ -1,87 +0,0 @@ - - - - Use the --list option. - - - List Dialog -

- Use the --list option to create a list dialog. Zenity returns the entries in the first column of text of selected rows to standard output. -

- -

- Data for the dialog must specified column by column, row by row. Data can be provided to the dialog through standard input. Each entry must be separated by a newline character. -

- -

- If you use the --checklist or --radiolist options, each row must start with either 'TRUE' or 'FALSE'. -

- -

- The list dialog supports the following options: -

- - - - - <cmd>--column</cmd>=<var>column</var> -

Specifies the column headers that are displayed in the list dialog. You must specify a --column option for each column that you want to display in the dialog. -

-
- - - <cmd>--checklist</cmd> -

Specifies that the first column in the list dialog contains check boxes. -

-
- - - <cmd>--radiolist</cmd> -

Specifies that the first column in the list dialog contains radio boxes. -

-
- - - <cmd>--editable</cmd> -

Allows the displayed items to be edited. -

-
- - - <cmd>--separator</cmd>=<var>separator</var> -

Specifies what string is used when the list dialog returns the selected entries. -

-
- - - <cmd>--print-column</cmd>=<var>column</var> -

Specifies what column should be printed out upon selection. The default column is - '1'. 'ALL' can be used to print out all columns in the list. -

-
- -
- -

- The following example script shows how to create a list dialog: -

- -#!/bin/sh - -zenity --list \ - --title="Choose the Bugs You Wish to View" \ - --column="Bug Number" --column="Severity" --column="Description" \ - 992383 Normal "GtkTreeView crashes on multiple selections" \ - 293823 High "GNOME Dictionary does not handle proxy" \ - 393823 Critical "Menu editing does not work in GNOME 2.0" - - - -
- List Dialog Example - Zenity list dialog example - -
-
diff --git a/help/C/message.page b/help/C/message.page deleted file mode 100644 index 0427082..0000000 --- a/help/C/message.page +++ /dev/null @@ -1,19 +0,0 @@ - - - - - Error, - Info, - Question, - Warning - - - - Message Dialog -

-For each type, use the --text option to specify the text that is displayed in the dialog. -

- -
diff --git a/help/C/notification.page b/help/C/notification.page deleted file mode 100644 index f7ff3c9..0000000 --- a/help/C/notification.page +++ /dev/null @@ -1,55 +0,0 @@ - - - - Use the --notification option. - - - Notification Icon -

Use the --notification option to create a notification icon.

- - - - <cmd>--text</cmd>=<var>text</var> -

Specifies the text that is displayed in the notification area.

-
- - <cmd>--listen</cmd>=icon: '<var>text</var>', message: '<var>text</var>', tooltip: '<var>text</var>', visible: '<var>text</var>', -

Listens for commands at standard input. At least one command must be specified. Commands are comma separated. A command must be followed by a colon and a value.

- -

The icon command also accepts four stock icon values such as error, info, question and warning.

-
-
-
- -

The following example script shows how to create a notification icon:

- - #!/bin/sh - - zenity --notification\ - --window-icon="info" \ - --text="There are system updates necessary!" - - -
- Notification Icon Example - Zenity notification icon example - -
- -

The following example script shows how to create a notification icon along with --listen:

- - #!/bin/sh - cat <<EOH| zenity --notification --listen - message: this is the message text - EOH - - -
- Notification Icon with <cmd>--listen</cmd> Example - Zenity notification with --listen example - -
- -
diff --git a/help/C/password.page b/help/C/password.page deleted file mode 100644 index 0660206..0000000 --- a/help/C/password.page +++ /dev/null @@ -1,51 +0,0 @@ - - - - Use the --password option. - - - Password Dialog -

- Use the --password option to create a password entry dialog. -

-

- The password entry dialog supports the following options: -

- - - - <cmd>--username</cmd> -

Display the username field.

-
-
- -

- The following example script shows how to create a password entry dialog: -

- - -#!/bin/sh - -ENTRY=`zenity --password --username` - -case $? in - 0) - echo "User Name: `echo $ENTRY | cut -d'|' -f1`" - echo "Password : `echo $ENTRY | cut -d'|' -f2`" - ;; - 1) - echo "Stop login.";; - -1) - echo "An unexpected error has occurred.";; -esac - - -
- Password Entry Dialog Example - Zenity password entry dialog example - -
- -
diff --git a/help/C/progress.page b/help/C/progress.page deleted file mode 100644 index ff3b730..0000000 --- a/help/C/progress.page +++ /dev/null @@ -1,80 +0,0 @@ - - - - Use the --progress option. - - - Progress Dialog -

- Use the --progress option to create a progress dialog. -

- -

- Zenity reads data from standard input line by line. If a line is prefixed with #, the text is updated with the text on that line. If a line contains only a number, the percentage is updated with that number. -

- -

- The progress dialog supports the following options: -

- - - - - <cmd>--text</cmd>=<var>text</var> -

Specifies the text that is displayed in the progress dialog.

-
- - - <cmd>--percentage</cmd>=<var>percentage</var> -

Specifies the initial percentage that is set in the progress dialog.

-
- - - <cmd>--auto-close</cmd> -

Closes the progress dialog when 100% has been reached.

-
- - - <cmd>--pulsate</cmd> -

Specifies that the progress bar pulsates until an EOF character is read from standard input.

-
- -
- -

- The following example script shows how to create a progress dialog: -

- - -#!/bin/sh -( -echo "10" ; sleep 1 -echo "# Updating mail logs" ; sleep 1 -echo "20" ; sleep 1 -echo "# Resetting cron jobs" ; sleep 1 -echo "50" ; sleep 1 -echo "This line will just be ignored" ; sleep 1 -echo "75" ; sleep 1 -echo "# Rebooting system" ; sleep 1 -echo "100" ; sleep 1 -) | -zenity --progress \ - --title="Update System Logs" \ - --text="Scanning mail logs..." \ - --percentage=0 - -if [ "$?" = -1 ] ; then - zenity --error \ - --text="Update canceled." -fi - - - -
- Progress Dialog Example - Zenity progress dialog example - -
-
diff --git a/help/C/question.page b/help/C/question.page deleted file mode 100644 index 534d57e..0000000 --- a/help/C/question.page +++ /dev/null @@ -1,31 +0,0 @@ - - - - Use the --question option. - - - Question Dialog -

- Use the --question option to create a question dialog. -

- -

- The following example script shows how to create a question dialog: -

- - -#!/bin/bash - -zenity --question \ ---text="Are you sure you wish to proceed?" - - - -
- Question Dialog Example - Zenity question dialog example - -
-
diff --git a/help/C/scale.page b/help/C/scale.page deleted file mode 100644 index 264e1e0..0000000 --- a/help/C/scale.page +++ /dev/null @@ -1,81 +0,0 @@ - - - - Use the --scale option. - - - Scale Dialog -

- Use the --scale option to create a scale dialog. -

-

- The scale dialog supports the following options: -

- - - - - <cmd>--text</cmd>=<var>TEXT</var> -

Set the dialog text. (Default: Adjust the scale value)

-
- - - <cmd>--value</cmd>=<var>VALUE</var> -

Set initial value. (Default: 0) You must specify value between minimum value to maximum value.

-
- - - <cmd>--min-value</cmd>=<var>VALUE</var> -

Set minimum value. (Default: 0)

-
- - - <cmd>--max-value</cmd>=<var>VALUE</var> -

Set maximum value. (Default: 100)

-
- - - <cmd>--step</cmd>=<var>VALUE</var> -

Set step size. (Default: 1)

-
- - - <cmd>--print-partial</cmd> -

Print value to standard output, whenever a value is changed.

-
- - - <cmd>--hide-value</cmd> -

Hide value on dialog.

-
- -
- -

- The following example script shows how to create a scale dialog: -

- - -#!/bin/sh - -VALUE=`zenity --scale --text="Select window transparency." --value=50` - -case $? in - 0) - echo "You selected $VALUE%.";; - 1) - echo "No value selected.";; - -1) - echo "An unexpected error has occurred.";; -esac - - -
- Scale Dialog Example - Zenity scale dialog example - -
- -
diff --git a/help/C/text.page b/help/C/text.page deleted file mode 100644 index 99270a1..0000000 --- a/help/C/text.page +++ /dev/null @@ -1,86 +0,0 @@ - - - - Use the --text-info option. - - - Text Information Dialog -

- Use the --text-info option to create a text information dialog. -

- -

- The text information dialog supports the following options: -

- - - - - <cmd>--filename</cmd>=<var>filename</var> -

Specifies a file that is loaded in the text information dialog.

-
- - - <cmd>--editable</cmd> -

Allows the displayed text to be edited. The edited text is returned to standard output when the dialog is closed.

-
- - - <cmd>--font</cmd>=<var>FONT</var> -

Specifies the text font.

-
- - - <cmd>--checkbox</cmd>=<var>TEXT</var> -

Enable a checkbox for use like a 'I read and accept the terms.'

-
- - - <cmd>--html</cmd> -

Enable html support.

-
- - - <cmd>--url</cmd>=<var>URL</var> -

Sets an url instead of a file. Only works if you use --html option.

-
- -
- -

- The following example script shows how to create a text information dialog: -

- - -#!/bin/sh - -# You must place file "COPYING" in same folder of this script. -FILE=`dirname $0`/COPYING - -zenity --text-info \ - --title="License" \ - --filename=$FILE \ - --checkbox="I read and accept the terms." - -case $? in - 0) - echo "Start installation!" - # next step - ;; - 1) - echo "Stop installation!" - ;; - -1) - echo "An unexpected error has occurred." - ;; -esac - - -
- Text Information Dialog Example - Zenity text information dialog example - -
-
diff --git a/help/C/usage.page b/help/C/usage.page deleted file mode 100644 index 8aa88cc..0000000 --- a/help/C/usage.page +++ /dev/null @@ -1,293 +0,0 @@ - - - - You can use Zenity to create simple dialogs that interact graphically with the user. - - -Usage -

- When you write scripts, you can use Zenity to create simple dialogs that interact graphically with the user, as follows: -

- - -

- You can create a dialog to obtain information from the user. For example, you can prompt the user to select a date from a calendar dialog, or to select a file from a file selection dialog. -

-
- -

- You can create a dialog to provide the user with information. For example, you can use a progress dialog to indicate the current status of an operation, or use a warning message dialog to alert the user. -

-
-
-

- When the user closes the dialog, Zenity prints the text produced by the dialog to standard output. -

- - -

- When you write Zenity commands, ensure that you place quotation marks around each argument. -

-

For example, use:

- zenity --calendar --title="Holiday Planner" -

Do not use:

- zenity --calendar --title=Holiday Planner -

- If you do not use quotation marks, you might get unexpected results. -

-
- -
- Access Keys -

- An access key is a key that enables you to perform an action from the keyboard rather than use the mouse to choose a command from a menu or dialog. Each access key is identified by an underlined letter on a menu or dialog option. -

-

- Some Zenity dialogs support the use of access keys. To specify the character to use as the access key, place an underscore before that character in the text of the dialog. The following example shows how to specify the letter 'C' as the access key: -

- "_Choose a name". -
- -
- Exit Codes -

- Zenity returns the following exit codes: -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Exit Code

-

Description

-

0

-
-

The user has pressed either OK or Close.

-
-

1

-
-

The user has either pressed Cancel, or used the window functions to close the dialog.

-
-

-1

-
-

An unexpected error has occurred.

-
-

5

-
-

The dialog has been closed because the timeout has been reached.

-
- -
- - - - -
- General Options - -

- All Zenity dialogs support the following general options: -

- - - - - <cmd>--title</cmd>=<var>title</var> -

Specifies the title of a dialog.

-
- - - <cmd>--window-icon</cmd>=<var>icon_path</var> -

Specifies the icon that is displayed in the window frame of the dialog. There are - 4 stock icons also available by providing the following keywords - 'info', 'warning', 'question' and - 'error'. -

-
- - - <cmd>--width</cmd>=<var>width</var> -

Specifies the width of the dialog.

-
- - - <cmd>--height</cmd>=<var>height</var> -

Specifies the height of the dialog.

-
- - - <cmd>--timeout</cmd>=<var>timeout</var> -

Specifies the timeout in seconds after which the dialog is closed.

-
- -
- -
- - - -
- Help Options - -

- Zenity provides the following help options: -

- - - - - <cmd>--help</cmd> -

Displays shortened help text.

-
- - - <cmd>--help-all</cmd> -

Displays full help text for all dialogs.

-
- - - <cmd>--help-general</cmd> -

Displays help text for general dialog options.

-
- - - <cmd>--help-calendar</cmd> -

Displays help text for calendar dialog options.

-
- - - <cmd>--help-entry</cmd> -

Displays help text for text entry dialog options.

-
- - - <cmd>--help-error</cmd> -

Displays help text for error dialog options.

-
- - - <cmd>--help-info</cmd> -

Displays help text for information dialog options.

-
- - - <cmd>--help-file-selection</cmd> -

Displays help text for file selection dialog options.

-
- - - <cmd>--help-list</cmd> -

Displays help text for list dialog options.

-
- - - <cmd>--help-notification</cmd> -

Displays help text for notification icon options.

-
- - - <cmd>--help-progress</cmd> -

Displays help text for progress dialog options.

-
- - - <cmd>--help-question</cmd> -

Displays help text for question dialog options.

-
- - - <cmd>--help-warning</cmd> -

Displays help text for warning dialog options.

-
- - - <cmd>--help-text-info</cmd> -

Displays help for text information dialog options.

-
- - - <cmd>--help-misc</cmd> -

Displays help for miscellaneous options.

-
- - - <cmd>--help-gtk</cmd> -

Displays help for GTK+ options.

-
- -
- -
- - - -
- Miscellaneous Options - -

- Zenity also provides the following miscellaneous options: -

- - - - - <cmd>--about</cmd> -

Displays the About Zenity dialog, which contains Zenity version information, copyright information, and developer information.

-
- - - <cmd>--version</cmd> -

Displays the version number of Zenity.

-
- -
- -
- - - -
- GTK+ Options - -

- Zenity supports the standard GTK+ options. For more information about the GTK+ options, execute the zenity --help-gtk command. -

- -
- - - -
- Environment Variables - -

- Normally, Zenity detects the terminal window from which it was launched - and keeps itself above that window. This behavior can be disabled by - unsetting the WINDOWID environment variable. -

- -
-
diff --git a/help/C/warning.page b/help/C/warning.page deleted file mode 100644 index 7778502..0000000 --- a/help/C/warning.page +++ /dev/null @@ -1,30 +0,0 @@ - - - - Use the --warning option. - - - Warning Dialog -

- Use the --warning option to create a warning dialog. -

- -

- The following example script shows how to create a warning dialog: -

- - -#!/bin/bash - -zenity --warning \ ---text="Disconnect the power cable to avoid electrical shock." - - -
- Warning Dialog Example - Zenity warning dialog example - -
-
diff --git a/help/ChangeLog b/help/ChangeLog deleted file mode 100644 index e8b8ee5..0000000 --- a/help/ChangeLog +++ /dev/null @@ -1,331 +0,0 @@ -2009-04-07 Simos Xenitellis - - * el/figures/zenity-question-screenshot.png: - Updated screenshot by Fotis Tsamis. - -2009-04-06 Simos Xenitellis - - * el/el.po: Added Greek translation by Sterios Prosiniklis. - -2009-04-04 Simos Xenitellis - - * el/figures/*.png: Added 11 screenshots by Fotis Tsamis. - -2009-03-16 Lucas Rocha - - * 2.26.0 version marker. - -2009-03-14 Philip Withnall - - * en_GB/en_GB.po: Updated British English translation by Jen Ockwell - . - -2009-02-27 Tommi Vainikainen - - * fi.po: Updated Finnish translation. - -2009-02-17 Inaki Larranaga Murgoitio - - * eu/figures/: Added image in Basque language. Images are: - zenity-entry-screenshot.png - zenity-error-screenshot.png - zenity-warning-screenshot.png - zenity-progress-screenshot.png - zenity-calendar-screenshot.png - zenity-notification-screenshot.png - zenity-information-screenshot.png - zenity-question-screenshot.png - zenity-list-screenshot.png - zenity-fileselection-screenshot.png - zenity-text-screenshot.png - -2009-02-16 Inaki Larranaga Murgoitio - - * eu/eu.po: Added Basque translation. - * Makefile.am: Added 'eu' to DOC_LINGUAS. - -2009-02-15 Daniel Nylander - - * sv/sv.po: Updated Swedish translation. - * sv/figures/*png: Updated screenshots. - -2009-02-06 Claude Paroz - - * fr/fr.po: Updated French translation. - -2009-01-31 Mario Blättermann - - * de/de.po: Updated German translation. - -2009-01-12 Lucas Rocha - - * 2.24.1 version marker. - -2009-01-10 Jorge Gonzalez - - * es/es.po: Updated Spanish translation. - -==================== 2.24.0 ==================== - -2008-09-18 Tommi Vainikainen - - * Makefile.am, fi/fi.po: Added Finnish translation - * fi/figures/*.png: Added screenshots - * fi/l10n_scripts/*: Added translated screenshot scripts - -2008-09-12 Mario Blättermann - - * de/de.po: Deleted unneeded fuzzies in German translation - -2008-09-12 Mario Blättermann - - * de/de.po: Added German translation - * de/figures/*.png: Added screenshots - * de/l10n_scripts/*: Added customized scripts - -2008-06-16 Lucas Rocha - - * 2.23.3.1 version marker. - -2008-06-16 Lucas Rocha - - * 2.23.3 version marker. - -2008-06-03 Lucas Rocha - - * 2.23.2 version marker. - -2008-04-21 Lucas Rocha - - * 2.23.1 version marker. - -2008-03-10 Lucas Rocha - - * 2.22.0 version marker. - -2008-03-08 Jorge Gonzalez - - * es/es.po: Updated Spanish translation - * es/figures/*.png: Updated screenshots - -2008-02-25 Lucas Rocha - - * 2.21.1 version marker. - -2008-01-20 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2007-12-31 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2007-11-28 Yannig Marchegay - - * oc/oc.po: Updated Occitan translation. - -2007-09-17 Lucas Rocha - - * 2.20.0 version marker. - -2007-08-15 Daniel Nylander - - * sv/figures/*png: Updated screenshots. - -2007-08-13 Lucas Rocha - - * 2.19.2 version marker. - -2007-05-15 David Lodge - - * en_GB/en_GB.po: Added (British) English translation. - * Makefile.am: Added en_GB to DOC_LINGUAS - -2007-05-15 Lucas Rocha - - * 2.19.1 version marker. - -2007-04-22 Nickolay V. Shmyrev - - * Makefile.am: - * ru/ru.po: Added Russian translation by - Yury Deshko . - -2007-04-21 Jorge Gonzalez - - * es/es.po: Updated Spanish translation. - -2007-04-09 Lucas Rocha - - * 2.18.1 version marker. - -2007-03-11 Lucas Rocha - - * 2.18.0 version marker. - -2007-03-01 Maxim Dziumanenko - - * uk/uk.po: - * uk/figures/*.png: Update Ukrainian translation. - -2007-02-26 Lucas Rocha - - * 2.17.92 version marker. - -2007-02-12 Lucas Rocha - - * 2.17.91 version marker. - -2007-01-22 Lucas Rocha - - * 2.17.90 version marker. - -2007-01-08 Lucas Rocha - - * 2.17.3 version marker. - -2006-12-18 Lucas Rocha - - * 2.17.2 version marker. - -2006-12-04 Lucas Rocha - - * 2.17.1 version marker. - -2006-10-26 Daniel Nylander - - * sv/sv.po: Added Swedish translation. - * sv/figures/*png: Added screenshots. - * Makefile.am: Added sv to DOC_LINGUAS. - -2006-09-23 Francisco Javier F. Serrador - - * es/es.po: Updated Spanish translation. - -2006-09-04 Lucas Rocha - - * 2.16.0 version marker. - -2006-08-21 Lucas Rocha - - * 2.15.92 version marker. - -2006-08-10 Christophe Bliard - - * fr/fr.po: Updated French translation. - -2006-08-07 Lucas Rocha - - * 2.15.91 version marker. - -2006-07-28 Lucas Rocha - - * 2.15.90 version marker. - -2006-05-16 Lucas Rocha - - * 2.15.2 version marker. - -2006-04-24 Lucas Rocha - - * 2.15.1 version marker. - -2006-03-17 Maxim Dziumanenko - - * help/C/figures/*: Restore original english screenshots - mistakenly replaced by Ukrainian screenshots on 2005-08-21 - * uk/uk.po: - * uk/figures/*.png: Update Ukrainian translation. - -2006-03-13 Lucas Rocha - - * 2.14.0 version marker. - -2006-03-01 Alexander Shopov - - * Makefile.am - * bg/bg.po - * bg/figures/zenity-calendar-screenshot.png - * bg/figures/zenity-entry-screenshot.png - * bg/figures/zenity-error-screenshot.png - * bg/figures/zenity-fileselection-screenshot.png - * bg/figures/zenity-information-screenshot.png - * bg/figures/zenity-list-screenshot.png - * bg/figures/zenity-notification-screenshot.png - * bg/figures/zenity-progress-screenshot.png - * bg/figures/zenity-question-screenshot.png - * bg/figures/zenity-text-screenshot.png - * bg/figures/zenity-warning-screenshot.png - Added Bulgarian translation by - Rostislav Raykov - -2006-01-29 Lucas Rocha - - * 2.13.90 version marker. - -2006-01-21 Vincent Untz - - * fr/fr.po: updated french translation. - * *: .cvsignore love - -2006-01-16 Lucas Rocha - - * 2.13.5 version marker. - -2006-01-05 Lucas Rocha - - * 2.13.4 version marker. - -2005-12-12 Lucas Rocha - - * 2.13.3 version marker. - -2005-11-19 Francisco Javier F. Serrador - - * es/es.po: Updated Spanish translation. - -2005-11-13 Lucas Rocha - - * 2.13.2 version marker. - -2005-10-24 Lucas Rocha - - * 2.13.1 version marker. - -2005-09-06 Lucas Rocha - - * 2.12.0 version marker. - -2005-08-29 Vincent Untz - - * fr/fr.po: updated french translation. - -2005-08-27 Vincent Untz - - * fr/fr.po: forgot some headers - -2005-08-27 Vincent Untz - - * Makefile.am: - * fr/*: add french translation, by Christophe Bliard - - -2005-08-23 Lucas Rocha - - * 2.11.92 version marker. - -2005-08-21 Maxim Dziumanenko - - * uk/uk.po: Added Ukrainian translation. - -2005-08-17 Francisco Javier F. Serrador - - * es/figures/*.png: Added Missing figures. - -2005-08-10 Francisco Javier F. Serrador - - * es/es.po: Added Spanish documentation. - -2005-07-24 Lucas Rocha - - * ChangeLog: added ChangeLog here. diff --git a/help/LINGUAS b/help/LINGUAS deleted file mode 100644 index 9940fa3..0000000 --- a/help/LINGUAS +++ /dev/null @@ -1 +0,0 @@ -bg ca cs da de el en_GB es eu fi fr gl hu ja oc pl pt_BR ru sl sv uk zh_CN diff --git a/help/bg/bg.po b/help/bg/bg.po deleted file mode 100644 index 8241ba6..0000000 --- a/help/bg/bg.po +++ /dev/null @@ -1,1674 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: zenity manual\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-03-01 08:29+0200\n" -"PO-Revision-Date: 2006-03-01 09:27+0200\n" -"Last-Translator: Rostislav \"zbrox\" Raykov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../zenity.omf.in:5(type) -msgid "user's guide" -msgstr "потребителско ръководство" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:526(None) -msgid "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=fb19c75aba9864e76bd762bea6e1988f" -msgstr "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=fb19c75aba9864e76bd762bea6e1988f@@image: 'figures/zenity-calendar-" -"screenshot.png'; md5=fb19c75aba9864e76bd762bea6e1988f" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:614(None) -msgid "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=a195eae80d8f02fe3df3ff8e22ed3c50" -msgstr "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=a195eae80d8f02fe3df3ff8e22ed3c50" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:660(None) -msgid "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:765(None) -msgid "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=ca0a67308cc58e2de562868efea8a2f7" -msgstr "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=ca0a67308cc58e2de562868efea8a2f7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:827(None) -msgid "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=a215ab9f57d93a7d64b4897e794a190e" -msgstr "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=a215ab9f57d93a7d64b4897e794a190e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:861(None) -msgid "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=fdd353212e2039b283fda78ad9f2ea9d" -msgstr "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=fdd353212e2039b283fda78ad9f2ea9d" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:895(None) -msgid "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=922d8dfbb9ab8e030c11f81e4163f788" -msgstr "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=922d8dfbb9ab8e030c11f81e4163f788" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:929(None) -msgid "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=5c3f6119b6be4d259b328d1503eb7a1f" -msgstr "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=5c3f6119b6be4d259b328d1503eb7a1f" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:1024(None) -msgid "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=42617a657251b5486cfaf056d9fd24e8" -msgstr "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=42617a657251b5486cfaf056d9fd24e8" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:1095(None) -msgid "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=fd788f930bc7056fd8a42194c05bf30c" -msgstr "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=fd788f930bc7056fd8a42194c05bf30c" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: zenity.xml:1164(None) -msgid "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=dc3256a5e03f154df4af7a4be2c20e7b" -msgstr "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=dc3256a5e03f154df4af7a4be2c20e7b" - -#: zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "Ръководство за Zenity" - -#: zenity.xml:21(subtitle) zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "Ръководство за Zenity, версия 2.0" - -#: zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: zenity.xml:51(orgname) zenity.xml:58(orgname) zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "Проект за документация на GNOME" - -#: zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "Ръководство за Zenity, версия 1.0" - -#: zenity.xml:75(date) -msgid "January 2003" -msgstr "Януари 2003" - -#: zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "Това ръководство е за версия 2.6 на програмата Zenity." - -#: zenity.xml:87(title) -msgid "Feedback" -msgstr "Обратна връзка" - -#: zenity.xml:88(para) -msgid "" -"To send feedback, follow the directions in the Feedback Page." -msgstr "" -"За обратна връзка, следвайте инструкциите на Страницата за обратна връзка." - -#: zenity.xml:95(para) -msgid "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialog boxes from the commandline and shell scripts." -msgstr "Zenity е наследникът на gdialog - вариантът на dialog за GNOME. Програмата позволява показването на диалогови прозорци, с които да се осъществява обмен на информация със скриптове за командния ред." - -#: zenity.xml:102(primary) -msgid "zenity command" -msgstr "zenity команда" - -#: zenity.xml:105(primary) -msgid "dialog creator" -msgstr "създаване на прозорци" - -#: zenity.xml:112(title) -msgid "Introduction" -msgstr "Въведение" - -#: zenity.xml:114(para) -msgid "" -"Zenity enables you to create the following types " -"of simple dialog:" -msgstr "" -"Zenity Ви позволява да създавате следните видове " -"прости диалогови прозорци:" - -#: zenity.xml:119(para) -msgid "Calendar" -msgstr "Календар" - -#: zenity.xml:120(para) -msgid "File selection" -msgstr "Избор на файл" - -#: zenity.xml:121(para) -msgid "List" -msgstr "Списък" - -#: zenity.xml:122(para) -msgid "Notification icon" -msgstr "Икона за уведомяване" - -#: zenity.xml:123(para) -msgid "Message" -msgstr "Съобщение" - -#: zenity.xml:125(para) zenity.xml:786(para) -msgid "Error" -msgstr "Грешка" - -#: zenity.xml:126(para) zenity.xml:789(para) -msgid "Information" -msgstr "Информация" - -#: zenity.xml:127(para) zenity.xml:792(para) -msgid "Question" -msgstr "Въпрос" - -#: zenity.xml:128(para) zenity.xml:795(para) -msgid "Warning" -msgstr "Предупреждение" - -#: zenity.xml:131(para) -msgid "Progress" -msgstr "Прогрес" - -#: zenity.xml:132(para) -msgid "Text entry" -msgstr "Текстово поле" - -#: zenity.xml:133(para) -msgid "Text information" -msgstr "Текстова информация" - -#: zenity.xml:141(title) -msgid "Usage" -msgstr "Употреба" - -#: zenity.xml:143(para) -msgid "" -"When you write scripts, you can use Zenity to " -"create simple dialogs that interact graphically with the user, as follows:" -msgstr "" -"Когато пишете скриптове, може да използвате Zenity, за да създавате прости диалогови прозорци, които да " -"интерактират графично с потребителя, както следва:" - -#: zenity.xml:148(para) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Може да създавате прозорци, които да изискват информация от потребителя. " -"Примерно, може да питате потребителя да изберете дата от календарен прозорец " -"или да избере файл от прозорец за избор на файл." - -#: zenity.xml:153(para) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Може да създавате прозорци, които да предоставят информация на потребителя. " -"Примерно, може да използвате прозорец за прогрес, за да покажете текущото " -"състояние на операция или да използвате предупредително съобщение, за да " -"сигнализирате за нещо на потребителя." - -#: zenity.xml:158(para) -msgid "" -"When the user closes the dialog, Zenity prints " -"the text produced by the dialog to standard error." -msgstr "" -"Когато потребителят затвори прозореца, Zenity " -"показва текстът произведен от прозореца към стандартната грешка." - -#: zenity.xml:163(para) -msgid "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." -msgstr "" -"Когато пишете Zenity команди, се уверете, че сте " -"поставили кавички около всеки аргумент." - -#: zenity.xml:166(para) -msgid "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" -msgstr "" -"Например, използвайте: zenity --calendar --title=" -"\"Планиране на почивка\"Не използвайте: " -"zenity --calendar --title=Планиране на почивка." - -#: zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Ако не използвате кавички, може да получите неочаквани резулати." - -#: zenity.xml:175(title) -msgid "Access Keys" -msgstr "Бързи клавиши" - -#: zenity.xml:176(para) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Бързият клавиш е клавиш, който Ви позволява да извършвате действие от " -"клавиатурата без да използвате мишката, за да изберете командата от менюто " -"или прозореца. Всеки бърз клавиш се идентифицира от подчертана буква в " -"менюто или прозореца." - -#: zenity.xml:179(para) -msgid "" -"Some Zenity dialogs support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialog. The following example shows " -"how to specify the letter 'C' as the access key:" -msgstr "" -"Някои прозорци на Zenity поддържат използването " -"на бързи клавиши. За да определите символа, който да се използва като бърз " -"клавиш поставете долна черна пред символа в текста на прозореца. Следният " -"пример показва как да определите буквата \"И\", като бърз клавиш:" - -#: zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Изберете име\"." - -#: zenity.xml:186(title) -msgid "Exit Codes" -msgstr "Изходни кодове" - -#: zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "Zenity връща следните изходни кодове:" - -#: zenity.xml:198(para) -msgid "Exit Code" -msgstr "Изходен код" - -#: zenity.xml:200(para) -msgid "Description" -msgstr "Описание" - -#: zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: zenity.xml:209(para) -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Потребителят е натиснал или Добре или " -"Затваряне." - -#: zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: zenity.xml:217(para) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Потребителят е натиснал Отказ или е използвал " -"функциите на прозореца, за да го затвори." - -#: zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "Възникнала е неочаквана грешка." - -#: zenity.xml:238(title) -msgid "General Options" -msgstr "Общи настройки" - -#: zenity.xml:240(para) -msgid "" -"All Zenity dialogs support the following general " -"options:" -msgstr "" -"Всички Zenity прозорци поддържат следните общи " -"настройки:" - -#: zenity.xml:247(term) -msgid "=title" -msgstr "=заглавие" - -#: zenity.xml:249(para) -msgid "Specifies the title of a dialog." -msgstr "Определя заглавието на прозореца." - -#: zenity.xml:254(term) -msgid "=icon_path" -msgstr "" -"=път_до_иконата" - -#: zenity.xml:256(para) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Определя иконата, която ще се показва в рамката на прозореца. Има 4 " -"генерални икони, които са налични чрез доставяне на следните ключови думи - " -"'info', warning', 'question' и 'error'." - -#: zenity.xml:264(term) -msgid "=width" -msgstr "=ширина" - -#: zenity.xml:266(para) -msgid "Specifies the width of the dialog." -msgstr "Определя ширината на прозореца." - -#: zenity.xml:271(term) -msgid "=height" -msgstr "=височина" - -#: zenity.xml:273(para) -msgid "Specifies the height of the dialog." -msgstr "Определя височината на прозореца." - -#: zenity.xml:284(title) -msgid "Help Options" -msgstr "Настройки на помощта" - -#: zenity.xml:286(para) -msgid "Zenity provides the following help options:" -msgstr "" -"Zenity предоставя следните настройки за помощ:" - -#: zenity.xml:293(option) -msgid "--help" -msgstr "--help" - -#: zenity.xml:295(para) -msgid "Displays shortened help text." -msgstr "Показва скъсен текст за помощ." - -#: zenity.xml:300(option) -msgid "--help-all" -msgstr "--help-all" - -#: zenity.xml:302(para) -msgid "Displays full help text for all dialogs." -msgstr "Показва пълния текст за помощ за всички прозорци." - -#: zenity.xml:307(option) -msgid "--help-general" -msgstr "--help-general" - -#: zenity.xml:309(para) -msgid "Displays help text for general dialog options." -msgstr "Показва помощния текст за общите настройки." - -#: zenity.xml:314(option) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: zenity.xml:316(para) -msgid "Displays help text for calendar dialog options." -msgstr "Показва помощния текст за календарните настройки." - -#: zenity.xml:321(option) -msgid "--help-entry" -msgstr "--help-entry" - -#: zenity.xml:323(para) -msgid "Displays help text for text entry dialog options." -msgstr "Показва помощния текст за настройки по текстовите полета." - -#: zenity.xml:328(option) -msgid "--help-error" -msgstr "--help-error" - -#: zenity.xml:330(para) -msgid "Displays help text for error dialog options." -msgstr "Показва помощния текст за настройките за грешка." - -#: zenity.xml:335(option) -msgid "--help-info" -msgstr "--help-info" - -#: zenity.xml:337(para) -msgid "Displays help text for information dialog options." -msgstr "Показва помощния текст за настройките на прозорци за информация." - -#: zenity.xml:342(option) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: zenity.xml:344(para) -msgid "Displays help text for file selection dialog options." -msgstr "Показва помощния текст за настройките на прозорци за избор на файл." - -#: zenity.xml:349(option) -msgid "--help-list" -msgstr "--help-list" - -#: zenity.xml:351(para) -msgid "Displays help text for list dialog options." -msgstr "Показва помощния текст за настройките на списъчните прозорци." - -#: zenity.xml:356(option) -msgid "--help-notification" -msgstr "--help-notification" - -#: zenity.xml:358(para) -msgid "Displays help text for notification icon options." -msgstr "Показва помощния текст за настройките на иконата за уведомяване." - -#: zenity.xml:363(option) -msgid "--help-progress" -msgstr "--help-progress" - -#: zenity.xml:365(para) -msgid "Displays help text for progress dialog options." -msgstr "Показва помощния текст за настройките на прогреса." - -#: zenity.xml:370(option) -msgid "--help-question" -msgstr "--help-question" - -#: zenity.xml:372(para) -msgid "Displays help text for question dialog options." -msgstr "Показва помощния текст за настройките за прозорците за въпроси." - -#: zenity.xml:377(option) -msgid "--help-warning" -msgstr "--help-warning" - -#: zenity.xml:379(para) -msgid "Displays help text for warning dialog options." -msgstr "Показва помощния текст за настройките за предупредителните прозорци." - -#: zenity.xml:384(option) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: zenity.xml:386(para) -msgid "Displays help for text information dialog options." -msgstr "Показва помощния текст за настройките на текстовата информация." - -#: zenity.xml:391(option) -msgid "--help-misc" -msgstr "--help-misc" - -#: zenity.xml:393(para) -msgid "Displays help for miscellaneous options." -msgstr "Показва помощта за допълнителните настройки." - -#: zenity.xml:398(option) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: zenity.xml:400(para) -msgid "Displays help for GTK+ options." -msgstr "Показва помощта за GTK+ настройките." - -#: zenity.xml:411(title) -msgid "Miscellaneous Options" -msgstr "Допълнителни настройки" - -#: zenity.xml:413(para) -msgid "" -"Zenity also provides the following miscellaneous " -"options:" -msgstr "" -"Zenity предоставя и следните допълнителни " -"настройки:" - -#: zenity.xml:420(option) -msgid "--about" -msgstr "--about" - -#: zenity.xml:422(para) -msgid "" -"Displays the About Zenity dialog, which contains " -"Zenity version information, copyright " -"information, and developer information." -msgstr "" -"Показва прозорецът Относно Zenity, който съдържа " -"информация за версията на Zenity, информация за " -"авторските права и информация за разработчиците." - -#: zenity.xml:427(option) -msgid "--version" -msgstr "--version" - -#: zenity.xml:429(para) -msgid "Displays the version number of Zenity." -msgstr "Показва номера на версията на Zenity." - -#: zenity.xml:440(title) -msgid "GTK+ Options" -msgstr "GTK+ настройки" - -#: zenity.xml:442(para) -msgid "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." -msgstr "" -"Zenity поддържа стандартните GTK+ настройки. За " -"повече информация относно настройките на GTK+, изпълнете командата " -"zenity -?" - -#: zenity.xml:452(title) -msgid "Calendar Dialog" -msgstr "Прозорец с календар" - -#: zenity.xml:454(para) -msgid "" -"Use the option to create a calendar dialog. " -"Zenity returns the selected date to standard " -"error. If no date is specified on the command line, the dialog uses the " -"current date." -msgstr "" -"Използвайте настройката , за да създадете " -"календарен прозорец. Zenity връща към стандартна " -"грешка въведената информация. Ако не се определи дата от командния ред, " -"прозорецът ще използва текущата дата." - -#: zenity.xml:457(para) -msgid "The calendar dialog supports the following options:" -msgstr "Прозорецът с календар поддържа следните настройки:" - -#: zenity.xml:464(term) zenity.xml:635(term) zenity.xml:961(term) -#: zenity.xml:1050(term) -msgid "=text" -msgstr "=текст" - -#: zenity.xml:466(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Определя текста, който се показва в прозореца с календар." - -#: zenity.xml:471(term) -msgid "=day" -msgstr "=ден" - -#: zenity.xml:473(para) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" -"Определя деня, който е избран в прозореца с календар. Денят може да е число между 1 и 31, включително." - -#: zenity.xml:479(term) -msgid "=month" -msgstr "=месец" - -#: zenity.xml:481(para) -msgid "" -"Specifies the month that is selected in the calendar dialog. " -"month must be a number between 1 and 12 inclusive." -msgstr "" -"Определя месеца, който е избран в прозореца с календар. " -"Месецът трябва да е число между 1 и 12, " -"включително." - -#: zenity.xml:487(term) -msgid "=year" -msgstr "=година" - -#: zenity.xml:489(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Определя годината, която е избрана в календарния прозорец." - -#: zenity.xml:494(term) -msgid "=format" -msgstr "=формат" - -#: zenity.xml:496(para) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Определя формата, който е върнат от календарния прозорец след избора на " -"дата. Стандартният формат зависи от локалата Ви. Форматът трябва да е формат, който се приема от функцията " -"strftime, примерно %A %d/%m/%y." - -#: zenity.xml:506(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Изберете дата\" \\\n" -" --text=\"Натиснете върху дата, за да я изберете.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Няма избрана даата\"\n" -" fi\n" -" " - -#: zenity.xml:503(para) -msgid "" -"The following example script shows how to create a calendar dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец с календар: " -"" - -#: zenity.xml:522(title) -msgid "Calendar Dialog Example" -msgstr "Примерен прозорец с календар" - -#: zenity.xml:529(phrase) -msgid "Zenity calendar dialog example" -msgstr "Пример за календара на Zenity" - -#: zenity.xml:541(title) -msgid "File Selection Dialog" -msgstr "Прозорец за избор на файлове" - -#: zenity.xml:543(para) -msgid "" -"Use the option to create a file selection " -"dialog. Zenity returns the selected files or " -"directories to standard error. The default mode of the file selection dialog " -"is open." -msgstr "" -"Използвайте настройката , за да създадете " -"прозорец за избор на файлове. Zenity връща " -"избраните файлове или папки към стандартна грешка. Стандартния режим на " -"прозореца е отваряне." - -#: zenity.xml:547(para) -msgid "The file selection dialog supports the following options:" -msgstr "Прозорецът за избор на файлове поддържа следните опции:" - -#: zenity.xml:554(term) zenity.xml:1121(term) -msgid "=filename" -msgstr "=файлово име" - -#: zenity.xml:556(para) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Определя файла или папката, която е избрана в прозореца за избор на файлове, " -"когато е показан за пръв път." - -#: zenity.xml:561(option) -msgid "--multiple" -msgstr "--multiple" - -#: zenity.xml:563(para) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Позволява избирането на множество файлове в прозореца за избор на файлове." - -#: zenity.xml:568(option) -msgid "--directory" -msgstr "--directory" - -#: zenity.xml:570(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Позволява избирането само на папки в прозореца за избор на файлове." - -#: zenity.xml:575(option) -msgid "--save" -msgstr "--save" - -#: zenity.xml:577(para) -msgid "Set the file selection dialog into save mode." -msgstr "Поставяне на прозореца за избор на файлове в режим на запазване." - -#: zenity.xml:582(term) zenity.xml:727(term) -msgid "=separator" -msgstr "=разделител" - -#: zenity.xml:584(para) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Определя низа използван за разделяне на върнатия списък от файлови имена." - -#: zenity.xml:593(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Изберете файл\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"Избран е файлът \\\"$FILE\\\".\";;\n" -" 1)\n" -" echo \"Няма избран файл.\";;\n" -" -1)\n" -" echo \"Няма избран файл.\";;\n" -" esac\n" -" " - -#: zenity.xml:590(para) -msgid "" -"The following example script shows how to create a file selection dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за избро на " -"файлове: " - -#: zenity.xml:610(title) -msgid "File Selection Dialog Example" -msgstr "Примерен прозорец за избор на файлове" - -#: zenity.xml:617(phrase) -msgid "Zenity file selection dialog example" -msgstr "Пример за избора на файл в Zenity" - -#: zenity.xml:627(title) -msgid "Notification Icon" -msgstr "Икона за уведомяване" - -#: zenity.xml:637(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "Определя текста, който се показва в района за уведомяване." - -#: zenity.xml:645(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Има налични обновления по системата!\"\n" -" " - -#: zenity.xml:643(para) -msgid "" -"The following example script shows how to create a notification icon: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете икона за уведомяване: " -"" - -#: zenity.xml:656(title) -msgid "Notification Icon Example" -msgstr "Примерна икона за уведомяване" - -#: zenity.xml:663(phrase) -msgid "Zenity notification icon example" -msgstr "Пример за иконата за известяване на Zenity" - -#: zenity.xml:674(title) -msgid "List Dialog" -msgstr "Списъчен прозорец" - -#: zenity.xml:676(para) -msgid "" -"Use the option to create a list dialog. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard error." -msgstr "" -"Използвайте настройката , за да създадете прозорец " -"със списък. Zenity връща записите в първата " -"колона текст на избраните редове към стандартна грешка." - -#: zenity.xml:680(para) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Данните за прозореца трябва да бъдат определени колона по колона, ред по " -"ред. Данните могат да бъдат предоставени на прозореца през стандартния вход. " -"Всеки запис трябва да бъде разделен от символ за нов ред." - -#: zenity.xml:684(para) -msgid "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Ако използвате настройките или , всеки ред трябва да започва или с 'TRUE', или с 'FALSE'." - -#: zenity.xml:688(para) -msgid "The list dialog supports the following options:" -msgstr "Прозорецът със списък поддържа следните настройки:" - -#: zenity.xml:695(term) -msgid "=column" -msgstr "=колона" - -#: zenity.xml:697(para) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a option for each column that you want to " -"display in the dialog." -msgstr "" -"Определя заглавната част на колоните, които се показват в списъка. Трябва да " -"определите настройката за всяка колона, която " -"искате да покажете в прозореца." - -#: zenity.xml:703(option) -msgid "--checklist" -msgstr "--checklist" - -#: zenity.xml:705(para) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Определя, че първата колона в първия прозорец със списък съдържа полета за " -"отметки." - -#: zenity.xml:711(option) -msgid "--radiolist" -msgstr "--radiolist" - -#: zenity.xml:713(para) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Определя това, че първата колона в прозореца със списък съдържа радио бутони." - -#: zenity.xml:719(option) zenity.xml:1128(option) -msgid "--editable" -msgstr "--editable" - -#: zenity.xml:721(para) -msgid "Allows the displayed items to be edited." -msgstr "Позволява показаните елементи да бъдат редактирани." - -#: zenity.xml:729(para) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Определя кой низ е използван, когато прозореца със списък връща избраните " -"записи." - -#: zenity.xml:735(term) -msgid "=column" -msgstr "=колона" - -#: zenity.xml:737(para) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Определя кои колони да бъдат изведени след избора. Стандартната колона е \"1" -"\". \"ALL\" може да се използва, за да се изведат всички колони в списъка." - -#: zenity.xml:747(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Изберете грешките, които искате да прегледате\" \\\n" -" --column=\"Номер на грешка\" --column=\"Сериозност\" --column=\"Описание\" \\\n" -" 992383 Нормална \"GtkTreeView забива при множествен избор\" \\\n" -" 293823 Висока \"GNOME Dictionary не поддържа сървър посредник\" \\\n" -" 393823 Критична \"Редактирането на менюто не работи в GNOME 2.0\"\n" -" " - -#: zenity.xml:745(para) -msgid "" -"The following example script shows how to create a list dialog: " -msgstr "" -"Следният пример показва как да създадете списъчен прозорец: " - -#: zenity.xml:761(title) -msgid "List Dialog Example" -msgstr "Пример за прозорец със списък" - -#: zenity.xml:768(phrase) -msgid "Zenity list dialog example" -msgstr "Пример за списъка с файлове на Zenity" - -#: zenity.xml:779(title) -msgid "Message Dialogs" -msgstr "Прозорци със съобщения" - -#: zenity.xml:781(para) -msgid "" -"Zenity can create four types of message dialog:" -msgstr "" -"Zenity може да създава четири вида прозорци със " -"съобщения:" - -#: zenity.xml:799(para) -msgid "" -"For each type, use the option to specify the text " -"that is displayed in the dialog." -msgstr "" -"За всеки вид, използвайте настройката , за да " -"определите текста, който да се показва в прозореца." - -#: zenity.xml:804(title) -msgid "Error Dialog" -msgstr "Прозорец за грешка" - -#: zenity.xml:806(para) -msgid "Use the option to create an error dialog." -msgstr "" -"Използвайте настройката , за да създадете прозорец " -"за грешка." - -#: zenity.xml:813(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Не може да се открие /var/log/syslog.\"\n" -" " - -#: zenity.xml:810(para) -msgid "" -"The following example script shows how to create an error dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за грепка: " -"" - -#: zenity.xml:823(title) -msgid "Error Dialog Example" -msgstr "Пример за прозорец за грешка" - -#: zenity.xml:830(phrase) -msgid "Zenity error dialog example" -msgstr "Пример за грешка в Zenity" - -#: zenity.xml:838(title) -msgid "Information Dialog" -msgstr "Прозорец за информация" - -#: zenity.xml:840(para) -msgid "Use the option to create an information dialog." -msgstr "" -"Използвайте настройката , за да създадете прозорец за " -"информация." - -#: zenity.xml:847(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Сливането е завършено. Обновени са 3 от 10 файла.\"\n" -" " - -#: zenity.xml:844(para) -msgid "" -"The following example script shows how to create an information dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за информация: " -"" - -#: zenity.xml:857(title) -msgid "Information Dialog Example" -msgstr "Пример за прозорец за информация" - -#: zenity.xml:864(phrase) -msgid "Zenity information dialog example" -msgstr "Пример за подаваната информация от Zenity" - -#: zenity.xml:872(title) -msgid "Question Dialog" -msgstr "Прозорец за въпроси" - -#: zenity.xml:874(para) -msgid "Use the option to create a question dialog." -msgstr "" -"Използвайте настройката , за да създадете " -"прозорец за въпроси." - -#: zenity.xml:881(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Сигурни ли сте, че искате да продължите?\"\n" -" " - -#: zenity.xml:878(para) -msgid "" -"The following example script shows how to create a question dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за въпроси: " -"" - -#: zenity.xml:891(title) -msgid "Question Dialog Example" -msgstr "Пример за прозорец за въпроси" - -#: zenity.xml:898(phrase) -msgid "Zenity question dialog example" -msgstr "Пример за запиване от Zenity" - -#: zenity.xml:906(title) -msgid "Warning Dialog" -msgstr "Прозорец за предупреждение" - -#: zenity.xml:908(para) -msgid "Use the option to create a warning dialog." -msgstr "" -"Използвайте настройката , за да създадете прозорец " -"за предупреждение." - -#: zenity.xml:915(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Изключете захранващия кабел, за да избегнете токов удар.\"\n" -" " - -#: zenity.xml:912(para) -msgid "" -"The following example script shows how to create a warning dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за " -"предупреждение: " - -#: zenity.xml:925(title) -msgid "Warning Dialog Example" -msgstr "Пример за прозорец за предупреждение" - -#: zenity.xml:932(phrase) -msgid "Zenity warning dialog example" -msgstr "Пример за предупреждение от Zenity" - -#: zenity.xml:944(title) -msgid "Progress Dialog" -msgstr "Прозорец за прогрес" - -#: zenity.xml:946(para) -msgid "Use the option to create a progress dialog." -msgstr "" -"Използвайте настройката , за да създадете " -"прозорец за прогрес." - -#: zenity.xml:950(para) -msgid "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." -msgstr "" -"Zenity чете данни от стандартния вход ред по ред. " -"Ако някой ред започва с #, текстът се обновява с текста на този ред. Ако ред " -"съдържа само число, процентът се обновява към това число." - -#: zenity.xml:954(para) -msgid "The progress dialog supports the following options:" -msgstr "Прозорецът за прогрес поддържа следните настройки:" - -#: zenity.xml:963(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Определя текста, който да се показва в прозореца за прогрес." - -#: zenity.xml:968(term) -msgid "=percentage" -msgstr "=проценти" - -#: zenity.xml:970(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Определя началните проценти, които да се настроят за прозореца за прогрес." - -#: zenity.xml:975(option) -msgid "--auto-close" -msgstr "--auto-close" - -#: zenity.xml:977(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Затваря прозореца за прогрес, когато се достигнат стоте процента." - -#: zenity.xml:982(option) -msgid "--pulsate" -msgstr "--pulsate" - -#: zenity.xml:984(para) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "Указва, че лентата за прогреса пулсира докато във входа не се достигне до знака EOF." - -#: zenity.xml:992(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Обновяване на пощенските журнали\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Зануляване на cron\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"Този ред просто ще бъде игнориран\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Рестартиране на системата\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Обновяване на системните журнали\" \\\n" -" --text=\"Сканиране на пощенските журнали...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Обновяването е отказано.\"\n" -" fi\n" -"\n" -" " - -#: zenity.xml:990(para) -msgid "" -"The following example script shows how to create a progress dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец с прогрес: " -"" - -#: zenity.xml:1020(title) -msgid "Progress Dialog Example" -msgstr "Пример за прозорец за прогрес" - -#: zenity.xml:1027(phrase) -msgid "Zenity progress dialog example" -msgstr "Пример за показване на програса в Zenity" - -#: zenity.xml:1038(title) -msgid "Text Entry Dialog" -msgstr "Прозорец за въвеждане на текст" - -#: zenity.xml:1040(para) -msgid "" -"Use the option to create a text entry dialog. " -"Zenity returns the contents of the text entry to " -"standard error." -msgstr "" -"Използвайте настройката , за да създадете прозорец за " -"въвеждане на текст. Zenity връща съдържанието на " -"текстовото поле към стандартна грешка." - -#: zenity.xml:1043(para) -msgid "The text entry dialog supports the following options:" -msgstr "Прозорецът за въвеждане на текст поддържа следните настройки:" - -#: zenity.xml:1052(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "" -"Определя текстът, който да се показва в прозореца за въвеждане на текст." - -#: zenity.xml:1057(term) -msgid "=text" -msgstr "=текст" - -#: zenity.xml:1059(para) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Определя текста, който да се показва в полето за въвеждане на текст в " -"прозореца за въвеждане на текст." - -#: zenity.xml:1064(option) -msgid "--hide-text" -msgstr "--hide-text" - -#: zenity.xml:1066(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "" -"Скрива текста в полето за въвеждане на текст в прозореца за въвеждане на " -"текст." - -#: zenity.xml:1075(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Добавяне на запис\" \\\n" -" --text=\"Въведете _паролата си:\" \\\n" -" --entry-text \"парола\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"Няма въведена парола\"\n" -" fi\n" -" " - -#: zenity.xml:1072(para) -msgid "" -"The following example script shows how to create a text entry dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец за въвеждане на " -"текст: " - -#: zenity.xml:1091(title) -msgid "Text Entry Dialog Example" -msgstr "Пример за прозорец за въвеждане на текст" - -#: zenity.xml:1098(phrase) -msgid "Zenity text entry dialog example" -msgstr "Пример за подаване на текст към Zenity" - -#: zenity.xml:1108(title) -msgid "Text Information Dialog" -msgstr "Прозорец с текстова информация" - -#: zenity.xml:1110(para) -msgid "" -"Use the option to create a text information " -"dialog." -msgstr "" -"Използвайте настройката , за да създадете " -"прозорец с текстова информация." - -#: zenity.xml:1114(para) -msgid "The text information dialog supports the following options:" -msgstr "Прозорецът с текстова информация поддържа следните настройки:" - -#: zenity.xml:1123(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Определя файл, който да се зарежда в прозореца с текстова информация." - -#: zenity.xml:1130(para) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard error when the dialog is closed." -msgstr "" -"Позволява показаният текст да бъде редактиран. Редактираният текст се връща " -"към стандартна грешка, когато прозорецът бъде затворен." - -#: zenity.xml:1138(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Избор на файл\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"Няма избран файл.\";;\n" -" -1)\n" -" echo \"Няма избран файл.\";;\n" -" esac\n" -" " - -#: zenity.xml:1136(para) -msgid "" -"The following example script shows how to create a text information dialog: " -"" -msgstr "" -"Следният примерен скрипт показва как да създадете прозорец с текстова " -"информация: " - -#: zenity.xml:1160(title) -msgid "Text Information Dialog Example" -msgstr "Пример за прозорец с текстова информация" - -#: zenity.xml:1167(phrase) -msgid "Zenity text information dialog example" -msgstr "Пример за получаване на информация от Zenity" - -#: legal.xml:2(para) -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" -"Предоставя се разрешение за копиране, разпространение и/" -"или промяна на този документ, съгласно условията на " -"„Лиценза за свободна документация на GNU“," -" версия 1.1 или всяка следваща версия, издадена от Фондация " -"„Свободен софтуер“; без „Непроменливи раздели“, " -"„Текстове на предната корица“, както и „Текстове на задната корица“." -" Копие на лиценза може да бъде намерено тук или във файла COPYING-DOCS," -" разпространяван с това ръководство." - -#: legal.xml:12(para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Това ръководство е част от колекция ръководства за GNOME," -" разпространявани под GFDL." -" Ако искате да разпространявате това ръководство отделно," -" можете да го направите, като включите копие на лиценза към ръководството," -" както е описано в раздел 6 от лиценза." - -#: legal.xml:19(para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Много от имената, използвани от компании," -" за да отличават собствените си продукти и услуги," -" са регистрирани търговски марки." -" Когато такива имена присъстват в която и да е документация за GNOME и членовете на проекта за документация на GNOME са осведомени за съответните търговски марки," -" тогава имената са с главни букви или начални главни букви." - -#: legal.xml:35(para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"ДОКУМЕНТЪТ СЕ ПРЕДОСТАВЯ НА БАЗА „КАКТО Е“, БЕЗ КАКВАТО И ДА Е ГАРАНЦИЯ," -" ПРЯКА ИЛИ КОСВЕНА, ВКЛЮЧИТЕЛНО БЕЗ ОГРАНИЧЕНИЯ И ГАРАНЦИИ," -" ЧЕ ДОКУМЕНТЪТ ИЛИ ПРОМЕНЕНАТА МУ ВЕРСИЯ СА БЕЗ ДЕФЕКТИ," -" ГОДНИ ЗА КОНКРЕТНА УПОТРЕБА ИЛИ НЕНАРУШАВАЩИ." -" ЦЕЛИЯТ РИСК ОТНОСНО КАЧЕСТВОТО," -" ТОЧНОСТТА И ХАРАКТЕРИСТИКИТЕ НА ДОКУМЕНТА ИЛИ ПРОМЕНЕНАТА МУ ВЕРСИЯ Е ЗА ВАША СМЕТКА." -" АКО НЯКОЙ ДОКУМЕНТ ИЛИ ПРОМЕНЕНАТА МУ ВЕРСИЯ СЕ ОКАЖЕ ДЕФЕКТЕН В КАКВОТО И ДА Е ОТНОШЕНИЕ," -" ВИЕ (НЕ ПЪРВОНАЧАЛНИЯ АВТОР ИЛИ КОЙТО И ДА Е ДОПРИНЕСЪЛ ЗА РАЗРАБОТКАТА)" -" ПОЕМАТЕ РАЗХОДИТЕ ЗА ВСЯКАКВО НЕОБХОДИМО ОБСЛУЖВАНЕ, ПОПРАВКА ИЛИ КОРЕКЦИИ." -" ТОВА ОТКАЗВАНЕ ОТ ГАРАНЦИЯТА ПРЕДСТАВЛЯВА СЪЩЕСТВЕНА ЧАСТ ОТ ТОЗИ ЛИЦЕНЗ." -" НЕ Е РАЗРЕШЕНА УПОТРЕБАТА НА КОЙТО И ДА Е ДОКУМЕНТ ИЛИ ПРОМЕНЕНАТА ВЕРСИЯ НА ДОКУМЕНТА," -" ОСВЕН ПРИ СПАЗВАНЕ НА ТОЗИ ОТКАЗ ОТ ГАРАНЦИЯ; И" - -#: legal.xml:55(para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"ПРИ НИКАКВИ ОБСТОЯТЕЛСТВА И ПОД НИКАКВА ЮРИДИЧЕСКА ОСНОВА," -" НЕЗАВИСИМО ДАЛИ Е В НАРУШЕНИЕ (ВКЛЮЧИТЕЛНО ПРИЧИНЕНО ОТ НЕБРЕЖНОСТ)," -" ДОГОВОР ИЛИ ДРУГО, АВТОРЪТ," -" ПЪРВОНАЧАЛНИЯТ АВТОР ИЛИ КОЙТО И ДА Е ДОПРИНЕСЪЛ ЗА РАЗРАБОТКАТА," -" ИЛИ КОЙТО И ДА Е ДИСТРИБУТОР НА ДОКУМЕНТА ИЛИ ПРОМЕНЕНАТА МУ ВЕРСИЯ," -" ИЛИ КОЙТО И ДА Е ДОСТАВЧИК НА КОЯТО И ДА Е ОТ ИЗБРОЕНИТЕ СТРАНИ," -" НЯМА ДА БЪДЕ ОТГОВОРЕН ПРЕД НИКОГО ЗА ВСИЧКИ ПРЕКИ, КОСВЕНИ, СПЕЦИАЛНИ," -" СЛУЧАЙНИ ИЛИ ПОСЛЕДСТВЕНИ ЩЕТИ ОТ КАКЪВТО И ДА Е ХАРАКТЕР, ВКЛЮЧИТЕЛНО," -" БЕЗ ОГРАНИЧЕНИЯ, ЩЕТИ ЗА ЗАГУБА НА ДОБРОЖЕЛАТЕЛНОСТ, СПИРАНЕ НА РАБОТАТА," -" КОМПЮТЪРНА ПОВРЕДА ИЛИ НЕИЗПРАВНОСТ, ИЛИ ВСЯКАКВИ ДРУГИ ЩЕТИ ИЛИ ЗАГУБИ," -" ВЪЗНИКНАЛИ ИЛИ СВЪРЗАНИ С УПОТРЕБАТА НА ДОКУМЕНТА ИЛИ ПРОМЕНЕНИТЕ МУ ВЕРСИИ," -" ДОРИ И КОГАТО ТАЗИ СТРАНА Е БИЛА ИНФОРМИРАНА ЗА ВЪЗМОЖНОСТТА ОТ ТАКИВА ЩЕТИ." - -#: legal.xml:28(para) -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"" -msgstr "" -"ДОКУМЕНТЪТ И ПРОМЕНЕНИТЕ МУ ВЕРСИИ СЕ ПРЕДОСТАВЯТ ПОД УСЛОВИЯТА НА ЛИЦЕНЗА ЗА СВОБОДНА ДОКУМЕНТАЦИЯ НА GNU," -" С ДОПЪЛНИТЕЛНОТО ПОЯСНЕНИЕ, ЧЕ:" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2. -#: legal.xml:0(None) -msgid "translator-credits" -msgstr "Ростислав \"zbrox\" Райков , 2005" diff --git a/help/bg/figures/zenity-colorselection-screenshot.png b/help/bg/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 307c8c2..0000000 Binary files a/help/bg/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/ca/ca.po b/help/ca/ca.po deleted file mode 100644 index a336926..0000000 --- a/help/ca/ca.po +++ /dev/null @@ -1,2873 +0,0 @@ -# Traducció del zenity de l'equip de Softcatalà. -# Copyright © 2008 Free Software Foundation, Inc. -# Joan Duran , 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"POT-Creation-Date: 2020-08-31 20:51+0000\n" -"PO-Revision-Date: 2020-09-14 12:43+0200\n" -"Last-Translator: Miquel-Àngel Burgos i Fradeja \n" -"Language-Team: Catalan \n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "Llicència de documentació lliure de GNU versió 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Aquesta obra està llicenciada sota una <_:link-1/> o qualsevol versió " -"posterior." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "enllaç" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Teniu permís per a copiar, distribuir i/o modificar aquest document sota els " -"termes de la Llicència de documentació lliure GNU (GFDL) versió 1.1 o " -"qualsevol versió publicada posteriorment per la Free Software Foundation " -"sense seccions invariants, texts de portada ni texts de contraportada. Podeu " -"trobar una còpia de la GFDL en aquest <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Aquest manual forma part d'una col·lecció de manuals del GNOME distribuïts " -"sota la GFDL. Si voleu distribuir aquest manual independentment de la " -"col·lecció, podeu fer-ho afegint una còpia de la llicència al manual, tal " -"com es descriu a la secció 6 de la llicència." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Molts dels noms que les empreses utilitzen per a distingir els seus " -"productes i serveis es consideren marques comercials. Quan aquests noms " -"apareguin en qualsevol documentació del GNOME, si els membres del Projecte " -"de documentació del GNOME han estat avisats pel que fa a les marques, els " -"noms apareixeran en majúscules o amb les inicials en majúscules." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"EL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT ES FACILITEN SOTA ELS " -"TERMES DE LA LLICÈNCIA DE DOCUMENTACIÓ LLIURE DE GNU, TENINT EN COMPTE QUE:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 DOCUMENT S'OFEREIX «TAL COM ÉS», SENSE CAP TIPUS DE GARANTIA, NI " -"EXPLÍCITA NI IMPLÍCITA; AIXÒ INCLOU, SENSE LIMITAR-S'HI, LES GARANTIES QUE " -"EL DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT NO TINGUI DEFECTES, SIGUI " -"COMERCIALITZABLE, SIGUI ADEQUAT PER A UN ÚS CONCRET O NO INFRINGEIXI CAP " -"LLEI. TOT EL RISC PEL QUE FA A LA QUALITAT, EXACTITUD I RENDIMENT DEL " -"DOCUMENT O LA VERSIÓ MODIFICADA DEL DOCUMENT ÉS VOSTRE. EN CAS QUE EL " -"DOCUMENT RESULTÉS DEFECTUÓS EN QUALSEVOL ASPECTE, VÓS (NO PAS L'ESCRIPTOR " -"INICIAL, L'AUTOR O CAP ALTRE COL·LABORADOR) ASSUMIU TOT EL COST DE " -"MANTENIMENT, REPARACIÓ O CORRECCIÓ. AQUESTA RENÚNCIA DE GARANTIA CONSTITUEIX " -"UNA PART ESSENCIAL D'AQUESTA LLICÈNCIA. NO S'AUTORITZA L'ÚS DE CAP DOCUMENT " -"O VERSIÓ MODIFICADA DEL DOCUMENT EXCEPTE SOTA AQUESTA RENÚNCIA DE GARANTIA; I" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"EN CAP CAS I SOTA CAP INTERPRETACIÓ LEGAL, JA SIGUI PER AGREUJAMENT " -"(INCLOENT-HI LA NEGLIGÈNCIA), CONTRACTE O ALTRE CAS, L'AUTOR, L'ESCRIPTOR " -"ORIGINAL, QUALSEVOL DELS COL·LABORADORS O DISTRIBUÏDORS DEL DOCUMENT O UNA " -"VERSIÓ MODIFICADA DEL DOCUMENT NI CAP PROVEÏDOR D'AQUESTES PARTS NO SERAN " -"RESPONSABLES DAVANT DE NINGÚ PER CAP DANY DIRECTE, INDIRECTE, ESPECIAL, " -"ACCIDENTAL O CONSECUTIU DE QUALSEVOL TIPUS; AIXÒ INCLOU, SENSE LIMITAR-S'HI, " -"ELS DANYS PER PÈRDUA DE CLIENTS, INTERRUPCIONS DE LA FEINA, FALLADA O " -"MALFUNCIONAMENT DE L'ORDINADOR, O QUALSEVOL ALTRA PÈRDUA O DANY RELACIONAT " -"AMB L'ÚS DEL DOCUMENT I LES VERSIONS MODIFICADES DEL DOCUMENT, FINS I TOT SI " -"S'HA INFORMAT AQUESTA PART DE LA POSSIBILITAT D'AQUESTS DANYS." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Joan Duran , 2008\n" -"Miquel-Àngel Burgos i Fradeja , 2020" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Utilitzeu l'opció --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Diàleg de calendari" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Utilitzeu l'opció --calendar per a crear un diàleg de calendari. " -"El Zenity retorna la data seleccionada a la sortida estàndard. Si no " -"s'especifica cap data a la línia d'ordres, el diàleg utilitza la data actual." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "El diàleg de calendari admet les opcions següents:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=text" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Especifica el text que es mostra al diàleg del calendari." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=dia" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Especifica el dia seleccionat al diàleg del calendari. El dia ha de ser un " -"nombre entre l'1 i el 31 inclosos." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=mes" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Especifica el mes seleccionat al diàleg del calendari. El mes ha de ser un " -"nombre entre l'1 i el 12 inclosos." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=any" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Especifica l'any que hi ha seleccionat al diàleg del calendari." - -#. (itstool) path: item/title -#: C/calendar.page:40 -#| msgid "=format" -msgid "--date-format=format" -msgstr "--date-format=format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Especifica el format que es retorna des del diàleg del calendari després de " -"seleccionar la data. El format predeterminat depèn de la configuració " -"regional. El format ha de ser un format acceptable per la funció " -"strftime, per exemple: %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg de calendari:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Seleccioneu una data\" \\\n" -"--text=\"Feu clic en una data per a seleccionar-la.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No s'ha seleccionat cap data\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Exemple de diàleg de calendari" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Exemple de diàleg de calendari del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -#| msgid "" -#| "@@image: 'figures/zenity-calendar-screenshot.png'; " -#| "md5=b739d32aad963be4415d34ec103baf26" -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Utilitzeu l'opció --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Diàleg de selecció de color" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Utilitzeu l'opció --color-selection per a crear un diàleg de " -"selecció de color." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "El diàleg de selecció de color admet les opcions següents:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VALOR" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Establiu el color inicial (per exemple, #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Mostreu la paleta." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"L'script d'exemple següent mostra com crear un diàleg de selecció de color:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Heu seleccionat $COLOR.\";;\n" -" 1)\n" -" echo \"No s'ha seleccionat cap color.\";;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Exemple de diàleg de selecció de color" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Exemple de diàleg de selecció de color del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -#| msgid "" -#| "@@image: 'figures/zenity-fileselection-screenshot.png'; " -#| "md5=2c903cba26fb40462deea0bb6b931ea7" -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Utilitzeu l'opció --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Diàleg d'entrada de text" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Utilitzeu l'opció -entry per a crear un diàleg d'entrada de text. " -"El Zenity retorna el contingut de l'entrada de text a la sortida " -"estàndard." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "El diàleg d'entrada de text admet les opcions següents:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Especifica el text que es mostra al diàleg d'entrada de text." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=text" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Especifica el text que es mostra al camp d'entrada del diàleg d'entrada de " -"text." - -#. (itstool) path: item/title -#: C/entry.page:30 -#| msgid "--hide-text" -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Amaga el text del camp d'entrada del diàleg d'entrada de text." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"L'script d'exemple següent mostra com crear un diàleg d'entrada de text:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Afegeix un perfil nou\" \\\n" -"--text=\"Introduïu el nom del perfil nou:\" \\\n" -"--entry-text \"PerfilNou\" \\\n" -" then echo $?\n" -" else echo \"No s'ha introduït cap nom\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Exemple de diàleg d'entrada de text" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Exemple de diàleg d'entrada de text del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -#| msgid "" -#| "@@image: 'figures/zenity-entry-screenshot.png'; " -#| "md5=0fb790cbb6d13ec13a314b34f844ee80" -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Utilitzeu l'opció --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Diàleg d'error" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Utilitzeu l'opció --error per a crear un diàleg d'error." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg d'error:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"No s'ha pogut trobar /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Exemple de diàleg d'error" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Exemple de diàleg d'error del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -#| msgid "" -#| "@@image: 'figures/zenity-error-screenshot.png'; " -#| "md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Utilitzeu l'opció --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Diàleg de selecció de fitxers" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Utilitzeu l'opció --file-selection per a crear un diàleg de " -"selecció de fitxers. El Zenity retorna els fitxers o directoris " -"seleccionats a la sortida estàndard. El mode per defecte del diàleg de " -"selecció de fitxers és obrir." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "El diàleg de selecció de fitxers admet les opcions següents:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=fitxer" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Especifica el fitxer o directori que està seleccionat al diàleg de selecció " -"de fitxers quan es mostra el diàleg per primer cop." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -#| msgid "--multiple" -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Permet la selecció de diversos noms de fitxer al diàleg de selecció de " -"fitxers." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -#| msgid "--directory" -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" -"Només permet la selecció de directoris al diàleg de selecció de fitxers." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Estableix el diàleg de selecció de fitxers al mode de desar." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -#| msgid "=separator" -msgid "--separator=separator" -msgstr "--separator=separator" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Especifica la cadena que s'utilitza per a dividir la llista de noms de " -"fitxers retornada." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"L'script d'exemple següent mostra com crear un diàleg de selecció de fitxers:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Seleccioneu un fitxer\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"S'ha seleccionat \\\"$FILE\\\".\";;\n" -" 1)\n" -" echo \"No s'ha seleccionat cap fitxer.\";;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Exemple de diàleg de selecció de fitxers" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Exemple de diàleg de selecció de fitxers del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -#| msgid "" -#| "@@image: 'figures/zenity-fileselection-screenshot.png'; " -#| "md5=2c903cba26fb40462deea0bb6b931ea7" -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Utilitzeu l'opció --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Diàleg de formularis" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"Utilitzeu l'opció --forms per a crear un diàleg de formularis." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "El diàleg de formularis admet les opcions següents:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=Fitxer" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Afegiu una entrada nova al diàleg de formularis." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=Camp" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Afegiu una entrada de contrasenya nova al diàleg de formularis (oculta el " -"text)." - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=Camp" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Afegiu un calendari nou al diàleg de formularis." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXT" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Especifiqueu el text del diàleg." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SEPARADOR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Especifiqueu el caràcter separador de sortida (per defecte: |)." - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=PATRÓ" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Especifiqueu el format de la data retornada. El format predeterminat depèn " -"de la configuració regional. El format ha de ser un format acceptable per la " -"funció strftime, per exemple: %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg de formularis:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Afegeix un amic\" \\\n" -"\t--text=\"Introduïu informació sobre l'amic.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Nom\" \\\n" -"\t--add-entry=\"Cognoms\" \\\n" -"\t--add-entry=\"Correu electrònic\" \\\n" -"\t--add-calendar=\"Aniversari\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"S'ha afegit l'amic.\";;\n" -" 1)\n" -" echo \"No s'ha afegit cap amic.\"\n" -"\t;;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Exemple de diàleg de formularis" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Exemple de diàleg de formularis del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Equip de documentació del sistema d'escriptori de Sun Java" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -#| msgid "Nicholas" -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manual del Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Diàlegs" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Utilitzeu l'opció --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Diàleg d'informació" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"Utilitzeu l'opció --info per a crear un diàleg d'informació." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg d'informació:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"S'ha finalitzat la fusió. S'han actualitzat 3 fitxers de 10.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Exemple de diàleg d'informació" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Exemple de diàleg d'informació del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -#| msgid "" -#| "@@image: 'figures/zenity-information-screenshot.png'; " -#| "md5=5a9af4275678c8bfb9b48010860a45e5" -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"El Zenity us permet crear els diferents tipus de diàleg senzill." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introducció" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"El Zenity us permet crear els tipus de diàleg senzill següents:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Calendari" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Selecció de fitxers" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formularis" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Llista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Icona de notificació" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Missatge" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Error" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Informació" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Pregunta" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Avís" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Entrada de contrasenya" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Progrés" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Entrada de text" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Text informatiu" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Escala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Selecció de color" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Utilitzeu l'opció --llista." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Diàleg de llista" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Utilitzeu l'opció --list per a crear un diàleg de llista. El " -"Zenity retorna les entrades de la primera columna de text de les " -"files seleccionades a la sortida estàndard." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Les dades del diàleg s'han d'especificar columna per columna, fila per fila. " -"Les dades es poden proporcionar al diàleg a través de l'entrada estàndard. " -"Cada entrada s'ha de separar per un caràcter de línia nova." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Si utilitzeu les opcions --checklist o --radiolist, " -"cada fila ha de començar amb «TRUE» o «FALSE»." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "El diàleg de llista admet les opcions següents:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=columna" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Especifica les capçaleres de columna que es mostren al diàleg de llista. Heu " -"d'especificar una opció --column per cada columna que voleu " -"mostrar al diàleg." - -#. (itstool) path: item/title -#: C/list.page:35 -#| msgid "--checklist" -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Especifica que la primera columna del diàleg de llista conté caselles de " -"selecció." - -#. (itstool) path: item/title -#: C/list.page:41 -#| msgid "--radiolist" -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Especifica que la primera columna del diàleg de llista conté botons d'opció." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -#| msgid "--editable" -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Permet que s'editin els elements mostrats." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Especifica quina cadena s'utilitza quan el diàleg de llista retorna les " -"entrades seleccionades." - -#. (itstool) path: item/title -#: C/list.page:59 -#| msgid "=column" -msgid "--print-column=column" -msgstr "--print-column=columna" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Especifica quina columna s'hauria d'imprimir si se selecciona. La columna " -"per defecte és «1». Es pot utilitzar «ALL» (totes) per a imprimir totes les " -"columnes de la llista." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg de llista:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Trieu els errors que voleu visualitzar\" \\\n" -" --column=\"Número d'error\" --column=\"Gravetat\" --column=\"Descripció\" \\\n" -" 992383 Normal \"El GtkTreeView falla en seleccions múltiples\" \\\n" -" 293823 Alta \"El diccionari del GNOME no gestiona servidors intermediaris\" \\\n" -" 393823 Crítica \"L'edició del menú no funciona al GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Exemple de diàleg de llista" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Exemple de diàleg de llista del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -#| msgid "" -#| "@@image: 'figures/zenity-list-screenshot.png'; " -#| "md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Error, Informació, " -"Pregunta, Avís" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Diàleg de missatge" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Per cada tipus, utilitzeu l'opció --text per a especificar el " -"text que es mostra al diàleg." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Utilitzeu l'opció --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Icona de notificació" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Utilitzeu l'opció --notification per a crear una icona de " -"notificació." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Especifica el text que es mostra a l'àrea de notificació." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Escolta ordres a l'entrada estàndard. Cal especificar com a mínim una ordre. " -"Les ordres van separades per comes. Una ordre ha d'anar seguida per dos " -"punts i un valor." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"L'ordre icon també accepta quatre valors d'icona d'estoc com ara " -"error, informació, pregunta i avís." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "L'script d'exemple següent mostra com crear una icona de notificació:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"informació\" \\\n" -" --text=\"Hi ha actualitzacions necessàries per al sistema.\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Exemple d'icona de notificació" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Exemple d'icona de notificació del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -#| msgid "" -#| "@@image: 'figures/zenity-notification-screenshot.png'; " -#| "md5=d7a119ced7cdf49b307013551d94e11e" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"L'script d'exemple següent mostra com crear una icona de notificació " -"juntament amb --listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: aquest és el text del missatge\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Exemple d'icona de notificació amb --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "Exemple de notificació del Zenity amb --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -#| msgid "" -#| "@@image: 'figures/zenity-notification-screenshot.png'; " -#| "md5=d7a119ced7cdf49b307013551d94e11e" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Utilitzeu l'opció --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Diàleg de contrasenya" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Utilitzeu l'opció --password per a crear un diàleg d'entrada de " -"contrasenya." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "El diàleg d'entrada de contrasenya admet les opcions següents:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Mostra el camp del nom d'usuari." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"L'script d'exemple següent mostra com crear un diàleg d'entrada de " -"contrasenya:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nom d'usuari: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Contrasenya: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Atura l'inici de sessió.\";;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Exemple de diàleg d'entrada de contrasenya" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Exemple de diàleg d'entrada de contrasenya del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -#| msgid "" -#| "@@image: 'figures/zenity-progress-screenshot.png'; " -#| "md5=706736240f396ada12044c23b708a6a6" -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Utilitzeu l'opció --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Diàleg de progrés" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"Utilitzeu l'opció --progress per a crear un diàleg de progrés." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"El Zenity llegeix les dades de l'entrada estàndard línia per " -"línia. Si una línia conté el prefix #, el text s'actualitza amb el text de " -"la línia. Si una línia només conté un nombre, el percentatge s'actualitza " -"amb aquest nombre." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "El diàleg de progrés admet les opcions següents:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Especifica el text que es mostrarà al diàleg de progrés." - -#. (itstool) path: item/title -#: C/progress.page:30 -#| msgid "=percentage" -msgid "--percentage=percentage" -msgstr "--percentage=percentatge" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Especifica el percentatge inicial que s'estableix al diàleg de progrés." - -#. (itstool) path: item/title -#: C/progress.page:35 -#| msgid "--auto-close" -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Tanca el diàleg de progrés quan s'arribi al 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -#| msgid "--pulsate" -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Especifica que la barra de progrés parpellegi fins que es llegeixi un " -"caràcter EOF (final de fitxer) de l'entrada estàndard." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg de progrés:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# S'estan actualitzant els registres del correu\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# S'estan reiniciant les tasques del cron\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Aquesta línia s'ignorarà\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# S'està reiniciant el sistema\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Actualització dels registres del sistema\" \\\n" -" --text=\"Comprovació dels registres del sistema...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Actualització cancel·lada.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Exemple de diàleg de progrés" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Exemple de diàleg de progrés del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -#| msgid "" -#| "@@image: 'figures/zenity-progress-screenshot.png'; " -#| "md5=706736240f396ada12044c23b708a6a6" -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Utilitzeu l'opció --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Diàleg de pregunta" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"Utilitzeu l'opció --question per a crear un diàleg de pregunta." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg de pregunta:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Segur que voleu continuar?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Exemple de diàleg de pregunta" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Exemple de diàleg de pregunta del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -#| msgid "" -#| "@@image: 'figures/zenity-question-screenshot.png'; " -#| "md5=df8414504f8c8ca946a3f1e63a460938" -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Utilitzeu l'opció --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Diàleg d'escala" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Utilitzeu l'opció --scale per a crear un diàleg d'escala." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "El diàleg d'escala admet les opcions següents:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Establiu el text del diàleg (per defecte: Ajusteu el valor de l'escala)." - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Establiu el valor inicial (per defecte: 0). Heu d'especificar un valor entre " -"el valor mínim i el màxim." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Establiu el valor mínim (per defecte: 0)." - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Establiu el valor màxim (per defecte: 100)." - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Establiu la mida dels augments (per defecte: 1)." - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "" -"Imprimiu el valor a la sortida estàndard, sempre que es canviï un valor." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Amagueu el valor al diàleg." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg d'escala:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Seleccioneu una transparència de finestra.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Heu seleccionat $VALUE%.\";;\n" -" 1)\n" -" echo \"No s'ha seleccionat cap valor.\";;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Exemple de diàleg d'escala" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Exemple de diàleg d'escala del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -#| msgid "" -#| "@@image: 'figures/zenity-calendar-screenshot.png'; " -#| "md5=b739d32aad963be4415d34ec103baf26" -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Utilitzeu l'opció --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Diàleg de text informatiu" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Utilitzeu l'opció --text-info per a crear un diàleg de text " -"informatiu." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "El diàleg de text informatiu admet les opcions següents:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Especifica el fitxer que es carrega al diàleg de text informatiu." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Permet que el text mostrat es pugui editar. El text editat es retorna a la " -"sortida estàndard quan es tanca el diàleg." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=LLETRA" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Especifica el tipus de lletra del text." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXT" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Activeu una casella de selecció com ara «Llegeixo i accepto els termes»." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Habiliteu el suport HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Estableix un URL en lloc d'un fitxer. Només funciona si utilitzeu l'opció --" -"html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"L'script d'exemple següent mostra com crear un diàleg de text informatiu:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Heu de col·locar el fitxer «COPYING» a la mateixa carpeta que aquest script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Llicència\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"He llegit i accepto les condicions.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Inicia la instal·lació.\"\n" -"\t# pas següent\n" -"\t;;\n" -" 1)\n" -" echo \"Atura la instal·lació.\"\n" -"\t;;\n" -" -1)\n" -" echo \"S'ha produït un error inesperat.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Exemple de diàleg de text informatiu" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Exemple de diàleg de text informatiu del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -#| msgid "" -#| "@@image: 'figures/zenity-text-screenshot.png'; " -#| "md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Podeu utilitzar el Zenity per a crear diàlegs senzills que " -"interactuen gràficament amb l'usuari." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Ús" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Quan escriviu scripts, podeu utilitzar el Zenity per a crear " -"diàlegs senzills que interactuen gràficament amb l'usuari com segueix:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Podeu crear un diàleg per a obtenir informació de l'usuari. Per exemple, " -"podeu sol·licitar a l'usuari que seleccioni una data d'un diàleg de " -"calendari o que seleccioni un fitxer d'un diàleg de selecció de fitxers." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Podeu crear un diàleg per a proporcionar informació a l'usuari. Per exemple, " -"podeu utilitzar un diàleg de progrés per a indicar l'estat actual d'una " -"operació o utilitzar el diàleg de missatge d'avís per a alertar a l'usuari." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Quan l'usuari tanca el diàleg, el Zenity imprimeix el text " -"produït pel diàleg a la sortida estàndard." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Quan escriviu ordres del Zenity, assegureu-vos de posar cometes " -"al voltant de cada argument." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Per exemple, utilitzeu:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Planificador de vacances\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "No utilitzeu pas:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Planificador de vacances" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Si no utilitzeu les cometes no obtindreu els resultats esperats." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Tecles d'accés" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Una tecla d'accés és una tecla que us permet realitzar una acció des del " -"teclat en lloc d'utilitzar el ratolí per a seleccionar una ordre des d'un " -"menú o diàleg. Cada tecla d'accés està identificada per una lletra " -"subratllada en l'opció d'un menú o d'un diàleg." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Alguns diàlegs del Zenity admeten l'ús de tecles d'accés. Per a " -"especificar el caràcter a utilitzar com a tecla d'accés, col·loqueu un " -"subratllat abans del caràcter al text del diàleg. L'exemple següent mostra " -"com especificar la lletra «T» com a tecla d'accés:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "«_Trieu un nom»." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Codis de sortida" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "El Zenity retorna els codis de sortida següents:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Codi de sortida" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Descripció" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"L'usuari ha premut D'acord o Tanca." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"L'usuari ha premut Cancel·la o ha utilitzat les " -"funcions de la finestra per a tancar el diàleg." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "S'ha produït un error inesperat." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "S'ha tancat el diàleg perquè s'ha acabat el temps d'espera." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Opcions generals" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Tots els diàlegs del Zenity admeten les opcions generals següents:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=títol" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Especifica el títol d'un diàleg." - -#. (itstool) path: item/title -#: C/usage.page:124 -#| msgid "=icon_path" -msgid "--window-icon=icon_path" -msgstr "--window-icon=camí" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Especifica la icona que es mostrarà al marc de la finestra del diàleg. També " -"podeu utilitzar 4 icones predefinides si proporcioneu les paraules clau " -"següents: «info» (informació), «warning» (avís), «question» (pregunta) i " -"«error» (error)." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=amplada" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Especifica l'amplada del diàleg." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=alçada" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Especifica l'alçada del diàleg." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=temps" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Especifica el temps d'espera, en segons, passats els quals es tancarà el " -"diàleg." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Opcions d'ajuda" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "El Zenity proporciona les opcions d'ajuda següents:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Mostra el text d'ajuda abreviat." - -#. (itstool) path: item/title -#: C/usage.page:167 -#| msgid "--help-all" -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Mostra el text d'ajuda complet per tots els diàlegs." - -#. (itstool) path: item/title -#: C/usage.page:172 -#| msgid "--help-general" -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Mostra el text d'ajuda de les opcions generals dels diàlegs." - -#. (itstool) path: item/title -#: C/usage.page:177 -#| msgid "--help-calendar" -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg de calendari." - -#. (itstool) path: item/title -#: C/usage.page:182 -#| msgid "--help-entry" -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg d'entrada de text." - -#. (itstool) path: item/title -#: C/usage.page:187 -#| msgid "--help-error" -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg d'error." - -#. (itstool) path: item/title -#: C/usage.page:192 -#| msgid "--help-info" -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg informatiu." - -#. (itstool) path: item/title -#: C/usage.page:197 -#| msgid "--help-file-selection" -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Mostra el text d'ajuda de les opcions del diàleg de selecció de fitxers." - -#. (itstool) path: item/title -#: C/usage.page:202 -#| msgid "--help-list" -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg de llista." - -#. (itstool) path: item/title -#: C/usage.page:207 -#| msgid "--help-notification" -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Mostra el text d'ajuda de les opcions de la icona de notificació." - -#. (itstool) path: item/title -#: C/usage.page:212 -#| msgid "--help-progress" -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg de progrés." - -#. (itstool) path: item/title -#: C/usage.page:217 -#| msgid "--help-question" -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg de pregunta." - -#. (itstool) path: item/title -#: C/usage.page:222 -#| msgid "--help-warning" -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Mostra el text d'ajuda de les opcions del diàleg d'avís." - -#. (itstool) path: item/title -#: C/usage.page:227 -#| msgid "--help-text-info" -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Mostra l'ajuda de les opcions del diàleg de text informatiu." - -#. (itstool) path: item/title -#: C/usage.page:232 -#| msgid "--help-misc" -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Mostra l'ajuda de les opcions miscel·lànies." - -#. (itstool) path: item/title -#: C/usage.page:237 -#| msgid "--help-gtk" -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Mostra l'ajuda de les opcions de la GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Opcions miscel·lànies" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "El Zenity també proporciona les opcions diverses següents:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Mostra el diàleg Quant al Zenity, que conté informació de la " -"versió, del copyright i de desenvolupament del Zenity." - -#. (itstool) path: item/title -#: C/usage.page:262 -#| msgid "--version" -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Mostra el número de versió del Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Opcions de la GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"El Zenity admet les opcions estàndard de la GTK+. Per a obtenir més " -"informació sobre les opcions de la GTK+, executeu l'ordre zenity --help-" -"gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Variables d'entorn" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalment, el Zenity detecta la finestra del terminal des d'on s'ha " -"executat i es manté sobre aquesta finestra. Aquest comportament es pot " -"desactivar inhabilitant la variable d'entorn WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Utilitzeu l'opció --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Diàleg d'avís" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Utilitzeu l'opció --warning per a crear un diàleg d'avís." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "L'script d'exemple següent mostra com crear un diàleg d'avís:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Desconnecteu el cable d'alimentació per a evitar una descàrrega elèctrica.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Exemple de diàleg d'avís" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Exemple de diàleg d'avís del Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -#| msgid "" -#| "@@image: 'figures/zenity-warning-screenshot.png'; " -#| "md5=cde1378d51f800a025b8c37ecdb60a20" -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Manual de l'aplicació de l'escriptori Zenity v2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems, Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Equip de documentació del sistema d'escriptori de Java" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "Projecte de documentació del GNOME" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "Agost de 2004" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Manual del Zenity v1.0" - -#~ msgid "January 2003" -#~ msgstr "Gener de 2003" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "Aquest manual descriu la versió 2.6.0 del Zenity." - -#~ msgid "Feedback" -#~ msgstr "Comentaris" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "Per enviar comentaris, seguiu les indicacions de la pàgina de comentaris." - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "El Zenity és una reescriptura del gdialog, la versió del GNOME del diàleg " -#~ "que ús permet mostrar els diàlegs des de la línia d'ordres i scripts de " -#~ "l'intèrpret d'ordres." - -#~ msgid "zenity command" -#~ msgstr "ordre zenity" - -#~ msgid "dialog creator" -#~ msgstr "creador de diàlegs" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "Per exemple, utilitzeu: zenity --calendar --" -#~ "title=\"Planificació de les vacances\" No " -#~ "utilitzeu: zenity --calendar --" -#~ "title=Planificació de les vacances" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "=title" -#~ msgstr "=títol" - -#~ msgid "=width" -#~ msgstr "=amplada" - -#~ msgid "=height" -#~ msgstr "=alçada" - -#~ msgid "=timeout" -#~ msgstr "" -#~ "=temps d'espera" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "=text" -#~ msgstr "=text" - -#~ msgid "=day" -#~ msgstr "=dia" - -#~ msgid "=month" -#~ msgstr "=mes" - -#~ msgid "=year" -#~ msgstr "=any" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid "=filename" -#~ msgstr "" -#~ "=nom_de_fitxer" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "=column" -#~ msgstr "=columna" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "" -#~ "El Zenity pot crear quatre tipus de diàlegs de " -#~ "missatge:" - -#~ msgid "=text" -#~ msgstr "=text" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Seleccioneu un fitxer\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No s'ha seleccionat cap fitxer.\";;\n" -#~ " -1)\n" -#~ " echo \"No s'ha seleccionat cap fitxer.\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/ca/figures/zenity-colorselection-screenshot.png b/help/ca/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 15f6ba4..0000000 Binary files a/help/ca/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/ca/figures/zenity-password-screenshot.png b/help/ca/figures/zenity-password-screenshot.png deleted file mode 100644 index e982715..0000000 Binary files a/help/ca/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/cs/cs.po b/help/cs/cs.po deleted file mode 100644 index 09afc68..0000000 --- a/help/cs/cs.po +++ /dev/null @@ -1,2632 +0,0 @@ -# Czech translation of zenity help. -# Copyright (C) 2009 the author(s) of zenity. -# This file is distributed under the same license as the zenity help. -# Marek Černocký , 2009, 2010, 2013, 2014, 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity gnome-2-28\n" -"POT-Creation-Date: 2019-09-07 13:19+0000\n" -"PO-Revision-Date: 2019-09-07 16:22+0200\n" -"Last-Translator: Marek Černocký \n" -"Language-Team: Czech \n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Poedit-Language: Czech\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Generator: Gtranslator 2.91.6\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License ve verzi 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "Toto dílo je šířeno pod licencí <_:link-1/> nebo novější." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "odkazem" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Je povoleno kopírovat, šířit a/nebo upravovat tento dokument za podmínek GNU " -"Free Documentation License (GFDL) ve verzi 1.1 nebo v jakékoli další verzi " -"vydané nadací Free Software Foundation; bez neměnných oddílů, bez textů " -"předních desek a bez textů zadních desek. Kopii licence GFDL naleznete pod " -"tímto <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Tato příručka je součástí sbírky příruček GNOME šířených za podmínek licence " -"GNU FDL. Pokud chcete tento dokument šířit odděleně od sbírky, musíte " -"přiložit kopii licence dle popisu v oddílu 6 dané licence." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Mnoho názvů použitých firmami k zviditelnění produktů nebo služeb jsou " -"ochranné známky. Na místech, kde jsou tyto názvy v dokumentaci použity a " -"členové Dokumentačního projektu GNOME jsou si vědomi skutečnosti, že se " -"jedná o ochrannou známku, je takovýto název psán velkými písmeny celý nebo s " -"velkým písmenem na začátku." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -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:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 JE POSKYTOVÁN V PODOBĚ „JAK JE“, BEZ ZÁRUKY JAKÉHOKOLIV DRUHU, " -"NEPOSKYTUJÍ SE ANI ODVOZENÉ ZÁRUKY, ZÁRUKY, ŽE DOKUMENT, NEBO JEHO UPRAVENÁ " -"VERZE, JE BEZCHYBNÝ, NEBO ZÁRUKY PRODEJNOSTI, VHODNOSTI PRO URČITÝ ÚČEL, " -"NEBO NEPORUŠENOSTI. RIZIKO NEKVALITY, NEPŘESNOSTI A ŠPATNÉHO PROVEDENÍ " -"DOKUMENTU, NEBO JEHO UPRAVENÉ VERZE, NESETE VY. POKUD JE TENTO DOKUMENT NEBO " -"JEHO UPRAVENÁ VERZE VADNÁ V JAKÉMKOLIV SMYSLU, VY (NIKOLIV PŮVODCE, AUTOR " -"NEBO JAKÝKOLIV PŘISPĚVATEL) PŘEBÍRÁTE ODPOVĚDNOST ZA JAKÉKOLIV NÁKLADY NA " -"NUTNÉ ÚPRAVY, OPRAVY ČI SLUŽBY. TOTO PROHLÁŠENÍ O ZÁRUCE PŘEDSTAVUJE " -"ZÁKLADNÍ SOUČÁST TÉTO LICENCE. BEZ TOHOTO PROHLÁŠENÍ NENÍ PODLE TÉTO DOHODY " -"POVOLENO UŽÍVÁNÍ ANI ÚPRAVY TOHOTO DOKUMENTU; DÁLE" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"ZA ŽÁDNÝCH OKOLNOSTÍ A ŽÁDNÝCH PRÁVNÍCH PŘEDPOKLADŮ, AŤ SE JEDNÁ O PŘEČIN " -"(VČETNĚ NEDBALOSTNÍCH), SMLOUVU NEBO JINÉ, NENÍ AUTOR, PŮVODNÍ PISATEL, " -"KTERÝKOLIV PŘISPĚVATEL NEBO KTERÝKOLIV DISTRIBUTOR TOHOTO DOKUMENTU NEBO " -"UPRAVENÉ VERZE DOKUMENTU NEBO KTERÝKOLIV DODAVATEL NĚKTERÉ Z TĚCHTO STRAN " -"ODPOVĚDNÝ NĚJAKÉ OSOBĚ ZA PŘÍMÉ, NEPŘÍMÉ, SPECIÁLNÍ, NAHODILÉ NEBO NÁSLEDNÉ " -"ŠKODY JAKÉHOKOLIV CHARAKTERU, VČETNĚ, ALE NEJEN, ZA POŠKOZENÍ ZE ZTRÁTY " -"DOBRÉHO JMÉNA, PŘERUŠENÍ PRÁCE, PORUCHY NEBO NESPRÁVNÉ FUNKCE POČÍTAČE NEBO " -"JINÉHO A VŠECH DALŠÍCH ŠKOD NEBO ZTRÁT VYVSTÁVAJÍCÍCH Z NEBO VZTAHUJÍCÍCH SE " -"K POUŽÍVÁNÍ TOHOTO DOKUMENTU NEBO UPRAVENÝCH VERZÍ DOKUMENTU, I KDYŽ BY " -"TAKOVÁTO STRANA BYLA INFORMOVANÁ O MOŽNOSTI TAKOVÉHOTO POŠKOZENÍ." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "Marek Černocký , 2009, 2010, 2013" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Použití přepínače --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Dialogové okno s kalendářem" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"K vytvoření dialogového okna s kalendářem použijte přepínač --calendar. Aplikace Zenity vrátí vybrané datum na standardní výstup. " -"Pokud neurčíte v příkazovém řádku žádné datum, použije se aktuální." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Dialogové okno s kalendářem podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=TEXT" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Určuje text, který se v dialogovém okně s kalendářem zobrazí." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=DEN" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Určuje den, který bude v kalendáři vybraný. DEN musí být číslo v rozmezí 1 " -"až 31 včetně." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=MĚSÍC" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Určuje měsíc, který bude v kalendáři vybraný. MĚSÍC musí být číslo v rozmezí " -"1 až 12 včetně." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=ROK" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Určuje rok, který bude v kalendáři vybraný." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "=FORMÁT" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Určuje formát, v jakém má dialogové okno s kalendářem vrátit vybrané datum. " -"Výchozí formát je daný vaším národním prostředím. Formát musí být formát, " -"který akceptuje funkce strftime, např. %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s " -"kalendářem:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Výběr data\" \\\n" -"--text=\"Vyberte datum kliknutím v kalendáři.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Žádné datum nebylo vybráno\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Příklad dialogového okna s kalendářem" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Ukázka dialogového okna Zenity s kalendářem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Použití přepínače --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Dialogové okno pro výběr barvy" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"K vytvoření dialogového okna pro výběr barvy použijte přepínač --color-" -"selection." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Dialogové okno pro výběr barvy podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=HODNOTA" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Nastaví počáteční barvu. (např. #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Bude zobrazovat paletu." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno pro výběr " -"barvy:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Vybrali jste $COLOR.\";;\n" -" 1)\n" -" echo \"Není vybrána žádná barva.\";;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Příklad dialogového okna pro výběr barvy" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Ukázka dialogového okna Zenity pro výběr barvy" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Použití přepínače --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Dialogové okno pro vkládání údajů" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"K vytvoření dialogového okna s textovým vstupem použijte přepínač --" -"entry. Aplikace Zenity vrátí zadaný text na standardní " -"výstup." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Dialogové okno pro vkládání údajů podporuje následující přepínače:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Určuje text, který se má v dialogovém okně zobrazit." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=TEXT" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "Určujte text, který se má zobrazit ve vstupním poli dialogového okna." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Skryje text ve vstupním poli dialogového okna." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno pro " -"vkládání textu:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Přidání nového profilu\" \\\n" -"--text=\"Zadejte název nového profilu:\" \\\n" -"--entry-text \"Nový profil\"\n" -" then echo $?\n" -" else echo \"Nebyl zadán žádný název\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Příklad dialogového okna pro vkládání údajů" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Ukázka dialogového okna Zenity pro vkládání textu" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Použití přepínače --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Dialogové okno s chybovým hlášením" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "" -"K vytvoření dialogového okna s chybovým hlášením použijte přepínač --" -"error." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s chybovým " -"hlášením:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Nelze najít /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Příklad dialogového okna s chybovým hlášením" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Ukázka dialogového okna Zenity s chybovým hlášením" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Použití přepínače --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Dialogové okno pro výběr souboru" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"K vytvoření dialogového okna pro výběr souboru použijte přepínač --file-" -"selection. Aplikace Zenity vrátí vybrané soubory nebo " -"složky na standardní výstup. Výchozí režim dialogového okna pro výběr " -"souboru je open (otevřít)." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Dialogové okno pro výběr souboru podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=NÁZEV_SOUBORU" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Určuje soubor nebo složku, které budou vybrané při prvním spuštění " -"dialogového okna." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Umožní v dialogovém okně vybrat více souborů naráz." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Umožní v dialogovém okně pouze výběr složek." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Přepne dialogové okno pro výběr souboru do režimu save (uložit)." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=ODDĚLOVAČ" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Určuje řetězec, který se použije k oddělení jednotlivých názvů souborů ve " -"vráceném seznamu." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno pro výběr " -"souboru:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Výběr souboru\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Vybrán soubor „$FILE“.\";;\n" -" 1)\n" -" echo \"Nebyl vybrán žádný soubor.\";;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Příklad dialogového okna pro výběr souboru" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Ukázka dialogového okna Zenity pro výběr souboru" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Použití přepínače --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Dialogové okno s formuláři" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"K vytvoření dialogového okna s formuláři použijte přepínač --forms." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Dialogové okno s formuláři podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=NÁZEV_POLE" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Přidá nové vstupní pole do dialogového okna s formulářem." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=NÁZEV_POLE" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Přidá nové vstupní pole pro heslo do dialogového okna s formulářem. (skrytý " -"text)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=NÁZEV_POLE" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Přidá nový kalendář do dialogového okna s formulářem." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXT" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Nastaví text dialogového okna." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=ODDĚLOVAČ" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Nastaví oddělovací znak pro výstup. (výchozí: |)" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=VZOR" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Nastavuje formát vraceného data. Výchozí formát je dán vaším národním " -"prostředím. VZOR musí být formát, který akceptuje funkce strftime, např. %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s formuláři:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Přidání přítele\" \\\n" -"\t--text=\"Zadejte informace o svém příteli.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Křestní jméno\" \\\n" -"\t--add-entry=\"Příjmení\" \\\n" -"\t--add-entry=\"E-mail\" \\\n" -"\t--add-calendar=\"Datum narození\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Přítel přidán.\";;\n" -" 1)\n" -" echo \"Žádný přítel nepřidán.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Příklad dialogového okna s formuláři" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Ukázka dialogového okna Zenity s formuláři" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Dokumentační tým Sun Java Desktop System" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Příručka k aplikaci Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Dialogová okna" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Použití přepínače --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Dialogové okno s informačním hlášením" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"K vytvoření dialogového okna s informačním hlášením použijte přepínač --" -"info." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s " -"informačním hlášením:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Sloučení dokončeno. Aktualizovány 3 z 10 souborů.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Příklad dialogového okna s informačním hlášením" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Ukázka dialogového okna Zenity s informačním hlášením" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Aplikace Zenity umožňuje vytvářet různé typy jednoduchých " -"dialogových oken." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Úvod" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Aplikace Zenity vám umožňuje vytvářet následující typy " -"jednoduchých dialogových oken:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Kalendář" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Výběr souboru" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formuláře" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Seznam" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Oznamovací ikona" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Zpráva" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Chybové hlášení" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Informační hlášení" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Dotaz" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Varovné hlášení" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Vstup pro heslo" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Ukazatel průběhu" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Textový vstup" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Textová informace" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Stupnice" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Výběr barvy" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Použití přepínače --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Dialogové okno se seznamem" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"K vytvoření dialogového okna se seznamem použijte přepínač --list. Aplikace Zenity vrátí položky z prvního textového sloupce " -"vybraných řádků na standardní výstup." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Data pro dialogové okno se musí zadat sloupec po sloupci, řádek po řádku. " -"Data lze dialogovému oknu předat i přes standardní vstup. Každá položka musí " -"být oddělená znakem nového řádku." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Pokud použijete přepínače --checklist nebo --radiolist, musí každý řádek začínat buď hodnotou „TRUE“ (bude zaškrtnuté) nebo " -"„FALSE“ (nebude zaškrtnuté)." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Dialogové okno se seznamem podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=SLOUPEC" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Určuje záhlaví sloupců zobrazených v seznamu. Přepínač --column " -"musíte zadat opakovaně zvlášť pro každý ze sloupců, které chcete v seznamu " -"zobrazit." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Určuje, že první sloupec v seznamu bude obsahovat zaškrtávací pole." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Určuje, že první sloupec v seznamu bude obsahovat skupinový přepínač." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Povolí v zobrazených položkách provádění úprav." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Určuje řetězec použitý jako oddělovač vybraných položek seznamu, které " -"dialogové okno vrátí." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=SLOUPEC" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Určuje sloupec, který se má z vybraného řádku vracet. Výchozí hodnota je " -"„1“. Pokud chcete vrátit všechny sloupce seznamu, můžete použít hodnotu " -"„ALL“." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno se seznamem:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Vyberte chybu, kterou chcete zobrazit\" \\\n" -" --column=\"Číslo chyby\" --column=\"Priorita\" --column=\"Popis\" \\\n" -" 992383 Normální \"GtkTreeView se hroutí při výběru více položek\" \\\n" -" 293823 Vysoká \"Slovník GNOME neumí pracovat s proxy\" \\\n" -" 393823 Kritická \"Úprava nabídek nefunguje v GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Příklad dialogového okna se seznamem" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Ukázka dialogového okna Zenity se seznamem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Chyba, Informace, " -"Dotaz, Varování" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Dialogové okno s hlášením" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"U každého z typů použijte přepínač --text k zadání textu, který " -"se má v dialogovém okně zobrazit." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Použití přepínače --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Oznamovací ikona" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "K vytvoření oznamovací ikony použijte přepínač --info." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Určuje text, který se zobrazí v oznamovací oblasti." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Naslouchá příkazům ze standardního vstupu. Musí být určen nejméně jeden " -"příkaz. Příkazy se oddělují čárkami. Za příkazem musí následovat dvojtečka a " -"hodnota." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Příkaz icon přijímá i čtyři hodnoty skladových ikon a to " -"error (chyba), info (informace), question " -"(dotaz) a warning (varování)." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "Následující příklad skriptu ukazuje, jak vytvořit oznamovací ikonu:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Jsou k dispozici důležité aktualizace!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Příklad oznamovací ikony " - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Ukázka oznamovací ikony Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit oznamovací ikonu s pomocí " -"--listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: toto je text zprávy\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Příklad oznamovací ikony pomocí --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "Ukázka oznamovací ikony Zenity pomocí --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Použití přepínače --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Dialogové okno s heslem" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"K vytvoření dialogového okna pro zadání hesla použijte přepínač --" -"password." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Dialogové okno pro zadání hesla podporuje následující přepínače:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Bud zobrazovat pole pro uživatelské jméno." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno pro zadání " -"hesla:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Uživatelské jméno: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Uživatelské heslo: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Zastavit přihlašování.\";;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Příklad dialogového okna pro zadávání hesla" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Ukázka dialogového okna Zenity pro vkládání hesla" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Použití přepínače --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Dialogové okno s ukazatelem průběhu" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"K vytvoření dialogového okna s ukazatelem průběhu použijte přepínač --" -"progress." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity čte data ze standardního vstupu řádek po řádku. Když řádek " -"začíná znakem #, provede se aktualizace textu pomocí textu na zbytku tohoto " -"řádku. Když řádek obsahuje pouze číslo, aktualizují se procenta ukazatele na " -"tuto hodnotu." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Dialogové okno s ukazatelem průběhu podporuje následující přepínače:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Určuje text, který se má v dialogovém okně zobrazit." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=PROCENTA" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Určuje počáteční stav procent, na které se má ukazatel průběhu nastavit." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Zavře dialogové okno po dosažení 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Určuje, že ukazatel průběhu bude pulzovat, dokud se ze standardního vstupu " -"nenačte znak EOF (konce souboru)." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s " -"ukazatelem průběhu:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Aktualizují se záznamy o poště\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Restartují se úlohy cronu\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Tento řádek se bude ignorovat\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Restartuje se systém\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Aktualizace systémových záznamů\" \\\n" -" --text=\"Prohledávají se záznamy o poště…\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Aktualizace byla přerušena.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Příklad dialogového okna s ukazatelem průběhu" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Ukázka dialogového okna Zenity s ukazatelem průběhu" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Použití přepínače --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Dialogové okno s dotazem" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"K vytvoření dialogového okna s dotazem použijte přepínač --question." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s dotazem:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Opravdu chcete pokračovat?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Příklad dialogového okna s dotazem" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Ukázka dialogového okna Zenity s dotazem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Použití přepínače --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Dialogové okno se stupnicí" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "" -"K vytvoření dialogového okna se stupnicí použijte přepínač --scale." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Dialogové okno se stupnicí podporuje následující přepínače:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "Nastaví text dialogového okna. (výchozí: Nastavte hodnotu na stupnici)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=HODNOTA" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Nastaví počáteční hodnotu. (výchozí: 0) Musíte zadat hodnotu v rozmezí " -"nejnižší a nejvyšší hodnoty." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=HODNOTA" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Nastaví nejnižší hodnotu. (výchozí: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=HODNOTA" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Nastaví nejvyšší hodnotu. (výchozí: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=HODNOTA" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Nastaví velikost kroku. (výchozí: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Kdykoliv se hodnota změní, vypíše ji na standardní výstup." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Hodnotu v dialogovém okně skryje." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno se stupnicí:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Zvolte průhlednost okna.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Zvolili jste $VALUE %.\";;\n" -" 1)\n" -" echo \"Nebyla zvolena žádná hodnota.\";;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Příklad dialogového okna se stupnicí" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Ukázka dialogového okna Zenity se stupnicí" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Použití přepínače --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Dialogové okno s informačním textem" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"K vytvoření dialogového okna s informačním textem použijte přepínač --" -"text-info." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Dialogové okno s informačním textem podporuje následující přepínače:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Určuje soubor, ze kterého se má do dialogového okna načíst text." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Povolí provádění úprav zobrazeného textu. Upravený text bude po zavření " -"dialogového okna vrácen na standardní výstup." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=PÍSMO" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Určuje písmo textu." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXT" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Povolí zaškrtávací políčko pro účely ve stylu „Přečetl jsem si podmínky a " -"souhlasím s nimi.“" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Zapne podporu pro HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Nastavuje adresu URL namísto souboru. Funguje jen v případě, že použijete " -"přepínač --html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s " -"informačním textem:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Do stejné složky jako skript musíte umístit soubor „COPYING“.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licence\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Přečetl jsem si podmínky a souhlasím s nimi.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Začít instalaci!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Zastavit instalaci!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Vyskytla se neočekávaná chyba.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Příklad dialogového okna s informačním textem" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Ukázka dialogového okna Zenity s informačním textem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Aplikaci Zenity můžete využít k vytváření jednoduchých " -"dialogových oken pro komunikaci s uživatelem v grafickém prostředí." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Použití" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Pokud píšete skripty, můžete využít aplikaci Zenity k vytváření " -"jednoduchých dialogových oken, díky čemuž můžete graficky komunikovat s " -"uživatelem. Využití je pro následující účely:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Můžete vytvořit dialogové okno k získání informací od uživatele. Například " -"se můžete uživatele dotázat na datum pomocí výběru z dialogového okna s " -"kalendářem nebo na název souboru pomocí dialogového okna pro výběr souboru." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Můžete vytvořit dialogové okno pro sdělení informace uživateli. Například " -"můžete použít dialogové okno s ukazatelem průběhu k informování o stavu " -"operace nebo dialogové okno s varovnou zprávou k upozornění uživatele." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Po té, co uživatel zavře dialogové okno, vypíše aplikace Zenity " -"získaný text na standardní výstup." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Při zapisování příkazů Zenity se ujistěte, že máte všechny " -"argumenty uzavřené do uvozovek." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Například použijte:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Plán oslav\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Nepoužívejte:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Plán oslav" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Pokud uvozovky nepoužijete, můžete získat nepředvídatelné výsledky." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Horké klávesy" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Horké klávesy jsou klávesy, které vám umožňují provádět činnost z klávesnice " -"místo abyste museli použít myš k výběru z nabídky nebo dialogového okna. " -"Každá horká klávesa je symbolizovaná podtržením příslušného písmene v " -"položce nabídky nebo dialogového okna." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Některá dialogová okna Zenity podporují horké klávesy. Pokud " -"chcete určit, že některý znak má fungovat jako horká klávesa, umístěte před " -"něj podtržítko. Následující příklad ukazuje, jak určit jako horkou klávesu " -"znak „Z“" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Změnit název\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Návratové kódy" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity vrací následující návratové kódy:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Návratový kód" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Popis" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Uživatel zmáčkl Budiž nebo Zavřít." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Uživatel buď zmáčkl Zrušit nebo použil ovládací " -"prvky okna k jeho zavření." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Vyskytla se neznámá chyba." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Dialogové okno bylo zavřeno, protože vypršel časový limit." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Všeobecné přepínače" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Všechna dialogová okna Zenity podporují následující obecné přepínače:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=NÁZEV" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Určuje název do záhlaví dialogového okna." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=CESTA_K_IKONĚ" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Určuje ikonu, která se zobrazí v záhlaví dialogového okna. K dispozici jsou " -"také 4 předdefinované ikony dostupné pomocí klíčových slov " -"„info“ (informace), „warning“ (varování), „question“ (dotaz) a " -"„error“ (chyba)." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=ŠÍŘKA" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Určuje šířku dialogového okna." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=VÝŠKA" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Určuje výšku dialogového okna." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=ČASOVÝ_LIMIT" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Určuje časový limit v sekundách, po kterém se dialogové okno zavře." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Přepínače nápovědy" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity poskytuje následující přepínače pro nápovědu:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Zobrazí zkrácenou nápovědu." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Zobrazí celou nápovědu pro všechny typy dialogových oken." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Zobrazí nápovědu pro všeobecné přepínače dialogových oken." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s kalendářem." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna pro vkládání údajů." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s chybovým hlášením." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "" -"Zobrazí nápovědu pro přepínače dialogového okna s informačním hlášením." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna pro výběr souboru." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna se seznamem." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Zobrazí nápovědu pro přepínače oznamovací ikony." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s ukazatele průběhu." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s dotazem." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s varovným hlášením." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Zobrazí nápovědu pro přepínače dialogového okna s informačním textem." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Zobrazí nápovědu pro různé přepínače." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Zobrazí nápovědu pro přepínače GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Různé přepínače" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity poskytuje také následující různorodé přepínače:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Zobrazí dialogové okno O aplikaci Zenity, které obsahuje " -"informace o verzi Zenity, informace o autorských právech a " -"informace o vývojářích." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Zobrazí číslo verze aplikace Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Přepínače GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Aplikace Zenity podporuje standardní přepínače GTK+. Více " -"informací o přepínačích GTK+ získáte spuštěním příkazu zenity --help-" -"gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Proměnné prostředí" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normálně aplikace Zenity detekuje terminálové okno, ze kterého " -"byla spuštěná a drží se nad tímto oknem. Toto chování lze zakázat zrušením " -"nastavení proměnné prostředí WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Použití přepínače --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Dialogové okno s varovným hlášením" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"K vytvoření dialogového okna s varovným hlášením použijte přepínač --" -"warning." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"Následující příklad skriptu ukazuje, jak vytvořit dialogové okno s varovným " -"hlášením:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Odpojte kabel napájení, abyste předešli poškození.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Příklad dialogového okna s varovným hlášením" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Ukázka dialogového okna Zenity s varovným hlášením" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" diff --git a/help/cs/figures/zenity-calendar-screenshot.png b/help/cs/figures/zenity-calendar-screenshot.png deleted file mode 100644 index c5fa19a..0000000 Binary files a/help/cs/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-colorselection-screenshot.png b/help/cs/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 32c3429..0000000 Binary files a/help/cs/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-entry-screenshot.png b/help/cs/figures/zenity-entry-screenshot.png deleted file mode 100644 index 853d274..0000000 Binary files a/help/cs/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-error-screenshot.png b/help/cs/figures/zenity-error-screenshot.png deleted file mode 100644 index e620a11..0000000 Binary files a/help/cs/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-forms-screenshot.png b/help/cs/figures/zenity-forms-screenshot.png deleted file mode 100644 index 8fab364..0000000 Binary files a/help/cs/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-information-screenshot.png b/help/cs/figures/zenity-information-screenshot.png deleted file mode 100644 index 839c626..0000000 Binary files a/help/cs/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-list-screenshot.png b/help/cs/figures/zenity-list-screenshot.png deleted file mode 100644 index e6fb706..0000000 Binary files a/help/cs/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-password-screenshot.png b/help/cs/figures/zenity-password-screenshot.png deleted file mode 100644 index 423edeb..0000000 Binary files a/help/cs/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-progress-screenshot.png b/help/cs/figures/zenity-progress-screenshot.png deleted file mode 100644 index 7bb6d63..0000000 Binary files a/help/cs/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-question-screenshot.png b/help/cs/figures/zenity-question-screenshot.png deleted file mode 100644 index a07e100..0000000 Binary files a/help/cs/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-scale-screenshot.png b/help/cs/figures/zenity-scale-screenshot.png deleted file mode 100644 index 9ff9755..0000000 Binary files a/help/cs/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-text-screenshot.png b/help/cs/figures/zenity-text-screenshot.png deleted file mode 100644 index 86b61dc..0000000 Binary files a/help/cs/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/cs/figures/zenity-warning-screenshot.png b/help/cs/figures/zenity-warning-screenshot.png deleted file mode 100644 index b96c6fb..0000000 Binary files a/help/cs/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/da/da.po b/help/da/da.po deleted file mode 100644 index 322ccd6..0000000 --- a/help/da/da.po +++ /dev/null @@ -1,2567 +0,0 @@ -# Danish translation for zenity. -# Copyright (C) 2009-10, 2017-18 Free Software Foundation -# This file is distributed under the same license as the zenity package. -# Joe Hansen , 2011. -# Ask Hjorth Larsen , 2009-10, 2017-18. -# scootergrisen, 2020. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2020-09-06 11:41+0000\n" -"PO-Revision-Date: 2022-01-23 14:52+0100\n" -"Last-Translator: Alan Mortensen \n" -"Language-Team: Danish \n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License Version 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "Værket er licenseret under en <_:link-1/> eller en senere version." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "link" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Der gives tilladelse til at kopiere, distribuere og/eller ændre dette " -"dokument under betingelserne i GNU Free Documentation License (GFDL), " -"version 1.1 eller enhver nyere version udgivet af Free Software Foundation " -"uden invariante afsnit, uden forsidetekster, og uden bagsidetekster. Du kan " -"finde en kopi af GFDL'en på dette <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"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 GNOME-manualsamlingen distribueret under GFDL'en. " -"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: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Mange af navnene brugt af firmaer til at skelne deres produkter og tjenester " -"er registrerede varemærker. Der hvor de navne optræder i GNOME-" -"dokumentationen, og medlemmerne af GNOME-dokumentationsprojektet er blevet " -"gjort opmærksomme på disse varemærker, er navnene skrevet med store " -"bogstaver eller store forbogstaver." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"DETTE DOKUMENT OG MODIFICEREDE VERSIONER GØRES TILGÆNGELIGE UNDER " -"BETINGELSERNE I GNU FREE DOCUMENTATION LICENSE UNDER DEN FORUDSÆTNING AT:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"DETTE DOKUMENT GØRES TILGÆNGELIGT SÅDAN SOM DET ER, UDEN NOGEN FORM FOR " -"GARANTI, HVERKEN UDTALT ELLER ANTYDET, DERIBLANDT, UDEN BEGRÆNSNINGER, " -"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 " -"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" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -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 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, " -"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." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Ask Hjorth Larsen\n" -"Joe Hansen\n" -"\n" -"Dansk-gruppen\n" -"Websted http://dansk-gruppen.dk\n" -"E-mail " - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Brug tilvalget --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Kalenderdialog" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Brug --calendar-tilvalget til at oprette en kalenderdialog. " -"Zenity returnerer den valgte dato til standardoutput. Hvis ingen dato " -"angives på kommandolinjen, bruger dialogen den aktuelle dato." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Kalenderdialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=tekst" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Angiver teksten, der vises i kalenderdialogen." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=dag" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Angiver den dag, der markeres i kalenderdialogen. dag skal være et tal " -"mellem 1 og 31 inklusive." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=måned" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Angiver måneden, der markeres i kalenderdialogen. måned skal være et tal " -"mellem 1 og 12 inklusive." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=år" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Angiver året, der markeres i kalenderdialogen." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Angiver formatet, der returneres fra kalenderdialogen efter datoen er blevet " -"valgt. Standardformatet afhænger af regionaldata. format skal være et " -"format, som accepteres af strftime-funktionen, såsom %A %d/" -"%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "Følgende eksempelscript viser, hvordan man opretter en kalenderdialog:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Vælg en dato\" \\\n" -"--text=\"Klik på den dato, du vil vælge.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Ingen dato valgt\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Eksempel på kalenderdialog" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Eksempel på kalenderdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Brug tilvalget --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Farvevælgerdialog" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Brug tilvalget --color-selection til at oprette en " -"farvevælgerdialog." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Farvevælgerdialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VÆRDI" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Angiv startfarven. (F.eks.: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Vis paletten." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en farvevælgerdialog:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FARVE=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Du har valgt $FARVE.\";;\n" -" 1)\n" -" echo \"Ingen farve valgt.\";;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Eksempel med farvevælgerdialog" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Eksempel på farvevælgerdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Brug tilvalget --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Tekstfeltdialog" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Brug tilvalget --entry til at oprette en tekstfeltdialog. " -"Zenity returnerer indholdet af tekstfeltet til standardoutput." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Tekstfeltdialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Angiver teksten, der vises i tekstfeltdialogen." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=tekst" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "Angiver teksten, der vises i tekstfeltdialogens indtastningsfelt." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Skjuler teksten i tekstfeltdialogens indtastningsfelt." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en tekstfeltdialog:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Tilføj ny profil\" \\\n" -"--text=\"Indtast navn for ny profil:\" \\\n" -"--entry-text \"NyProfil\"\n" -" then echo $?\n" -" else echo \"Intet navn indtastet\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Eksempel på tekstfeltdialog" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Eksempel på tekstfeltdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Brug tilvalget --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Fejldialog" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Brug tilvalget --error til at oprette en fejldialog." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "Følgende eksempelscript viser, hvordan man opretter en fejldialog:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Kunne ikke finde /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Eksempel på fejldialog" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Eksempel på fejldialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Brug tilvalget --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Filvælgerdialog" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Brug tilvalget --file-selection til at oprette en " -"filvælgerdialog. Zenity returnerer de valgte filer eller mapper " -"til standardoutput. Standardtilstanden for filvælgeren er åbn." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Filvælgerdialoger understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=filnavn" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Angiver den fil eller mappe, som er valgt i filvælgeren, når dialogen vises " -"første gang." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Tillader valg af flere filnavne i filvælgeren." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Tillader kun valg af mapper i filvælgeren." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Sæt filvælgerdialogen til gemmetilstand." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=skilletegn" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Angiver strengen, der bruges til at dele listen af returnerede filnavne." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en filvælgerdialog:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FIL=`zenity --file-selection --title=\"Vælg en fil\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FIL\\\" valgt.\";;\n" -" 1)\n" -" echo \"Ingen fil valgt.\";;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Eksempel med filvælgerdialog" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Eksempel på filvælgerdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Brug tilvalget --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Formulardialog" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Brug tilvalget --forms til at oprette en formulardialog." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Formulardialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=FeltNavn" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Tilføj et nyt tekstindtastningsfelt i dialogen formularer." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=FeltNavn" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "Tilføj et nyt adgangskodefelt i dialogen formularer. (Skjul tekst)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=FeltNavn" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Tilføj en ny kalender i dialogen formularer." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEKST" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Angiv dialogteksten." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SKILLETEGN" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Angiv standardskilletegn for output. (Standard: | )" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=MØNSTER" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Angiv formatet for den returnerede dato. Standardformatet afhænger af " -"regionaldata. Format skal være et format, som accepteres af strftime-funktionen, såsom %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "Følgende eksempelscript viser, hvordan man opretter en formulardialog:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Tilføj ven\" \\\n" -"\t--text=\"Indtast information om din ven.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Fornavn\" \\\n" -"\t--add-entry=\"Efternavn\" \\\n" -"\t--add-entry=\"E-mail\" \\\n" -"\t--add-calendar=\"Fødselsdag\" >> adr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Ven tilføjet.\";;\n" -" 1)\n" -" echo \"Ingen ven tilføjet.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Eksempel på formulardialog" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Eksempel på formulardialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Suns dokumentationshold for Java-skrivebordssystemer" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manual til Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Dialoger" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Brug tilvalget --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Infodialog" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Brug tilvalget --info til at oprette en informationsdialog." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"Følgende eksempelscript viser hvordan man opretter en informationsdialog:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Fletning fuldført. Opdaterede 3 ud af 10 filer.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Eksempel på informationsdialog" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Eksempel på informationsdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity lader dig oprette forskellige typer af simple dialoger." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introduktion" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "Zenity lader dig oprette følgende typer af simple dialoger:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Kalender" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Filvælger" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formularer" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Liste" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Påmindelsesikon" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Meddelelse" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Fejl" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Information" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Spørgsmål" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Advarsel" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Adgangskodefelt" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Forløbslinje" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Tekstfelt" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Tekstinformation" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Skala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Farvevalg" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Brug tilvalget --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Listedialog" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Brug tilvalget --list til at oprette en listedialog. Zenity returnerer elementerne i første kolonne af teksten i de valgte rækker " -"til standardoutput." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Data for dialogen skal angives kolonne efter kolonne, række efter række. " -"Data kan gives til dialogen gennem standardinput. Hvert element skal " -"adskilles af et linjeskiftstegn." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Hvis du bruger tilvalget --checklist eller --radiolist, skal hver række starte med enten “TRUE” eller “FALSE”." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Listedialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=kolonne" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Angiver kolonneoverskrifterne, der vises i listedialogen. Du skal angive et " -"--column-tilvalg for hver kolonne, du vil have vist i dialogen." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Angiver at første kolonne i listedialogen indeholder afkrydsningsfelter." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Angiver at første kolonne i listedialogen indeholder radioknapper." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Tillader redigering af de viste elementer." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Angiver den streng, der bruges når listedialogen returnerer de valgte " -"elementer." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=kolonne" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Angiver den kolonne, der skal udskrives når der vælges. Standardkolonnen er " -"\"1\". \"ALL\" kan bruges til at udskrive alle kolonner i listen." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "Følgende eksempelscript viser, hvordan man opretter en listedialog:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Vælg hvilke programfejl, du vil se\" \\\n" -" --column=\"Fejlnummer\" --column=\"Alvorlighed\" --column=\"Beskrivelse\" \\\n" -" 992383 Normal \"GtkTreeView bryder sammen ved valg af flere elementer\" \\\n" -" 293823 Høj \"GNOME Ordbog virker ikke med proxy\" \\\n" -" 393823 Kritisk \"Menuredigering fungerer ikke i GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Eksempel med listedialog" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Eksempel på listedialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Fejl, Info, Spørgsmål, Advarsel" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Meddelelsesdialog" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"For hver type, kan du bruge tilvalget --text til at angive den " -"tekst, der vises i dialogen." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Brug tilvalget --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Påmindelsesikon" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Brug tilvalget --notification til at oprette et påmindelsesikon." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Angiver teksten, der vises i påmindelsesområdet." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'tekst', message: 'tekst', " -"tooltip: 'tekst', visible: 'tekst'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Lytter efter kommandoer på standardinput. Mindst én kommando skal gives. " -"Kommandoer adskilles med komma. En kommando skal følges af kolon og en værdi." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Kommandoen icon accepterer også fire standardikonværdier, såsom " -"error, info, question og warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter et påmindelsesikon:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Der er nødvendige systemopdateringer!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Eksempel på påmindelsesikon" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Eksempel på påmindelsesikon til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter et påmindelsesikon med " -"--listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: dette er beskedteksten\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Eksempel på påmindelsesikon med --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "Zenity-påmindelse med --listen-eksempel" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Brug tilvalget --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Adgangskodedialog" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Brug tilvalget --password til at oprette en adgangskodedialog." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Adgangskodedialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Vis feltet brugernavn." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "Følgende eksempel viser, hvordan man opretter en adgangskodedialog:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"TEKST=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Brugernavn: `echo $TEKST | cut -d'|' -f1`\"\n" -"\t \techo \"Adgangskode : `echo $TEKST | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop indlogning.\";;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Eksempel på adgangskodedialog" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Eksempel på adgangskodedialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Brug tilvalget --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Forløbslinjedialog" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"Brug tilvalget --progress til at oprette en dialog med en " -"forløbslinje." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity læser data linjevis fra standardinput. Hvis en linje " -"starter med #, vil teksten blive opdateret med den efterfølgende tekst på " -"den pågældende linje. Hvis en linje kun indeholder et tal, vil procenttallet " -"blive opdateret med dette tal." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Forløbslinjedialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Angiver teksten, der vises i forløbslinjedialogen." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=procentdel" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Angiver det procenttal, der fra starten vises i forløbslinjedialogen." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Lukker forløbslinjen, når den har nået 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Angiver at forløbslinjen pulserer indtil der læses et EOF-tegn fra " -"standardinput." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en forløbslinjedialog:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Opdaterer mail-logge\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Nulstiller cron-jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Denne linje vil blive ignoreret\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Genstarter system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Opdatér systemlogge\" \\\n" -" --text=\"Skanner mail-logge …\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Opdatering annulleret.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Eksempel på forløbslinjedialog" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Eksempel på forløbslinjedialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Brug tilvalget --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Spørgsmålsdialog" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"Brug tilvalget --question til at oprette en spørgsmålsdialog." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "Følgende eksempelscript viser, hvordan en spørgsmålsdialog oprettes:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Er du sikker på, at du vil fortsætte?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Eksempel på spørgsmålsdialog" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Eksempel på spørgsmålsdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Brug tilvalget --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Skaladialog" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Brug tilvalget --error til at oprette en skaladialog." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Skaladialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "Angiv dialogteksten. (Standard: Justér skalaværdien)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VÆRDI" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Angiver startværdi. (Standard: 0) Du skal angive en værdi mellem minimum- og " -"maksimumværdierne." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VÆRDI" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Angiv mindsteværdien. (Standard: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VÆRDI" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Angiv maksimumværdien. (Standard: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VÆRDI" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Angiv trinstørrelse. (Standard: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Udskriv værdi til standardoutput, hver gang en værdi ændres." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Skjul værdien på dialogen." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "Følgende eksempelscript viser, hvordan man opretter en skaladialog:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"TAL=`zenity --scale --text=\"Vælg gennemsigtighed af vindue.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Du har valgt $TAL %.\";;\n" -" 1)\n" -" echo \"Ingen værdi valgt.\";;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Eksempel på skaladialog" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Eksempel på skaladialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Brug tilvalget --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Tekstinformationsdialog" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Brug tilvalget --text-info til at oprette en dialog med " -"tekstinformationstekst." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Tekstinformationsdialogen understøtter følgende tilvalg:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Angiver en fil, der indlæses i tekstinformationsdialogen." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Tillader redigering af den viste tekst. Den redigerede tekst returneres til " -"standardoutput, når dialogen lukkes." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=SKRIFTTYPE" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Angiver skrifttypen for teksten." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEKST" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Aktivér et afkrydsningsfelt til brug, såsom “Jeg har læst og accepterer " -"vilkårene”." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Aktivér understøttelse af html." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Angiver en URL i stedet for en fil. Fungerer kun hvis du bruger tilvalget --" -"html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en " -"tekstinformationsdialog:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Du skal placere filen “COPYING” i samme mappe som dette script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licens\" \\\n" -" --filename=$FIL \\\n" -" --checkbox=\"Jeg har læst og accepterer vilkårene.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installationen!\"\n" -"\t# næste trin\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installationen!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Der opstod en uventet fejl.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Eksempel på tekstinformationsdialog" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Eksempel på tekstinformationsdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "[Anvendes ikke]" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Du kan bruge Zenity til at oprette simple dialoger, der " -"interagerer grafisk med brugeren." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Brug" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Når du skriver et script, kan du bruge Zenity til at oprette " -"simple dialoger, der interagerer grafisk med brugeren på følgende vis:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Du kan oprette en dialog for at indhente information fra brugeren. For " -"eksempel kan du bede brugeren om at vælge en dato fra en kalenderdialog, " -"eller om at vælge en fil fra en filvælger." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Du kan oprette en dialog for at vise information til brugeren. For eksempel " -"kan du bruge en forløbslinje til at angive status for en handling, eller " -"vise en advarsel til brugeren." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Når brugeren lukker dialogen, vil Zenity udskrive teksten, der " -"blev produceret af dialogen, til standardoutput." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Når du skriver Zenity-kommandoer, så sørg for, at du skriver " -"anførselstegn omkring hvert argument." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Brug for eksempel:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Plan for ferie\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Brug ikke:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Plan for ferie" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Hvis du ikke bruger anførselstegn, kan du få uventede resultater." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Genvejstaster" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"En genvejstast er en tast, der lader dig foretage en handling ved hjælp af " -"tastaturet, frem for at bruge musen til at vælge en kommando fra en menu " -"eller en dialog. Hver genvejstast markeres ved et understreget tegn i en " -"menu eller ved et dialogvalgmulighed." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Visse Zenity-dialoger understøtter genvejstaster. Genvejstaster " -"angives ved at placere en bundstreg umiddelbart før det tegn, der svarer til " -"genvejstasten, i dialogteksten. Følgende eksempel viser hvordan man angiver " -"bogstavet “V” som genvejstast:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Vælg et navn\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Afslutningskoder" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity returnerer følgende afslutningskoder:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Afslutningskode" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Beskrivelse" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Brugeren har trykket enten OK eller Luk." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Brugeren har trykket enten Annullér eller brugt " -"vinduesfunktionerne til at lukke dialogen." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Der opstod en uventet fejl." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Dialogen er blevet lukket, fordi tiden er løbet ud." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Generelle tilvalg" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Alle Zenity-dialoger understøtter følgende generelle tilvalg:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=titel" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Angiver titlen på en dialog." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ikonsti" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Angiver det ikon, der skal vises i dialogens ramme. Der er fire " -"standardikoner, der kan bruges ved at angive følgende nøgleord: \"info\", " -"\"warning\", \"question\" eller \"error\"." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=bredde" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Angiver dialogens bredde." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=højde" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Angiver dialogens højde." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=ventetid" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Angiver ventetiden i sekunder, hvorefter dialogen lukkes." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Hjælpetilvalg" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity stiller følgende hjælpetilvalg til rådighed:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Viser en kort hjælpetekst." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Viser den fulde hjælpetekst for alle dialoger." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Viser hjælpetekst for generelle tilvalg til dialoger." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Viser hjælpetekst for tilvalg til kalenderdialog." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Viser hjælpetekst for tilvalg til tekstfeltdialog." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Viser hjælpetekst for tilvalg til dialoger med fejlmeddelelser." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Viser hjælpetekst for tilvalg til informationsdialog." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Viser hjælpetekst for tilvalg til filvælgerdialog." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Viser hjælpetekst for tilvalg til listedialog." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Viser hjælpetekst for tilvalg til påmindelsesikon." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Viser hjælpetekst for tilvalg til forløbslinjedialog." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Viser hjælpetekst for tilvalg til spørgsmålsdialog." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Viser hjælpetekst for tilvalg til advarselsdialog." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Viser hjælpetekst for tilvalg til tekstinformationsdialog." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Viser hjælpetekst for diverse tilvalg." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Viser hjælp til GTK+-tilvalg." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Diverse tilvalg" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity stiller yderligere følgende \"diverse\" tilvalg til rådighed:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Viser dialogen Om Zenity, som indeholder versionsinformation, " -"ophavsretsinformation samt udviklerinformation om Zenity." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Viser versionsnummeret for Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "GTK+-tilvalg" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity understøtter standard-GTK+-tilvalgene. Kør kommandoen zenity --" -"help-gtk for at få yderligere information om GTK+-tilvalg." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Miljøvariable" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalt vil Zenity detektere terminalvinduet, hvorfra det er blevet kørt, og " -"holde sit eget vindue over dette vindue. Denne opførsel kan slås fra ved at " -"nulstille miljøvariablen WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Brug tilvalget --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Advarselsdialog" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Brug tilvalget --warning til at oprette en advarselsdialog." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"Følgende eksempelscript viser, hvordan man opretter en advarselsdialog:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Træk strømkablet ud for at undgå elektrisk stød.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Eksempel på advarselsdialog" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Eksempel på advarselsdialog til Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "[Anvendes ikke]" diff --git a/help/de/de.po b/help/de/de.po deleted file mode 100644 index 5cdd791..0000000 --- a/help/de/de.po +++ /dev/null @@ -1,2638 +0,0 @@ -# German translation of the zenity manual. -# Mario Blättermann , 2008-2009, 2011-2012, 2018. -# Christian Kirbach , 2012. -# Wolfgang Stöggl , 2015. -# Tim Sabsch , 2020. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2020-01-13 08:18+0000\n" -"PO-Revision-Date: 2020-02-15 17:10+0100\n" -"Last-Translator: Tim Sabsch \n" -"Language-Team: Deutsch \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2.4\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License Version 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Diese Arbeit ist unter <_:link-1/> oder einer nachfolgenden Version " -"lizensiert." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "Link" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Das vorliegende Dokument kann gemäß den Bedingungen der GNU Free " -"Documentation License (GFDL), Version 1.1 oder jeder späteren, von der Free " -"Software Foundation veröffentlichten Version ohne unveränderbare Abschnitte " -"sowie ohne Texte auf dem vorderen und hinteren Buchdeckel kopiert, verteilt " -"und/oder modifiziert werden. Eine Kopie der GFDL finden Sie unter diesem <_:" -"link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Dieses Handbuch ist Teil einer Sammlung von GNOME-Handbüchern, die unter der " -"GFDL veröffentlicht werden. Wenn Sie dieses Handbuch getrennt von der " -"Sammlung weiterverbreiten möchten, können Sie das tun, indem Sie eine Kopie " -"der Lizenz zum Handbuch hinzufügen wie es in Abschnitt 6 der Lizenz " -"beschrieben ist." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Viele der Namen, die von Unternehmen verwendet werden um ihre Produkte und " -"Dienstleistungen von anderen zu unterscheiden, sind eingetragene " -"Warenzeichen. An den Stellen, an denen diese Namen in einer GNOME-" -"Dokumentation erscheinen, werden die Namen in Großbuchstaben oder mit einem " -"großen Anfangsbuchstaben geschrieben, wenn das GNOME-Dokumentationsprojekt " -"auf diese Warenzeichen hingewiesen wird." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"DAS DOKUMENT UND VERÄNDERTE FASSUNGEN DES DOKUMENTS WERDEN UNTER DEN " -"BEDINGUNGEN DER GNU FREE DOCUMENTATION LICENSE ZUR VERFÜGUNG GESTELLT MIT " -"DEM WEITERGEHENDEN VERSTÄNDNIS, DASS:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"DIESES DOKUMENT WIRD »WIE VORLIEGEND« GELIEFERT, OHNE GARANTIEN IRGENDEINER " -"ART, SOWOHL AUSDRÜCKLICH GENANNTE ALS AUCH ANGEDEUTETE. DIES BEZIEHT SICH " -"AUCH OHNE EINSCHRÄNKUNG AUF GARANTIEN, DASS DIESES DOKUMENT ODER VERÄNDERTE " -"FASSUNGEN DIESES DOKUMENTS FREI VON HANDELSDEFEKTEN, FÜR EINEN BESTIMMTEN " -"ZWECK GEEIGNET IST ODER DASS ES KEINE RECHTE DRITTER VERLETZT. DAS VOLLE " -"RISIKO WAS QUALITÄT, GENAUIGKEIT UND LEISTUNG DES DOKUMENTS ODER VERÄNDERTE " -"FASSUNGEN DES DOKUMENTS LIEGT BEI IHNEN. SOLLTE EIN DOKUMENT ODER EINE " -"VERÄNDERTE FASSUNG DAVON FEHLER IRGENDEINER ART BEINHALTEN, TRAGEN SIE " -"(NICHT DER URSPRUNGSAUTOR, DER AUTOR ODER EIN MITWIRKENDER) DIE KOSTEN FÜR " -"NOTWENDIGE DIENSTLEISTUNGEN, REPARATUREN ODER FEHLERKORREKTUREN. DIESER " -"HAFTUNGSAUSSCHLUSS IST EIN ESSENZIELLER TEIL DIESER LIZENZ. DIE VERWENDUNG " -"EINES DOKUMENTS ODER EINER VERÄNDERTEN VERSION DES DOKUMENTS IST NICHT " -"GESTATTET AUßER UNTER BEACHTUNG DIESES HAFTUNGSAUSSCHLUSSES UND" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"UNTER KEINEN UMSTÄNDEN UND AUF BASIS KEINER RECHTSGRUNDLAGE, EGAL OB DURCH " -"UNERLAUBTEN HANDLUNGEN (EINSCHLIEßLICH FAHRLÄSSIGKEIT), VERTRAG ODER " -"ANDERWEITIG KANN DER AUTOR, URSPRUNGSAUTOR, EIN MITWIRKENDER ODER EIN " -"VERTRIEBSPARTNER DIESES DOKUMENTS ODER EINER VERÄNDERTEN FASSUNG DES " -"DOKUMENTS ODER EIN ZULIEFERER EINER DIESER PARTEIEN, HAFTBAR GEMACHT WERDEN " -"FÜR DIREKTE, INDIREKTE, SPEZIELLE, VERSEHENTLICHE ODER FOLGESCHÄDEN " -"JEGLICHER ART, EINSCHLIEßLICH UND OHNE EINSCHRÄNKUNGEN SCHÄDEN DURCH VERLUST " -"VON KULANZ, ARBEITSAUSFALL, COMPUTERVERSAGEN ODER COMPUTERFEHLFUNKTIONEN " -"ODER ALLE ANDEREN SCHÄDEN ODER VERLUSTE, DIE SICH AUS ODER IN VERBINDUNG MIT " -"DER VERWENDUNG DES DOKUMENTS UND VERÄNDERTER FASSUNGEN DES DOKUMENTS " -"ERGEBEN, AUCH WENN DIE OBEN GENANNTEN PARTEIEN ÜBER DIE MÖGLICHKEIT SOLCHER " -"SCHÄDEN INFORMIERT WAREN." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Mario Blättermann , 2008-2012\n" -"Christian Kirbach , 2012, 2019\n" -"Tim Sabsch , 2020" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Die Option --calendar verwenden." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Kalenderdialog" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Benutzen Sie die Option --calendar zur Erzeugung eines " -"Kalenderdialogs. Zenity gibt das gewählte Datum an die Standardausgabe " -"zurück. Wenn kein Datum auf der Befehlszeile angegeben wird, verwendet der " -"Dialog das aktuelle Datum." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Der Kalenderdialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=Text" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Damit legen Sie den Text fest, der im Kalenderdialog angezeigt wird." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=Tag" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Damit legen Sie den im Kalenderdialog ausgewählten Tag fest. Tag " -"muss eine Zahl von 1 bis 31 sein." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=Monat" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Damit legen Sie den im Kalenderdialog ausgewählten Monat fest. Monat muss eine Zahl zwischen 1 und 12 sein." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=Jahr" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Damit legen Sie das im Kalenderdialog ausgewählte Jahr fest." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=Format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Damit legen Sie das Format fest, das vom Kalenderdialog nach der Auswahl des " -"Datums zurückgegeben wird. Das Standardformat ist abhängig von Ihren " -"Spracheinstellungen. »Format« muss ein Format sein, das von der " -"strftime-Funktion unterstützt wird, zum Beispiel %A %d/%m/" -"%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Kalenderdialog erzeugen " -"können:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Datum auswählen\" \\\n" -"--text=\"Klicken Sie auf ein Datum, um es auszuwählen.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Kein Datum ausgewählt\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Beispiel für einen Kalenderdialog" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Beispiel für einen Kalenderdialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Die Option --color-selection verwenden." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Farbauswahldialog" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Verwenden Sie die Option --color-selection, um einen " -"Farbauswahldialog zu erzeugen." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Der Farbauswahldialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=WERT" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Die anfängliche Farbe festlegen (z.B. #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Die Palette anzeigen." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Farbauswahldialog erzeugen " -"können:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Sie wählten $COLOR.\";;\n" -" 1)\n" -" echo \"Keine Farbe gewählt.\";;\n" -" -1)\n" -" echo \"Ein unerwarteter Fehler ist aufgetreten.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Beispiel für einen Farbauswahldialog" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Beispiel für einen Farbauswahldialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "translated" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Die Option --entry verwenden." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Texteingabe-Dialog" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Verwenden Sie die Option --entry, um einen Texteingabedialog zu " -"erzeugen. Zenity gibt den Inhalt des Texts an die Standardausgabe " -"zurück." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Der Texteingabedialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Legt den Text fest, der im Texteingabedialog angezeigt wird." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=Text" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Legt den Text fest, der im Eingabefeld des Texteingabedialogs angezeigt wird." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Dadurch wird der Text im Eingabefeld des Texteingabedialogs verborgen." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Texteingabedialog erzeugen:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Neues Profil hinzufügen\" \\\n" -"--text=\"Geben Sie den Namen des neuen Profils ein:\" \\\n" -"--entry-text \"Neues Profil\"\n" -" then echo $?\n" -" else echo \"Es wurde kein Name eingegeben\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Beispiel für einen Texteingabe-Dialog" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Beispiel für einen Texteingabedialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "translated" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Die Option --error verwenden." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Fehlerdialog" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "" -"Verwenden Sie die Option --error, um einen Fehlerdialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Fehlerdialog erzeugen:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"/var/log/syslog wurde nicht gefunden.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Beispiel für einen Fehlerdialog" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Beispiel für einen Fehlerdialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Die Option --file-selection verwenden." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Dateiauswahldialog" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Verwenden Sie die Option --file-selection zur Erzeugung eines " -"Dateiauswahldialogs. Zenity gibt die ausgewählten Dateien oder " -"Ordner an die Standardausgabe zurück. Der Standardmodus für den " -"Dateiauswahldialog ist »Öffnen«." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Der Dateiauswahldialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=Dateiname" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Legt die Datei oder den Ordner fest, die oder der bei der ersten Anzeige des " -"Dateiauswahldialogs angezeigt wird." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Erlaubt die Mehrfachauswahl von Dateien im Dateiauswahldialog." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Erlaubt nur die Auswahl von Ordnern im Dateiauswahldialog." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Setzt den Dateiauswahldialog in den Modus »Speichern«." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=Trenner" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Legt die Zeichenkette fest, die für die Trennung der zurückgegebenen Liste " -"der Dateinamen verwendet wird." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Dateiauswahldialog erzeugen " -"können:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Wählen Sie eine Datei\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" ausgewählt.\";;\n" -" 1)\n" -" echo \"Keine Datei ausgewählt.\";;\n" -" -1)\n" -" echo \"Ein unerwarteter Fehler ist aufgetreten.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Beispiel für einen Dateiauswahldialog" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Beispiel für einen Dateiauswahldialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Die Option --forms verwenden." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Formulardialog" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"Verwenden Sie die Option --forms, um einen Formulardialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Der Formulardialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=Feldname" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Einen neuen Eintrag im Formulardialog hinzufügen." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=Feldname" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Einen neuen Passworteintrag im Formulardialog hinzufügen (Text verbergen)." - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=Feldname" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Einen neuen Kalender im Formulardialog hinzufügen." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXT" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Den Dialogtext festlegen." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=TRENNER" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Das Trennungszeichen für die Ausgabe festlegen (Vorgabe: |)." - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=MUSTER" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Damit legen Sie das Format fest, das vom Kalenderdialog nach der Auswahl des " -"Datums zurückgegeben wird. Format muss ein Format sein, das von der " -"strftime-Funktion unterstützt wird, zum Beispiel %A %d/%m/" -"%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Formulardialog erzeugen:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Freund hinzufügen\" \\\n" -"\t--text=\"Geben Sie Informationen über den Freund ein.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Vorname\" \\\n" -"\t--add-entry=\"Nachname\" \\\n" -"\t--add-entry=\"E-Mail\" \\\n" -"\t--add-calendar=\"Geburtstag\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Freund hinzugefügt.\";;\n" -" 1)\n" -" echo \"Freund nicht hinzugefügt.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ein unerwarteter Fehler ist aufgetreten.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Beispiel für einen Formulardialog" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Beispiel für einen Formulardialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "translated" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java-Desktopsystem-Dokumentationsteam" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Zenity-Handbuch" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Dialoge" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Die Option --info verwenden." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Informationsdialog" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"Verwenden Sie die Option --info, um einen Informationsdialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Informationsdialog erzeugen:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Zusammenführung ist abgeschlossen. 3 von 10 Dateien wurden aktualisiert.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Beispiel für einen Informationsdialog" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Beispiel für einen Informationsdialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity erlaubt Ihnen die Erzeugung verschiedener Typen simpler " -"Dialoge." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Einführung" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Zenity erlaubt Ihnen die Erzeugung der folgenden Typen simpler " -"Dialoge:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Kalender" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Dateiauswahl" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formulare" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Liste" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Benachrichtigungssymbol" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Meldung" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Fehler" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Information" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Frage" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Warnung" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Passworteintrag" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Fortschritt" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Textfeld" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Textinformation" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Schieberegler" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Farbauswahl" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Die Option --list verwenden." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Listendialog" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Verwenden Sie die Option --list, um einen Listendialog zu " -"erzeugen. Zenity gibt die Einträge in der ersten Spalte der " -"ausgewählten Zeile an die Standardausgabe zurück." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Die Daten für den Dialog müssen Spalte für Spalte und Zeile für Zeile " -"angegeben werden. Die Daten können dem Dialog durch die Standardeingabe zur " -"Verfügung gestellt werden. Die einzelnen Einträge müssen durch ein Newline-" -"Zeichen voneinander getrennt werden." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Wenn Sie die Optionen --checklist oder --radiolist " -"verwenden, muss jede Zeile entweder mit 'TRUE' oder mit 'FALSE' beginnen." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Der Listendialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=column" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Legt die Spaltenüberschriften fest, die im Listendialog angezeigt werden " -"sollen. Sie müssen eine --column-Option für jede Spalte angeben, " -"die Sie im Listendialog anzeigen wollen." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Legt fest, dass die erste Spalte im Listendialog Ankreuzfelder enthält." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Legt fest, dass die erste Spalte im Listendialog Radioknöpfe enthalten soll." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Erlaubt die Bearbeitung der angezeigten Objekte." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Legt fest, welche Zeichenkette verwendet wird, wenn der Listendialog die " -"ausgewählten Einträge zurückgibt." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=Spalte" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Dies legt fest, welche Spalte Ihrer Auswahl ausgegeben werden soll. Die " -"Vorgabe ist »1«. Sie können »ALL« verwenden, um alle Spalten der Liste " -"ausgeben zu lassen." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Listendialog erzeugen:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Wählen Sie die Fehlerberichte aus\" \\\n" -" --column=\"Kennung\" --column=\"Ernsthaftigkeit\" --column=\"Beschreibung\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Beispiel für einen Listendialog" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Beispiel für einen Listendialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Fehler, Info, Frage, Warnung" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Meldungsdialog" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Für jeden dieser Typen geben Sie mit der Option --text an, " -"welcher Text im Dialog angezeigt werden soll." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Die Option --notifications verwenden." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Benachrichtigungssymbol" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Verwenden Sie die Option --notification, um ein " -"Benachrichtigungssymbol zu erzeugen." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Legt den Text fest, der im Benachrichtigungsfeld angezeigt wird." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'Text', message: 'Text', " -"tooltip: 'Text', visible: 'Text'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Horcht auf Befehle von der Standardeingabe. Es muss mindestens ein Befehl " -"angegeben werden. Befehle werden durch Kommata getrennt. Auf einen Befehl " -"muss ein Doppelpunkt und ein Wert folgen." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Der Befehl icon akzeptiert auch vier Werte von Standard-Symbolen " -"wie z.B. error, info, question und " -"warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie ein Benachrichtigungssymbol " -"erzeugen:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Systemaktualisierungen sind erforderlich!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Beispiel für ein Benachrichtigungssymbol" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Beispiel für ein Benachrichtigungssymbol in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "translated'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie ein Benachrichtigungssymbol " -"zusammen mit --listen erzeugen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" Nachricht: Dies ist der Text\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Beispiel für ein Benachrichtigungssymbol mit --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" -"Beispiel für ein Benachrichtigungssymbol mit --listen in " -"Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "translated" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Die Option --password verwenden." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Passwortdialog" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Verwenden Sie die Option --progress, um einen Fortschrittsanzeige-" -"Dialog zu erzeugen." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Der Passworteingabedialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Das Feld für den Benutzernamen anzeigen." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Passworteingabedialog " -"erzeugen:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Beispiel für einen Passworteingabe-Dialog" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Beispiel für einen Texteingabedialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Die Option --progress verwenden." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Fortschrittsanzeige-Dialog" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"Verwenden Sie die Option --progress, um einen Fortschrittsanzeige-" -"Dialog zu erzeugen." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity liest die Daten aus der Standardeingabe zeilenweise. Wenn " -"einer Zeile ein Raute-Zeichen (#) vorangestellt ist, wird der angezeigte " -"Text durch den Text in dieser Zeile aktualisiert, bei einem angezeigten " -"Prozentsatz durch die angegebene Zahl." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Der Fortschrittsanzeige-Dialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Legt den Text fest, der im Fortschrittsanzeige-Dialog angezeigt wird." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=Prozentsatz" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Legt den anfänglich im Fortschrittsanzeige-Dialog angezeigten Prozentsatz " -"fest." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Schließt den Fortschrittsanzeige-Dialog, wenn 100% erreicht sind." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Legt fest, dass die Fortschrittsleiste pulsiert, bis ein EOF-Zeichen von der " -"Standardeingabe gelesen wird." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Fortschrittsanzeige-Dialog " -"erzeugen:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Mail-Logs werden aktualisiert\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# cron-jobs werden zurückgesetzt\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Diese Zeile wird einfach ignoriert\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# System wird neu gestartet\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"System-Logs aktualisieren\" \\\n" -" --text=\"Mail-Logs werden eingelesen …\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Aktualisierung abgebrochen.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Beispiel für einen Fortschrittsanzeige-Dialog" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Beispiel für einen Fortschrittsanzeige-Dialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Die Option --question verwenden." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Fragedialog" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"Verwenden Sie die Option --question, um einen Fragedialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "Das folgende Beispielskript zeigt, wie Sie einen Fragedialog erzeugen:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Wollen Sie wirklich fortsetzen?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Beispiel für einen Fragedialog" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Beispiel für einen Fragedialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Die Option --scale verwenden." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Schiebereglerdialog" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "" -"Verwenden Sie die Option --scale, um einen Schiebereglerdialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Der Schiebereglerdialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Legen Sie den Dialogtext fest. (Vorgabe: Passen Sie den Skalierungswert an)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=WERT" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Den Anfangswert festlegen (Vorgabe: 0). Sie müssen einen Wert zwischen dem " -"Maximal- und dem Minimalwert angeben." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=WERT" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Den Minimalwert festlegen (Vorgabe: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=WERT" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Den Maximalwert festlegen (Vorgabe: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=WERT" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Die Schrittweite festlegen (Vorgabe: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "" -"Wert in die Standardausgabe schreiben, immer dann, wenn sich der Wert ändert." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Den Wert im Dialog verbergen." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Schiebereglerdialog " -"erzeugen können:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Wählen Sie die Fenstertransparenz.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Sie wählten $VALUE%.\";;\n" -" 1)\n" -" echo \"Kein Wert gewählt.\";;\n" -" -1)\n" -" echo \"Ein unerwarteter Fehler ist aufgetreten.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Beispiel für einen Schiebereglerdialog" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Beispiel für einen Schiebereglerdialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "translated" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Die Option --text-info verwenden." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Text-Informationsdialog" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Verwenden Sie die Option --text-info, um einen " -"Textinformationsdialog zu erzeugen." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Der Textinformationsdialog unterstützt die folgenden Optionen:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Legt eine Datei fest, die im Textinformationsdialog geladen wird." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Ermöglicht die Bearbeitung des angezeigten Texts. Der bearbeitete Text wird " -"an die Standardausgabe zurückgegeben, wenn der Dialog geschlossen wird." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=SCHRIFT" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Die Schriftart des Textes festlegen." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXT" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Aktivieren Sie das Ankreuzfeld zur Verwendung von z.B. »Ich habe die " -"Bedingungen gelesen und akzeptiere diese.«" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "HTML-Unterstützung aktivieren." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Eine URL anstelle einer Datei angeben. Das funktioniert nur mit der Option --" -"html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Das folgende Beispielskript zeigt, wie Sie einen Textinformationsdialog " -"erzeugen:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Sie müssen die Datei »COPYING« in denselben Ordner wie dieses Skript ablegen.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Lizenz\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Ich habe die Bedingungen gelesen und akzeptiere sie.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Installation starten!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Installation anhalten!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ein unerwarteter Fehler ist aufgetreten.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Beispiel für einen Text-Informationsdialog" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Beispiel für einen Textinformationsdialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "translated'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Wenn Sie Skripte schreiben, können Sie Zenity zur Erzeugung " -"einfacher Dialoge zur Interaktion mit dem Benutzer verwenden." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Benutzung" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Wenn Sie Skripte schreiben, können Sie Zenity zur Erzeugung " -"einfacher Dialoge zur Interaktion mit dem Benutzer verwenden, wie folgende:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Sie können einen Dialog erzeugen, der die Eingabe von Informationen durch " -"den Benutzer erfordert. Beispielsweise können Sie den Benutzer anweisen, ein " -"Datum aus einem Kalenderdialog oder eine Datei aus einem Dateiauswahldialog " -"zu wählen." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Sie können einen Dialog erzeugen, um dem Benutzer Informationen zur " -"Verfügung zu stellen. Beispielsweise können Sie einen Fortschrittsanzeige-" -"Dialog erzeugen, um auf den aktuellen Status eines Vorgangs hinzuweisen, " -"oder einen Warndialog, um den Benutzer zu warnen." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Wenn der Benutzer den Dialog schließt, schreibt Zenity den vom " -"Dialog ausgegebenen Text in die Standardausgabe." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Wenn Sie Zenity-Befehle schreiben, stellen Sie bitte sicher, dass " -"Sie jedes Argument stets in Anführungszeichen einschließen." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Benutzen Sie beispielsweise:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Urlaubsplaner\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Benutzen Sie nicht:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Urlaubsplaner" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" -"Wenn Sie keine Anführungszeichen verwenden, könnten Sie unerwartete " -"Ergebnisse erhalten." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Zugriffstasten" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Eine Zugriffstaste ist eine Taste, die Ihnen die Ausführung einer Aktion mit " -"der Tastatur zur Auswahl eines Befehls aus einem Menü oder einem Dialog " -"erlaubt, anstatt dafür die Maus zu benutzen." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Einige Zenity-Dialoge unterstützen die Verwendung von " -"Zugriffstasten. Um das Zeichen für den Tastaturzugriff festzulegen, setzen " -"Sie einen Unterstrich vor das Zeichen im Dialogtext. Das folgende Beispiel " -"zeigt, wie Sie den Buchstaben »W« als Zugriffstaste festlegen:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Wählen Sie einen Namen\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Rückgabewerte" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity erzeugt die folgenden Rückgabewerte:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Rückgabewert" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Beschreibung" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Der Benutzer hat entweder OK oder Schließen angeklickt." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Der Benutzer hat entweder Abbrechen angeklickt " -"oder die Fensterfunktionen zum Schließen des Dialogs benutzt." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Es ist ein unerwarteter Fehler aufgetreten." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Der Dialog wurde geschlossen, weil die Wartezeit verstrichen ist." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Allgemeine Einstellungen" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Alle Zenity-Dialoge unterstützen die folgenden allgemeinen Optionen:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=Titel" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Damit legen Sie den Titel des Dialogs fest." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=Symbolpfad" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Damit legen Sie das Symbol fest, das im Fensterrahmen des Dialogs angezeigt " -"wird. Es gibt 4 Standardsymbole, die auch über die Schlüsselwörter »info«, " -"»warning«, »question« und »error« bereitgestellt werden." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=Breite" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Damit legen Sie die Breite des Dialogs fest." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=Höhe" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Damit legen Sie die Höhe des Dialogs fest." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=timeout" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Damit legen Sie die Wartezeit in Sekunden bis zum Schließen des Dialogs fest." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Hilfeoptionen" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity stellt die folgenden Hilfeoptionen bereit:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Damit zeigen Sie einen Hilfetext in Kurzform an." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Damit zeigen Sie den kompletten Hilfetext für alle Dialoge an." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Damit zeigen Sie den Hilfetext für allgemeine Dialogoptionen an." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Kalenderdialogoptionen an." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Optionen des Texteingabedialogs an." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Optionen des Fehlerdialogs an." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Informationsdialogoptionen an." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Optionen des Dateiauswahldialogs." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Optionen des Listendialogs an." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "" -"Damit zeigen Sie den Hilfetext für Optionen des Benachrichtigungssymbols an." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "" -"Damit zeigen Sie den Hilfetext für Optionen des Fortschrittsanzeige-Dialogs " -"an." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Damit zeigen Sie den Hilfetext für Optionen des Fragedialogs an." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Damit zeigen Sie den Hilfetext für die Optionen des Warndialogs an." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "" -"Damit zeigen Sie den Hilfetext für Optionen des Informationsdialogs an." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "" -"Damit zeigen Sie den Hilfetext für nicht auf einen bestimmten Dialog " -"bezogene Optionen an." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Damit zeigen Sie den Hilfetext für die GTK+-Optionen an." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Verschiedene Optionen" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity stellt außerdem die folgenden weiteren Optionen zur Verfügung:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Damit zeigen Sie den Info zu Zenity-Dialog an, der " -"Versionsinformationen, Copyright-Informationen und Entwicklerinformationen " -"über Zenity enthält." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Damit zeigen Sie die Versionsnummer von Zenity an." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "GTK+-Optionen" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity unterstützt die Standardoptionen von GTK+. Um weitere Informationen " -"über die GTK+-Optionen anzuzeigen, führen Sie den Befehl zenity --help-" -"gtk aus." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Umgebungsvariablen" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalerweise erkennt Zenity das Terminalfenster, aus dem es gestartet wurde " -"und hält sein eigenes Fenster im Vordergrund dieses Fensters. Dieses " -"Verhalten kann deaktiviert werden, wenn Sie das Setzen der Umgebungsvariable " -"WINDOWID deaktivieren." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Die Option --warning verwenden." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Warndialog" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"Verwenden Sie die Option --warning, um einen Warndialog zu " -"erzeugen." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "Das folgende Beispielskript zeigt, wie Sie einen Warndialog erzeugen:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Ziehen Sie den Netzstecker, um einen elektrischen Schlag zu vermeiden.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Beispiel für einen Warndialog" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Beispiel für einen Warndialog in Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "translated'" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -#~ msgstr "translated'" diff --git a/help/de/figures/zenity-calendar-screenshot.png b/help/de/figures/zenity-calendar-screenshot.png deleted file mode 100644 index 354ed6a..0000000 Binary files a/help/de/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-colorselection-screenshot.png b/help/de/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 4f29c4b..0000000 Binary files a/help/de/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-entry-screenshot.png b/help/de/figures/zenity-entry-screenshot.png deleted file mode 100644 index abd4c72..0000000 Binary files a/help/de/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-error-screenshot.png b/help/de/figures/zenity-error-screenshot.png deleted file mode 100644 index ddce66b..0000000 Binary files a/help/de/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-fileselection-screenshot.png b/help/de/figures/zenity-fileselection-screenshot.png deleted file mode 100644 index df98e37..0000000 Binary files a/help/de/figures/zenity-fileselection-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-forms-screenshot.png b/help/de/figures/zenity-forms-screenshot.png deleted file mode 100644 index f82104c..0000000 Binary files a/help/de/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-information-screenshot.png b/help/de/figures/zenity-information-screenshot.png deleted file mode 100644 index 330bfd2..0000000 Binary files a/help/de/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-list-screenshot.png b/help/de/figures/zenity-list-screenshot.png deleted file mode 100644 index 70a016c..0000000 Binary files a/help/de/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-notification-listen-screenshot.png b/help/de/figures/zenity-notification-listen-screenshot.png deleted file mode 100644 index 6bbb820..0000000 Binary files a/help/de/figures/zenity-notification-listen-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-notification-screenshot.png b/help/de/figures/zenity-notification-screenshot.png deleted file mode 100644 index 87fab30..0000000 Binary files a/help/de/figures/zenity-notification-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-password-screenshot.png b/help/de/figures/zenity-password-screenshot.png deleted file mode 100644 index c59fc5e..0000000 Binary files a/help/de/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-progress-screenshot.png b/help/de/figures/zenity-progress-screenshot.png deleted file mode 100644 index 5028f15..0000000 Binary files a/help/de/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-question-screenshot.png b/help/de/figures/zenity-question-screenshot.png deleted file mode 100644 index d89d8eb..0000000 Binary files a/help/de/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-scale-screenshot.png b/help/de/figures/zenity-scale-screenshot.png deleted file mode 100644 index 5543f1d..0000000 Binary files a/help/de/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-text-screenshot.png b/help/de/figures/zenity-text-screenshot.png deleted file mode 100644 index a1baee4..0000000 Binary files a/help/de/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/de/figures/zenity-warning-screenshot.png b/help/de/figures/zenity-warning-screenshot.png deleted file mode 100644 index 47b5af9..0000000 Binary files a/help/de/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/el/el.po b/help/el/el.po deleted file mode 100644 index 208fa3d..0000000 --- a/help/el/el.po +++ /dev/null @@ -1,2697 +0,0 @@ -# translation of zenity-help.HEAD.po to Ελληνικά -# Sterios Prosiniklis , 2009. -# Marios Zindilis , 2011. -# Dimitris Spingos (Δημήτρης Σπίγγος) , 2014. -msgid "" -msgstr "" -"Project-Id-Version: zenity-help.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-20 00:46+0000\n" -"PO-Revision-Date: 2015-09-20 13:53+0300\n" -"Last-Translator: Tom Tryfonidis \n" -"Language-Team: www.gnome.gr\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.4\n" - -#. (itstool) path: para/ulink -#: C/legal.xml:9 -msgid "link" -msgstr "σύνδεσμο" - -#. (itstool) path: legalnotice/para -#: C/legal.xml:2 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " -"with this manual." -msgstr "" -"Δίνεται άδεια για αντιγραφή, διανομή και/ή τροποποίηση του εγγράφου υπό τους " -"όρους της Ελεύθερης Άδειας Τεκμηρίωσης GNU (GFDL), Έκδοση 1.1 ή " -"μεταγενέστερη εκδιδόμενη από το Ίδρυμα Ελεύθερου Λογισμικού χωρίς Σταθερά " -"Εδάφια, χωρίς Εξώφυλλα Κειμένου, και χωρίς Οπισθόφυλλα Κειμένου. Μπορείτε να " -"βρείτε ένα αντίγραφο της GFDL σε αυτόν τον <_:ulink-1/> ή στο αρχείο COPYING-" -"DOCS που διανεμήθηκε με αυτόν τον οδηγό." - -#. (itstool) path: legalnotice/para -#: C/legal.xml:12 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Αυτή η τεκμηρίωση είναι μέρος της συλλογής τεκμηρίωσης του GNOME όπως " -"διανέμεται υπό τους όρους του GFDL. Εάν επιθυμείτε να διανείμετε αυτή την " -"τεκμηρίωση ξεχωριστά από την συλλογή, μπορείτε να το κάνετε εάν η τεκμηρίωση " -"συνοδεύεται από αντίγραφο της άδειας (GFDL) όπως περιγράφεται στον τομέα 6 " -"της άδειας." - -#. (itstool) path: legalnotice/para -#: C/legal.xml:19 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Πολλά από τα ονόματα που χρησιμοποιούνται από εταιρίες για να ξεχωρίσουν τα " -"προϊόντα και τις υπηρεσίες είναι σήματα κατατεθέν. Όπου αυτά τα ονόματα " -"εμφανίζονται στην τεκμηρίωση GNOME, και τα μέλη της ομάδας τεκμηρίωσης GNOME " -"έχουν γνώση αυτών, τότε αυτά αναγράφονται με κεφαλαίους χαρακτήρες ή με " -"αρχικούς κεφαλαίους χαρακτήρες." - -#. (itstool) path: listitem/para -#: C/legal.xml:35 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ ΠΑΡΕΧΕΤΑΙ \"ΩΣ ΕΧΕΙ\", ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ ΟΤΙ ΜΠΟΡΕΙ ΝΑ " -"ΕΞΥΠΗΡΕΤΗΣΕΙ ΚΑΠΟΙΟ ΣΚΟΠΟ Η ΟΤΙ ΕΙΝΑΙ ΧΩΡΙΣ ΣΦΑΛΜΑ. ΟΛΟΚΛΗΡΗ Η ΕΥΘΥΝΗ ΓΙΑ " -"ΤΗΝ ΠΟΙΟΤΗΤΑ, ΑΚΡΙΒΕΙΑ ΚΑΙ ΛΕΙΤΟΥΡΓΙΚΟΤΗΤΑ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ " -"ΑΥΤΗΣ ΑΝΗΚΕΙ ΣΕ ΕΣΑΣ. ΕΑΝ Η ΤΕΚΜΗΡΙΩΣΗ ΑΥΤΗ Ή ΠΑΡΑΛΛΑΓΗ ΑΥΤΗΣ ΕΙΝΑΙ ΛΑΘΟΣ " -"ΚΑΤΑ ΚΑΠΟΙΟ ΤΡΟΠΟ ΕΣΕΙΣ ΑΝΑΛΑΜΒΑΝΕΤΕ ΤΗΝ ΕΥΘΥΝΗ ΤΗΣ ΔΙΟΡΘΩΣΗΣ. Η ΑΠΑΛΛΑΓΗ " -"ΕΥΘΥΝΗΣ ΠΟΥ ΣΥΝΟΔΕΥΕΙ ΑΥΤΗ ΤΗΝ ΤΕΚΜΗΡΙΩΣΗ ΕΙΝΑΙ ΑΝΑΠΟΣΠΑΣΤΟ ΚΟΜΜΑΤΙ ΑΥΤΗΣ. " -"ΚΑΜΙΑ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ Ή ΠΑΡΑΛΛΑΓΩΝ ΑΥΤΗΣ ΔΕΝ ΕΠΙΤΡΕΠΕΤΑΙ ΠΑΡΑ ΜΟΝΟ ΕΑΝ " -"ΣΥΝΟΔΕΥΕΤΑΙ ΑΠΟ ΤΗΝ ΑΠΑΛΛΑΓΗ ΕΥΘΥΝΗΣ." - -#. (itstool) path: listitem/para -#: C/legal.xml:55 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"ΣΕ ΚΑΜΙΑ ΠΕΡΙΠΤΩΣΗ ΚΑΙ ΥΠΟ ΚΑΜΙΑ ΝΟΜΙΚΗ ΣΥΝΘΗΚΗ, ΕΙΤΕ ΜΕΣΩ ΣΥΜΒΟΛΑΙΩΝ Ή " -"ΑΛΛΙΩΣ, ΔΕΝ ΕΥΘΥΝΟΝΤΑΙ Ο ΣΥΓΓΡΑΦΕΑΣ, Ο ΔΙΑΝΟΜΕΑΣ, Η ΑΛΛΟΣ ΣΥΝΥΠΕΥΘΥΝΟΣ ΓΙΑ " -"ΤΗΝ ΣΥΓΓΡΑΦΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ, ΓΙΑ ΕΜΜΕΣΕΣ Η ΑΜΕΣΕΣ, ΤΥΧΑΙΕΣ Ή ΜΗ ΖΗΜΙΕΣ " -"ΠΑΝΤΩΣ ΦΥΣΕΩΣ ΠΟΥ ΠΡΟΕΡΧΟΝΤΑΙ ΑΠΟ ΤΗΝ ΧΡΗΣΗ ΤΗΣ ΤΕΚΜΗΡΙΩΣΗΣ ΚΑΙ/Ή ΠΑΡΑΛΛΑΓΩΝ " -"ΑΥΤΗΣ ΑΚΟΜΑ ΚΑΙ ΕΑΝ ΕΧΕΙ ΥΠΑΡΞΕΙ ΠΡΟΕΙΔΟΠΟΙΗΣΗ ΓΙΑ ΤΗΝ ΠΙΘΑΝΟΤΗΤΑ ΥΠΑΡΞΗΣ " -"ΤΕΤΟΙΩΝ ΖΗΜΙΩΝ." - -#. (itstool) path: legalnotice/para -#: C/legal.xml:28 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"<_:orderedlist-1/>" -msgstr "" -"ΤΟ ΈΓΓΡΑΦΟ ΚΑΙ ΤΡΟΠΟΠΟΙΗΜΕΝΕΣ ΕΚΔΟΣΕΙΣ ΑΥΤΟΥ ΠΑΡΕΧΟΝΤΑΙ ΥΠΟ ΤΟΥΣ ΟΡΟΥΣ ΤΗΣ " -"ΑΔΕΙΑΣ GNU FREE DOCUMENTATION ΜΕ ΤΗΝ ΠΕΡΑΙΤΕΡΩ ΔΙΕΥΚΡΙΝΙΣΗ ΟΤΙ: <_:" -"orderedlist-1/>" - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Ελληνική μεταφραστική ομάδα GNOME , 2009-2014 \n" -"Στέργιος Προσινικλής , 2009\n" -"Θάνος Τρυφωνίδης , 2012\n" -"Δημήτρης Σπίγγος , 2014" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:66 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='92bf5317d799665acf0d4005cee184c2'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='92bf5317d799665acf0d4005cee184c2'" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Χρησιμοποιήστε την επιλογή --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:8 -msgid "Calendar Dialog" -msgstr "Διάλογος ημερολογίου" - -#. (itstool) path: page/p -#: C/calendar.page:9 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Χρησιμοποιώντας την επιλογή --calendar δημιουργείτε έναν διάλογο " -"ημερολογίου. Το Zenity αποδίδει την επιλεγμένη ημερομηνία σαν κανονική " -"έξοδο. Αν δεν καθοριστεί ημερομηνία στην γραμμή εντολών, ο διάλογος " -"χρησιμοποιεί την τρέχουσα ημερομηνία." - -#. (itstool) path: page/p -#: C/calendar.page:12 -msgid "The calendar dialog supports the following options:" -msgstr "Ο διάλογος ημερολογίου υποστηρίζει τις εξής επιλογές:" - -#. (itstool) path: item/title -#: C/calendar.page:19 C/entry.page:19 C/notification.page:13 C/progress.page:24 -msgid "--text=text" -msgstr "--text=κείμενο" - -#. (itstool) path: item/p -#: C/calendar.page:20 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Καθορίζει το κείμενο που προβάλλεται στον διάλογο ημερολογίου." - -#. (itstool) path: item/title -#: C/calendar.page:24 -msgid "--day=day" -msgstr "--day=ημέρα" - -#. (itstool) path: item/p -#: C/calendar.page:25 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Καθορίζει την ημέρα που επιλέγεται στον διάλογο ημερολογίου. Η ημέρα πρέπει " -"να είναι ένας αριθμός από 1 έως και 31." - -#. (itstool) path: item/title -#: C/calendar.page:29 -msgid "--month=month" -msgstr "--month=μήνας" - -#. (itstool) path: item/p -#: C/calendar.page:30 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Καθορίζει τον μήνα που επιλέγεται στον διάλογο ημερολογίου. Ο μήνας πρέπει " -"να είναι ένας αριθμός από 1 έως και 12." - -#. (itstool) path: item/title -#: C/calendar.page:34 -msgid "--year=year" -msgstr "--year=έτος" - -#. (itstool) path: item/p -#: C/calendar.page:35 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Καθορίζει το έτος που επιλέγεται στον διάλογο ημερολογίου." - -#. (itstool) path: item/title -#: C/calendar.page:39 -msgid "--date-format=format" -msgstr "--date-format=μορφή" - -#. (itstool) path: item/p -#: C/calendar.page:40 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Καθορίζει την μορφή που αποδίδεται από τον διάλογο ημερολογίου μετά την " -"επιλογή ημερομηνίας. Η προεπιλεγμένη μορφή εξαρτάται από την προσαρμογή " -"εντοπιότητας(locale) που χρησιμοποιείτε. Η μορφή πρέπει να συντάσσεται έτσι " -"ώστε να γίνεται αποδεκτή από την λειτουργία strftime, για " -"παράδειγμα %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:45 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο ημερολογίου:" - -#. (itstool) path: page/code -#: C/calendar.page:49 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Επιλέξτε ημερομηνία\" \\\n" -"--text=\"Κάντε κλικ σε μια ημερομηνία για να την επιλέξετε.\" \\\n" -"--day=2 --month=4 --year=2009\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:64 -msgid "Calendar Dialog Example" -msgstr "Παράδειγμα διαλόγου ημερολογίου" - -#. (itstool) path: figure/desc -#: C/calendar.page:65 -msgid "Zenity calendar dialog example" -msgstr "Παράδειγμα διαλόγου ημερολογίου του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='febe3f417acea789c9db628fbe44f798'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='febe3f417acea789c9db628fbe44f798'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Χρησιμοποιήστε την επιλογή --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:8 -msgid "Color Selection Dialog" -msgstr "Διάλογος επιλογής χρώματος" - -#. (itstool) path: page/p -#: C/color-selection.page:9 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --color-selection για να δημιουργήσετε " -"ένα χρωματικό διάλογο πληροφόρησης." - -#. (itstool) path: page/p -#: C/color-selection.page:12 -msgid "The color selection dialog supports the following options:" -msgstr "Ο διάλογος επιλογής χρώματος υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/title -#: C/color-selection.page:19 -msgid "--color=VALUE" -msgstr "--color=ΤΙΜΗ" - -#. (itstool) path: item/p -#: C/color-selection.page:20 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Ορίστε το αρχικό χρώμα.(π.χ: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:24 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:25 -msgid "Show the palette." -msgstr "Εμφάνιση της παλέτας." - -#. (itstool) path: page/p -#: C/color-selection.page:30 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως δημιουργείτε " -"έναν διάλογο επιλογής αρχείου:" - -#. (itstool) path: page/code -#: C/color-selection.page:34 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Επιλέξατε το $COLOR.\";;\n" -" 1)\n" -" echo \"Δεν επιλέχθηκε χρώμα.\";;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:50 -msgid "Color Selection Dialog Example" -msgstr "Παράδειγμα διαλόγου επιλογής χρώματος" - -#. (itstool) path: figure/desc -#: C/color-selection.page:51 -msgid "Zenity color selection dialog example" -msgstr "Παράδειγμα διαλόγου επιλογής χρώματος του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:55 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='bae6bf4342a66a3900deb15bde82ff42'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='bae6bf4342a66a3900deb15bde82ff42'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Χρησιμοποιήστε την επιλογή --entry." - -#. (itstool) path: page/title -#: C/entry.page:8 -msgid "Text Entry Dialog" -msgstr "Διάλογος καταχώρησης κειμένου" - -#. (itstool) path: page/p -#: C/entry.page:9 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Χρησιμοποιήστε την επιλογή --entry για να δημιουργήσετε έναν " -"διάλογο καταχώρησης κειμένου. Το Zenity αποδίδει τα περιεχόμενα " -"της καταχώρησης κειμένου στην κανονική έξοδο." - -#. (itstool) path: page/p -#: C/entry.page:12 -msgid "The text entry dialog supports the following options:" -msgstr "Ο διάλογος καταχώρησης κειμένου υποστηρίζει τις ακόλουθες επιλογές:" - -#. (itstool) path: item/p -#: C/entry.page:20 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "" -"Καθορίζει το κείμενο που προβάλλεται στον διάλογο καταχώρησης κειμένου." - -#. (itstool) path: item/title -#: C/entry.page:24 -msgid "--entry-text=text" -msgstr "--entry-text=κείμενο" - -#. (itstool) path: item/p -#: C/entry.page:25 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Καθορίζει το κείμενο που προβάλλεται στο πεδίο εισαγωγής του διαλόγου " -"καταχώρησης κειμένου." - -#. (itstool) path: item/title -#: C/entry.page:29 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:30 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "" -"Αποκρύπτει το κείμενο στο πεδίο εισαγωγής του διαλόγου καταχώρησης κειμένου." - -#. (itstool) path: page/p -#: C/entry.page:35 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"Το παρακάτω παράδειγμα σεναρίου εντολών σας δείχνει πως μπορείτε να " -"δημιουργήσετε έναν διάλογο καταχώρησης κειμένου:" - -#. (itstool) path: page/code -#: C/entry.page:39 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Προσθέστε νέο προφίλ\" \\\n" -"--text=\"Πληκτρολογήστε το όνομα του νέου προφίλ:\" \\\n" -"--entry-text \"Νέο προφίλ\"\n" -" then echo $?\n" -" else echo \"Δε δόθηκε όνομα\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:53 -msgid "Text Entry Dialog Example" -msgstr "Παράδειγμα διαλόγου καταχώρησης κειμένου" - -#. (itstool) path: figure/desc -#: C/entry.page:54 -msgid "Zenity text entry dialog example" -msgstr "Παράδειγμα διαλόγου καταχώρησης κειμένου του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Χρησιμοποιήστε την επιλογή --error." - -#. (itstool) path: page/title -#: C/error.page:8 -msgid "Error Dialog" -msgstr "Διάλογος σφάλματος" - -#. (itstool) path: page/p -#: C/error.page:9 -msgid "Use the --error option to create an error dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --error για να δημιουργήσετε ένα " -"διαλόγο σφάλματος." - -#. (itstool) path: page/p -#: C/error.page:13 -msgid "The following example script shows how to create an error dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο σφάλματος:" - -#. (itstool) path: page/code -#: C/error.page:17 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Αδύνατη η εύρεση του /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:26 -msgid "Error Dialog Example" -msgstr "Παράδειγμα διαλόγου σφάλματος" - -#. (itstool) path: figure/desc -#: C/error.page:27 -msgid "Zenity error dialog example" -msgstr "Παράδειγμα διαλόγου σφάλματος του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:68 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='bbba2652577f14ab4719f55a2ff57073'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='bbba2652577f14ab4719f55a2ff57073'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Χρησιμοποιήστε την επιλογή --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:8 -msgid "File Selection Dialog" -msgstr "Διάλογος επιλογής αρχείου" - -#. (itstool) path: page/p -#: C/file-selection.page:9 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Με την χρήση της επιλογής --file-selection δημιουργείτε ένα " -"διάλογο επιλογής αρχείου. Το Zenity αποδίδει τα επιλεγμένα αρχεία " -"ή καταλόγους σαν κανονική έξοδο. Η προεπιλεγμένη κατάσταση λειτουργίας του " -"διαλόγου επιλογής αρχείου είναι άνοιγμα." - -#. (itstool) path: page/p -#: C/file-selection.page:13 -msgid "The file selection dialog supports the following options:" -msgstr "Ο διάλογος επιλογής αρχείου υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/title -#: C/file-selection.page:20 C/text.page:20 -msgid "--filename=filename" -msgstr "--filename=όνομα αρχείου" - -#. (itstool) path: item/p -#: C/file-selection.page:21 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Καθορίζει το αρχείο ή τον κατάλογο που είναι επιλεγμένος στον διάλογο " -"επιλογής αρχείου όταν ανοίγει." - -#. (itstool) path: item/title -#: C/file-selection.page:25 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:26 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Επιτρέπει την επιλογή πολλών ονομάτων αρχείου στον διάλογο επιλογής αρχείου." - -#. (itstool) path: item/title -#: C/file-selection.page:30 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:31 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Επιτρέπει μόνο την επιλογή καταλόγων στον διάλογο επιλογής αρχείου." - -#. (itstool) path: item/title -#: C/file-selection.page:35 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:36 -msgid "Set the file selection dialog into save mode." -msgstr "" -"Ρύθμιση του διαλόγου επιλογής αρχείου σε κατάσταση λειτουργίας αποθήκευσης." - -#. (itstool) path: item/title -#: C/file-selection.page:40 C/list.page:52 -msgid "--separator=separator" -msgstr "--separator=διαχωριστικό" - -#. (itstool) path: item/p -#: C/file-selection.page:41 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Καθορίζει την συμβολοσειρά που χρησιμοποιείται για να διαχωρίσει την " -"αποδοθείσα λίστα ονομάτων." - -#. (itstool) path: page/p -#: C/file-selection.page:46 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως δημιουργείτε " -"έναν διάλογο επιλογής αρχείου:" - -#. (itstool) path: page/code -#: C/file-selection.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Επιλέξτε ένα αρχείο\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" επιλέχθηκε.\";;\n" -" 1)\n" -" echo \"Δεν επιλέχθηκε αρχείο.\";;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:66 -msgid "File Selection Dialog Example" -msgstr "Παράδειγμα διαλόγου επιλογής αρχείου" - -#. (itstool) path: figure/desc -#: C/file-selection.page:67 -msgid "Zenity file selection dialog example" -msgstr "Παράδειγμα διαλόγου επιλογής αρχείου του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:81 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='c11fab02e4d51212a538ce6859799d5f'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='c11fab02e4d51212a538ce6859799d5f'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Χρησιμοποιήστε την επιλογή --forms." - -#. (itstool) path: page/title -#: C/forms.page:8 -msgid "Forms Dialog" -msgstr "Διάλογος φορμών" - -#. (itstool) path: page/p -#: C/forms.page:9 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --forms για να δημιουργήσετε έναν " -"διάλογο φορμών." - -#. (itstool) path: page/p -#: C/forms.page:13 -msgid "The forms dialog supports the following options:" -msgstr "Ο διάλογος φορμών υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/title -#: C/forms.page:20 -msgid "--add-entry=FieldName" -msgstr "--add-entry=Όνομα πεδίου" - -#. (itstool) path: item/p -#: C/forms.page:21 -msgid "Add a new Entry in forms dialog." -msgstr "Προσθήκη νέας καταχώρισης στο διάλογο φορμών." - -#. (itstool) path: item/title -#: C/forms.page:25 -msgid "--add-password=FieldName" -msgstr "--add-password=Όνομα πεδίου" - -#. (itstool) path: item/p -#: C/forms.page:26 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Προσθήκη μίας νέας καταχώρησης κωδικού στο διάλογο φορμών. (Απόκρυψη " -"κειμένου)" - -#. (itstool) path: item/title -#: C/forms.page:30 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=Όνομα πεδίου" - -#. (itstool) path: item/p -#: C/forms.page:31 -msgid "Add a new Calendar in forms dialog." -msgstr "Προσθήκη ενός νέου ημερολογίου στο διάλογο φορμών." - -#. (itstool) path: item/title -#: C/forms.page:35 C/scale.page:19 -msgid "--text=TEXT" -msgstr "--text=ΚΕΙΜΕΝΟ" - -#. (itstool) path: item/p -#: C/forms.page:36 -msgid "Set the dialog text." -msgstr "Ορίστε το κείμενο του διαλόγου." - -#. (itstool) path: item/title -#: C/forms.page:40 -msgid "--separator=SEPARATOR" -msgstr "--separator=ΔΙΑΧΩΡΙΣΤΙΚΟ" - -#. (itstool) path: item/p -#: C/forms.page:41 -msgid "Set output separator character. (Default: | )" -msgstr "Ορίστε το διαχωριστικό χαρακτήρα εξόδου. (Προεπιλεγμένο: | )" - -#. (itstool) path: item/title -#: C/forms.page:45 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=ΜΟΤΙΒΟ" - -#. (itstool) path: item/p -#: C/forms.page:46 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Καθορίζει την μορφή που αποδίδεται από τον διάλογο ημερολογίου μετά την " -"επιλογή ημερομηνίας. Η προεπιλεγμένη μορφή εξαρτάται από την προσαρμογή " -"εντοπιότητας(locale) που χρησιμοποιείτε. Η μορφή πρέπει να συντάσσεται έτσι " -"ώστε να γίνεται αποδεκτή από την λειτουργία strftime, για " -"παράδειγμα %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:51 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο φορμών:" - -#. (itstool) path: page/code -#: C/forms.page:55 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Προσθήκη φίλοι\" \\\n" -"\t--text=\"Πληκτρολογήστε πληροφορίες για τον φίλο σας.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Όνομα\" \\\n" -"\t--add-entry=\"Επώνυμο\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Γενέθλια\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Προστέθηκε ο φίλος.\";;\n" -" 1)\n" -" echo \"Δεν προστέθηκε κανένας φίλος.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:79 -msgid "Forms Dialog Example" -msgstr "Παράδειγμα διαλόγου φορμών" - -#. (itstool) path: figure/desc -#: C/forms.page:80 -msgid "Zenity forms dialog example" -msgstr "Παράδειγμα διαλόγου φορμών του Zenity" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Ομάδα τεκμηρίωσης του συστήματος επιφάνειας εργασίας Java της Sun" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: license/p -#: C/index.page:20 -msgid "GNU Free Documentation License (GFDL)" -msgstr "Άδεια Ελεύθερης Τεκμηρίωσης GNU (GFDL)" - -#. (itstool) path: page/title -#: C/index.page:24 -msgid "Zenity Manual" -msgstr "Εγχειρίδιο του Zenity" - -#. (itstool) path: section/title -#: C/index.page:27 -msgid "Dialogs" -msgstr "Διάλογοι" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='72386d53a991c46e918ee6dd22795aa6'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='72386d53a991c46e918ee6dd22795aa6'" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Χρησιμοποιήστε την επιλογή --info." - -#. (itstool) path: page/title -#: C/info.page:8 -msgid "Info Dialog" -msgstr "Διαλόγου πληροφοριών" - -#. (itstool) path: page/p -#: C/info.page:9 -msgid "Use the --info option to create an information dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --info για να δημιουργήσετε έναν " -"διάλογο πληροφόρησης." - -#. (itstool) path: page/p -#: C/info.page:13 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο πληροφοριών:" - -#. (itstool) path: page/code -#: C/info.page:17 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Η συγχώνευση ολοκληρώθηκε. Ενημερώθηκαν 3 από 10 αρχεία.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:26 -msgid "Information Dialog Example" -msgstr "Παράδειγμα διαλόγου πληροφόρησης" - -#. (itstool) path: figure/desc -#: C/info.page:27 -msgid "Zenity information dialog example" -msgstr "Παράδειγμα διαλόγου πληροφόρησης του Zenity" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Η εφαρμογή Zenity σας επιτρέπει να δημιουργήσετε τους παρακάτω " -"τύπους απλών διαλόγων." - -#. (itstool) path: page/title -#: C/intro.page:8 -msgid "Introduction" -msgstr "Εισαγωγή" - -#. (itstool) path: page/p -#: C/intro.page:9 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Η εφαρμογή Zenity σας επιτρέπει να δημιουργήσετε τους παρακάτω " -"τύπους απλών διαλόγων:" - -#. (itstool) path: item/p -#: C/intro.page:14 -msgid "Calendar" -msgstr "Ημερολογίου" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "File selection" -msgstr "Επιλογής αρχείου" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "Forms" -msgstr "Φόρμες" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "List" -msgstr "Λίστας" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "Notification icon" -msgstr "Εικονίδιο ειδοποίησης" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Message" -msgstr "Μηνυμάτων" - -#. (itstool) path: item/p -#: C/intro.page:21 -msgid "Error" -msgstr "Σφάλματος" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Information" -msgstr "Πληροφόρησης" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Question" -msgstr "Ερώτησης" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Warning" -msgstr "Προειδοποίησης" - -#. (itstool) path: item/p -#: C/intro.page:27 -msgid "Password entry" -msgstr "Καταχώρηση κωδικού" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Progress" -msgstr "Ένδειξης προόδου" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Text entry" -msgstr "Καταχώρησης κειμένου" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text information" -msgstr "Πληροφοριών κειμένου" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Scale" -msgstr "Κλίμακα" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Color selection" -msgstr "Επιλογή χρώματος" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='8bd9ad9c760516a966d3590b2019fa1e'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='8bd9ad9c760516a966d3590b2019fa1e'" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Χρησιμοποιήστε την επιλογή --list." - -#. (itstool) path: page/title -#: C/list.page:8 -msgid "List Dialog" -msgstr "Διάλογος λίστας" - -#. (itstool) path: page/p -#: C/list.page:9 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Χρησιμοποιήστε την επιλογή --list για να δημιουργήσετε διαλόγους " -"λίστας. Το Zenity αποδίδει τις εγγραφές της πρώτης στήλης " -"κειμένου των επιλεγμένων σειρών σαν κανονική έξοδο." - -#. (itstool) path: page/p -#: C/list.page:13 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Τα δεδομένα για τον διάλογο πρέπει να οριστούν ανά στήλη και ανά σειρά. " -"Μπορείτε να δώσετε τα δεδομένα στον διάλογο με κανονική εισαγωγή. Κάθε " -"εγγραφή πρέπει να διαχωρίζεται από χαρακτήρα νέας γραμμής." - -#. (itstool) path: page/p -#: C/list.page:17 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Αν χρησιμοποιήσετε τις επιλογές --checklist ή --radiolist, κάθε σειρά πρέπει να αρχίζει με 'TRUE' ή 'FALSE'." - -#. (itstool) path: page/p -#: C/list.page:21 -msgid "The list dialog supports the following options:" -msgstr "Ο διάλογος λίστας υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/title -#: C/list.page:28 -msgid "--column=column" -msgstr "--column=στήλη" - -#. (itstool) path: item/p -#: C/list.page:29 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Καθορίζει τις κεφαλίδες των στηλών που προβάλλονται στον διάλογο λίστας. " -"Πρέπει να ορίσετε μία επιλογή --column για κάθε στήλη που θέλετε " -"να προβάλλετε στον διάλογο." - -#. (itstool) path: item/title -#: C/list.page:34 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:35 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Καθορίζει ότι η πρώτη στήλη του διαλόγου λίστας περιέχει κουτιά επιλογής." - -#. (itstool) path: item/title -#: C/list.page:40 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:41 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Καθορίζει ότι η πρώτη στήλη του διαλόγου λίστας περιέχει κουμπιά επιλογής." - -#. (itstool) path: item/title -#: C/list.page:46 C/text.page:25 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:47 -msgid "Allows the displayed items to be edited." -msgstr "Επιτρέπει την επεξεργασία των προβαλλόμενων αντικειμένων." - -#. (itstool) path: item/p -#: C/list.page:53 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Καθορίζει ποια συμβολοσειρά χρησιμοποιείται όταν ο διάλογος λίστας αποδίδει " -"τις επιλεγμένες εγγραφές." - -#. (itstool) path: item/title -#: C/list.page:58 -msgid "--print-column=column" -msgstr "--print-column=στήλη" - -#. (itstool) path: item/p -#: C/list.page:59 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Καθορίζει ποια στήλη πρέπει να τυπώνεται σαν αποτέλεσμα κατά την επιλογή. Η " -"προεπιλεγμένη στήλη είναι '1'. Το 'ALL' μπορεί να χρησιμοποιηθεί για να " -"εκτυπωθούν όλες οι στήλες της λίστας." - -#. (itstool) path: page/p -#: C/list.page:66 -msgid "The following example script shows how to create a list dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο λίστας:" - -#. (itstool) path: page/code -#: C/list.page:69 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Επιλέξτε τα σφάλματα που θέλετε να δείτε\" \\\n" -" --column=\"Αριθμός σφάλματος\" --column=\"Σοβαρότητα\" --column=\"Περιγραφή\" \\\n" -" 992383 Κανονική \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 Υψηλή \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Κρίσιμη \"Menu editing does not work in GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:82 -msgid "List Dialog Example" -msgstr "Παράδειγμα διαλόγου λίστας" - -#. (itstool) path: figure/desc -#: C/list.page:83 -msgid "Zenity list dialog example" -msgstr "Παράδειγμα διαλόγου λίστας του Zenity" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Σφάλμα, Πληρόφ., " -"Ερώτηση, Προειδοποίηση" - -#. (itstool) path: page/title -#: C/message.page:13 -msgid "Message Dialog" -msgstr "Διάλογος μηνύματος" - -#. (itstool) path: page/p -#: C/message.page:14 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Για κάθε τύπο, χρησιμοποιήστε την επιλογή --text για να " -"καθορίσετε το κείμενο που θα προβάλλεται στον διάλογο." - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:37 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='49ebe82aa255c5536d018f2b4f919c51'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='49ebe82aa255c5536d018f2b4f919c51'" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:51 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='e7e6edba1c794426c4ce749bc355b25d'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='e7e6edba1c794426c4ce749bc355b25d'" - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Χρησιμοποιήστε την επιλογή --notification." - -#. (itstool) path: page/title -#: C/notification.page:8 -msgid "Notification Icon" -msgstr "Εικονίδιο ειδοποίησης" - -#. (itstool) path: page/p -#: C/notification.page:9 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Χρησιμοποιήστε την επιλογή --notification για να δημιουργήσετε " -"ένα εικονίδιο ειδοποίησης" - -#. (itstool) path: item/p -#: C/notification.page:14 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Καθορίζει το κείμενο που προβάλλεται στην περιοχή ειδοποίησης." - -#. (itstool) path: item/title -#: C/notification.page:17 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," - -#. (itstool) path: item/p -#: C/notification.page:18 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Αποκρίνεται σε εντολές στην τυπική είσοδο. Τουλάχιστον μια εντολή πρέπει να " -"οριστεί. Οι εντολές χωρίζονται με κόμμα. Μια εντολή πρέπει να ακολουθείται " -"από μια άνω και κάτω τελεία και μια τιμή." - -#. (itstool) path: note/p -#: C/notification.page:20 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Η εντολή icon δέχεται επίσης τέσσερις τιμές έτοιμου εικονιδίου " -"όπως error, info, question και " -"warning." - -#. (itstool) path: page/p -#: C/notification.page:25 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε ένα εικονίδιο ειδοποίησης:" - -#. (itstool) path: page/code -#: C/notification.page:26 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Υπάρχουν ενημερώσεις συστήματος!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:35 -msgid "Notification Icon Example" -msgstr "Παράδειγμα εικονιδίου ειδοποίησης" - -#. (itstool) path: figure/desc -#: C/notification.page:36 -msgid "Zenity notification icon example" -msgstr "Παράδειγμα εικονιδίου ειδοποίησης του Zenity" - -#. (itstool) path: page/p -#: C/notification.page:40 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Το παρακάτω παράδειγμα σεναρίου δείχνει πώς να δημιουργήσετε ένα εικονίδιο " -"ειδοποίησης με --listen:" - -#. (itstool) path: page/code -#: C/notification.page:41 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:49 -msgid "Notification Icon with --listen Example" -msgstr "Παράδειγμα εικονιδίου ειδοποίησης με --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:50 -msgid "Zenity notification with --listen example" -msgstr "Παράδειγμα ειδοποίησης του Zenity με --listen" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:47 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='6adbeb624a307f78072593d6d1c6def6'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='6adbeb624a307f78072593d6d1c6def6'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Χρησιμοποιήστε την επιλογή --password." - -#. (itstool) path: page/title -#: C/password.page:8 -msgid "Password Dialog" -msgstr "Διάλογος κωδικού" - -#. (itstool) path: page/p -#: C/password.page:9 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --password για να δημιουργήσετε έναν " -"διάλογο καταχώρησης κωδικού." - -#. (itstool) path: page/p -#: C/password.page:12 -msgid "The password entry dialog supports the following options:" -msgstr "Ο διάλογος καταχώρησης κωδικού υποστηρίζει τις ακόλουθες επιλογές:" - -#. (itstool) path: item/title -#: C/password.page:18 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:19 -msgid "Display the username field." -msgstr "Εμφάνιση πεδίου του ονόματος χρήστη." - -#. (itstool) path: page/p -#: C/password.page:23 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"Το παρακάτω παράδειγμα σεναρίου εντολών σας δείχνει πως μπορείτε να " -"δημιουργήσετε έναν διάλογο καταχώρησης κωδικού:" - -#. (itstool) path: page/code -#: C/password.page:27 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Όνομα χρήστη: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Κωδικός : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Διακοπή σύνδεσης.\";;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:45 -msgid "Password Entry Dialog Example" -msgstr "Παράδειγμα διαλόγου καταχώρησης κωδικού" - -#. (itstool) path: figure/desc -#: C/password.page:46 -msgid "Zenity password entry dialog example" -msgstr "Παράδειγμα διαλόγου καταχώρησης κειμένου του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:77 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='75121bbbcb9cc92de4ebf7fbb92f0780'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Χρησιμοποιήστε την επιλογή --progress." - -#. (itstool) path: page/title -#: C/progress.page:8 -msgid "Progress Dialog" -msgstr "Διάλογος ένδειξης προόδου" - -#. (itstool) path: page/p -#: C/progress.page:9 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --progress για να δημιουργήσετε έναν " -"διάλογο ένδειξης προόδου." - -#. (itstool) path: page/p -#: C/progress.page:13 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Το Zenity διαβάζει τα δεδομένα εισόδου ανά γραμμή. Αν μία γραμμή " -"αρχίζει με #, το κείμενο ενημερώνεται με το κείμενο της γραμμής. Αν η γραμμή " -"περιέχει μόνο έναν αριθμό, το ποσοστό ενημερώνεται με αυτόν τον αριθμό." - -#. (itstool) path: page/p -#: C/progress.page:17 -msgid "The progress dialog supports the following options:" -msgstr "Ο διάλογος ένδειξης προόδου υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/p -#: C/progress.page:25 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Καθορίζει το κείμενο που προβάλλεται στο διάλογο ένδειξης προόδου." - -#. (itstool) path: item/title -#: C/progress.page:29 -msgid "--percentage=percentage" -msgstr "--percentage=ποσοστό" - -#. (itstool) path: item/p -#: C/progress.page:30 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Καθορίζει το αρχικό ποσοστό που μπαίνει στον διάλογο ένδειξης προόδου." - -#. (itstool) path: item/title -#: C/progress.page:34 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:35 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Κλείνει τον διάλογο ενημέρωσης προόδου όταν επιτευχθεί το 100%." - -#. (itstool) path: item/title -#: C/progress.page:39 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:40 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Ορίζει ότι η μπάρα προόδου πάλλεται έως ότου διαβαστεί ένας χαρακτήρας EOF " -"από την κανονική είσοδο." - -#. (itstool) path: page/p -#: C/progress.page:45 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο ένδειξης προόδου:" - -#. (itstool) path: page/code -#: C/progress.page:49 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Γίνεται ενημέρωση των καταγραφών αλληλογραφίας\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Γίνεται επαναφορά των εργασιών cron\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Αυτή η γραμμή θα αγνοηθεί\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Γίνεται επανεκκίνηση του συστήματος\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Ενημέρωση καταγραφών του συστήματος\" \\\n" -" --text=\"Σάρωση καταγραφών αλληλογραφίας...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Ακυρώθηκε η ενημέρωση.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:75 -msgid "Progress Dialog Example" -msgstr "Παράδειγμα διαλόγου ένδειξης προόδου" - -#. (itstool) path: figure/desc -#: C/progress.page:76 -msgid "Zenity progress dialog example" -msgstr "Παράδειγμα διαλόγου ένδειξης προόδου του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='5889e2a57b9d1885f22977587a269610'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='5889e2a57b9d1885f22977587a269610'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Χρησιμοποιήστε την επιλογή --question." - -#. (itstool) path: page/title -#: C/question.page:8 -msgid "Question Dialog" -msgstr "Διάλογος ερώτησης" - -#. (itstool) path: page/p -#: C/question.page:9 -msgid "Use the --question option to create a question dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --question για να δημιουργήσετε έναν " -"διάλογο ερώτησης." - -#. (itstool) path: page/p -#: C/question.page:13 -msgid "The following example script shows how to create a question dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο ερώτησης:" - -#. (itstool) path: page/code -#: C/question.page:17 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Θέλετε να συνεχίσετε?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:26 -msgid "Question Dialog Example" -msgstr "Παράδειγμα διαλόγου ερώτησης" - -#. (itstool) path: figure/desc -#: C/question.page:27 -msgid "Zenity question dialog example" -msgstr "Παράδειγμα διαλόγου ερώτησης του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:77 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='d44259a5b5b6e6ba0aceffd8501d0873'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='d44259a5b5b6e6ba0aceffd8501d0873'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Χρησιμοποιήστε την επιλογή --scale." - -#. (itstool) path: page/title -#: C/scale.page:8 -msgid "Scale Dialog" -msgstr "Διάλογος κλιμάκωσης" - -#. (itstool) path: page/p -#: C/scale.page:9 -msgid "Use the --scale option to create a scale dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --error για την δημιουργία " -"διαλόγου κλιμάκωσης." - -#. (itstool) path: page/p -#: C/scale.page:12 -msgid "The scale dialog supports the following options:" -msgstr "Ο διάλογος κλιμάκωσης υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/p -#: C/scale.page:20 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Ορίστε το κειμένου του διαλόγου. (Προεπιλεγμένο: Ρυθμίστε τη τιμή κλιμάκωσης)" - -#. (itstool) path: item/title -#: C/scale.page:24 -msgid "--value=VALUE" -msgstr "--value=ΤΙΜΗ" - -#. (itstool) path: item/p -#: C/scale.page:25 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Ορίστε την αρχική τιμή. (Προεπιλεγμένη: 0) Πρέπει να καθορίσετε μια τιμή " -"μεταξύ της ελάχιστης και της μέγιστης." - -#. (itstool) path: item/title -#: C/scale.page:29 -msgid "--min-value=VALUE" -msgstr "--min-value=ΤΙΜΗ" - -#. (itstool) path: item/p -#: C/scale.page:30 -msgid "Set minimum value. (Default: 0)" -msgstr "Ορίστε ελάχιστη τιμή. (Προεπιλεγμένη: 0)" - -#. (itstool) path: item/title -#: C/scale.page:34 -msgid "--max-value=VALUE" -msgstr "--max-value=ΤΙΜΗ" - -#. (itstool) path: item/p -#: C/scale.page:35 -msgid "Set maximum value. (Default: 100)" -msgstr "Ορσίτε μέγιστη τιμή. (Προεπιλεγμένη: 100)" - -#. (itstool) path: item/title -#: C/scale.page:39 -msgid "--step=VALUE" -msgstr "--step=ΤΙΜΗ" - -#. (itstool) path: item/p -#: C/scale.page:40 -msgid "Set step size. (Default: 1)" -msgstr "Ορίστε το μέγεθος του βήματος. (Προεπιλεγμένη: 1)" - -#. (itstool) path: item/title -#: C/scale.page:44 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:45 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Όταν αλλάζει μια τιμή, εκτύπωσε την στην κανονική έξοδο." - -#. (itstool) path: item/title -#: C/scale.page:49 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:50 -msgid "Hide value on dialog." -msgstr "Απόκρυψη τιμής στον διάλογο." - -#. (itstool) path: page/p -#: C/scale.page:55 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο κλιμάκωσης:" - -#. (itstool) path: page/code -#: C/scale.page:59 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Επιλέξτε διαφάνεια του παραθύρου.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Επιλέξατε $VALUE%.\";;\n" -" 1)\n" -" echo \"Δεν επιλέχθηκε τιμή.\";;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:75 -msgid "Scale Dialog Example" -msgstr "Παράδειγμα διαλόγου κλιμάκωσης" - -#. (itstool) path: figure/desc -#: C/scale.page:76 -msgid "Zenity scale dialog example" -msgstr "Παράδειγμα διαλόγου κλιμάκωσης του Zenity" - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:83 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='79446b388fa6c3c3a619c8d6565b9f61'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='79446b388fa6c3c3a619c8d6565b9f61'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Χρησιμοποιήστε την επιλογή --text-info." - -#. (itstool) path: page/title -#: C/text.page:8 -msgid "Text Information Dialog" -msgstr "Διάλογος πληροφοριών κειμένου" - -#. (itstool) path: page/p -#: C/text.page:9 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --text-info για να δημιουργήσετε έναν " -"διάλογο πληροφοριών κειμένου." - -#. (itstool) path: page/p -#: C/text.page:13 -msgid "The text information dialog supports the following options:" -msgstr "Ο διάλογος πληροφοριών κειμένου υποστηρίζει τις παρακάτω επιλογές:" - -#. (itstool) path: item/p -#: C/text.page:21 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Καθορίζει ένα αρχείο που φορτώνεται στον διάλογο πληροφοριών κειμένου." - -#. (itstool) path: item/p -#: C/text.page:26 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Επιτρέπει την επεξεργασία του προβαλλόμενου κειμένου. Το επεξεργασμένο " -"κείμενο αποδίδεται σαν κανονική έξοδος όταν κλείνει ο διάλογος." - -#. (itstool) path: item/title -#: C/text.page:30 -msgid "--font=FONT" -msgstr "--font=ΓΡΑΜΜΑΤΟΣΕΙΡΑ" - -#. (itstool) path: item/p -#: C/text.page:31 -msgid "Specifies the text font." -msgstr "Καθορίζει τη γραμματοσειρά του κειμένου." - -#. (itstool) path: item/title -#: C/text.page:35 -msgid "--checkbox=TEXT" -msgstr "--checkbox=ΚΕΙΜΕΝΟ" - -#. (itstool) path: item/p -#: C/text.page:36 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Ενεργοποίηση ενός κουτιού επιλογής για χρήση όπως 'Διάβασα και αποδέχομαι " -"τους όρους'." - -#. (itstool) path: item/title -#: C/text.page:40 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:41 -msgid "Enable html support." -msgstr "Ενεργοποίηση υποστήριξης html." - -#. (itstool) path: item/title -#: C/text.page:45 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:46 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Ορίζει ένα url αντί για ένα αρχείο. Λειτουργεί μόνο αν χρησιμοποιείτε -- " -"html επιλογή." - -#. (itstool) path: page/p -#: C/text.page:51 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Το ακόλουθο παράδειγμα σεναρίου εντολών σας δείχνει πως μπορείτε να " -"δημιουργήσετε έναν διάλογο πληροφοριών κειμένου:" - -#. (itstool) path: page/code -#: C/text.page:55 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Πρέπει να τοποθετήσετε το αρχείο \"COPYING\" στον ίδιο φάκελο με το εκτελέσιμο.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Άδεια\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Διάβασα και αποδέχομαι τους όρους.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Έναρξη εγκατάστασης!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Διακοπή εγκατάστασης!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Προέκυψε ένα σφάλμα.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:81 -msgid "Text Information Dialog Example" -msgstr "Παράδειγμα διαλόγου πληροφοριών κειμένου" - -#. (itstool) path: figure/desc -#: C/text.page:82 -msgid "Zenity text information dialog example" -msgstr "Παράδειγμα διαλόγου πληροφοριών κειμένου του Zenity" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Όταν γράφετε σενάρια, μπορείτε χρησιμοποιώντας το Zenity να " -"δημιουργήσετε απλούς διαλόγους που αλληλεπιδρούν γραφικά με τον χρήστη, ως " -"εξής:" - -#. (itstool) path: page/title -#: C/usage.page:8 -msgid "Usage" -msgstr "Χρήση" - -#. (itstool) path: page/p -#: C/usage.page:9 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Όταν γράφετε σενάρια, μπορείτε χρησιμοποιώντας το Zenity να " -"δημιουργήσετε απλούς διαλόγους που αλληλεπιδρούν γραφικά με τον χρήστη, ως " -"εξής:" - -#. (itstool) path: item/p -#: C/usage.page:14 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Μπορείτε να δημιουργήσετε έναν διάλογο για να αποκτήσετε πληροφορίες από τον " -"χρήστη. Για παράδειγμα, μπορείτε να προτρέψετε τον χρήστη να επιλέξει μία " -"ημερομηνία από διάλογο ημερολογίου, ή να επιλέξει ένα αρχείο από διάλογο " -"επιλογής αρχείου." - -#. (itstool) path: item/p -#: C/usage.page:19 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Μπορείτε να δημιουργήσετε έναν διάλογο για να παρέχετε στον χρήστη " -"πληροφορίες. Για παράδειγμα, χρησιμοποιώντας έναν διάλογο προόδου δείχνετε " -"την τρέχουσα κατάσταση μίας εργασίας, ή μπορείτε να χρησιμοποιήσετε έναν " -"διάλογο προειδοποίησης του χρήστη." - -#. (itstool) path: page/p -#: C/usage.page:24 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Όταν ο χρήστης κλείνει τον διάλογο, το Zenity εκτυπώνει το " -"κείμενο που παράχθηκε από αυτόν σαν τυπικό λάθος." - -#. (itstool) path: note/p -#: C/usage.page:29 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Όταν γράφετε εντολές για το Zenity, βεβαιωθείτε ότι " -"χρησιμοποιείτε εισαγωγικά σε κάθε όρισμα." - -#. (itstool) path: note/p -#: C/usage.page:32 -msgid "For example, use:" -msgstr "Για παράδειγμα, χρησιμοποιήστε:" - -#. (itstool) path: note/screen -#: C/usage.page:33 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Holiday Planner\"" - -#. (itstool) path: note/p -#: C/usage.page:34 -msgid "Do not use:" -msgstr "Μην χρησιμοποιείτε:" - -#. (itstool) path: note/screen -#: C/usage.page:35 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Holiday Planner" - -#. (itstool) path: note/p -#: C/usage.page:36 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" -"Αν δεν χρησιμοποιήσετε εισαγωγικά, μπορεί να πάρετε μη αναμενόμενα " -"αποτελέσματα." - -#. (itstool) path: section/title -#: C/usage.page:42 -msgid "Access Keys" -msgstr "Πλήκτρα πρόσβασης" - -#. (itstool) path: section/p -#: C/usage.page:43 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Ένα πλήκτρο πρόσβασης σας επιτρέπει να εκτελέσετε μία ενέργεια από το " -"πληκτρολόγιο χωρίς να χρησιμοποιήσετε το ποντίκι για να επιλέξετε μία εντολή " -"από μενού ή διάλογο. Κάθε πλήκτρο πρόσβασης προσδιορίζεται από ένα " -"υπογραμμισμένο γράμμα σε επιλογές μενού ή διαλόγων." - -#. (itstool) path: section/p -#: C/usage.page:46 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Κάποιοι από τους διαλόγους του Zenity υποστηρίζουν την χρήση " -"πλήκτρων πρόσβασης. Για να προσδιορίσετε τον χαρακτήρα που θα χρησιμοποιηθεί " -"σαν πλήκτρο πρόσβασης, βάλτε μία υπογράμμιση _ πριν τον χαρακτήρα στο " -"κείμενο του διαλόγου. Το παρακάτω παράδειγμα σας δείχνει πως να καθορίσετε " -"το γράμμα Ε σαν πλήκτρο πρόσβασης:" - -#. (itstool) path: section/screen -#: C/usage.page:49 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Επιλογή ονόματος\"." - -#. (itstool) path: section/title -#: C/usage.page:53 -msgid "Exit Codes" -msgstr "Κώδικες εξόδου (Exit codes)" - -#. (itstool) path: section/p -#: C/usage.page:54 -msgid "Zenity returns the following exit codes:" -msgstr "Το Zenity αποδίδει τους εξής κώδικες εξόδου:" - -#. (itstool) path: td/p -#: C/usage.page:62 -msgid "Exit Code" -msgstr "Κώδικας εξόδου" - -#. (itstool) path: td/p -#: C/usage.page:64 -msgid "Description" -msgstr "Περιγραφή" - -#. (itstool) path: td/p -#: C/usage.page:70 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:73 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Ο χρήστης πάτησε είτε το πλήκτρο Εντάξει είτε το " -"πλήκτρο Κλείσιμο." - -#. (itstool) path: td/p -#: C/usage.page:78 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:81 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Ο χρήστης είτε πάτησε το πλήκτρο Ακύρωση, ή " -"χρησιμοποίησε τις λειτουργίες του παραθύρου για να κλείσει τον διάλογο." - -#. (itstool) path: td/p -#: C/usage.page:86 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:89 -msgid "An unexpected error has occurred." -msgstr "Συνέβη ένα απρόσμενο σφάλμα." - -#. (itstool) path: td/p -#: C/usage.page:94 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:97 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Ο διάλογος έκλεισε λόγω συμπλήρωσης του χρονικού περιθωρίου." - -#. (itstool) path: section/title -#: C/usage.page:109 -msgid "General Options" -msgstr "Γενικές επιλογές" - -#. (itstool) path: section/p -#: C/usage.page:111 -msgid "All Zenity dialogs support the following general options:" -msgstr "" -"Όλοι οι διάλογοι του Zenity υποστηρίζουν τις παρακάτω γενικές επιλογές:" - -#. (itstool) path: item/title -#: C/usage.page:118 -msgid "--title=title" -msgstr "--title=τίτλος" - -#. (itstool) path: item/p -#: C/usage.page:119 -msgid "Specifies the title of a dialog." -msgstr "Καθορίζει τον τίτλο του διαλόγου." - -#. (itstool) path: item/title -#: C/usage.page:123 -msgid "--window-icon=icon_path" -msgstr "--window-icon=διαδρομή_του_εικονιδίου" - -#. (itstool) path: item/p -#: C/usage.page:124 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Καθορίζει το εικονίδιο που προβάλλεται στο πλαίσιο παραθύρου του διαλόγου. " -"Επίσης είναι διαθέσιμα 4 εικονίδια της εφαρμογής χρησιμοποιώντας τις εξής " -"λέξεις κλειδιά - «info», «warning», «question» και «error»." - -#. (itstool) path: item/title -#: C/usage.page:131 -msgid "--width=width" -msgstr "--width=πλάτος" - -#. (itstool) path: item/p -#: C/usage.page:132 -msgid "Specifies the width of the dialog." -msgstr "Καθορίζει το πλάτος του διαλόγου." - -#. (itstool) path: item/title -#: C/usage.page:136 -msgid "--height=height" -msgstr "--height=ύψος" - -#. (itstool) path: item/p -#: C/usage.page:137 -msgid "Specifies the height of the dialog." -msgstr "Καθορίζει το ύψος του διαλόγου." - -#. (itstool) path: item/title -#: C/usage.page:141 -msgid "--timeout=timeout" -msgstr "--timeout=χρονικό όριο" - -#. (itstool) path: item/p -#: C/usage.page:142 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Καθορίζει το χρονικό περιθώριο σε δευτερόλεπτα μετά το οποίο ο διάλογος " -"κλείνει." - -#. (itstool) path: section/title -#: C/usage.page:152 -msgid "Help Options" -msgstr "Επιλογές βοήθειας" - -#. (itstool) path: section/p -#: C/usage.page:154 -msgid "Zenity provides the following help options:" -msgstr "Το Zenity παρέχει τις παρακάτω επιλογές βοήθειας:" - -#. (itstool) path: item/title -#: C/usage.page:161 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:162 -msgid "Displays shortened help text." -msgstr "Προβάλλει σύντομο κείμενο βοήθειας." - -#. (itstool) path: item/title -#: C/usage.page:166 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:167 -msgid "Displays full help text for all dialogs." -msgstr "Πλήρες κείμενο βοήθειας για όλους τους διαλόγους." - -#. (itstool) path: item/title -#: C/usage.page:171 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:172 -msgid "Displays help text for general dialog options." -msgstr "Προβάλλει κείμενο βοήθειας για τις γενικές επιλογές διαλόγου." - -#. (itstool) path: item/title -#: C/usage.page:176 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:177 -msgid "Displays help text for calendar dialog options." -msgstr "Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου ημερολογίου." - -#. (itstool) path: item/title -#: C/usage.page:181 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:182 -msgid "Displays help text for text entry dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου καταχώρησης " -"κειμένου." - -#. (itstool) path: item/title -#: C/usage.page:186 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:187 -msgid "Displays help text for error dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου εμφάνισης σφάλματος." - -#. (itstool) path: item/title -#: C/usage.page:191 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:192 -msgid "Displays help text for information dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου πληροφοριών " -"κειμένου." - -#. (itstool) path: item/title -#: C/usage.page:196 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:197 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου επιλογής αρχείου." - -#. (itstool) path: item/title -#: C/usage.page:201 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:202 -msgid "Displays help text for list dialog options." -msgstr "Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου λίστας." - -#. (itstool) path: item/title -#: C/usage.page:206 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:207 -msgid "Displays help text for notification icon options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του εικονιδίου ειδοποίησης." - -#. (itstool) path: item/title -#: C/usage.page:211 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:212 -msgid "Displays help text for progress dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου ένδειξης προόδου." - -#. (itstool) path: item/title -#: C/usage.page:216 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:217 -msgid "Displays help text for question dialog options." -msgstr "Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου ερώτησης." - -#. (itstool) path: item/title -#: C/usage.page:221 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:222 -msgid "Displays help text for warning dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου προειδοποίησης." - -#. (itstool) path: item/title -#: C/usage.page:226 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:227 -msgid "Displays help for text information dialog options." -msgstr "" -"Προβάλλει κείμενο βοήθειας για τις επιλογές του διαλόγου πληροφοριών " -"κειμένου." - -#. (itstool) path: item/title -#: C/usage.page:231 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:232 -msgid "Displays help for miscellaneous options." -msgstr "Προβάλλει κείμενο βοήθειας για διάφορες επιλογές." - -#. (itstool) path: item/title -#: C/usage.page:236 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:237 -msgid "Displays help for GTK+ options." -msgstr "Προβάλλει βοήθεια για τις επιλογές GTK+." - -#. (itstool) path: section/title -#: C/usage.page:247 -msgid "Miscellaneous Options" -msgstr "Διάφορες επιλογές" - -#. (itstool) path: section/p -#: C/usage.page:249 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Το Zenity επίσης παρέχει τις παρακάτω διάφορες επιλογές:" - -#. (itstool) path: item/title -#: C/usage.page:256 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:257 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Προβάλλει το παράθυρο διαλόγου Περί Zenity, που περιέχει " -"πληροφορίες έκδοσης, πνευματικών δικαιωμάτων και υπευθύνων ανάπτυξης του " -"Zenity." - -#. (itstool) path: item/title -#: C/usage.page:261 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:262 -msgid "Displays the version number of Zenity." -msgstr "Εμφανίζει τον αριθμό έκδοσης του Zenity." - -#. (itstool) path: section/title -#: C/usage.page:272 -msgid "GTK+ Options" -msgstr "Επιλογές GTK+" - -#. (itstool) path: section/p -#: C/usage.page:274 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Το Zenity υποστηρίζει τις συνήθεις επιλογές του GTK+. Για περισσότερες " -"πληροφορίες γύρω από αυτές, εκτελέστε την εντολή zenity --help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:283 -msgid "Environment Variables" -msgstr "Μεταβλητές περιβάλλοντος" - -#. (itstool) path: section/p -#: C/usage.page:285 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Υπό κανονικές συνθήκες, το Zenity ανιχνεύει το παράθυρο " -"τερματικού από το οποίο εκκινήθηκε και παραμένει πάνω από αυτό το παράθυρο. " -"Αυτή η συμπεριφορά μπορεί να ακυρωθεί απενεργοποιώντας την μεταβλητή " -"περιβάλλοντος WINDOWID." - -#. (itstool) path: media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Χρησιμοποιήστε την επιλογή --warning." - -#. (itstool) path: page/title -#: C/warning.page:8 -msgid "Warning Dialog" -msgstr "Διάλογος προειδοποίησης" - -#. (itstool) path: page/p -#: C/warning.page:9 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"Χρησιμοποιήστε την επιλογή --warning για να δημιουργήσετε έναν " -"διάλογο προειδοποίησης." - -#. (itstool) path: page/p -#: C/warning.page:13 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"Το παρακάτω παράδειγμα δέσμης ενεργειών κελύφους δείχνει πως να " -"δημιουργήσετε έναν διάλογο προειδοποίησης:" - -#. (itstool) path: page/code -#: C/warning.page:17 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Αποσυνδέστε το καλώδιο ρεύματος για να αποφύγετε την ηλεκτροπληξία.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Παράδειγμα διαλόγου προειδοποίησης" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Παράδειγμα διαλόγου προειδοποίησης του Zenity" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-notification-screenshot.png' " -#~ "md5='b67bf309c6e479db8677947f1810a999'" -#~ msgstr "" -#~ "external ref='figures/zenity-notification-screenshot.png' " -#~ "md5='b67bf309c6e479db8677947f1810a999'" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "--version" -#~ msgstr "--version" diff --git a/help/el/figures/zenity-calendar-screenshot.png b/help/el/figures/zenity-calendar-screenshot.png deleted file mode 100644 index ad574f5..0000000 Binary files a/help/el/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-colorselection-screenshot.png b/help/el/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 4db5093..0000000 Binary files a/help/el/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-entry-screenshot.png b/help/el/figures/zenity-entry-screenshot.png deleted file mode 100644 index ce3a428..0000000 Binary files a/help/el/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-error-screenshot.png b/help/el/figures/zenity-error-screenshot.png deleted file mode 100644 index cb50209..0000000 Binary files a/help/el/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-forms-screenshot.png b/help/el/figures/zenity-forms-screenshot.png deleted file mode 100644 index 0f3d351..0000000 Binary files a/help/el/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-information-screenshot.png b/help/el/figures/zenity-information-screenshot.png deleted file mode 100644 index fe54387..0000000 Binary files a/help/el/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-list-screenshot.png b/help/el/figures/zenity-list-screenshot.png deleted file mode 100644 index a514f7e..0000000 Binary files a/help/el/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-password-screenshot.png b/help/el/figures/zenity-password-screenshot.png deleted file mode 100644 index fab61f9..0000000 Binary files a/help/el/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-progress-screenshot.png b/help/el/figures/zenity-progress-screenshot.png deleted file mode 100644 index 93b1e2d..0000000 Binary files a/help/el/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-question-screenshot.png b/help/el/figures/zenity-question-screenshot.png deleted file mode 100644 index 6d16f8f..0000000 Binary files a/help/el/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-scale-screenshot.png b/help/el/figures/zenity-scale-screenshot.png deleted file mode 100644 index 0143652..0000000 Binary files a/help/el/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-text-screenshot.png b/help/el/figures/zenity-text-screenshot.png deleted file mode 100644 index a5ad5a3..0000000 Binary files a/help/el/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/el/figures/zenity-warning-screenshot.png b/help/el/figures/zenity-warning-screenshot.png deleted file mode 100644 index d09e7f8..0000000 Binary files a/help/el/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/en_GB/en_GB.po b/help/en_GB/en_GB.po deleted file mode 100644 index bbe9e34..0000000 --- a/help/en_GB/en_GB.po +++ /dev/null @@ -1,1696 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: zenity-docs\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-03-14 08:17+0000\n" -"PO-Revision-Date: 2009-03-14 10:50+0000\n" -"Last-Translator: Jen Ockwell \n" -"Language-Team: British English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:541(None) -msgid "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" -msgstr "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:629(None) -msgid "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" -msgstr "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:675(None) -msgid "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:780(None) -msgid "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgstr "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:842(None) -msgid "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgstr "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:876(None) -msgid "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" -msgstr "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:910(None) -msgid "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" -msgstr "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:944(None) -msgid "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" -msgstr "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1039(None) -msgid "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" -msgstr "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1110(None) -msgid "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" -msgstr "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1179(None) -msgid "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgstr "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" - -#: C/zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "Zenity Manual" - -#: C/zenity.xml:21(subtitle) C/zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "Zenity Desktop Application Manual V2.0" - -#: C/zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: C/zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: C/zenity.xml:25(holder) C/zenity.xml:36(publishername) -#: C/zenity.xml:45(orgname) C/zenity.xml:69(para) -msgid "Sun Microsystems, Inc." -msgstr "Sun Microsystems, Inc." - -#: C/zenity.xml:2(para) -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation Licence (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." - -#: C/zenity.xml:12(para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the licence." - -#: C/zenity.xml:19(para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." - -#: C/zenity.xml:35(para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY AND PERFORMANCE OF THE DOCUMENT OR MODIFIED " -"VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION " -"PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY " -"CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR " -"CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF " -"THIS LICENCE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS " -"AUTHORISED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" - -#: C/zenity.xml:55(para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR " -"ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY " -"CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK " -"STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR " -"LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." - -#: C/zenity.xml:28(para) -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"" -msgstr "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENCE WITH THE FURTHER UNDERSTANDING THAT: " -"" - -#: C/zenity.xml:43(firstname) -msgid "Sun" -msgstr "Sun" - -#: C/zenity.xml:44(surname) -msgid "Java Desktop System Documentation Team" -msgstr "Java Desktop System Documentation Team" - -#: C/zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: C/zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: C/zenity.xml:51(orgname) C/zenity.xml:58(orgname) C/zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "GNOME Documentation Project" - -#: C/zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: C/zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: C/zenity.xml:66(date) -msgid "August 2004" -msgstr "August 2004" - -#: C/zenity.xml:68(para) -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java Desktop System Documentation Team" - -#: C/zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "Zenity Manual V1.0" - -#: C/zenity.xml:75(date) -msgid "January 2003" -msgstr "January 2003" - -#: C/zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "This manual describes version 2.6.0 of Zenity." - -#: C/zenity.xml:87(title) -msgid "Feedback" -msgstr "Feedback" - -#: C/zenity.xml:88(para) -msgid "" -"To send feedback, follow the directions in the Feedback Page." -msgstr "" -"To send feedback, follow the directions in the Feedback Page." - -#: C/zenity.xml:95(para) -msgid "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialog boxes from the commandline and shell scripts." -msgstr "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialogue boxes from the command line and shell scripts." - -#: C/zenity.xml:102(primary) -msgid "zenity command" -msgstr "zenity command" - -#: C/zenity.xml:105(primary) -msgid "dialog creator" -msgstr "dialogue creator" - -#: C/zenity.xml:112(title) -msgid "Introduction" -msgstr "Introduction" - -#: C/zenity.xml:114(para) -msgid "" -"Zenity enables you to create the following types " -"of simple dialog:" -msgstr "" -"Zenity enables you to create the following types " -"of simple dialogue:" - -#: C/zenity.xml:119(para) -msgid "Calendar" -msgstr "Calendar" - -#: C/zenity.xml:120(para) -msgid "File selection" -msgstr "File selection" - -#: C/zenity.xml:121(para) -msgid "List" -msgstr "List" - -#: C/zenity.xml:122(para) -msgid "Notification icon" -msgstr "Notification icon" - -#: C/zenity.xml:123(para) -msgid "Message" -msgstr "Message" - -#: C/zenity.xml:125(para) C/zenity.xml:801(para) -msgid "Error" -msgstr "Error" - -#: C/zenity.xml:126(para) C/zenity.xml:804(para) -msgid "Information" -msgstr "Information" - -#: C/zenity.xml:127(para) C/zenity.xml:807(para) -msgid "Question" -msgstr "Question" - -#: C/zenity.xml:128(para) C/zenity.xml:810(para) -msgid "Warning" -msgstr "Warning" - -#: C/zenity.xml:131(para) -msgid "Progress" -msgstr "Progress" - -#: C/zenity.xml:132(para) -msgid "Text entry" -msgstr "Text entry" - -#: C/zenity.xml:133(para) -msgid "Text information" -msgstr "Text information" - -#: C/zenity.xml:141(title) -msgid "Usage" -msgstr "Usage" - -#: C/zenity.xml:143(para) -msgid "" -"When you write scripts, you can use Zenity to " -"create simple dialogs that interact graphically with the user, as follows:" -msgstr "" -"When you write scripts, you can use Zenity to " -"create simple dialogues that interact graphically with the user, as follows:" - -#: C/zenity.xml:148(para) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"You can create a dialogue to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialogue, or to " -"select a file from a file selection dialogue." - -#: C/zenity.xml:153(para) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"You can create a dialogue to provide the user with information. For example, " -"you can use a progress dialogue to indicate the current status of an " -"operation, or use a warning message dialogue to alert the user." - -#: C/zenity.xml:158(para) -msgid "" -"When the user closes the dialog, Zenity prints " -"the text produced by the dialog to standard error." -msgstr "" -"When the user closes the dialogue, Zenity prints " -"the text produced by the dialogue to standard error." - -#: C/zenity.xml:163(para) -msgid "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." -msgstr "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." - -#: C/zenity.xml:166(para) -msgid "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" -msgstr "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" - -#: C/zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "If you do not use quotation marks, you might get unexpected results." - -#: C/zenity.xml:175(title) -msgid "Access Keys" -msgstr "Access Keys" - -#: C/zenity.xml:176(para) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialogue. Each access key is identified by an underlined letter on a menu or " -"dialogue option." - -#: C/zenity.xml:179(para) -msgid "" -"Some Zenity dialogs support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialog. The following example shows " -"how to specify the letter 'C' as the access key:" -msgstr "" -"Some Zenity dialogues support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialogue. The following example " -"shows how to specify the letter 'C' as the access key:" - -#: C/zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Choose a name\"." - -#: C/zenity.xml:186(title) -msgid "Exit Codes" -msgstr "Exit Codes" - -#: C/zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "Zenity returns the following exit codes:" - -#: C/zenity.xml:198(para) -msgid "Exit Code" -msgstr "Exit Code" - -#: C/zenity.xml:200(para) -msgid "Description" -msgstr "Description" - -#: C/zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: C/zenity.xml:209(para) -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"The user has pressed either OK or Close." - -#: C/zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: C/zenity.xml:217(para) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialogue." - -#: C/zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: C/zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "An unexpected error has occurred." - -#: C/zenity.xml:230(varname) -msgid "5" -msgstr "5" - -#: C/zenity.xml:233(para) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "The dialogue has been closed because the timeout has been reached." - -#: C/zenity.xml:246(title) -msgid "General Options" -msgstr "General Options" - -#: C/zenity.xml:248(para) -msgid "" -"All Zenity dialogs support the following general " -"options:" -msgstr "" -"All Zenity dialogues support the following " -"general options:" - -#: C/zenity.xml:255(term) -msgid "=title" -msgstr "=title" - -#: C/zenity.xml:257(para) -msgid "Specifies the title of a dialog." -msgstr "Specifies the title of a dialogue." - -#: C/zenity.xml:262(term) -msgid "=icon_path" -msgstr "=icon_path" - -#: C/zenity.xml:264(para) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Specifies the icon that is displayed in the window frame of the dialogue. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." - -#: C/zenity.xml:272(term) -msgid "=width" -msgstr "=width" - -#: C/zenity.xml:274(para) -msgid "Specifies the width of the dialog." -msgstr "Specifies the width of the dialogue." - -#: C/zenity.xml:279(term) -msgid "=height" -msgstr "=height" - -#: C/zenity.xml:281(para) -msgid "Specifies the height of the dialog." -msgstr "Specifies the height of the dialogue." - -#: C/zenity.xml:286(term) -msgid "=timeout" -msgstr "=timeout" - -#: C/zenity.xml:288(para) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Specifies the timeout in seconds after which the dialogue is closed." - -#: C/zenity.xml:299(title) -msgid "Help Options" -msgstr "Help Options" - -#: C/zenity.xml:301(para) -msgid "Zenity provides the following help options:" -msgstr "Zenity provides the following help options:" - -#: C/zenity.xml:308(option) -msgid "--help" -msgstr "--help" - -#: C/zenity.xml:310(para) -msgid "Displays shortened help text." -msgstr "Displays shortened help text." - -#: C/zenity.xml:315(option) -msgid "--help-all" -msgstr "--help-all" - -#: C/zenity.xml:317(para) -msgid "Displays full help text for all dialogs." -msgstr "Displays full help text for all dialogues." - -#: C/zenity.xml:322(option) -msgid "--help-general" -msgstr "--help-general" - -#: C/zenity.xml:324(para) -msgid "Displays help text for general dialog options." -msgstr "Displays help text for general dialogue options." - -#: C/zenity.xml:329(option) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/zenity.xml:331(para) -msgid "Displays help text for calendar dialog options." -msgstr "Displays help text for calendar dialogue options." - -#: C/zenity.xml:336(option) -msgid "--help-entry" -msgstr "--help-entry" - -#: C/zenity.xml:338(para) -msgid "Displays help text for text entry dialog options." -msgstr "Displays help text for text entry dialogue options." - -#: C/zenity.xml:343(option) -msgid "--help-error" -msgstr "--help-error" - -#: C/zenity.xml:345(para) -msgid "Displays help text for error dialog options." -msgstr "Displays help text for error dialogue options." - -#: C/zenity.xml:350(option) -msgid "--help-info" -msgstr "--help-info" - -#: C/zenity.xml:352(para) -msgid "Displays help text for information dialog options." -msgstr "Displays help text for information dialogue options." - -#: C/zenity.xml:357(option) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/zenity.xml:359(para) -msgid "Displays help text for file selection dialog options." -msgstr "Displays help text for file selection dialogue options." - -#: C/zenity.xml:364(option) -msgid "--help-list" -msgstr "--help-list" - -#: C/zenity.xml:366(para) -msgid "Displays help text for list dialog options." -msgstr "Displays help text for list dialogue options." - -#: C/zenity.xml:371(option) -msgid "--help-notification" -msgstr "--help-notification" - -#: C/zenity.xml:373(para) -msgid "Displays help text for notification icon options." -msgstr "Displays help text for notification icon options." - -#: C/zenity.xml:378(option) -msgid "--help-progress" -msgstr "--help-progress" - -#: C/zenity.xml:380(para) -msgid "Displays help text for progress dialog options." -msgstr "Displays help text for progress dialogue options." - -#: C/zenity.xml:385(option) -msgid "--help-question" -msgstr "--help-question" - -#: C/zenity.xml:387(para) -msgid "Displays help text for question dialog options." -msgstr "Displays help text for question dialogue options." - -#: C/zenity.xml:392(option) -msgid "--help-warning" -msgstr "--help-warning" - -#: C/zenity.xml:394(para) -msgid "Displays help text for warning dialog options." -msgstr "Displays help text for warning dialogue options." - -#: C/zenity.xml:399(option) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/zenity.xml:401(para) -msgid "Displays help for text information dialog options." -msgstr "Displays help for text information dialogue options." - -#: C/zenity.xml:406(option) -msgid "--help-misc" -msgstr "--help-misc" - -#: C/zenity.xml:408(para) -msgid "Displays help for miscellaneous options." -msgstr "Displays help for miscellaneous options." - -#: C/zenity.xml:413(option) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/zenity.xml:415(para) -msgid "Displays help for GTK+ options." -msgstr "Displays help for GTK+ options." - -#: C/zenity.xml:426(title) -msgid "Miscellaneous Options" -msgstr "Miscellaneous Options" - -#: C/zenity.xml:428(para) -msgid "" -"Zenity also provides the following miscellaneous " -"options:" -msgstr "" -"Zenity also provides the following miscellaneous " -"options:" - -#: C/zenity.xml:435(option) -msgid "--about" -msgstr "--about" - -#: C/zenity.xml:437(para) -msgid "" -"Displays the About Zenity dialog, which contains " -"Zenity version information, copyright " -"information, and developer information." -msgstr "" -"Displays the About Zenity dialogue, which contains " -"Zenity version information, copyright information " -"and developer information." - -#: C/zenity.xml:442(option) -msgid "--version" -msgstr "--version" - -#: C/zenity.xml:444(para) -msgid "Displays the version number of Zenity." -msgstr "Displays the version number of Zenity." - -#: C/zenity.xml:455(title) -msgid "GTK+ Options" -msgstr "GTK+ Options" - -#: C/zenity.xml:457(para) -msgid "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." -msgstr "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." - -#: C/zenity.xml:467(title) -msgid "Calendar Dialog" -msgstr "Calendar Dialogue" - -#: C/zenity.xml:469(para) -msgid "" -"Use the option to create a calendar dialog. " -"Zenity returns the selected date to standard " -"error. If no date is specified on the command line, the dialog uses the " -"current date." -msgstr "" -"Use the option to create a calendar dialogue. " -"Zenity returns the selected date to standard " -"error. If no date is specified on the command line, the dialogue uses the " -"current date." - -#: C/zenity.xml:472(para) -msgid "The calendar dialog supports the following options:" -msgstr "The calendar dialogue supports the following options:" - -#: C/zenity.xml:479(term) C/zenity.xml:650(term) C/zenity.xml:976(term) -#: C/zenity.xml:1065(term) -msgid "=text" -msgstr "=text" - -#: C/zenity.xml:481(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Specifies the text that is displayed in the calendar dialogue." - -#: C/zenity.xml:486(term) -msgid "=day" -msgstr "=day" - -#: C/zenity.xml:488(para) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" -"Specifies the day that is selected in the calendar dialogue. " -"day must be a number between 1 and 31 inclusive." - -#: C/zenity.xml:494(term) -msgid "=month" -msgstr "=month" - -#: C/zenity.xml:496(para) -msgid "" -"Specifies the month that is selected in the calendar dialog. " -"month must be a number between 1 and 12 inclusive." -msgstr "" -"Specifies the month that is selected in the calendar dialogue. " -"month must be a number between 1 and 12 inclusive." - -#: C/zenity.xml:502(term) -msgid "=year" -msgstr "=year" - -#: C/zenity.xml:504(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Specifies the year that is selected in the calendar dialogue." - -#: C/zenity.xml:509(term) -msgid "=format" -msgstr "=format" - -#: C/zenity.xml:511(para) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Specifies the format that is returned from the calendar dialogue after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." - -#: C/zenity.xml:521(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " - -#: C/zenity.xml:518(para) -msgid "" -"The following example script shows how to create a calendar dialog: " -"" -msgstr "" -"The following example script shows how to create a calendar dialogue: " -"" - -#: C/zenity.xml:537(title) -msgid "Calendar Dialog Example" -msgstr "Calendar Dialogue Example" - -#: C/zenity.xml:0(application) -msgid "Zenity" -msgstr "Zenity" - -#: C/zenity.xml:544(phrase) -msgid " calendar dialog example" -msgstr " calendar dialogue example" - -#: C/zenity.xml:556(title) -msgid "File Selection Dialog" -msgstr "File Selection Dialogue" - -#: C/zenity.xml:558(para) -msgid "" -"Use the option to create a file selection " -"dialog. Zenity returns the selected files or " -"directories to standard error. The default mode of the file selection dialog " -"is open." -msgstr "" -"Use the option to create a file selection " -"dialogue. Zenity returns the selected files or " -"directories to standard error. The default mode of the file selection " -"dialogue is open." - -#: C/zenity.xml:562(para) -msgid "The file selection dialog supports the following options:" -msgstr "The file selection dialogue supports the following options:" - -#: C/zenity.xml:569(term) C/zenity.xml:1136(term) -msgid "=filename" -msgstr "=filename" - -#: C/zenity.xml:571(para) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Specifies the file or directory that is selected in the file selection " -"dialogue when the dialogue is first shown." - -#: C/zenity.xml:576(option) -msgid "--multiple" -msgstr "--multiple" - -#: C/zenity.xml:578(para) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Allows the selection of multiple filenames in the file selection dialogue." - -#: C/zenity.xml:583(option) -msgid "--directory" -msgstr "--directory" - -#: C/zenity.xml:585(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Allows only selection of directories in the file selection dialogue." - -#: C/zenity.xml:590(option) -msgid "--save" -msgstr "--save" - -#: C/zenity.xml:592(para) -msgid "Set the file selection dialog into save mode." -msgstr "Set the file selection dialogue into save mode." - -#: C/zenity.xml:597(term) C/zenity.xml:742(term) -msgid "=separator" -msgstr "=separator" - -#: C/zenity.xml:599(para) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Specifies the string that is used to divide the returned list of filenames." - -#: C/zenity.xml:608(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:605(para) -msgid "" -"The following example script shows how to create a file selection dialog: " -"" -msgstr "" -"The following example script shows how to create a file selection dialogue: " -"" - -#: C/zenity.xml:625(title) -msgid "File Selection Dialog Example" -msgstr "File Selection Dialogue Example" - -#: C/zenity.xml:632(phrase) -msgid " file selection dialog example" -msgstr " file selection dialogue example" - -#: C/zenity.xml:642(title) -msgid "Notification Icon" -msgstr "Notification Icon" - -#: C/zenity.xml:652(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "Specifies the text that is displayed in the notification area." - -#: C/zenity.xml:660(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " - -#: C/zenity.xml:658(para) -msgid "" -"The following example script shows how to create a notification icon: " -"" -msgstr "" -"The following example script shows how to create a notification icon: " -"" - -#: C/zenity.xml:671(title) -msgid "Notification Icon Example" -msgstr "Notification Icon Example" - -#: C/zenity.xml:678(phrase) -msgid " notification icon example" -msgstr " notification icon example" - -#: C/zenity.xml:689(title) -msgid "List Dialog" -msgstr "List Dialogue" - -#: C/zenity.xml:691(para) -msgid "" -"Use the option to create a list dialog. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard error." -msgstr "" -"Use the option to create a list dialogue. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard error." - -#: C/zenity.xml:695(para) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Data for the dialogue must specified column by column, row by row. Data can " -"be provided to the dialogue through standard input. Each entry must be " -"separated by a newline character." - -#: C/zenity.xml:699(para) -msgid "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." - -#: C/zenity.xml:703(para) -msgid "The list dialog supports the following options:" -msgstr "The list dialogue supports the following options:" - -#: C/zenity.xml:710(term) -msgid "=column" -msgstr "=column" - -#: C/zenity.xml:712(para) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a option for each column that you want to " -"display in the dialog." -msgstr "" -"Specifies the column headers that are displayed in the list dialogue. You " -"must specify a option for each column that you " -"want to display in the dialogue." - -#: C/zenity.xml:718(option) -msgid "--checklist" -msgstr "--checklist" - -#: C/zenity.xml:720(para) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Specifies that the first column in the list dialogue contains check boxes." - -#: C/zenity.xml:726(option) -msgid "--radiolist" -msgstr "--radiolist" - -#: C/zenity.xml:728(para) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Specifies that the first column in the list dialogue contains radio boxes." - -#: C/zenity.xml:734(option) C/zenity.xml:1143(option) -msgid "--editable" -msgstr "--editable" - -#: C/zenity.xml:736(para) -msgid "Allows the displayed items to be edited." -msgstr "Allows the displayed items to be edited." - -#: C/zenity.xml:744(para) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Specifies what string is used when the list dialogue returns the selected " -"entries." - -#: C/zenity.xml:750(term) -msgid "=column" -msgstr "=column" - -#: C/zenity.xml:752(para) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." - -#: C/zenity.xml:762(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " - -#: C/zenity.xml:760(para) -msgid "" -"The following example script shows how to create a list dialog: " -msgstr "" -"The following example script shows how to create a list dialogue: " -"" - -#: C/zenity.xml:776(title) -msgid "List Dialog Example" -msgstr "List Dialogue Example" - -#: C/zenity.xml:783(phrase) -msgid " list dialog example" -msgstr " list dialogue example" - -#: C/zenity.xml:794(title) -msgid "Message Dialogs" -msgstr "Message Dialogues" - -#: C/zenity.xml:796(para) -msgid "" -"Zenity can create four types of message dialog:" -msgstr "" -"Zenity can create four types of message dialogue:" - -#: C/zenity.xml:814(para) -msgid "" -"For each type, use the option to specify the text " -"that is displayed in the dialog." -msgstr "" -"For each type, use the option to specify the text " -"that is displayed in the dialogue." - -#: C/zenity.xml:819(title) -msgid "Error Dialog" -msgstr "Error Dialogue" - -#: C/zenity.xml:821(para) -msgid "Use the option to create an error dialog." -msgstr "Use the option to create an error dialogue." - -#: C/zenity.xml:828(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " - -#: C/zenity.xml:825(para) -msgid "" -"The following example script shows how to create an error dialog: " -"" -msgstr "" -"The following example script shows how to create an error dialogue: " -"" - -#: C/zenity.xml:838(title) -msgid "Error Dialog Example" -msgstr "Error Dialogue Example" - -#: C/zenity.xml:845(phrase) -msgid " error dialog example" -msgstr " error dialogue example" - -#: C/zenity.xml:853(title) -msgid "Information Dialog" -msgstr "Information Dialogue" - -#: C/zenity.xml:855(para) -msgid "Use the option to create an information dialog." -msgstr "" -"Use the option to create an information dialogue." - -#: C/zenity.xml:862(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " - -#: C/zenity.xml:859(para) -msgid "" -"The following example script shows how to create an information dialog: " -"" -msgstr "" -"The following example script shows how to create an information dialogue: " -"" - -#: C/zenity.xml:872(title) -msgid "Information Dialog Example" -msgstr "Information Dialogue Example" - -#: C/zenity.xml:879(phrase) -msgid " information dialog example" -msgstr " information dialogue example" - -#: C/zenity.xml:887(title) -msgid "Question Dialog" -msgstr "Question Dialogue" - -#: C/zenity.xml:889(para) -msgid "Use the option to create a question dialog." -msgstr "" -"Use the option to create a question dialogue." - -#: C/zenity.xml:896(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " - -#: C/zenity.xml:893(para) -msgid "" -"The following example script shows how to create a question dialog: " -"" -msgstr "" -"The following example script shows how to create a question dialogue: " -"" - -#: C/zenity.xml:906(title) -msgid "Question Dialog Example" -msgstr "Question Dialogue Example" - -#: C/zenity.xml:913(phrase) -msgid " question dialog example" -msgstr " question dialogue example" - -#: C/zenity.xml:921(title) -msgid "Warning Dialog" -msgstr "Warning Dialogue" - -#: C/zenity.xml:923(para) -msgid "Use the option to create a warning dialog." -msgstr "" -"Use the option to create a warning dialogue." - -#: C/zenity.xml:930(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " - -#: C/zenity.xml:927(para) -msgid "" -"The following example script shows how to create a warning dialog: " -"" -msgstr "" -"The following example script shows how to create a warning dialogue: " -"" - -#: C/zenity.xml:940(title) -msgid "Warning Dialog Example" -msgstr "Warning Dialogue Example" - -#: C/zenity.xml:947(phrase) -msgid " warning dialog example" -msgstr " warning dialogue example" - -#: C/zenity.xml:959(title) -msgid "Progress Dialog" -msgstr "Progress Dialogue" - -#: C/zenity.xml:961(para) -msgid "Use the option to create a progress dialog." -msgstr "" -"Use the option to create a progress dialogue." - -#: C/zenity.xml:965(para) -msgid "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." -msgstr "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." - -#: C/zenity.xml:969(para) -msgid "The progress dialog supports the following options:" -msgstr "The progress dialogue supports the following options:" - -#: C/zenity.xml:978(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Specifies the text that is displayed in the progress dialogue." - -#: C/zenity.xml:983(term) -msgid "=percentage" -msgstr "=percentage" - -#: C/zenity.xml:985(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Specifies the initial percentage that is set in the progress dialogue." - -#: C/zenity.xml:990(option) -msgid "--auto-close" -msgstr "--auto-close" - -#: C/zenity.xml:992(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Closes the progress dialogue when 100% has been reached." - -#: C/zenity.xml:997(option) -msgid "--pulsate" -msgstr "--pulsate" - -#: C/zenity.xml:999(para) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." - -#: C/zenity.xml:1007(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update cancelled.\"\n" -" fi\n" -"\n" -" " - -#: C/zenity.xml:1005(para) -msgid "" -"The following example script shows how to create a progress dialog: " -"" -msgstr "" -"The following example script shows how to create a progress dialogue: " -"" - -#: C/zenity.xml:1035(title) -msgid "Progress Dialog Example" -msgstr "Progress Dialogue Example" - -#: C/zenity.xml:1042(phrase) -msgid " progress dialog example" -msgstr " progress dialogue example" - -#: C/zenity.xml:1053(title) -msgid "Text Entry Dialog" -msgstr "Text Entry Dialogue" - -#: C/zenity.xml:1055(para) -msgid "" -"Use the option to create a text entry dialog. " -"Zenity returns the contents of the text entry to " -"standard error." -msgstr "" -"Use the option to create a text entry dialogue. " -"Zenity returns the contents of the text entry to " -"standard error." - -#: C/zenity.xml:1058(para) -msgid "The text entry dialog supports the following options:" -msgstr "The text entry dialogue supports the following options:" - -#: C/zenity.xml:1067(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Specifies the text that is displayed in the text entry dialogue." - -#: C/zenity.xml:1072(term) -msgid "=text" -msgstr "=text" - -#: C/zenity.xml:1074(para) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialogue." - -#: C/zenity.xml:1079(option) -msgid "--hide-text" -msgstr "--hide-text" - -#: C/zenity.xml:1081(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Hides the text in the entry field of the text entry dialogue." - -#: C/zenity.xml:1090(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " - -#: C/zenity.xml:1087(para) -msgid "" -"The following example script shows how to create a text entry dialog: " -"" -msgstr "" -"The following example script shows how to create a text entry dialogue: " -"" - -#: C/zenity.xml:1106(title) -msgid "Text Entry Dialog Example" -msgstr "Text Entry Dialogue Example" - -#: C/zenity.xml:1113(phrase) -msgid " text entry dialog example" -msgstr " text entry dialogue example" - -#: C/zenity.xml:1123(title) -msgid "Text Information Dialog" -msgstr "Text Information Dialogue" - -#: C/zenity.xml:1125(para) -msgid "" -"Use the option to create a text information " -"dialog." -msgstr "" -"Use the option to create a text information " -"dialogue." - -#: C/zenity.xml:1129(para) -msgid "The text information dialog supports the following options:" -msgstr "The text information dialogue supports the following options:" - -#: C/zenity.xml:1138(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Specifies a file that is loaded in the text information dialogue." - -#: C/zenity.xml:1145(para) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard error when the dialog is closed." -msgstr "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard error when the dialogue is closed." - -#: C/zenity.xml:1153(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:1151(para) -msgid "" -"The following example script shows how to create a text information dialog: " -"" -msgstr "" -"The following example script shows how to create a text information " -"dialogue: " - -#: C/zenity.xml:1175(title) -msgid "Text Information Dialog Example" -msgstr "Text Information Dialogue Example" - -#: C/zenity.xml:1182(phrase) -msgid " text information dialog example" -msgstr " text information dialogue example" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2. -#: C/zenity.xml:0(None) -msgid "translator-credits" -msgstr "" -"David Lodge , 2007\n" -"Jen Ockwell , 2009" diff --git a/help/es/.cvsignore b/help/es/.cvsignore deleted file mode 100644 index eee9bc4..0000000 --- a/help/es/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -.xml2po.mo -zenity.xml diff --git a/help/es/es.po b/help/es/es.po deleted file mode 100644 index 2435cbf..0000000 --- a/help/es/es.po +++ /dev/null @@ -1,2863 +0,0 @@ -# translation of zenity-help.master.po to Español -# Alejandro Aravena , 2005. -# Francisco Javier F. Serrador , 2005. -# traduccion al español del manual de zenity -# Jorge González , 2007, 2008, 2009, 2010. -# -# Daniel Mustieles , 2011-2021. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity-help.master\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-11-16 15:34+0100\n" -"Last-Translator: Daniel Mustieles \n" -"Language-Team: Spanish - Spain \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 41.0\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "Licencia libre de documentación de GNU versión 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Este trabajo está licenciado bajo la <_:link-1/> o cualquier versión " -"posterior." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "enlace" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Se otorga permiso para copiar, distribuir y/o modificar este documento bajo " -"los términos de la Licencia de Documentación Libre de GNU, Versión 1.1 o " -"cualquier otra versión posterior publicada por la Free Software Foundation; " -"sin Secciones Invariantes ni Textos de Cubierta Delantera ni Textos de " -"Cubierta Trasera. Puede encontrar una copia de la licencia GFDL en este <_:" -"link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"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 GNOME distribuidos bajo " -"la GFDL. Si desea distribuir este manual separado de la colección, puede " -"hacerlo adjuntando una copia de la licencia al manual, según lo descrito en " -"la sección 6 de la licencia." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Muchos de los nombres usados por las compañías para distinguir sus productos " -"y servicios son declarados cómo marcas registradas. Donde esos nombres " -"aparecen en cualquier documentación de GNOME, y los miembros del proyecto de " -"documentación GNOME se hacen saber de esas marcas registradas, por tanto los " -"nombres están en mayúsculas o la letra inicial en mayúscula." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"ESTE DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL MISMO SE PROPORCIONAN SEGÚN " -"LAS CONDICIONES ESTABLECIDAS EN LA LICENCIA DE DOCUMENTACIÓN LIBRE DE GNU " -"(GFDL) Y TENIENDO EN CUENTA QUE:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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ÍAS DE NINGÚN TIPO, NI " -"EXPRESAS NI IMPLÍCITAS, INCLUYENDO, SIN LIMITACIÓN, CUALQUIER GARANTÍA DE " -"QUE EL DOCUMENTO O UNA VERSIÓN MODIFICADA DEL MISMO CAREZCAN DE DEFECTOS, " -"SEA COMERCIALIZABLE, ADECUADO PARA UNA FINALIDAD DETERMINADA O QUE NO " -"CONSTITUYA NINGUNA INFRACCIÓN. TODO EL RIESGO EN CUANTO A LA CALIDAD, " -"PRECISIÓN Y UTILIDAD DEL DOCUMENTO O DE CUALQUIER VERSIÓN MODIFICADA DEL " -"MISMO LE CORRESPONDE A USTED. EN CASO DE QUE CUALQUIER DOCUMENTO O VERSIÓN " -"MODIFICADA RESULTARA DEFECTUOSO EN CUALQUIER SENTIDO, SERÁ USTED (Y NO EL " -"REDACTOR INICIAL, NI EL AUTOR NI CUALQUIER PERSONA QUE HAYA CONTRIBUIDO) " -"QUIEN ASUMIRÁ EL COSTE DE CUALQUIER SERVICIO TÉCNICO, REPARACIÓN O " -"CORRECCIÓN NECESARIOS. ESTA LIMITACIÓN DE LAS GARANTÍAS CONSTITUYE UNA PARTE " -"ESENCIAL DE ESTA LICENCIA. NO SE AUTORIZA NINGÚN USO DE CUALQUIER DOCUMENTO " -"O VERSIÓN MODIFICADA DEL MISMO SI NO ES CON SUJECIÓN A ESTA LIMITACIÓN DE " -"LAS GARANTÍAS; Y" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"EN NINGUNA CIRCUNSTANCIA NI SEGÚN NINGÚN ARGUMENTO LEGAL, SEA POR MOTIVOS " -"CULPOSOS (INCLUIDA LA NEGLIGENCIA), CONTRACTUALES O DE OTRO TIPO, NI EL " -"AUTOR, NI EL REDACTOR INICIAL, NI CUALQUIER COLABORADOR, NI CUALQUIER " -"DISTRIBUIDOR DEL DOCUMENTO O VERSIÓN MODIFICADA DEL MISMO, NI CUALQUIER " -"PROVEEDOR DE CUALQUIERA DE DICHAS PARTES, SERÁN RESPONSABLES, ANTE NINGÚN " -"TERCERO, DE NINGÚN DAÑO O PERJUICIO DIRECTO, INDIRECTO, ESPECIAL, INCIDENTAL " -"O CONSIGUIENTE DE NINGÚN TIPO, INCLUIDOS, SIN LIMITACIÓN, LOS DAÑOS POR " -"PÉRDIDA DE FONDO DE COMERCIO, INTERRUPCIÓN DEL TRABAJO, FALLO O MAL " -"FUNCIONAMIENTO INFORMÁTICO, NI CUALQUIER OTRO DAÑO O PÉRDIDA DERIVADOS DEL " -"USO DEL DOCUMENTO Y LAS VERSIONES MODIFICADAS DEL MISMO, O RELACIONADO CON " -"ELLO, INCLUSO SI SE HABÍA COMUNICADO A AQUELLA PARTE LA POSIBILIDAD DE TALES " -"DAÑOS." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Daniel Mustieles , 2012-2014\n" -"Jorge González , 2007-2010\n" -"Alejandro Aravena , 2005\n" -"QA: Francisco Javier F. Serrador , 2005" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Use la opción --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Diálogo de calendario" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Use la opción --calendar para crear un diálogo de calendario. " -"Zenity devuelve la fecha seleccionada a la salida estándar. Si no se " -"especifica una fecha en la línea de comando, el diálogo usa la fecha actual." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "El diálogo de calendario soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=texto" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Especifica el texto que se muestra en el diálogo del calendario." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=día" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Especifica el día que se selecciona en el diálogo del calendario.«Día» debe " -"ser un número entre 1 y 31 ambos incluídos." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=mes" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Especifica el mes que se selecciona en el diálogo del calendario. «Mes» debe " -"ser un número entre 1 y 12 ambos incluídos." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=año" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Especifica el año que se selecciona en el diálogo del calendario." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=formato" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Especifica el formato que se devuelve desde el diálogo de calendario después " -"de la selección de la fecha. El formato predeterminado depende de " -"configuración regional. «Formato» debe ser un formato que sea compatible con " -"la función strftime, por ejemplo %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo se crea un diálogo de calendario:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Seleccione una fecha\" \\\n" -"--text=\"Pulse en una fecha para seleccionarla.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No ha seleccionado ninguna fecha\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Ejemplo de un diálogo de calendario" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Ejemplo de un diálogo de calendario de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Use la opción --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Diálogo de selección de color" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Use la opción --color-selection para crear un diálogo de " -"selección de color." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "El diálogo de selección de color soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VALOR" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Establezca el color inicial ()ej: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Mostrar la paleta" - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de selección de " -"color:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Ha seleccionado $COLOR.\";;\n" -" 1)\n" -" echo \"No ha seleccionado ningún color.\";;\n" -" -1)\n" -" echo \"Ha ocurrido un error inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Ejemplo del diálogo de selección de color" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Ejemplo del diálogo de selección de color de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Use la opción --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Diálogo para la entrada de texto" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Use la opción -entry para crear un diálogo de entrada de texto. " -"Zenity devuelve a la salida estándar el contenido del texto " -"introducido." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "El diálogo de entrada de texto soporta las siguientes opciones:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Especifica el texto que se muestra en el diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=texto" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Especifica el texto que se muestra en el campo de entrada del diálogo de " -"entrada." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "" -"Oculta el texto en el campo de entrada del diálogo de entrada de texto." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo se crea un diálogo de entrada de " -"texto:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Añadir un perfil nuevo\" \\\n" -"--text=\"Escriba el nombre del perfil nuevo:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No ha especificado ningún nombre\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Ejemplo de diálogo de entrada de texto" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Ejemplo del diálogo de entrada de texto de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Use la opción --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Diálogo de error" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Use la opción --error para crear un diálogo de error." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "El siguiente script de ejemplo muestra cómo crear un diálogo de error:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"No se pudo encontrar /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Ejemplo de diálogo de error" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Ejemplo del diálogo de error de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Use la opción --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Diálogo de selección de archivos" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Use la opción --file-selection para crear un diálogo de selección " -"de archivos. Zenity devuelve los archivos o carpetas " -"seleccionadas a la salida estándar. El modo predefinido de un diálogo de " -"selección de archivo es «abrir»." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "El diálogo de selección de archivo soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=nombre_de_archivo" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Especifica el archivo o carpeta que se selecciona en el diálogo de selección " -"de archivo cuando el diálogo se muestra por primera vez." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Permite seleccionar archivos múltiples en el diálogo de selección." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" -"Permite solamente la selección de carpetas en el diálogo de selección de " -"archivos." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Establece el diálogo de selección de archivo en el modo «guardar»." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=separador" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Especifica la cadena que se usará para dividir la lista de nombres de " -"archivo devuelta." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de selección de " -"archivo:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" seleccionado.\";;\n" -" 1)\n" -" echo \"No ha seleccionado ningún archivo.\";;\n" -" -1)\n" -" echo \"Ha ocurrido un error inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Ejemplo del diálogo de selección de archivos" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Ejemplo del diálogo de selección de archivo de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Use la opción --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Diálogo de formularios" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Use la opción --forms para crear un diálogo de formularios." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "El diálogo de formularios soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=nombre_del_campo" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Añadir una entrada nueva en el diálogo de formularios." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=nombre_del_campo" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Añadir una contraseña nueva en el diálogo de formularios. (Ocultar el texto)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=nombre_del_campo" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Añadir un calendario nuevo en el diálogo de formularios." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXTO" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Establezca el texto del diálogo." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SEPARADOR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Establecer el carácter separador. (Predeterminado: «|»)" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=PATRÓN" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Establecer el formato de la fecha que se devuelve. El formato predeterminado " -"depende de su configuración regional. «formato» debe ser un formato que sea " -"compatible con la función strftime, por ejemplo %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo se crea un diálogo de " -"formularios:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Añadir amigo\" \\\n" -"\t--text=\"Introduzca la información sobre su amigo.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Nombre\" \\\n" -"\t--add-entry=\"Apellido\" \\\n" -"\t--add-entry=\"Correo-e\" \\\n" -"\t--add-calendar=\"Cumpleaños\" >> dirs.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Amigo añadido.\";;\n" -" 1)\n" -" echo \"No se ha añadido ningún amigo.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ha ocurrido un error inesperado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Ejemplo de diálogo de formularios" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Ejemplo del diálogo de información de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Equipo de documentación del escritorio de Sun Java Desktop System" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manual de Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Diálogos" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Use la opción --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Diálogo de información" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Use la opción --info para crear un diálogo de información." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de información:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Combinación completa. Actualizados 3 de 10 archivos.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Ejemplo de diálogo de información" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Ejemplo del diálogo de información de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity le permite crear los siguientes tipos de diálogos simples:" - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introducción" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Zenity le permite crear los siguientes tipos de diálogos simples:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Calendario" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Seleccionador de archivos" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formularios" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Icono de notificación" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Mensajes" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Error" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Información" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Pregunta" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Advertencia" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Contraseña" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Progreso" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Entrada de texto" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Información de texto" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Escala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Selección de color" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Use la opción --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Diálogo de lista" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Use la opción --list para crear un diálogo de lista. Zenity devuelve las entradas en la primera columna de texto de las filas " -"seleccionadas a la salida estándar." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Los datos para el diálogo deben especificarse columna por columna, fila por " -"fila. Puede proporcionar datos al diálogo a través de la entrada estándar. " -"Cada entrada se debe separar por un carácter de línea nueva." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Si usa la opción --checklist o --radiolist, cada fila " -"debe comenzar con «TRUE» o «FALSE»." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "El diálogo de lista soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=columna" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Especifica el encabezado de la columna mostrada en el diálogo de lista. Debe " -"especificar una opción --column por cada columna que quiera " -"mostrar en el diálogo." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Especifica que la primera columna en el diálogo de lista contiene casillas " -"de marcado." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Especifica que la primera columna en el diálogo de lista contiene casillas " -"de opción." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Permite editar los elementos mostrados." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Especifica qué cadena de caracteres se utilizará cuando el diálogo de lista " -"devuelva las entradas seleccionadas." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=columna" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Especifica qué columna debería imprimirse hasta la selección. La columna " -"predeterminada es '1', 'ALL' puede usarse para imprimir todas las columnas." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "El siguiente script de ejemplo muestra cómo crear un diálogo de lista:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Elija los fallos que quiere ver\" \\\n" -" --column=\"Número del fallo\" --column=\"Severidad\" --column=\"Descripción\" \\\n" -" 992383 Normal \"GtkTreeView se cuelga con selecciones múltiples\" \\\n" -" 293823 Alto \"El diccionario de GNOME no manera proxys\" \\\n" -" 393823 Crítico \"El editor de menú no funciona en GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Ejemplo del diálogo de lista" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Ejemplo del diálogo de lista de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Error, Información, " -"Pregunta, Advertencia" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Diálogo de mensaje" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Para cada tipo, use la opción --text para especificar el texto " -"que se muestra en el diálogo." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Use la opción --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Icono de notificación" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Use la opción --notification para crear un icono de notificación." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Especifica el texto que se mostrara en el área de la notificación." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: «texto», message: «texto», " -"tooltip: «texto», visible: «texto»," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Escucha comandos en la entrada estándar. Se debe especificar al menos un " -"comando. Los comandos se separan mediante comas. Un comando debe ir seguido " -"de dos puntos y un valor." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"El comando icon también acepta cuatro valores de iconos del " -"almacén, tales como error, info, question y " -"warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un icono de notificación:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Hay actualizaciones necesarias para su sistema\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Ejemplo de icono de notificación" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Ejemplo del icono de notificación de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un icono de notificación " -"con --listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: este es el mensaje de texto\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Ejemplo de icono de notificación con --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" -"Ejemplo del icono de notificación de Zenity con --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Use la opción --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Diálogo de contraseña" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Use la opción --password para crear un diálogo de contraseña." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "El diálogo de contraseña soporta las siguientes opciones:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Mostrar el campo de nombre de usuario." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de contraseña:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nombre de usuario: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Contraseña: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"No iniciar sesión.\";;\n" -" -1)\n" -" echo \"Ha ocurrido un error inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Ejemplo de diálogo de contraseña" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Ejemplo del diálogo de contraseña de Zenity." - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Use la opción --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Diálogo de progreso" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "Use la opción --progress para crear un diálogo de progreso." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity lee línea por línea los datos desde la entrada estándar. " -"Si una línea se antepone con #, el texto se actualiza con el texto en esa " -"línea. Si una línea contiene solamente un número, el porcentaje se actualiza " -"con ese número." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "El diálogo de progreso soporta las siguientes opciones:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Especifica el texto que se muestra en el diálogo de progreso." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=porcentaje" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Especifica el porcentaje inicial que se establece en el diálogo de progreso." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Cierra el diálogo de progreso cuando se ha alcanzado 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Especifica que la barra de progreso pulse hasta que se lea un carácter EOF " -"desde la entrada estándar." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de progreso:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Actualizando los registros de los correos\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Reiniciando las tareas de cron\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Esta linea se ignorará\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Reiniciando el sistema\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Actualizando los registros del sistema\" \\\n" -" --text=\"Rastreando los registros de los correos...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Actualización cancelada.\"\n" -"fi\n" -"\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Ejemplo de diálogo de progreso" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Ejemplo del diálogo de progreso de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Use la opción --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Diálogo de pregunta" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Use la opción --question para crear un diálogo de pregunta." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de pregunta:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"¿Está seguro de que quiere continuar?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Ejemplo del diálogo de pregunta" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Ejemplo del diálogo de pregunta de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Use la opción --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Diálogo de escala" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Use la opción --scale para crear un diálogo de escala." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "El diálogo de escala soporta las siguientes opciones:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Establezca el texto del diálogo. (Predeterminado: «Ajustar el valor de la " -"escala»)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Establezca el valor inicial. (Predeterminado: 0) Debe especificar un valor " -"que esté entre los valores mínimo y máximo." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Establezca el valor mínimo. (Predeteminado: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Establezca el valor máximo. (Predeteminado: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Establezca el tamaño del paso. (Predeterminado: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Imprimir el valor a la salida estandar cuando se cambie el valor." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Ocultar valor en un diálogo." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de escala:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Ha seleccionado $VALUE%.\";;\n" -" 1)\n" -" echo \"No ha seleccionado ningún valor.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Ejemplo de diálogo de escala" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Ejemplo del diálogo de escala de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Use la opción --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Diálogo para la texto de información" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Use la opción --text-info para crear un diálogo de texto de " -"información." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "El diálogo de texto de información soporta las siguientes opciones:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" -"Especifica un archivo que se carga en el diálogo de texto de información." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Permite que el texto mostrado sea editado. El texto editado se devuelve por " -"la salida estándar cuando el diálogo se cierra." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=TIPOGRAFÍA" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Especifica la tipografía del texto." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXTO" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "Activar una casilla para usarla como «He leído y acepto los términos»." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Activar el soporte de HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Establecer un URL en vez de un archivo. Sólo funciona si usa la opción «--" -"html»." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de texto de " -"información:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Debe copiar el archivo \"COPYING\" en la misma carpeta que este script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licencia\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"He leído y acepto los términos.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Comenzar instalación\"\n" -"\t# siguiente paso\n" -"\t;;\n" -" 1)\n" -" echo \"Detener instalación\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ha ocurrido un error inesperado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Ejemplo del diálogo de texto de información" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Ejemplo del diálogo de texto de información de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Puede usar Zenity para crear diálogos simples que " -"interactúen gráficamente con el usuario." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Uso" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Cuando escriba scripts, puede usar Zenity para " -"crear diálogos simples que interactúen gráficamente con el usuario, como por " -"ejemplo:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Puede crear un diálogo para obtener información del usuario. Por ejemplo, " -"puede pedir al usuario seleccionar una fecha de un diálogo del calendario, o " -"seleccionar un archivo de un diálogo de selección de archivo." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Usted puede crear un diálogo para proporcionar información al usuario. Por " -"ejemplo, puede usar un diálogo de progreso para indicar el estado actual de " -"una operación, o usar un diálogo de advertencia para alertar al usuario." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Cuando el usuario cierra el diálogo, Zenity imprime el texto " -"producido por diálogo a la salida estándar de error." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Cuando usted escriba comandos de Zenity, asegúrese de poner " -"comillas alrededor de cada argumento." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Por ejemplo, use:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Calendario de vacaciones\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "No use:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Calendario de vacaciones" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Si no usa comillas, puede que consiga resultados inesperados." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Atajos del teclado" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Un atajo del teclado le permite realizar una acción desde el teclado en " -"lugar de utilizar el ratón para elegir un comando de un menú o un diálogo. " -"Cada atajo del teclado se identifica por una letra subrayada en una opción " -"del menú o de un diálogo." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Algunos diálogos de Zenity soportan el uso de atajos del teclado. " -"Para especificar el carácter que se utilizará como atajo del teclado, ponga " -"un guión bajo precediendo ese carácter en el texto del diálogo. El siguiente " -"ejemplo muestra cómo especificar la letra «E» como atajo del teclado:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "«_Elija un nombre»." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Códigos de salida" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity devuelve los siguientes códigos de salida:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Código de salida" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Descripción" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"El usuario ha pulsado Aceptar o Cerrar." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"El usuario ha presionado Cancelar, o ha usado la " -"función de la ventana para cerrar el diálogo." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Ha ocurrido un error inesperado." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "El diálogo se ha cerrado porque se alcanzó el tiempo de expiración." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Opciones generales" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "" -"Todos los diálogos de Zenity soportan las siguientes opciones generales:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=título" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Especifica el título de un diálogo." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ruta_al_icono" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Especifica el icono que se muestra en el marco de la ventana del diálogo. " -"Hay 4 iconos disponibles, proporcionando las palabras claves siguientes - " -"'info', 'warning', 'question' y 'error'." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=anchura" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Especifica el ancho del diálogo." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=altura" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Especifica la altura del diálogo." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=tiempo_de_expiración" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Especifica el tiempo de expiración en segundos después del cual el diálogo " -"se cierra." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Opciones de ayuda" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity proporciona las siguientes opciones de ayuda:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Muestra un texto de ayuda abreviado." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Muestra un texto de ayuda completo para todos los diálogos." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Muestra el texto de ayuda para los opciones de diálogo generales." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Muestra el texto de ayuda para las opciones de diálogo del calendario." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "" -"Muestra el texto de ayuda para las opciones del diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Muestra el texto de ayuda para las opciones del diálogo de error." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "" -"Muestra el texto de ayuda para las opciones del diálogo de información." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Muestra el texto de ayuda para las opciones del diálogo de selección de " -"archivos." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Muestra el texto de ayuda para las opciones del diálogo de lista." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Muestra el texto de ayuda para las opciones de iconos de notificación." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Muestra el texto de ayuda para las opciones del diálogo de progreso." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Muestra el texto de ayuda para las opciones del diálogo de pregunta." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "" -"Muestra el texto de ayuda para las opciones del diálogo de advertencia." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "" -"Muestra el texto de ayuda para las opciones del diálogo de información." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Muestra el texto de ayuda para las opciones misceláneas." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Muestra la ayuda para las opciones de GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Opciones misceláneas" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity también proporciona las siguientes opciones varias:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Muestra el diálogo Acerca de Zenity, que contiene la información " -"de la versión de Zenity, información del copyright, e información del " -"desarrollador." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Muestra el número de versión de Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Opciones de GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity soporta las opciones estándares de GTK+. Para obtener más información " -"acerca de las opciones de GTK+, ejecute el comando zenity --help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Variables de entorno" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Generalmente Zenity detecta la ventana del terminal desde la que se ha " -"lanzado y se mantiene por encima de esa ventana. Este comportamiento se " -"puede desactivar con la variable de entorno WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Use la opción --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Diálogo de advertencia" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"Use la opción --warning para crear un diálogo de advertencia." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"El siguiente script de ejemplo muestra cómo crear un diálogo de advertencia:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Desconecte el cable de eléctrico para evitar un shock eléctrico.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Ejemplo del diálogo de advertencia" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Ejemplo del diálogo de advertencia de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -#~ msgstr "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-notification-screenshot.png' " -#~ "md5='b67bf309c6e479db8677947f1810a999'" -#~ msgstr "" -#~ "external ref='figures/zenity-notification-screenshot.png' " -#~ "md5='b67bf309c6e479db8677947f1810a999'" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "--version" -#~ msgstr "--version" - -#~ msgid "--html" -#~ msgstr "--html" - -#~ msgid "yasumichi@vinelinux.org" -#~ msgstr "yasumichi@vinelinux.org" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" -#~ msgstr "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Manual de la aplicación de escritorio Zenity V2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems, Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Equipo de documentación del escritorio de Java Desktop System" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "Proyecto de documentación de GNOME" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "Agosto de 2004" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Manual de Zenity V1.0" - -#~ msgid "January 2003" -#~ msgstr "Enero 2003" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "Este manual describe la versión 2.6.0 de Zenity." - -#~ msgid "Feedback" -#~ msgstr "Comentarios" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "Para enviar un comentario, siga las direcciones en Página de comentarios." - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "Zenity es una reescritura de gdialog, el «port» de GNOME de dialog que le " -#~ "permite mostrar cajas de diálogo desde la línea de comandos y scripts de " -#~ "shell." - -#~ msgid "zenity command" -#~ msgstr "comando zenity" - -#~ msgid "dialog creator" -#~ msgstr "creador de diálogo" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "Por ejemplo, use: zenity --calendar --title=" -#~ "\"Planificador de vacaciones\" No use: " -#~ "zenity --calendar --title=Planificador de " -#~ "vacaciones" - -#~ msgid "=title" -#~ msgstr "=título" - -#~ msgid "=width" -#~ msgstr "=anchura" - -#~ msgid "=height" -#~ msgstr "=altura" - -#~ msgid "=timeout" -#~ msgstr "" -#~ "=tiempo de expiración" - -#~ msgid "=text" -#~ msgstr "=texto" - -#~ msgid "=day" -#~ msgstr "=día" - -#~ msgid "=month" -#~ msgstr "=mes" - -#~ msgid "=year" -#~ msgstr "=año" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid " calendar dialog example" -#~ msgstr " ejemplo de un diálogo de calendario" - -#~ msgid "=filename" -#~ msgstr "" -#~ "=nombre_del_archivo" - -#~ msgid "=column" -#~ msgstr "=columna" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "" -#~ "Zenity puede crear cuatro tipos de diálogos de " -#~ "mensajes:" - -#~ msgid "=text" -#~ msgstr "=texto" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Seleccione un archivo\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No ha seleccionado ningún archivo.\";;\n" -#~ " -1)\n" -#~ " echo \"No ha seleccionado ningún archivo.\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/es/figures/zenity-calendar-screenshot.png b/help/es/figures/zenity-calendar-screenshot.png deleted file mode 100644 index 50dc850..0000000 Binary files a/help/es/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-colorselection-screenshot.png b/help/es/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 5077b49..0000000 Binary files a/help/es/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-entry-screenshot.png b/help/es/figures/zenity-entry-screenshot.png deleted file mode 100644 index 648fb25..0000000 Binary files a/help/es/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-error-screenshot.png b/help/es/figures/zenity-error-screenshot.png deleted file mode 100644 index 7d196fe..0000000 Binary files a/help/es/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-forms-screenshot.png b/help/es/figures/zenity-forms-screenshot.png deleted file mode 100644 index ed2afbe..0000000 Binary files a/help/es/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-information-screenshot.png b/help/es/figures/zenity-information-screenshot.png deleted file mode 100644 index 9a603cc..0000000 Binary files a/help/es/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-list-screenshot.png b/help/es/figures/zenity-list-screenshot.png deleted file mode 100644 index 6b4fd4e..0000000 Binary files a/help/es/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-password-screenshot.png b/help/es/figures/zenity-password-screenshot.png deleted file mode 100644 index 1dd6fd0..0000000 Binary files a/help/es/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-progress-screenshot.png b/help/es/figures/zenity-progress-screenshot.png deleted file mode 100644 index e28cfb2..0000000 Binary files a/help/es/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-question-screenshot.png b/help/es/figures/zenity-question-screenshot.png deleted file mode 100644 index c87a5f3..0000000 Binary files a/help/es/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-scale-screenshot.png b/help/es/figures/zenity-scale-screenshot.png deleted file mode 100644 index 6a64255..0000000 Binary files a/help/es/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-text-screenshot.png b/help/es/figures/zenity-text-screenshot.png deleted file mode 100644 index 1aa91d1..0000000 Binary files a/help/es/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/es/figures/zenity-warning-screenshot.png b/help/es/figures/zenity-warning-screenshot.png deleted file mode 100644 index 06eb676..0000000 Binary files a/help/es/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/eu/eu.po b/help/eu/eu.po deleted file mode 100644 index d764ef3..0000000 --- a/help/eu/eu.po +++ /dev/null @@ -1,2434 +0,0 @@ -# translation of zenity_help.HEAD.po to Basque -# Iñaki Larrañaga Murgoitio , 2008. -# Asier Sarasua Garmendia , 2021. -# -msgid "" -msgstr "Project-Id-Version: zenity_help.HEAD\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-09-19 10:00+0100\n" -"Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNUren Lizentzia Publiko Orokorra, 1.1 bertsioa" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "Lan honen lizentzia <_:link-1/> edo berriagoa da." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "esteka" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "Baimena ematen da dokumentu hau kopiatu, banatu eta/edo aldatzeko Free Software Foundation-ek argitaratutako GNU Dokumentazio Librearen Lizentziaren 1.1. bertsioan edo berriago batean ezarritako baldintzetan, atal aldaezinik gabe, aurreko azaleko testurik gabe eta atzeko azaleko testurik gabe. GFDL lizentziaren kopia esteka honetan: <_:ulink-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "Eskuliburu hau GFDL lizentziarekin banatzen diren GNOME eskuliburuen bildumakoa da. Eskuliburu hau bildumatik bereizita banatu nahi baduzu, banatu dezakezu, baina eskuliburuari lizentziaren kopia bat gehitu beharko diozu, lizentzian bertan 6. atalean azaltzen den bezala." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "Enpresek beren produktuak eta zerbitzuak bereizteko erabiltzen dituzten izen asko marka erregistratu gisa hartu behar dira. Izen horiek GNOMEren edozein agiritan agertzen direnean, eta GNOMEren Dokumentazio Proiektuko kideak marka komertzialak direla konturatzen direnean, izen horiek osorik maiuskulaz edo hasierako letra maiuskulaz idatzi dituzte." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "DOKUMENTUA ETA DOKUMENTUAREN BERTSIO ALDATUAK GNU DOKUMENTAZIO LIBREAREN LIZENTZIAREN BALDINTZEN ARABERA EMATEN DIRA, ETA ONDOREN ZEHAZTEN DIRENAK ONARTZERA BEHARTZEN DUTE:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "DOKUMENTUA \"DAGOEN-DAGOENEAN\" EMATEN DA, INOLAKO BERMERIK GABE, EZ ESPRESUKI ADIERAZITAKORIK ETA EZ INPLIZITURIK ERE; BESTEAK BESTE, EZ DA BERMATZEN DOKUMENTUA EDO BERTSIO ALDATUA AKATSIK GABEA DENIK, MERKATURATZEKO EDO XEDE JAKIN BATERAKO EGOKIA DENIK EDO ARAURIK HAUSTEN EZ DUENIK, HORI GUZTIA MUGARIK GABE. DOKUMENTUAREN EDO DOKUMENTUAREN BERTSIO ALDATUAREN KALITATEARI, ZEHAZTASUNARI ETA PERFORMANTZIARI BURUZKO ERANTZUKIZUN OSOA ZUREA DA. DOKUMENTUREN BATEK EDO BERTSIO ALDATUREN BATEK EDOZEIN MOTATAKO AKATSIK IZANEZ GERO, ZUK (EZ HASIERAKO IDAZLEAK, EZ EGILEAK ETA EZ INONGO KOLABORATZAILEK) ZEURE GAIN HARTU BEHARKO DUZU BERRIKUSTEKO, KONPONTZEKO EDO ZUZENTZEKO BEHAR DIREN ZERBITZU GUZTIEN KOSTUA. BERME-UKATZE HAU LIZENTZIA HONEN FUNTSEZKO ZATIA DA. EZ DA BAIMENIK EMATEN EZEIN DOKUMENTU EDO BERTSIO ALDATU ERABILTZEKO, BALDIN ETA EZ BADA BERME-UKATZE HAU ONARTZEN." - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "EZIN IZANGO DA INONGO ZIRKUNSTANTZIARIK EDO LEGE-TEORIARIK OINARRI HARTU --EZ ERANTZUKIZUN ZIBILARI BURUZKORIK (ZABARKERIA BARNE HARTUTA), EZ KONTRATUARI BURUZKORIK, EZ BESTERIK-- DOKUMENTU HONEN EDO BERTSIO ALDATU BATEN EGILEA, HASIERAKO IDAZLEA, EDOZEIN KOLABORATZAILE EDO BANATZAILE, EDO ALDERDI HORIEN EDOZEIN HORNITZAILE BESTE PERTSONA BATEN AURREAN ERANTZULE EGITEKO, PERTSONA HORREK EDOZEIN MOTATAKO KALTEA JASAN DUELAKO (ZUZENEKOA, ZEHARKAKOA, BEREZIA, INTZIDENTALA EDO ONDORIOZKOA), HALA NOLA (ETA MUGARIK GABE) BEZEROAK GALTZEA, LANA ETEN BEHARRA, ORDENAGAILUAK EZ IBILTZEA EDO GAIZKI IBILTZEA, EDO DOKUMENTUA NAHIZ HAREN BERTSIO ALDATUAK ERABILTZETIK ONDORIOZTATZEN DIREN EDO ERABILERA HORREKIN ZERIKUSIA DUTEN KALTEAK EDO GALERAK, ALDERDIARI KALTE HORIEK GERTA ZITEZKEELA ADITZERA EMAN BAZAIO ERE." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "translator-credits" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Erabili --calendar aukera." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Egutegiaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Egutegiaren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=testua" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Egutegiaren elkarrizketa-koadroan bistaratu den testua zehazten du." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=eguna" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=hilabetea" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=urtea" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Egutegiaren elkarrizketa-koadroan hautatu den urtea zehazten du." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=formatua" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "Adibideko hurrengo scriptak erakusten du nola sortu egutegiaren elkarrizketa-koadroa:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Egutegiaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Zenity egutegiaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "external ref='figures/zenity-calendar-screenshot.png' md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Erabili --color-selection aukera." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Kolorea hautatzeko elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "Erabili aukera kolorea hautatzeko elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Kolorea hautatzeko elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=BALIOA" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Ezarri hasierako kolorea.(ex: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Erakutsi paleta." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "Adibideko hurrengo scriptak erakusten du nola sortu kolorea hautatzeko elkarrizketa-koadroa:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"$COLOR hautatu duzu.\";;\n" -" 1)\n" -" echo \"Ez da kolorerik hautatu.\";;\n" -" -1)\n" -" echo \"Espero ez zen errorea gertatu da.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Kolorea hautatzeko elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "external ref='figures/zenity-colorselection-screenshot.png' md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Erabili --entry aukera." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Testu-sarreraren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Testu-sarreraren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Testu-sarreraren elkarrizketa-koadroan bistaratu den testua zehazten du." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=testua" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "Testu-sarreraren elkarrizketa-koadroko sarrera-eremuan bistaratu den testua zehazten du." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Testu-sarreraren elkarrizketa-koadroko sarrera-eremuan dagoen testua ezkutatzen du" - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Gehitu profil berria\" \\\n" -"--text=\"Sartu profil berriaren izena:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"Ez da izenik sartu\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Testu-sarreraren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "external ref='figures/zenity-entry-screenshot.png' md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Erabili --error aukera." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Erroreen elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Erabili aukera erroreen elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "Adibideko hurrengo scriptak erakusten du nola sortu erroreen elkarrizketa-koadroa:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Ez da aurkitu /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Erroreen elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr " erroreen elkarrizketa-koadroaren adibidea" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Erabili --file-selection aukera." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=fitxategi-izena" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "Elkarrizketa-koadroa lehenengoz erakusten denean, fitxategi-hautapenaren elkarrizketa-koadroan hautatutako fitxategia edo direktorioa zehazten du." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroan era askotako fitxategi-izenak hautatzeko aukera ematen du." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroan dauden direktorioak hautatzea soilik baimentzen du." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroa gorde moduan jartzen du." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=bereizlea" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "Itzulitako fitxategi-izenen zerrenda zatitzeko erabiltzen den katea zehazten du." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Erabili --forms aukera." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Inprimakien elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Erabili aukera inprimakien elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "" - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "" - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Ezarri elkarrizketa-koadroaren testua." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=BEREIZLEA" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java Mahaigaineko Sistemaren dokumentazio-taldea" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Zenity-ren eskuliburua" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Elkarrizketa-koadroak" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Erabili --info aukera." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Informazioko elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Erabili aukera informazioko elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Informazioaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "external ref='figures/zenity-information-screenshot.png' md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Sarrera" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Egutegia" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Fitxategi-hautapena" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Inprimakiak" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Zerrenda" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Jakinarazpenaren ikonoa" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Mezua" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Errorea" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Informazioa" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Galdera" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Abisua" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Pasahitzaren sarrera" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Progresio-barra" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Testu-sarrera" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Testu-informazioa" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Eskala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Kolore-hautapena" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Erabili --list aukera." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Zerrendaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "Elkarrizketa-koadroaren datuak zutabez zutabe eta errenkadaz errenkada zehaztu behar dira. Elkarrizketa-koadroak sarrera estandarraren bidez jaso ditzake datuak. Sarrera bakoitza lerro berriko karaktere batekin bereizi behar da." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Zerrendaren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=zutabea" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Zerrendaren elkarrizketa-koadroko lehen zutabeak kontrol-laukiak dituela adierazten du." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Zerrendaren elkarrizketa-koadroko lehen zutabeak aukera-laukiak dituela zehazten du." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Bistaratutako elementuak editatzeko aukera ematen du." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "Zerrendaren elkarrizketa-koadroak hautatutako sarrerak itzultzen dituenean zer kate erabiltzen den zehazten da." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=zutabea" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "Zer zutabe inprimatu behar den zehazten du, hautapenaren arabera. Zutabe lehenetsia '1' da. Zerrendako zutabe guztiak inprimatzeko 'ALL' erabil daiteke." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Zerrendaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Mezuaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "" - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Jakinarazpen-ikonoa" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Jakinarazpen-arean bistaratu den testua zehazten du." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Jakinarazpen-ikonoaren adibidea" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Erabili --password aukera." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Pasahitzaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Bistaratu erabiltzaile-izenaren eremua." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Erabili --progress aukera." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Progresioaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "Erabili aukera progresioaren elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Progresioaren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Progresioaren elkarrizketa-koadroan bistaratu den testua zehazten du." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=ehunekoa" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Progresioaren elkarrizketa-koadroan finkatu den hasierako ehunekoa zehazten du." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "% 100a lortu denean, progresioaren elkarrizketa-koadroa ixten du." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "Progresio-barra pultsuka luzatzen da sarrera estandarrean EOF karaktere bat irakurri arte." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Progresioaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "external ref='figures/zenity-progress-screenshot.png' md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Erabili --question aukera." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Galderen elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Erabili aukera galderen elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Ziur zaude jarraitu nahi duzula?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Galderen elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Erabili --scale aukera." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Eskalaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Erabili aukera eskalaren elkarrizketa-koadroa sortzeko." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=BALIOA" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=BALIOA" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Ezarri gutxieneko balioa. (Lehenetsia: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=BALIOA" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Ezarri gehieneko balioa. (Lehenetsia: 0)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=BALIOA" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "" - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "" - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Testu-informazioaren elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Testu-informazioaren elkarrizketa-koadroak aukera hauek onartzen ditu:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Testu-informazioaren elkarrizketa-koadroan kargaturiko fitxategia zehazten du." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=LETRA-TIPOA" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "" - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TESTUA" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Gaitu HTML euskarria." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URLa" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Testu-informazioaren elkarrizketa-koadroaren adibidea" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Erabilera" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "Erabiltzaileagandik informazioa lortzeko, elkarrizketa-koadro bat sor dezakezu. Esaterako, erabiltzaileari eska diezaiokezu elkarrizketa-koadroko egutegitik data bat aukeratu dezan, edo elkarrizketa-koadroko fitxategi-hautapenetik fitxategi bat hauta dezan." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "Erabiltzaileari informazioa emateko, elkarrizketa-koadro bat sor dezakezu. Esaterako, eragiketa baten egoera adierazteko, elkarrizketa-koadroko progresio-barra erabil dezakezu, edo, erabiltzailea ohartarazteko, elkarrizketa-koadroko abisu bat." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Komatxo artean jartzen ez baduzu, ustekabeko emaitzak lortuko dituzu." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Tekla bizkortzaileak" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "Teklatua erabiliz menu bateko edo elkarrizketa-koadro bateko komando bat sagua erabili gabe aukeratzeko modua eskaintzen dizu tekla bizkortzaileak. Menu edo elkarrizketa-koadroetako aukera bakoitzean azpimarratuta dagoen letra da bizkortzailea." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Aukeratu izen bat\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Irteera-kodeak" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Irteera-kodea" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Azalpena" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Ustekabeko errorea gertatu da." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "" - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Aukera orokorrak" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=izenburua" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Elkarrizketa-koadroaren titulua zehazten du." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ikono_bidea" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "Elkarrizketa-koadroaren leiho-markoetan bistaratu den ikonoa zehazten du. 4 ikono daude erabilgarri gako-hitz hauek sartuz gero - 'info', 'warning', 'question' eta 'error'." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=zabalera" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Elkarrizketa-koadroaren zabalera zehazten du." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=altuera" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Elkarrizketa-koadroaren altuera zehazten du." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=denbora-muga" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Laguntza-aukerak" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Laguntza-testu murriztua ematen du." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Elkarrizketa-koadro guztietarako laguntza-testu osoa bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Elkarrizketa-koadroen aukera orokorretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Egutegiaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Hasierako testuaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Erroreen elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Informazioaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Fitxategi-hautapenaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Zerrendaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Jakinarazpen-ikonoaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Progresio-barraren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Galderen elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Abisuen elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Testu-informazioaren elkarrizketa-koadroko aukeretarako laguntza-testua bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Aukera askotarako laguntza bistaratzen du." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "GTK aukeretarako laguntza bistaratzen du." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Askotariko aukerak" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "" - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "GTK+ aukerak" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Ingurune-aldagaiak" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "" - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Abisuen elkarrizketa-koadroa" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Abisuen elkarrizketa-koadroa" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Zenity mahaigaineko aplikazioaren eskuliburuaren 2.0 bertsioa" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Java Mahaigaineko Sistemaren dokumentazio-taldea" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "GNOMEren dokumentazio-proiektua" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "2004ko abuztua" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Zenity-ren eskuliburuaren 1.0 bertsioa" - -#~ msgid "January 2003" -#~ msgstr "2003ko urtarrila" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "Eskuliburu honetan Zenity-ren 2.6.0 bertsioa azaltzen da." - -#~ msgid "Feedback" -#~ msgstr "Ohar-bidaltzea" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "Oharrak bidaltzeko, " -#~ "oharrak bidaltzeko orrian aurkituko dituzu argibideak." - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "Gdialog-en berridazketa da Zenity, hau da, GNOMEren dialog-en bertsioa; " -#~ "komando-lerrotik eta shell script-etik elkarrizketa-koadroak bistaratzeko " -#~ "aukera ematen dizu." - -#~ msgid "zenity command" -#~ msgstr "zenity komandoa" - -#~ msgid "dialog creator" -#~ msgstr "elkarrizketa-koadroen sortzailea" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "Adibidez, erabili: zenity -–calendar –title=" -#~ "\"opor-planifikatzailea\" Ez erabili: " -#~ "zenity -–calendar –title=Opor-" -#~ "planifikatzailea" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "=title" -#~ msgstr "=titulua" - -#~ msgid "=width" -#~ msgstr "=zabalera" - -#~ msgid "=height" -#~ msgstr "=altuera" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "=text" -#~ msgstr "=testua" - -#~ msgid "=day" -#~ msgstr "=eguna" - -#~ msgid "=month" -#~ msgstr "=hilabetea" - -#~ msgid "=year" -#~ msgstr "=urtea" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid "=filename" -#~ msgstr "" -#~ "=fitxategi-izena" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "=column" -#~ msgstr "=zutabea" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "" -#~ "Zenity aplikazioak mezuaren lau elkarrizketa-" -#~ "koadro mota sor ditzake." - -#~ msgid "=text" -#~ msgstr "=testua" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Hautatu fitxategi bat\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"Ez da fitxategirik hautatu.\";;\n" -#~ " -1)\n" -#~ " echo \"Ez da fitxategirik hautatu.\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/eu/figures/zenity-colorselection-screenshot.png b/help/eu/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index db31f90..0000000 Binary files a/help/eu/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/eu/figures/zenity-password-screenshot.png b/help/eu/figures/zenity-password-screenshot.png deleted file mode 100644 index f55eb20..0000000 Binary files a/help/eu/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/fi/fi.po b/help/fi/fi.po deleted file mode 100644 index 3d21205..0000000 --- a/help/fi/fi.po +++ /dev/null @@ -1,1762 +0,0 @@ -# Finnish translations for Zenity package. -# Copyright © 2008 Tommi Vainikainen. -# This file is distributed under the same license as the zenity package. -msgid "" -msgstr "" -"Project-Id-Version: Zenity 2.23.4\n" -"POT-Creation-Date: 2009-08-11 19:46+0000\n" -"PO-Revision-Date: 2009-02-27 10:48+0200\n" -"Last-Translator: Tommi Vainikainen \n" -"Language-Team: Finnish\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:554(None) -msgid "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" -msgstr "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:642(None) -msgid "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" -msgstr "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:688(None) -msgid "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:793(None) -msgid "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgstr "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:855(None) -msgid "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgstr "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:889(None) -msgid "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" -msgstr "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:923(None) -msgid "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" -msgstr "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:957(None) -msgid "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" -msgstr "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1052(None) -msgid "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" -msgstr "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1123(None) -msgid "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" -msgstr "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1192(None) -msgid "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgstr "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" - -#: C/zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "Zenityn ohje" - -#: C/zenity.xml:21(subtitle) C/zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "Zenity-työpöytäsovelluksen ohje v2.0" - -#: C/zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: C/zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: C/zenity.xml:25(holder) C/zenity.xml:36(publishername) -#: C/zenity.xml:45(orgname) C/zenity.xml:69(para) -msgid "Sun Microsystems, Inc." -msgstr "Sun Microsystems, Inc." - -#: C/zenity.xml:2(para) -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" -"Tätä asiakirjaa saa kopioida, jakaa edelleen ja/tai muokata Free Software " -"Foundationin julkaiseman GNU Free Documentation Licensen (GFDL) version 1.1 " -"tai valinnaisesti myöhemmän version mukaisesti, ilman vaatimuksia " -"muuttamattomista osioista ja etu- tai takakansiteksteistä. Kopion GFDL:stä " -"voi nähdä napsauttamalla tätä " -"linkkiä, tai lukemalla ohjeen mukana toimitetun COPYING-DOCS-nimisen " -"tiedoston." - -#: C/zenity.xml:12(para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Tämä käyttöohje on osa Gnomen käyttöohjekokoelmaa, jota levitetään GFDL-" -"lisenssin alaisena. Jos haluat levittää tätä käyttöohjetta erillään " -"kokoelmasta, voit tehdä sen liittämällä lisenssin kopion ohjeen mukaan, " -"kuten lisenssin luku 6 sanelee." - -#: C/zenity.xml:19(para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Monet nimistä, joita yhtiöt käyttävät tuotteistansa ja palveluistansa, ovat " -"tuotemerkkejä. Gnomen dokumentointiprojektissa nämä nimet pyritään " -"kirjoittamaan suuraakkosin tai isolla alkukirjaimella, sikäli kun projektin " -"jäsenet tietävät kyseisistä tuotemerkeistä." - -#: C/zenity.xml:35(para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"ASIAKIRJA TARJOTAAN \"SELLAISENAAN\", ILMAN MINKÄÄN LAISTA TAKUUTA, NIIN " -"ILMAISTUA KUIN IMPLISIITTISTÄ, SISÄLTÄEN ILMAN RAJOITUKSIA TAKUUTA SIITÄ, " -"ETTÄ ASIAKIRJA TAI SEN MUOKATTU VERSIO OLISI ILMAN VIRHEITÄ, " -"MYYNTIKELPOINEN, SOVELTUVAT JOHONKIN TARKOITUKSEEN TAI EI-LOUKKAAVA. TÄYSI " -"RISKI ASIAKIRJAN TAI SEN MUOKATUN VERSION LAADUSTA, TARKKUUDESTA TAI " -"HYÖDYLLISYYDESTÄ ON SINULLA. MIKÄLI ASIAKIRJA TAI SEN MUOKATTU VERSIO " -"OSOITTAUTUU VIALLISEKSI MISSÄÄN MIELESSÄ, SINÄ (EI ALKUPERÄINEN KIRJOITTAJA, " -"TEKIJÄ TAI MUU MYÖTÄVAIKUTTAJA) VASTAAT KAIKKIEN TARPEELLISTEN PALVELUIDEN, " -"KORJAUSTEN TAI OIKAISUJEN KULUISTA. TÄMÄ VASTUUVAPAUSLAUSEKE MUODOSTAA " -"OLEELLISEN OSAN TÄSTÄ LISENSSISTÄ. MIHINKÄÄN ASIAKIRJAN TAI SEN MUOKATUN " -"VERSION KÄYTTÖÖN EI OLE MYÖNNETTY LUPAA TÄSSÄ PAITSI TÄMÄN " -"VASTUUVAPAUSLAUSEKKEEN MUKAISESTI; JA" - -#: C/zenity.xml:55(para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"EI MISSÄÄN OLOSUHTEISSA TAI MINKÄÄN LAKITEORIAN ALAISUUDESSA, " -"OIKEUDENLOUKKAUKSEN (SISÄLTÄEN HUOLIMATTOMUUDEN), SOPIMUKSEN TAI MUUTOIN, " -"ASIAKIRJAN TAI SEN MUOKATUN VERSION ALKUPERÄISTÄ KIRJOITTAJAA, KETÄÄN " -"MYÖTÄVAIKUTTAJAA TAI KETÄÄN JAKELIJAA, TAI KETÄÄN MINKÄÄN NÄISTÄ OSAPUOLISTA " -"TOIMITTAJAA, OLE VASTUUSSA KENELLEKÄÄN HENKILÖLLE MISTÄÄN SUORASTA, " -"EPÄSUORASTA, ERITYISESTÄ, VÄLITTÖMISTÄ TAI VÄLILLISISTÄ MINKÄÄN SORTIN " -"VAHINGOISTA SISÄLTÄEN ILMAN RAJOITUSTA VAHINGOT MAINEEN MENETYKSESTÄ, TYÖN " -"SEISAUKSISTA, TIETOKONEVAHINGOISTA TAI -VIRHEISTÄ, TAI MISTÄÄN MUUSTAKAAN " -"VAHINGOSTA TAI TAPPIOISTA, JOTKA LIITTYVÄT ASIAKIRJAN JA SEN MUOKATTUJEN " -"VERSIOIDEN KÄYTTÖÖN, EI EDES SILLOIN KUN OSAPUOLELLE ON KERROTTU TÄLLAISTEN " -"VAHINKOJEN MAHDOLLISUUDESTA." - -#: C/zenity.xml:28(para) -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"" -msgstr "" -"ASIAKIRJA JA SEN MUOKATUT VERSIOT TARJOTAAN GNU FREE DOCUMENTATION LICENSEN " -"EHTOJEN MUKAISESTI YMMÄRTÄEN ETTÄ: " - -#: C/zenity.xml:43(firstname) -msgid "Sun" -msgstr "Sun" - -#: C/zenity.xml:44(surname) -msgid "Java Desktop System Documentation Team" -msgstr "Java-työpöytäjärjestelmän dokumentointiryhmä" - -#: C/zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: C/zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: C/zenity.xml:51(orgname) C/zenity.xml:58(orgname) C/zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "GNOME-dokumentointiprojekti" - -#: C/zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: C/zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: C/zenity.xml:66(date) -msgid "August 2004" -msgstr "Elokuu 2004" - -#: C/zenity.xml:68(para) -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java -työpöytäjärjestelmän dokumentointiryhmä" - -#: C/zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "Zenityn ohje v1.0" - -#: C/zenity.xml:75(date) -msgid "January 2003" -msgstr "Tammikuu 2003" - -#: C/zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "Tämä ohjekirja kuvaa Zenityn versiota 2.6.0." - -#: C/zenity.xml:87(title) -msgid "Feedback" -msgstr "Palaute" - -#: C/zenity.xml:88(para) -msgid "" -"To send feedback, follow the directions in the Feedback Page." -msgstr "" -"Palautetta voi lähettää seuraamalla ohjeita palautesivulla." - -#: C/zenity.xml:95(para) -msgid "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialog boxes from the commandline and shell scripts." -msgstr "" -"Zenity on uudelleenkirjoitettu gdialog, GNOME-siirros dialog-ohjelmasta, " -"joka mahdollistaa valintalaatikoiden näyttämisen komentoriviltä ja " -"kuoriskripteistä." - -#: C/zenity.xml:102(primary) -msgid "zenity command" -msgstr "zenity-komento" - -#: C/zenity.xml:105(primary) -msgid "dialog creator" -msgstr "valintaikkunan luonti" - -#: C/zenity.xml:112(title) -msgid "Introduction" -msgstr "Johdanto" - -#: C/zenity.xml:114(para) -msgid "" -"Zenity enables you to create the following types " -"of simple dialog:" -msgstr "" -"Zenity mahdollistaa seuraavan tyyppisten " -"yksinkertaisten ikkunoiden luomisen:" - -#: C/zenity.xml:119(para) -msgid "Calendar" -msgstr "Kalenteri" - -#: C/zenity.xml:120(para) -msgid "File selection" -msgstr "Tiedoston valinta" - -#: C/zenity.xml:121(para) -msgid "List" -msgstr "Luettelo" - -#: C/zenity.xml:122(para) -msgid "Notification icon" -msgstr "Ilmoituskuvake" - -#: C/zenity.xml:123(para) -msgid "Message" -msgstr "Viesti" - -#: C/zenity.xml:125(para) C/zenity.xml:814(para) -msgid "Error" -msgstr "Virhe" - -#: C/zenity.xml:126(para) C/zenity.xml:817(para) -msgid "Information" -msgstr "Tiedoksi" - -#: C/zenity.xml:127(para) C/zenity.xml:820(para) -msgid "Question" -msgstr "Kysymys" - -#: C/zenity.xml:128(para) C/zenity.xml:823(para) -msgid "Warning" -msgstr "Varoitus" - -#: C/zenity.xml:131(para) -msgid "Progress" -msgstr "Edistyminen" - -#: C/zenity.xml:132(para) -msgid "Text entry" -msgstr "Tekstisyöte" - -#: C/zenity.xml:133(para) -msgid "Text information" -msgstr "Tekstihuomatus" - -#: C/zenity.xml:141(title) -msgid "Usage" -msgstr "Käyttö" - -#: C/zenity.xml:143(para) -msgid "" -"When you write scripts, you can use Zenity to " -"create simple dialogs that interact graphically with the user, as follows:" -msgstr "" -"Skriptejä kirjoitettaessa voi Zenityä käyttää " -"yksinkertaisten valintaikkunoiden luomiseen, jotka pyytävät käyttäjältä " -"syötettä graafisesti, kuten seuraavissa tapauksissa:" - -#: C/zenity.xml:148(para) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Voit luoda valintaikkunan keräämään tietoa käyttäjältä. Voit esimerkiksi " -"pyytää käyttäjää valitsemaan päivän kalenteri-ikkunasta tai valitsemaan " -"tiedoston tiedoston valintaikkunalla." - -#: C/zenity.xml:153(para) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Voit luoda ikkunan, joka kertoo käyttäjälle tietoa. Voit esimerkiksi näyttää " -"edistymisikkunassa operaation edistymisen tilanteen tai varoitusviesti-" -"ikkunassa varoittaa käyttäjää." - -#: C/zenity.xml:158(para) -msgid "" -"When the user closes the dialog, Zenity prints " -"the text produced by the dialog to standard output." -msgstr "" -"Kun käyttäjä sulkee ikkunan, Zenity tulostaa " -"ikkunaan syötetyn tekstin vakiotulosteeseen." - -#: C/zenity.xml:163(para) -msgid "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." -msgstr "" -"Kun kirjoitat Zenity-komentoja, ole tarkkana " -"lainausmerkkien sijoittelussa jokaisen argumentin ympärillä." - -#: C/zenity.xml:166(para) -msgid "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" -msgstr "" -"Käytä esimerkiksi: zenity --calendar --title=" -"\"Loman suunnittelu\" Älä sen sijaan käytä: " -"zenity --calendar --title=Loman suunnittelu" - -#: C/zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Mikäli et käytä lainausmerkkejä, saatat saada odottamattomia tuloksia." - -#: C/zenity.xml:175(title) -msgid "Access Keys" -msgstr "Valintanäppäimet" - -#: C/zenity.xml:176(para) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Valintanäppäin on näppäin, joka antaa mahdollisuuden suorittaa toiminto " -"näppäimistöltä sen sijaan, että komento valittaisiin hiirellä valikosta tai " -"ikkunasta. Jokainen valintanäppäin identifioidaan alleviivaamalla kirjain " -"valikossa tai ikkunan kohdassa." - -#: C/zenity.xml:179(para) -msgid "" -"Some Zenity dialogs support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialog. The following example shows " -"how to specify the letter 'C' as the access key:" -msgstr "" -"Jotkut Zenity-ikkunan tukevat valintanäppäinten " -"käyttöä. Määrittääksesi kirjaimen valintanäppäimeksi, anna alaviiva ennen " -"kirjainta ikkunan tekstissä. Seuraava esimerkki valaisee kuinka kirjain \"V" -"\" määritetään valintanäppäimeksi:" - -#: C/zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Valitse nimi\"." - -#: C/zenity.xml:186(title) -msgid "Exit Codes" -msgstr "Päättymiskoodit" - -#: C/zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "" -"Zenity palauttaa seuraavia päättymiskoodeja:" - -#: C/zenity.xml:198(para) -msgid "Exit Code" -msgstr "Päättymiskoodi" - -#: C/zenity.xml:200(para) -msgid "Description" -msgstr "Kuvaus" - -#: C/zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: C/zenity.xml:209(para) -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Käyttäjä painoi joko OK tai Sulje." - -#: C/zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: C/zenity.xml:217(para) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Käyttäjä painoi Peru tai käytti ikkunapainikkeita " -"sulkemaan valintaikkunan." - -#: C/zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: C/zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "Tapahtui odottamaton virhe." - -#: C/zenity.xml:230(varname) -msgid "5" -msgstr "5" - -#: C/zenity.xml:233(para) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Ikkuna suljettiin aikarajan päätyttyä." - -#: C/zenity.xml:246(title) -msgid "General Options" -msgstr "Yleiset valitsimet" - -#: C/zenity.xml:248(para) -msgid "" -"All Zenity dialogs support the following general " -"options:" -msgstr "" -"Kaikki Zenity-ikkunat tukevat seuraavia yleisiä " -"valitsimia:" - -#: C/zenity.xml:255(term) -msgid "=title" -msgstr "=otsikko" - -#: C/zenity.xml:257(para) -msgid "Specifies the title of a dialog." -msgstr "Määrittää ikkunan otsikon." - -#: C/zenity.xml:262(term) -msgid "=icon_path" -msgstr "=kuvakepolku" - -#: C/zenity.xml:264(para) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Määrittää kuvakkeen, joka näytetään ikkunan kehyksessä. Saatavilla on myös " -"neljä valmista kuvaketta, jotka saa käyttöön seuraavilla avainsanoilla - " -"\"info\" (tietoa), \"warning\" (varoitus), \"question\" (kysymys) ja \"error" -"\" (virhe)." - -#: C/zenity.xml:272(term) -msgid "=width" -msgstr "=leveys" - -#: C/zenity.xml:274(para) -msgid "Specifies the width of the dialog." -msgstr "Määrittää ikkunan leveyden." - -#: C/zenity.xml:279(term) -msgid "=height" -msgstr "=korkeus" - -#: C/zenity.xml:281(para) -msgid "Specifies the height of the dialog." -msgstr "Määrittää ikkunan korkeuden." - -#: C/zenity.xml:286(term) -msgid "=timeout" -msgstr "=aikaraja" - -#: C/zenity.xml:288(para) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Määrittää aikarajan sekunteina, jonka jälkeen ikkuna suljetaan." - -#: C/zenity.xml:299(title) -msgid "Help Options" -msgstr "Ohjevalitsimet" - -#: C/zenity.xml:301(para) -msgid "Zenity provides the following help options:" -msgstr "Zenity tarjoaa seuraavat ohjevalitsimet:" - -#: C/zenity.xml:308(option) -msgid "--help" -msgstr "--help" - -#: C/zenity.xml:310(para) -msgid "Displays shortened help text." -msgstr "Näyttää lyhennetyn ohjetekstin." - -#: C/zenity.xml:315(option) -msgid "--help-all" -msgstr "--help-all" - -#: C/zenity.xml:317(para) -msgid "Displays full help text for all dialogs." -msgstr "Näyttää täyden ohjetekstin kaikista ikkunatyypeistä." - -#: C/zenity.xml:322(option) -msgid "--help-general" -msgstr "--help-general" - -#: C/zenity.xml:324(para) -msgid "Displays help text for general dialog options." -msgstr "Näyttää ohjetekstin yleisistä ikkunavalitsimista." - -#: C/zenity.xml:329(option) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/zenity.xml:331(para) -msgid "Displays help text for calendar dialog options." -msgstr "Näyttää ohjetekstin kalenteri-ikkunan valitsimista." - -#: C/zenity.xml:336(option) -msgid "--help-entry" -msgstr "--help-entry" - -#: C/zenity.xml:338(para) -msgid "Displays help text for text entry dialog options." -msgstr "Näyttää ohjetekstin tekstisyöttöikkunan valitsimista." - -#: C/zenity.xml:343(option) -msgid "--help-error" -msgstr "--help-error" - -#: C/zenity.xml:345(para) -msgid "Displays help text for error dialog options." -msgstr "Näyttää ohjetekstin virheikkunan valitsimista." - -#: C/zenity.xml:350(option) -msgid "--help-info" -msgstr "--help-info" - -#: C/zenity.xml:352(para) -msgid "Displays help text for information dialog options." -msgstr "Näyttää ohjetekstin tietoikkunan valitsimista." - -#: C/zenity.xml:357(option) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/zenity.xml:359(para) -msgid "Displays help text for file selection dialog options." -msgstr "Näyttää ohjetekstin tiedoston valintaikkunan valitsimista." - -#: C/zenity.xml:364(option) -msgid "--help-list" -msgstr "--help-list" - -#: C/zenity.xml:366(para) -msgid "Displays help text for list dialog options." -msgstr "Näyttää ohjetekstin luetteloikkunan valitsimista." - -#: C/zenity.xml:371(option) -msgid "--help-notification" -msgstr "--help-notification" - -#: C/zenity.xml:373(para) -msgid "Displays help text for notification icon options." -msgstr "Näyttää ohjetekstin ilmoituskuvakkeiden valitsimista." - -#: C/zenity.xml:378(option) -msgid "--help-progress" -msgstr "--help-progress" - -#: C/zenity.xml:380(para) -msgid "Displays help text for progress dialog options." -msgstr "Näyttää ohjetekstin edistymisikkunan valitsimista." - -#: C/zenity.xml:385(option) -msgid "--help-question" -msgstr "--help-question" - -#: C/zenity.xml:387(para) -msgid "Displays help text for question dialog options." -msgstr "Näyttää ohjetekstin kysymysikkunan valitsimista." - -#: C/zenity.xml:392(option) -msgid "--help-warning" -msgstr "--help-warning" - -#: C/zenity.xml:394(para) -msgid "Displays help text for warning dialog options." -msgstr "Näyttää ohjetekstin varoitusikkunan valitsimista." - -#: C/zenity.xml:399(option) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/zenity.xml:401(para) -msgid "Displays help for text information dialog options." -msgstr "Näyttää ohjeen tietoikkunan valitsimista." - -#: C/zenity.xml:406(option) -msgid "--help-misc" -msgstr "--help-misc" - -#: C/zenity.xml:408(para) -msgid "Displays help for miscellaneous options." -msgstr "Näyttää ohjeen sekalaisista valitsimista." - -#: C/zenity.xml:413(option) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/zenity.xml:415(para) -msgid "Displays help for GTK+ options." -msgstr "Näyttää ohjeen GTK+-valitsimista." - -#: C/zenity.xml:426(title) -msgid "Miscellaneous Options" -msgstr "Sekalaisia valitsimia" - -#: C/zenity.xml:428(para) -msgid "" -"Zenity also provides the following miscellaneous " -"options:" -msgstr "" -"Zenityllä on myös seuraavat sekalaiset valitsimet:" - -#: C/zenity.xml:435(option) -msgid "--about" -msgstr "--about" - -#: C/zenity.xml:437(para) -msgid "" -"Displays the About Zenity dialog, which contains " -"Zenity version information, copyright " -"information, and developer information." -msgstr "" -"Näyttää Tietoja Zenitystä -ikkunan, joka sisältää " -"tiedot Zenityn versiosta, tekijänoikeuksista ja " -"kehittäjistä." - -#: C/zenity.xml:442(option) -msgid "--version" -msgstr "--version" - -#: C/zenity.xml:444(para) -msgid "Displays the version number of Zenity." -msgstr "Näyttää Zenityn versionumeron." - -#: C/zenity.xml:455(title) -msgid "GTK+ Options" -msgstr "GTK+-valitsimet" - -#: C/zenity.xml:457(para) -msgid "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." -msgstr "" -"Zenity tarjoaa tavanomaiset GTK+-valitsimet. " -"Lisätietoa GTK+-valitsimista saa komennolla zenity -?." - -#: C/zenity.xml:466(title) -msgid "Environment Variables" -msgstr "Ympäristömuuttujat" - -#: C/zenity.xml:468(para) -msgid "" -"Normally, Zenity detects the terminal window from " -"which it was launched and keeps itself above that window. This behavior can " -"be disabled by unsetting the WINDOWID environment variable." -msgstr "" -"Normaalisti Zenity tunnistaa pääteikkunan, josta " -"se on käynnistetty ja pitää itsensä tämän ikkunan päällä. Tämä käytös " -"voidaan estää poistamalla WINDOWID-ympäristömuuttuja." - -#: C/zenity.xml:480(title) -msgid "Calendar Dialog" -msgstr "Kalenteri-ikkuna" - -#: C/zenity.xml:482(para) -msgid "" -"Use the option to create a calendar dialog. " -"Zenity returns the selected date to standard " -"output. If no date is specified on the command line, the dialog uses the " -"current date." -msgstr "" -"Käytä valitsinta luomaan kalenteri-ikkuna. " -"Zenity palauttaa valitun päivämäärään " -"vakiotulosteeseen. Mikäli päivämäärää ei määritetty komentorivillä, ikkuna " -"avataan sen hetkisen päivän kohdalta." - -#: C/zenity.xml:485(para) -msgid "The calendar dialog supports the following options:" -msgstr "Kalenteri-ikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:492(term) C/zenity.xml:663(term) C/zenity.xml:989(term) -#: C/zenity.xml:1078(term) -msgid "=text" -msgstr "=teksti" - -#: C/zenity.xml:494(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Määrittää tekstin, joka näkyy kalenteri-ikkunassa." - -#: C/zenity.xml:499(term) -msgid "=day" -msgstr "=päivä" - -#: C/zenity.xml:501(para) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" -"Määrittää päivän, joka on aluksi valittuna kalenteri-ikkunassa. " -"päivä tulee korvata numerolla 1—31." - -#: C/zenity.xml:507(term) -msgid "=month" -msgstr "=kuukausi" - -#: C/zenity.xml:509(para) -msgid "" -"Specifies the month that is selected in the calendar dialog. " -"month must be a number between 1 and 12 inclusive." -msgstr "" -"Määrittää kuukauden, joka on aluksi valittuna kalenteri-ikkunassa. " -"kuukausi tulee korvata numerolla 1—12." - -#: C/zenity.xml:515(term) -msgid "=year" -msgstr "=vuosi" - -#: C/zenity.xml:517(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Määrittää vuoden, joka on aluksi valittuna kalenteri-ikkunassa." - -#: C/zenity.xml:522(term) -msgid "=format" -msgstr "=muoto" - -#: C/zenity.xml:524(para) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Määrittää muotoilun, jossa kalenteri-ikkuna palauttaa päivämäärän valinnan " -"jälkeen. Oletusmuotoilu riippuu maa-asetuksista. muoto täytyy koostua muotoilukoodeista, joita strftime-funktio hyväksyy, kuten %A %Y-%m-%d." - -#: C/zenity.xml:534(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Valitse päivä\" \\\n" -" --text=\"Napsauta päivämäärää valitsemaan päivä.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Päivää ei valittu\"\n" -" fi\n" -" " - -#: C/zenity.xml:531(para) -msgid "" -"The following example script shows how to create a calendar dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan kalenteri-ikkuna: " -"" - -#: C/zenity.xml:550(title) -msgid "Calendar Dialog Example" -msgstr "Esimerkki kalenteri-ikkunasta" - -#: C/zenity.xml:0(application) -msgid "Zenity" -msgstr "Zenity" - -#: C/zenity.xml:557(phrase) -msgid " calendar dialog example" -msgstr "Esimerkki -kalenteri-ikkunasta" - -#: C/zenity.xml:569(title) -msgid "File Selection Dialog" -msgstr "Tiedoston valintaikkuna" - -#: C/zenity.xml:571(para) -msgid "" -"Use the option to create a file selection " -"dialog. Zenity returns the selected files or " -"directories to standard output. The default mode of the file selection " -"dialog is open." -msgstr "" -"Käytä valitsinta luomaan tiedoston " -"valintaikkuna. Zenity palauttaa valitut tiedostot " -"tai hakemistot vakiotulosteeseen. Oletusmoodi tiedoston valintaikkunalle on " -"avaus." - -#: C/zenity.xml:575(para) -msgid "The file selection dialog supports the following options:" -msgstr "Tiedoston valintaikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:582(term) C/zenity.xml:1149(term) -msgid "=filename" -msgstr "=tiedostonimi" - -#: C/zenity.xml:584(para) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Määrittää tiedoston tai hakemiston, joka on aluksi ikkunan tullessa näkyviin " -"valittuna tiedoston valintaikkunassa." - -#: C/zenity.xml:589(option) -msgid "--multiple" -msgstr "--multiple" - -#: C/zenity.xml:591(para) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Sallii valita kerralla useamman tiedoston tiedoston valintaikkunassa." - -#: C/zenity.xml:596(option) -msgid "--directory" -msgstr "--directory" - -#: C/zenity.xml:598(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Sallii vain hakemistojen valitsemisen tiedoston valintaikkunassa." - -#: C/zenity.xml:603(option) -msgid "--save" -msgstr "--save" - -#: C/zenity.xml:605(para) -msgid "Set the file selection dialog into save mode." -msgstr "Asettaa tiedoston valintaikkunan tallennustilaan." - -#: C/zenity.xml:610(term) C/zenity.xml:755(term) -msgid "=separator" -msgstr "=erotin" - -#: C/zenity.xml:612(para) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Määrittää merkkijonon, jota käytetään erottamaan tiedostot palautettavassa " -"tiedostonimien luettelossa." - -#: C/zenity.xml:621(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Valitse tiedosto\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" valittu.\";;\n" -" 1)\n" -" echo \"Tiedostoa ei valittu.\";;\n" -" -1)\n" -" echo \"Tiedostoa ei valittu.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:618(para) -msgid "" -"The following example script shows how to create a file selection dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan tiedoston valintaikkuna: " -"" - -#: C/zenity.xml:638(title) -msgid "File Selection Dialog Example" -msgstr "Esimerkki tiedoston valintaikkunasta" - -#: C/zenity.xml:645(phrase) -msgid " file selection dialog example" -msgstr "Esimerkki n tiedoston valintaikkunasta" - -#: C/zenity.xml:655(title) -msgid "Notification Icon" -msgstr "Ilmoituskuvake" - -#: C/zenity.xml:665(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "Määrittää tekstin, joka näkyy ilmoitusalueella." - -#: C/zenity.xml:673(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Järjestelmän päivitys on välttämätön!\"\n" -" " - -#: C/zenity.xml:671(para) -msgid "" -"The following example script shows how to create a notification icon: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan ilmoituskuvake: " -"" - -#: C/zenity.xml:684(title) -msgid "Notification Icon Example" -msgstr "Esimerkki ilmoituskuvakkeesta" - -#: C/zenity.xml:691(phrase) -msgid " notification icon example" -msgstr "Esimerkki -ilmoituskuvakkeesta" - -#: C/zenity.xml:702(title) -msgid "List Dialog" -msgstr "Luetteloikkuna" - -#: C/zenity.xml:704(para) -msgid "" -"Use the option to create a list dialog. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard output." -msgstr "" -"Käytä valitsinta luomaan luetteloikkuna. " -"Zenity palauttaa valittujen rivien ensimmäisten " -"sarakkeiden tiedot vakiotulosteeseen." - -#: C/zenity.xml:708(para) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Ikkunan sisältö tulee määrittää sarake sarakkeelta ja rivi riviltä. Tiedot " -"voidaan syöttää ikkunaan vakiosyötteen kautta. Jokainen tietue pitää erottaa " -"rivinvaihtomerkillä. " - -#: C/zenity.xml:712(para) -msgid "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Mikäli käytössä on valitsin tai , jokaisen rivin tulee alkaa joko 'TRUE' (tosi) tai " -"'FALSE' (epätosi)." - -#: C/zenity.xml:716(para) -msgid "The list dialog supports the following options:" -msgstr "Luetteloikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:723(term) -msgid "=column" -msgstr "=sarake" - -#: C/zenity.xml:725(para) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a option for each column that you want to " -"display in the dialog." -msgstr "" -"Määrittää luetteloikkunassa näkyvien sarakkeiden otsakkeet. Määritä valitsin " -" jokaiselle sarakkeelle, jonka haluat näkyvän " -"ikkunassa." - -#: C/zenity.xml:731(option) -msgid "--checklist" -msgstr "--checklist" - -#: C/zenity.xml:733(para) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Määrittää, että ensimmäinen sarake luetteloikkunassa sisältää valintaruutuja." - -#: C/zenity.xml:739(option) -msgid "--radiolist" -msgstr "--radiolist" - -#: C/zenity.xml:741(para) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Määrittää, että ensimmäinen sarake luetteloikkunassa sisältää " -"radiovalitsimia." - -#: C/zenity.xml:747(option) C/zenity.xml:1156(option) -msgid "--editable" -msgstr "--editable" - -#: C/zenity.xml:749(para) -msgid "Allows the displayed items to be edited." -msgstr "Sallii näytettävien tietuiden muokaamisen." - -#: C/zenity.xml:757(para) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Määrittää mitä merkkijonoa käytetään kun luetteloikkuna palauttaa valitut " -"tietueet." - -#: C/zenity.xml:763(term) -msgid "=column" -msgstr "=sarake" - -#: C/zenity.xml:765(para) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Määrittää mitkä sarakkeet tulostetaan valinnan jälkeen. Oletussarake on \"1" -"\". \"ALL\" (kaikki) tarkoittaa, että kaikki luettelon sarakkeet tulostetaan." - -#: C/zenity.xml:775(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Valitse viat joita haluat katsoa\" \\\n" -" --column=\"Vikanumero\" --column=\"Vakavuus\" --column=\"Kuvaus\" \\\n" -" 992383 normaali \"GtkTreeView kaatuu monivalinnoissa\" \\\n" -" 293823 korkea \"GNOME-sanakirja ei osaa käyttää välipalvelinta\" \\\n" -" 393823 kriittinen \"Valikkojen muokaus ei toimi GNOME 2.0:ssa\"\n" -" " - -#: C/zenity.xml:773(para) -msgid "" -"The following example script shows how to create a list dialog: " -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan luetteloikkuna: " -"" - -#: C/zenity.xml:789(title) -msgid "List Dialog Example" -msgstr "Esimerkki luetteloikkunasta" - -#: C/zenity.xml:796(phrase) -msgid " list dialog example" -msgstr "Esimerkki -luetteloikkunasta" - -#: C/zenity.xml:807(title) -msgid "Message Dialogs" -msgstr "Viesti-ikkunat" - -#: C/zenity.xml:809(para) -msgid "" -"Zenity can create four types of message dialog:" -msgstr "" -"Zenity voi luoda neljän tyyppisia viesti-" -"ikkunoita:" - -#: C/zenity.xml:827(para) -msgid "" -"For each type, use the option to specify the text " -"that is displayed in the dialog." -msgstr "" -"Kaikille ikkunatyypeille valitsin määrittää " -"ikkunassa näytettävän tekstin." - -#: C/zenity.xml:832(title) -msgid "Error Dialog" -msgstr "Virheikkuna" - -#: C/zenity.xml:834(para) -msgid "Use the option to create an error dialog." -msgstr "Käytä valitsinta luomaan virheikkuna." - -#: C/zenity.xml:841(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Tiedostoa /var/log/syslog ei löytynyt.\"\n" -" " - -#: C/zenity.xml:838(para) -msgid "" -"The following example script shows how to create an error dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan virheikkuna: " - -#: C/zenity.xml:851(title) -msgid "Error Dialog Example" -msgstr "Esimerkki virheikkunasta" - -#: C/zenity.xml:858(phrase) -msgid " error dialog example" -msgstr "Esimerkki -virheikkuna" - -#: C/zenity.xml:866(title) -msgid "Information Dialog" -msgstr "Tietoikkuna" - -#: C/zenity.xml:868(para) -msgid "Use the option to create an information dialog." -msgstr "Käytä valitsinta luomaan tietoikkuna." - -#: C/zenity.xml:875(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Yhdistäminen valmis. Päivitetty 3/10 tiedostoa.\"\n" -" " - -#: C/zenity.xml:872(para) -msgid "" -"The following example script shows how to create an information dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan tietoikkuna: " - -#: C/zenity.xml:885(title) -msgid "Information Dialog Example" -msgstr "Esimerkki tietoikkunasta" - -#: C/zenity.xml:892(phrase) -msgid " information dialog example" -msgstr "Esimerkki -tietoikkunasta" - -#: C/zenity.xml:900(title) -msgid "Question Dialog" -msgstr "Kysymysikkuna" - -#: C/zenity.xml:902(para) -msgid "Use the option to create a question dialog." -msgstr "Käytä valitsinta luomaan kysymysikkuna." - -#: C/zenity.xml:909(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Haluatko varmasti jatkaa?\"\n" -" " - -#: C/zenity.xml:906(para) -msgid "" -"The following example script shows how to create a question dialog: " -"" -msgstr "" -"Seuraava esimerkki näyttää kuinka luodaan kysymysikkuna: " - -#: C/zenity.xml:919(title) -msgid "Question Dialog Example" -msgstr "Esimerkki kysymysikkunasta" - -#: C/zenity.xml:926(phrase) -msgid " question dialog example" -msgstr "Esimerkki -kysymysikkunasta" - -#: C/zenity.xml:934(title) -msgid "Warning Dialog" -msgstr "Varoitusikkuna" - -#: C/zenity.xml:936(para) -msgid "Use the option to create a warning dialog." -msgstr "Käytä valitsinta luomaan varoitusikkuna." - -#: C/zenity.xml:943(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Irrota virtajohto sähköiskujen välttämiseksi.\"\n" -" " - -#: C/zenity.xml:940(para) -msgid "" -"The following example script shows how to create a warning dialog: " -"" -msgstr "" -"Seuraava esimerkki näyttää kuinka luodaan varoitusikkuna: " - -#: C/zenity.xml:953(title) -msgid "Warning Dialog Example" -msgstr "Esimerkki varoitusikkunasta" - -#: C/zenity.xml:960(phrase) -msgid " warning dialog example" -msgstr "Esimerkki -varoitusikkunasta" - -#: C/zenity.xml:972(title) -msgid "Progress Dialog" -msgstr "Edistymisikkuna" - -#: C/zenity.xml:974(para) -msgid "Use the option to create a progress dialog." -msgstr "Käytä valitsinta luomaan edistymisikkuna." - -#: C/zenity.xml:978(para) -msgid "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." -msgstr "" -"Zenity lukee datan vakiosyötteestä rivi " -"kerrallaan. Mikäli rivi alkaa #-merkillä, teksti päivitetään rivin " -"tekstillä. Mikäli rivi sisältää vain numeron, edistymisprosentiksi " -"päivitetään annettu numero." - -#: C/zenity.xml:982(para) -msgid "The progress dialog supports the following options:" -msgstr "Edistymisikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:991(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Määrittää tekstin, joka näytetään edistymisikkunassa." - -#: C/zenity.xml:996(term) -msgid "=percentage" -msgstr "=prosentit" - -#: C/zenity.xml:998(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Määrittää prosentuaalisen osuuden alussa, joka asetetaan edistymisikkunaan." - -#: C/zenity.xml:1003(option) -msgid "--auto-close" -msgstr "--auto-close" - -#: C/zenity.xml:1005(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Edistymisikkuna suljetaan automaattisesti kun 100 % saavutetaan." - -#: C/zenity.xml:1010(option) -msgid "--pulsate" -msgstr "--pulsate" - -#: C/zenity.xml:1012(para) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Määrittää, että edistymisikkuna sykkii kunnes EOF-merkki (tiedoston " -"loppumerkki) luetaan vakiosyötteestä." - -#: C/zenity.xml:1020(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Päivitetään postilokeja\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Nollataan cron-töitä\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"Tämä rivi vain ohitetaan\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Uudelleenkäynnistetään järjestelmä\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Päivitetään järjestelmälokeja\" \\\n" -" --text=\"Tutkitaan postilokeja...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Päivitys keskeytetty.\"\n" -" fi\n" -"\n" -" " - -#: C/zenity.xml:1018(para) -msgid "" -"The following example script shows how to create a progress dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan edistymisikkuna: " -"" - -#: C/zenity.xml:1048(title) -msgid "Progress Dialog Example" -msgstr "Esimerkki edistymisikkunasta" - -#: C/zenity.xml:1055(phrase) -msgid " progress dialog example" -msgstr "Esimerkki -edistymisikkunasta" - -#: C/zenity.xml:1066(title) -msgid "Text Entry Dialog" -msgstr "Tekstinsyöttöikkuna" - -#: C/zenity.xml:1068(para) -msgid "" -"Use the option to create a text entry dialog. " -"Zenity returns the contents of the text entry to " -"standard output." -msgstr "" -"Käytä valitsinta luomaan tekstinsyöttöikkuna. " -"Zenity palauttaa syöttökentän sisällön " -"vakiotulosteeseen." - -#: C/zenity.xml:1071(para) -msgid "The text entry dialog supports the following options:" -msgstr "Tekstinsyöttöikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:1080(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Määrittää tekstin, joka näkyy tekstinsyöttöikkunassa." - -#: C/zenity.xml:1085(term) -msgid "=text" -msgstr "=teksti" - -#: C/zenity.xml:1087(para) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Määrittää tekstin, joka näytetään syöttökentässä teksinsyöttöikkunassa." - -#: C/zenity.xml:1092(option) -msgid "--hide-text" -msgstr "--hide-text" - -#: C/zenity.xml:1094(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Piilottaa tekstin syöttökentässä tekstinsyöttöikkunassa." - -#: C/zenity.xml:1103(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Lisää syöte\" \\\n" -" --text=\"Syötä _salasanasi:\" \\\n" -" --entry-text \"salasana\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"Salasanaa ei syötetty\"\n" -" fi\n" -" " - -#: C/zenity.xml:1100(para) -msgid "" -"The following example script shows how to create a text entry dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan tekstinsyöttöikkuna: " -"" - -#: C/zenity.xml:1119(title) -msgid "Text Entry Dialog Example" -msgstr "Esimerkki tekstinsyöttöikkunasta" - -#: C/zenity.xml:1126(phrase) -msgid " text entry dialog example" -msgstr "Esimerkki -tekstinsyöttöikkunasta" - -#: C/zenity.xml:1136(title) -msgid "Text Information Dialog" -msgstr "Tekstitietoikkuna" - -#: C/zenity.xml:1138(para) -msgid "" -"Use the option to create a text information " -"dialog." -msgstr "" -"Käytä valitsinta luomaan tekstitietoikkuna." - -#: C/zenity.xml:1142(para) -msgid "The text information dialog supports the following options:" -msgstr "Tekstitietoikkuna tarjoaa seuraavat valitsimet:" - -#: C/zenity.xml:1151(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Määrittää tiedoston, joka ladataan tekstitietoikkunaan." - -#: C/zenity.xml:1158(para) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Sallii näytettävän tekstin muokkaamisen. Muokattu teksti palautetaan " -"vakiotulosteeseen kun ikkuna suljetaan." - -#: C/zenity.xml:1166(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Valitse tiedosto\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"Tiedostoa ei valittu.\";;\n" -" -1)\n" -" echo \"Tiedostoa ei valittu.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:1164(para) -msgid "" -"The following example script shows how to create a text information dialog: " -"" -msgstr "" -"Seuraava esimerkkiskripti näyttää kuinka luodaan tekstitietoikkuna: " -"" - -#: C/zenity.xml:1188(title) -msgid "Text Information Dialog Example" -msgstr "Esimerkki tekstilaatikkoikkunasta" - -#: C/zenity.xml:1195(phrase) -msgid " text information dialog example" -msgstr "Esimerkki -tekstilaatikkoikkunasta" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2. -#: C/zenity.xml:0(None) -msgid "translator-credits" -msgstr "Tommi Vainikainen , 2008." - -#~ msgid "" -#~ "When the user closes the dialog, Zenity prints " -#~ "the text produced by the dialog to standard error." -#~ msgstr "" -#~ "Kun käyttäjä sulkee ikkunan, Zenity tulostaa " -#~ "ikkunaan syötetyn tekstin vakiovirhevirtaan." - -#~ msgid "" -#~ "Use the option to create a calendar dialog. " -#~ "Zenity returns the selected date to standard " -#~ "error. If no date is specified on the command line, the dialog uses the " -#~ "current date." -#~ msgstr "" -#~ "Käytä valitsinta luomaan kalenteri-ikkuna. " -#~ "Zenity palauttaa valitun päivämäärään " -#~ "vakiovirheeseen. Mikäli päivämäärää ei määritetty komentorivillä, ikkuna " -#~ "avataan sen hetkisen päivän kohdalta." - -#~ msgid "" -#~ "Use the option to create a file " -#~ "selection dialog. Zenity returns the selected " -#~ "files or directories to standard error. The default mode of the file " -#~ "selection dialog is open." -#~ msgstr "" -#~ "Käytä valitsinta luomaan tiedoston " -#~ "valintaikkuna. Zenity palauttaa valitut " -#~ "tiedostot tai hakemistot vakiovirheeseen. Oletusmoodi tiedoston " -#~ "valintaikkunalle on avaus." - -#~ msgid "" -#~ "Use the option to create a list dialog. " -#~ "Zenity returns the entries in the first column " -#~ "of text of selected rows to standard error." -#~ msgstr "" -#~ "Käytä valitsinta luomaan luetteloikkuna. " -#~ "Zenity palauttaa valittujen rivien " -#~ "ensimmäisten sarakkeiden tiedot vakiovirheeseen." - -#~ msgid "" -#~ "Use the option to create a text entry dialog. " -#~ "Zenity returns the contents of the text entry " -#~ "to standard error." -#~ msgstr "" -#~ "Käytä valitsinta luomaan tekstinsyöttöikkuna. " -#~ "Zenity palauttaa syöttökentän sisällön " -#~ "vakiovirheeseen." - -#~ msgid "" -#~ "Allows the displayed text to be edited. The edited text is returned to " -#~ "standard error when the dialog is closed." -#~ msgstr "" -#~ "Sallii näytettävän tekstin muokkaamisen. Muokattu teksti palautetaan " -#~ "vakiovirheeseen kun ikkuna suljetaan." diff --git a/help/fi/figures/zenity-colorselection-screenshot.png b/help/fi/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index d86109b..0000000 Binary files a/help/fi/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/fi/figures/zenity-password-screenshot.png b/help/fi/figures/zenity-password-screenshot.png deleted file mode 100644 index 06a0dab..0000000 Binary files a/help/fi/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/fr/.cvsignore b/help/fr/.cvsignore deleted file mode 100644 index eee9bc4..0000000 --- a/help/fr/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -.xml2po.mo -zenity.xml diff --git a/help/fr/figures/zenity-calendar-screenshot.png b/help/fr/figures/zenity-calendar-screenshot.png deleted file mode 100644 index fc60b14..0000000 Binary files a/help/fr/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-colorselection-screenshot.png b/help/fr/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 1f32290..0000000 Binary files a/help/fr/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-entry-screenshot.png b/help/fr/figures/zenity-entry-screenshot.png deleted file mode 100644 index 76af28d..0000000 Binary files a/help/fr/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-error-screenshot.png b/help/fr/figures/zenity-error-screenshot.png deleted file mode 100644 index ba89f6d..0000000 Binary files a/help/fr/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-forms-screenshot.png b/help/fr/figures/zenity-forms-screenshot.png deleted file mode 100644 index 774e494..0000000 Binary files a/help/fr/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-information-screenshot.png b/help/fr/figures/zenity-information-screenshot.png deleted file mode 100644 index e41d25a..0000000 Binary files a/help/fr/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-list-screenshot.png b/help/fr/figures/zenity-list-screenshot.png deleted file mode 100644 index f2a2275..0000000 Binary files a/help/fr/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-password-screenshot.png b/help/fr/figures/zenity-password-screenshot.png deleted file mode 100644 index 18f49b3..0000000 Binary files a/help/fr/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-progress-screenshot.png b/help/fr/figures/zenity-progress-screenshot.png deleted file mode 100644 index e4623ec..0000000 Binary files a/help/fr/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-question-screenshot.png b/help/fr/figures/zenity-question-screenshot.png deleted file mode 100644 index 10a4101..0000000 Binary files a/help/fr/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-scale-screenshot.png b/help/fr/figures/zenity-scale-screenshot.png deleted file mode 100644 index 9bd9128..0000000 Binary files a/help/fr/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-text-screenshot.png b/help/fr/figures/zenity-text-screenshot.png deleted file mode 100644 index e04a9aa..0000000 Binary files a/help/fr/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/fr/figures/zenity-warning-screenshot.png b/help/fr/figures/zenity-warning-screenshot.png deleted file mode 100644 index 4f14bda..0000000 Binary files a/help/fr/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/fr/fr.po b/help/fr/fr.po deleted file mode 100644 index 011ad41..0000000 --- a/help/fr/fr.po +++ /dev/null @@ -1,2676 +0,0 @@ -# French translation of gnome-control-center documentation. -# Copyright (C) 2005-2020 Free Software Foundation, Inc. -# This file is distributed under the same license as the gedit documentation package. -# -# Christophe Bliard , 2005. -# Vincent Untz , 2005. -# Claude Paroz , 2009, 2020. -# Bruno Brouard , 2011. -# Mickael Albertus , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity fr\n" -"POT-Creation-Date: 2020-01-08 15:11+0000\n" -"PO-Revision-Date: 2015-09-20 16:37+0200\n" -"Last-Translator: Claude Paroz \n" -"Language-Team: GNOME French Team \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "Licence de documentation libre GNU version 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Ce document est placé sous licence <_:link-1/> ou toute version ultérieure." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "lien" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Permission vous est donnée de copier, distribuer et/ou modifier ce document " -"selon les termes de la licence de documentation libre GNU, Version 1.1 ou " -"ultérieure publiée par la Free Software Foundation sans section inaltérable, " -"sans texte de première page de couverture ni texte de dernière page de " -"couverture. Vous trouverez un exemplaire de cette licence en suivant ce <_:" -"link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Ce manuel fait partie de la collection de manuels GNOME 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 " -"exemplaire de la licence au document, comme indiqué dans la section 6 de " -"celle-ci." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"La plupart des noms utilisés par les entreprises pour distinguer leurs " -"produits et services sont des marques déposées. Lorsque ces noms " -"apparaissent dans la documentation GNOME et que les membres du projet de " -"Documentation GNOME sont informés de l'existence de ces marques déposées, " -"soit ces noms entiers, soit leur première lettre est en majuscule." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"LE PRÉSENT DOCUMENT ET SES VERSIONS MODIFIÉES SONT FOURNIS SELON LES TERMES " -"DE LA LICENCE DE DOCUMENTATION LIBRE GNU SACHANT QUE :" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"LE PRÉSENT DOCUMENT EST FOURNI « TEL QUEL », SANS AUCUNE GARANTIE, EXPRESSE " -"OU IMPLICITE, Y COMPRIS, ET SANS LIMITATION, LES GARANTIES DE " -"MARCHANDABILITÉ, D'ADÉQUATION À UN OBJECTIF PARTICULIER OU DE NON INFRACTION " -"DU DOCUMENT OU DE SA VERSION MODIFIÉE. L'UTILISATEUR ASSUME TOUT RISQUE " -"RELATIF À LA QUALITÉ, À LA PERTINENCE ET À LA PERFORMANCE DU DOCUMENT OU DE " -"SA VERSION DE MISE À JOUR. SI LE DOCUMENT OU SA VERSION MODIFIÉE S'AVÉRAIT " -"DÉFECTUEUSE, L'UTILISATEUR (ET NON LE RÉDACTEUR INITIAL, L'AUTEUR, NI TOUT " -"AUTRE PARTICIPANT) ENDOSSERA LES COÛTS DE TOUTE INTERVENTION, RÉPARATION OU " -"CORRECTION NÉCESSAIRE. CETTE DÉNÉGATION DE RESPONSABILITÉ CONSTITUE UNE " -"PARTIE ESSENTIELLE DE CETTE LICENCE. AUCUNE UTILISATION DE CE DOCUMENT OU DE " -"SA VERSION MODIFIÉE N'EST AUTORISÉE AUX TERMES DU PRÉSENT ACCORD, EXCEPTÉ " -"SOUS CETTE DÉNÉGATION DE RESPONSABILITÉ ;" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"EN AUCUNE CIRCONSTANCE ET SOUS AUCUNE INTERPRÉTATION DE LA LOI, QU'IL " -"S'AGISSE D'UN DÉLIT CIVIL (Y COMPRIS LA NÉGLIGENCE), CONTRACTUEL OU AUTRE, " -"L'AUTEUR, LE RÉDACTEUR INITIAL, TOUT PARTICIPANT OU TOUT DISTRIBUTEUR DE CE " -"DOCUMENT OU DE SA VERSION MODIFIÉE, OU TOUT FOURNISSEUR DE L'UNE DE CES " -"PARTIES NE POURRA ÊTRE TENU RESPONSABLE À L'ÉGARD DE QUICONQUE POUR TOUT " -"DOMMAGE DIRECT, INDIRECT, PARTICULIER, OU ACCIDENTEL DE TOUT TYPE Y COMPRIS, " -"SANS LIMITATION, LES DOMMAGES LIÉS À LA PERTE DE CLIENTÈLE, À UN ARRÊT DE " -"TRAVAIL, À UNE DÉFAILLANCE OU UN MAUVAIS FONCTIONNEMENT INFORMATIQUE, OU À " -"TOUT AUTRE DOMMAGE OU PERTE LIÉE À L'UTILISATION DU DOCUMENT ET DE SES " -"VERSIONS MODIFIÉES, MÊME SI LADITE PARTIE A ÉTÉ INFORMÉE DE L'ÉVENTUALITÉ DE " -"TELS DOMMAGES." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Christophe Bliard , 2005\n" -"Vincent Untz , 2005\n" -"Claude Paroz , 2009, 2020\n" -"Bruno Brouard , 2011\n" -"Mickael Albertus , 2012" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Utiliser l'option --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Boîte de dialogue de calendrier" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"L'option --calendar crée une boîte de dialogue de calendrier. " -"Zenity retourne la date sélectionnée sur le flux de sortie " -"standard. Si aucune date n'est indiquée en ligne de commande, la boîte de " -"dialogue utilise la date actuelle." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Options de la boîte de dialogue de calendrier :" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=texte" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Spécifier le texte affiché dans la boîte de dialogue de calendrier." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=jour" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Spécifier le jour sélectionné dans la boîte de dialogue de calendrier. " -"jour doit être un nombre compris entre 1 et 31 inclus." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=mois" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Spécifier le mois sélectionné dans la boîte de dialogue de calendrier. " -"mois doit être un nombre compris entre 1 et 12 inclus." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=année" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "" -"Spécifier l'année sélectionnée dans la boîte de dialogue de calendrier." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Spécifier sous quel format la boîte de dialogue de calendrier retourne la " -"date sélectionnée. Le format par défaut dépend de votre localisation. " -"format doit être un format que la fonction strftime " -"accepte, par exemple %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"calendrier :" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Choisissez une date\" \\\n" -"--text=\"Cliquez sur une date pour la sélectionner.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Aucune date sélectionnée\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Exemple de boîte de dialogue de calendrier" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Exemple de boîte de dialogue de calendrier Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Utiliser l'option --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Boîte de dialogue de sélection de couleur" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Utilisez l'option --color-selection pour créer une boîte de " -"dialogue de sélection de couleur." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Options de la boîte de dialogue de sélection de couleur :" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VALEUR" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Définir la couleur initiale (ex. : #FF0000)." - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Afficher la palette." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"sélection de couleur :" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Vous avez sélectionné $COLOR.\";;\n" -" 1)\n" -" echo \"Aucune couleur sélectionnée.\";;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Exemple de boîte de dialogue de sélection de couleur" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Exemple de boîte de dialogue de sélection de couleur Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Utiliser l'option --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Boîte de dialogue de saisie" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"L'option --entry crée une boîte de dialogue de saisie. " -"Zenity retourne le texte saisi sur le flux de sortie standard." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Options de la boîte de dialogue de saisie :" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Spécifier le texte affiché dans la boîte de dialogue de saisie." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=texte" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Spécifier le texte affiché dans le champ de saisie de la boîte de dialogue." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Cacher le texte dans le champ de saisie de la boîte de dialogue." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"saisie :" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Ajout d'un nouveau profil\" \\\n" -"--text=\"Saisissez le nom du nouveau profil :\" \\\n" -"--entry-text \"NouveauProfil\"\n" -" then echo $?\n" -" else echo \"Pas de nom saisi\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Exemple de boîte de dialogue de saisie" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Exemple de boîte de dialogue de saisie Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Utiliser l'option --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Boîte de dialogue d'erreur" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "" -"Utilisez l'option --error pour créer une boîte de dialogue " -"d'erreur." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue " -"d'erreur :" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Impossible de trouver /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Exemple de boîte de dialogue d'erreur" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Exemple de boîte de dialogue d'erreur Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Utiliser l'option --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Boîte de dialogue de sélection de fichiers" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"L'option --file-selection crée une boîte de dialogue de sélection " -"de fichiers. Zenity retourne les fichiers ou les dossiers " -"sélectionnés sur le flux de sortie standard. Par défaut, la boîte de " -"dialogue de sélection de fichiers est en mode ouverture." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Options de la boîte de dialogue de sélection de fichiers :" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=nomdefichier" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Spécifier le fichier ou le dossier sélectionné au premier affichage de la " -"boîte de dialogue de sélection de fichiers." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Permettre la sélection de plusieurs fichiers." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Permettre uniquement la sélection de dossiers." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "" -"Mettre la boîte de dialogue de sélection de fichiers en mode sauvegarde." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=séparateur" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Spécifier le texte utilisé comme séparateur pour diviser la liste des noms " -"de fichiers retournée." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"sélection de fichiers :" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Sélectionnez un fichier\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" est sélectionné.\";;\n" -" 1)\n" -" echo \"Aucun fichier sélectionné.\";;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Exemple de boîte de dialogue de sélection de fichiers" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "" -"Exemple de boîte de dialogue de sélection de fichiers Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Utiliser l'option --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Boîte de dialogue de formulaire" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"Utilisez l'option --forms pour créer une boîte de dialogue de " -"formulaire." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Options de la boîte de dialogue de formulaire :" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=NomDeChamp" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Ajouter une nouvelle entrée dans la boîte de dialogue de formulaire." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=NomDeChamp" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Ajouter une nouvelle entrée de mot de passe dans la boîte de dialogue de " -"formulaire (texte masqué)." - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=NomDeChamp" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Ajouter un nouveau calendrier dans la boîte de dialogue de formulaire." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXTE" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Définir le texte de la boîte de dialogue." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SÉPARATEUR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "" -"Définir le caractère de séparation pour la sortie (par défaut : « | »)." - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=MOTIF" - -# Bruno : bug PATTERN instead of format ! -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Spécifier le format de la date retournée. Le format par défaut dépend de " -"votre localisation. Le motif doit être un format que la fonction " -"strftime accepte, par exemple %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"formulaire :" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Ajout d'un ami\" \\\n" -"\t--text=\"Saisissez les informations concernant votre ami.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Prénom\" \\\n" -"\t--add-entry=\"Nom\" \\\n" -"\t--add-entry=\"Courriel\" \\\n" -"\t--add-calendar=\"Anniversaire\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Ami ajouté.\";;\n" -" 1)\n" -" echo \"Aucun ami ajouté.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Exemple de boîte de dialogue de formulaire" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Exemple de boîte de dialogue de formulaire Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "L'équipe de documentation de Sun Java Desktop System" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manuel de Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Boîtes de dialogue" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Utiliser l'option --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Boîte de dialogue d'information" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"Utilisez l'option --info pour créer une boîte de dialogue " -"d'information." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue " -"d'information :" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -" --text=\"Fusion effectuée. 3 fichiers sur 10 mis à jour.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Exemple de boîte de dialogue d'information" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Exemple de boîte de dialogue d'information Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity vous permet de créer divers types de boîte de dialogue " - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introduction" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Vous trouverez ci-dessous les différents types de boîte de dialogue que " -"Zenity peut créer :" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Calendrier" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Sélection de fichiers" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formulaires" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Liste" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Icône de notification" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Message" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Erreur" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Information" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Question" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Avertissement" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Saisie de mot de passe" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Barre de progression" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Saisie de texte" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Texte d'information" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Glissière" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Sélecteur de couleur" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Utiliser l'option --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Boîte de dialogue de liste" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"L'option --list crée une boîte de dialogue de liste. Zenity retourne les entrées de la première colonne de texte des lignes " -"sélectionnées sur le flux de sortie standard." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Spécifiez les données de la boîte de dialogue colonne par colonne, ligne par " -"ligne. Ces données peuvent être transmises par le flux d'entrée standard. " -"Utilisez un retour chariot pour séparer chaque ligne de données." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Si vous utilisez les options --checklist ou --radiolist, chaque ligne doit commencer par « TRUE » ou « FALSE »." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Options de la boîte de dialogue de liste :" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=colonne" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Spécifier le titre de colonne affiché dans la boîte de dialogue de liste. " -"Vous devez utiliser une option --column pour chaque colonne que " -"vous voulez afficher dans la boîte de dialogue." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Utiliser des cases à cocher pour la première colonne de la liste." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Utiliser des boutons radio pour la première colonne de la liste." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Permettre l'édition des éléments affichés." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Spécifier le texte utilisé comme séparateur pour diviser la liste des " -"entrées sélectionnées que la boîte de dialogue retourne." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=colonne" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Spécifier de quelle colonne afficher le contenu après sélection. La colonne " -"par défaut est « 1 ». « ALL » peut être utilisé pour afficher le contenu de " -"toutes les colonnes de la liste." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"liste :" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choisissez les bogues à afficher\" \\\n" -" --column=\"N° de bogue\" --column=\"Gravité\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView plante lors de sélections multiples\" \\\n" -" 293823 Grave \"Le dictionnaire GNOME ne prend pas de proxy en charge\" \\\n" -" 393823 Critique \"L'édition de menu ne fonctionne pas avec GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Exemple de boîte de dialogue de liste" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Exemple de boîte de dialogue de liste Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Erreur, Informations, " -"Question, Avertissement" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Boîte de dialogue de message" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Pour chaque type, utilisez l'option --text pour spécifier le " -"texte affiché dans la boîte de dialogue." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Utiliser l'option --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Icône de notification" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Utilisez l'option --notification pour créer une icône de " -"notification." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Spécifier le texte affiché dans la zone de notification." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: « texte », message: « texte », tooltip: « texte », visible: « texte »," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Attend une commande sur l'entrée standard. Au moins une commande doit être " -"précisée. Les commandes sont séparées par des virgules. Une commande doit " -"être suivie d'un double-point et d'une valeur." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"La commande icon accepte aussi quatre valeurs spéciales de noms " -"d'icônes qui sont error (erreur), info, question et warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"Le script d'exemple suivant montre comment créer une icône de notification :" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Mise à jour du système nécessaire !\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Exemple d'icône de notification" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Exemple d'icône de notification Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Le script d'exemple suivant montre comment créer une icône de notification " -"avec --listen :" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: ceci est le texte du message\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Exemple d'icône de notification avec --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" -"Exemple d'icône de notification Zenity avec --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Utiliser l'option --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Boîte de dialogue de saisie de mot de passe" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"L'option --password crée une boîte de dialogue de saisie de mot " -"de passe." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Options de la boîte de dialogue de saisie de mot de passe :" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Afficher le champ Nom d'utilisateur." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"saisie de mot de passe :" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nom d'utilisateur : `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Mot de passe : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Arrêt de la connexion.\";;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Exemple de boîte de dialogue de saisie de mot de passe" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "" -"Exemple de boîte de dialogue de saisie de mot de passe Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Utiliser l'option --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Boîte de dialogue de barre de progression" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"L'option --progress crée une boîte de dialogue de barre de " -"progression." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity lit les données à partir de l'entrée standard, ligne par " -"ligne. Si une ligne commence par '#', le texte est mis à jour avec le texte " -"de cette ligne. Si une ligne contient seulement un nombre, le pourcentage " -"est mis à jour avec ce nombre." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Options de la boîte de dialogue de barre de progression :" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "" -"Spécifier le texte affiché dans la boîte de dialogue de barre de progression." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=pourcentage" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Spécifier le pourcentage initial réglé dans la boîte de dialogue de barre de " -"progression." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "" -"Fermer la boîte de dialogue quand la barre de progression atteint 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Laisser la barre de progression pulser jusqu'à ce qu'un caractère EOF soit " -"lu sur l'entrée standard." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"barre de progression :" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Mise à jour des journaux de mail\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Remise à zéro des paramètres\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Cette ligne est ignorée\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Redémarrage du système\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Mise à jour des journaux système\" \\\n" -" --text=\"Analyse des journaux de mail...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Mise à jour annulée.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Exemple de boîte de dialogue de barre de progression" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Exemple de boîte de dialogue de barre de progression Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Utiliser l'option --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Boîte de dialogue de question" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"Utilisez l'option --question pour créer une boîte de dialogue de " -"question." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"question :" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Voulez-vous vraiment continuer ?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Exemple de boîte de dialogue de question" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Exemple de boîte de dialogue de question Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Utiliser l'option --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Boîte de dialogue de glissière" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "" -"Utilisez l'option --scale pour créer une boîte de dialogue de " -"glissière." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Options de la boîte de dialogue de glissière :" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Définir le texte du dialogue (par défaut : « Ajustez la valeur de la " -"glissière »)." - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VALEUR" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Définir la valeur initiale (par défaut : 0). Vous devez spécifier une valeur " -"comprise entre les valeurs minimale et maximale." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VALEUR" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Définir la valeur minimale (par défaut : 0)." - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VALEUR" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Définir la valeur maximale (par défaut : 100)." - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VALEUR" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Définir le pas (par défaut : 1)." - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "" -"Afficher la valeur sur la sortie standard, à chaque fois qu'elle change." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Masquer la valeur dans la boîte de dialogue." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"glissière :" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Sélectionnez la transparence de la fenêtre.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Vous avez choisi $VALUE%.\";;\n" -" 1)\n" -" echo \"Aucune valeur sélectionnée.\";;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Exemple de boîte de dialogue de glissière" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Exemple de boîte de dialogue de glissière Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Utiliser l'option --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Boîte de dialogue de texte d'information" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"L'option --text-info crée une boîte de dialogue de texte " -"d'information." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Options de la boîte de dialogue de texte d'information :" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" -"Spécifier un fichier texte à charger dans la boîte de dialogue de texte " -"d'information." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Permettre l'édition du texte affiché. Le texte édité est retourné sur le " -"flux de sortie standard à la fermeture de la boîte de dialogue." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=POLICE" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Spécifier la police du texte." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXTE" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Activer une case à cocher du style « J'ai lu et j'accepte les termes »." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Activer la prise en charge du html." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Définir un URL au lieu d'un fichier. Ne fonctionne qu'avec l'option --html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue de " -"texte d'information :" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Vous devez déplacer le fichier « COPYING » dans le même dossier que ce script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licence\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"J'ai lu et j'accepte les termes.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Démarrage de l'installation !\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Arrêt de l'installation !\"\n" -"\t;;\n" -" -1)\n" -" echo \"Une erreur inattendue est survenue.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Exemple de boîte de dialogue de texte d'information" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Exemple de boîte de dialogue de texte d'information Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Vous pouvez utiliser Zenity pour créer des boîtes de dialogue " -"simples avec lesquels l'utilisateur interagit graphiquement." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Utilisation" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Quand vous écrivez des scripts, vous pouvez utiliser Zenity pour " -"créer des boîtes de dialogue simples avec lesquels l'utilisateur interagit " -"graphiquement :" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Pour obtenir des informations de la part de l'utilisateur. Par exemple en " -"demandant de choisir une date dans une boîte de dialogue de calendrier, ou " -"en demandant de sélectionner un fichier dans une boîte de dialogue de " -"sélection de fichiers." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Pour donner des informations à l'utilisateur. Par exemple en utilisant une " -"boîte de dialogue de barre de progression pour indiquer l'avancement d'une " -"opération, ou en utilisant une boîte de dialogue d'avertissement pour " -"alerter l'utilisateur." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Quand l'utilisateur ferme la boîte de dialogue, Zenity affiche le " -"texte produit sur le flux de sortie standard." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Quand vous écrivez des commandes Zenity, assurez-vous de bien " -"placer des guillemets autour de chaque argument." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Par exemple, utilisez :" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Planning des vacances\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "N'utilisez pas :" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Planning des vacances" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" -"Si vous n'utilisez pas les guillemets, vous risquez d'obtenir des résultats " -"inattendus." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Touches d'accès" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Une touche d'accès est une touche permettant d'effectuer une action au " -"clavier plutôt qu'en utilisant la souris. Une touche d'accès est identifiée " -"avec une lettre soulignée dans les entrées de menu ou de boîtes de dialogue." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Certaines boîtes de dialogue de Zenity permettent l'utilisation " -"de touches d'accès. Pour indiquer la lettre à utiliser comme touche d'accès, " -"placez un souligné « _ » avant cette lettre dans le texte de la boîte de " -"dialogue. L'exemple suivant montre comment utiliser la lettre 'C' comme " -"touche d'accès :" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Choisissez un nom\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Codes de sortie" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity retourne les codes de sortie suivants :" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Code de sortie" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Description" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"L'utilisateur a appuyé sur OK ou sur Fermer." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"L'utilisateur a soit appuyé sur le bouton Annuler, soit fermé la boîte de dialogue." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Une erreur inattendue s'est produite." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "La boîte de dialogue a été fermée car le délai d'affichage a expiré." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Options générales" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "" -"Toutes les boîtes de dialogue Zenity supportent les options " -"générales suivantes :" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=titre" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Indique le titre d'une boîte de dialogue." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=chemin_icone" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Indique l'icône affichée dans le cadre de la boîte de dialogue. Quatre " -"icônes prédéfinies sont également disponibles en utilisant l'un des mots-" -"clés suivants : 'info', 'warning', 'question' et 'error'." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=largeur" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Indique la largeur de la boîte de dialogue." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=hauteur" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Indique la hauteur de la boîte de dialogue." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=délai" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Indique en secondes le délai après lequel la boîte de dialogue est fermée." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Options d'aide" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity fournit les options d'aide suivantes :" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Afficher un court texte d'aide." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Afficher le texte d'aide complet pour toutes les boîtes de dialogue." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Afficher l'aide pour les options générales." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue de calendrier." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Afficher l'aide pour les options de la boîte de dialogue de saisie." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Afficher l'aide pour les options de la boîte de dialogue d'erreur." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue d'information." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue de sélection de " -"fichier." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Afficher l'aide pour les options de la boîte de dialogue de liste." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Afficher l'aide pour les options de l'icône de notification." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue de barre de " -"progression." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Afficher l'aide pour les options de la boîte de dialogue de question." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue d'avertissement." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "" -"Afficher l'aide pour les options de la boîte de dialogue de texte " -"d'information." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Afficher l'aide pour les options diverses." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Afficher l'aide pour les options GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Options diverses" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity fournit également les options suivantes :" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Afficher la boîte de dialogue À propos de Zenity, qui contient " -"des informations sur la version de Zenity, des informations sur " -"la licence, et des informations sur les développeurs." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Afficher le numéro de version de Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Options GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity supporte les options GTK+ standards. Pour plus " -"d'informations à propos des options GTK+, lancez la commande zenity --" -"help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Variables d'environnement" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalement, Zenity détecte la fenêtre de terminal à partir de " -"laquelle il a été lancé et demeure au-dessus de cette fenêtre. Ce " -"comportement peut être désactivé en déconfigurant la variable " -"d'environnement WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Utiliser l'option --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Boîte de dialogue d'avertissement" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"Utilisez l'option --warning pour créer une boîte de dialogue " -"d'avertissement." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"Le script d'exemple suivant montre comment créer une boîte de dialogue " -"d'avertissement :" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Débranchez le câble pour éviter tout choc électrique.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Exemple de boîte de dialogue d'avertissement" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Exemple de boîte de dialogue d'avertissement Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" diff --git a/help/gl/gl.po b/help/gl/gl.po deleted file mode 100644 index 7e81c86..0000000 --- a/help/gl/gl.po +++ /dev/null @@ -1,2652 +0,0 @@ -# Galician translation for zenity. -# Copyright (C) 2011 zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# Fran Dieguez , 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2019-09-23 15:28+0000\n" -"PO-Revision-Date: 2019-12-27 17:05+0100\n" -"Last-Translator: Fran Diéguez \n" -"Language-Team: gnome-l10n-gl@gnome.org\n" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2.4\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -#, fuzzy -#| msgid "GNU Free Documentation License (GFDL)" -msgid "GNU Free Documentation License Version 1.1" -msgstr "Licenza de Documentación libre de GNU (GFDL)" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "ligazón" - -#. (itstool) path: license/p -#: C/legal.xml:8 -#, fuzzy -#| msgid "" -#| "Permission is granted to copy, distribute and/or modify this document " -#| "under the terms of the GNU Free Documentation License (GFDL), Version 1.1 " -#| "or any later version published by the Free Software Foundation with no " -#| "Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can " -#| "find a copy of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS " -#| "distributed with this manual." -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Pode copiar, distribuír e modificar este documento baixo os termos da Licenza " -"de Documentación Libre GNU (GFDL) na súa versión 1.1 ou posterior, publicada " -"pola Free Software Foundation, sen seccións invariantes e sen textos de " -"portada ou de contraportada. Pode atopar unha copia da GFDL en <_:ulink-1/> " -"ou no ficheiro COPYING-DOCS distribuído xunto con este manual." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"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 é parte da colección de manuais de GNOME distribuidos baixo a " -"licenza GFDL. Se quere distribuír este manual de forma separada da colección " -"pode facelo engadindo unha copia da licenza xunto ao manual, como se describe " -"na sección 6 da licenza." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Moitos dos nomes usados polas empresas para distinguir os seus produtos e " -"servizos son declaradas como marcas rexistradas. Onde esos nomes aparecen na " -"calquera documentación de GNOME, e os membros do Proxecto de documentación de " -"GNOME fanse saber desas marcas rexistradas, polo tanto os nomes están en " -"maiúsculas ou a letra inicial en maiúsculas." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK " -"AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED " -"VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION " -"PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY " -"CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR " -"CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN 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 "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK " -"AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED " -"VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION " -"PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY " -"CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR " -"CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS " -"LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS " -"AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR " -"ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY " -"CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK " -"STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR " -"LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR " -"ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY " -"CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK " -"STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR " -"LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "Fran Dieguez , 2011-2012." - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Use a opción --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Diálogo de calendario" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Use a opción para crear un diálogo de calendario. " -"Zenity devolve a data seleccionada á entrada estándar. Se non se selecciona " -"ningunha data na liña de ordes, o diálogo use a data actual." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "O diálogo de calendario admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=texto" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Especifica o texto que se mostra no diálogo de calendario." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=día" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Especifica o día que se selecciona no diálogo do calendario.«Día» debe ser un " -"número entre 1 e 31 ambos incluídos." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=mes" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Especifica o mes que se selecciona no diálogo do calendario. «Mes» debe ser " -"un número entre 1 e 12 ambos incluídos." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=ano" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Especifica o ano que está seleccionado no diálogo de calendario." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=formato" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a format " -"that is acceptable to the strftime function, for example %A " -"%d/%m/%y." -msgstr "" -"Especifica o formato que se devolve desde o diálogo de calendario despois da " -"selección de data. O formato predeterminado depende da súa configuración " -"rexional. O formato debe ser un formato que acepte a función strftime, por exemplo%A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de calendario:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"SSeleccione unha data\" \\\n" -"--text=\"Prema sobre unha data para seleccionala.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Non seleccinou ningunha data\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Diálogo de calendario de exemplo" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Diálogo de calendario de exemplo de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-calendar-screenshot.png' " -#| "md5='92bf5317d799665acf0d4005cee184c2'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='92bf5317d799665acf0d4005cee184c2'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Use a opción --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Diálogo de selección de cor" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Use a opción --color-selection para crear un diálogo de selección " -"de cor." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "O diálogo de selección de cor admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VALOR" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Estableza o color inicial (ex: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Mostrar a paleta." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de selección de cor:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Seleccionou $COLOR.\";;\n" -" 1)\n" -" echo \"Non seleccionou ningún cor.\";;\n" -" -1)\n" -" echo \"Produciuse un erro non esperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Exemplo do diálogo de selección de cor" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Exemplo do diálogo de selección de cor de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-colorselection-screenshot.png' " -#| "md5='febe3f417acea789c9db628fbe44f798'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='febe3f417acea789c9db628fbe44f798'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Use opción --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Diálogo para a entrada de texto" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. Zenity returns the contents of the text entry to standard output." -msgstr "" -"Use a opción --entry para crear un diálogo de entrada de texto. " -"Zenity devolve á saída estándar o contido do texto introducido." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "O diálogo de entrada de texto admite as seguintes opcións:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Especifica o texto que se mostra no diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=texto" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Especifica o texto que se mostra no campo de entrada do diálogo de entrada de " -"texto." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Oculta o texto no campo de entrada do diálogo de entrada de texto." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de entrada de " -"texto:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Engadir un novo perfíl\" \\\n" -"--text=\"Escriba o nome do novo perfíl:\" \\\n" -"--entry-text \"NovoPerfil\"\n" -" then echo $?\n" -" else echo \"Non se escribiu ningún nome\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Exemplo de diálogo de entrada de texto" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Exemplo do diálogo de entrada de texto de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-entry-screenshot.png' " -#| "md5='bae6bf4342a66a3900deb15bde82ff42'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='bae6bf4342a66a3900deb15bde82ff42'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Use a opción --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Diálogo de erro" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Use a opción para crear un diálogo de erro." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "O seguinte script de exemplo mostra como se crea un diálogo de erro:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Non foi posíbel atopar /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Exemplo de diálogo de erro" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Exemplo de diálogo de erro de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-error-screenshot.png' " -#| "md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Use a opción --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Diálogo de selección de ficheiro" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection dialog. " -"Zenity returns the selected files or directories to standard " -"output. The default mode of the file selection dialog is open." -msgstr "" -"Use a opción para crear un diálogo de calendario. " -"Zenity devolve a data seleccionada á entrada estándar. Se non se " -"selecciona ningunha data na liña de ordes, o diálogo use a data actual." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "O diálogo de selección de ficheiros admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=nome_de_ficheiro" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection dialog " -"when the dialog is first shown." -msgstr "" -"Especifica o ficheiro ou cartafol que está seleccionado no diálogo de " -"selección de ficheiro cando o diálogo se mostra por primeira vez." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Permite a selección de múltiples nomes de ficheiro no diálogo de selección de " -"ficheiro." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" -"Permite só a selección de cartafoles no diálogo de selección de ficheiro." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Estabelece o diálogo de selección de modo no modo gardar." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=separador" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Especifica a cadea que se usará para dividir a lista de nomes de ficheiro " -"devolta." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de selección de " -"ficheiro:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Seleccione un ficheiro\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" seleccionado.\";;\n" -" 1)\n" -" echo \"Non seleccionou ningún ficheiro.\";;\n" -" -1)\n" -" echo \"Produciuse un erro non esperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Exemplo de diálogo de selección de ficheiros" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Exemplo do diálogo de selección de ficheiro de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-fileselection-screenshot.png' " -#| "md5='bbba2652577f14ab4719f55a2ff57073'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='bbba2652577f14ab4719f55a2ff57073'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Use a opción --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Diálogo de formularios" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Use a opción --forms para crear un diálogo de formularios." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "O diálogo de formularios admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=FieldName" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Engadir unha entrada nova no diálogo de formularios." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=nome_do_campo" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Engadir un contrasinal novo no diálogo de formularios. (Ocultar o texto)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=FieldName" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Engair un calendario novo no diálogo de formularios" - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXTO" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Estabeleza o texto do diálogo." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SEPARADOR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Estabelecer o caracter separador de saída. (Por omisión> |)" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=PATRÓN" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime " -"function, for example %A %d/%m/%y." -msgstr "" -"Especifica o formato que se devolve datas. O formato predeterminado depende " -"da súa configuración rexional. O formato debe ser un formato que acepte a " -"función strftime, por exemplo%A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de formularios:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Engadir amigo\" \\\n" -"\t--text=\"Escribe a información sobre o teu amigo.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Nome\" \\\n" -"\t--add-entry=\"Apelido\" \\\n" -"\t--add-entry=\"Correo electrónico\" \\\n" -"\t--add-calendar=\"Cumpreanos\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Amigo engadido.\";;\n" -" 1)\n" -" echo \"Non se engadiu ningún amigo.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Produciuse un erro non agardado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Exemplo de diálogo de formularios" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Exemplo de diálogo de formulario de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-forms-screenshot.png' " -#| "md5='c11fab02e4d51212a538ce6859799d5f'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='c11fab02e4d51212a538ce6859799d5f'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Equipo de documentación do escritorio de Sun Java Desktop System" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manual de Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Diálogos" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Use a opción --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Diálogo de información" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"Use a opción para crear un diálogo de información." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de información:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Combinación compltada. Actualizáronse 3 dos 10 ficheiros.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Exemplo de diálogo de información" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Exemplo de diálogo de información Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-information-screenshot.png' " -#| "md5='72386d53a991c46e918ee6dd22795aa6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='72386d53a991c46e918ee6dd22795aa6'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity permítelle crear os seguintes tipos de diálogos sinxelos:" - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introdución" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Zenity permítelle crear os seguintes tipos de diálogos sinxelos:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Calendario" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Seleccionador de ficheiros" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formularios" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Icona de notificación" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Mensaxe" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Erro" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Información" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Pregunta" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Advertencia" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Contrasinal" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Progreso" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Entrada de texto" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Información de texto" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Escala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Selección de cor" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Use a opción --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Diálogo de lista" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Use a opción --list para crear un diálogo de lista. Zenity devolve as entradas na primeira columna de texto das filas seleccionadas " -"á saída estándar." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, each " -"row must start with either 'TRUE' or 'FALSE'." -msgstr "" - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "O diálogo de lista admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to display " -"in the dialog." -msgstr "" - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Especifica que a primeira columna no diálogo de lista contén caixas de " -"verificación." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Especifica que a primeira columna no diálogo de lista contén caixas de opción." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "permite editar os elementos mostrados." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Especifica que cadea se usa cando o diálogo de lista devolve as entradas " -"seleccionadas." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=columna" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "O seguinte script de exemplo mostra como se crea un diálogo de lista:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Número de erro\" --column=\"Importancia\" --column=\"Descrición\" \\\n" -" 992383 Normal \"GtkTreeView ten erros cando hai múltiples seleccións\" \\\n" -" 293823 High \"GNOME Dictionary non xestiona o proxy\" \\\n" -" 393823 Critical \"A edición de menú non funciona en GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Exemplo de diálogo de lista" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Exemplo de diálogo de lista de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-list-screenshot.png' " -#| "md5='8bd9ad9c760516a966d3590b2019fa1e'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='8bd9ad9c760516a966d3590b2019fa1e'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Erro, Información, " -"Pregunta, Advertencia" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Diálogo de mensaxe" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Para cada tipo, use a opción --text para especificar o texto que " -"se mostra no diálogo." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Use a opción --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Icona de notificación" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Use a opción para crear un diálogo de " -"notificación." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Especifica o texto que se mostra na área de notificación." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de selección de " -"notificación:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, fuzzy, no-wrap -#| msgid "" -#| "\n" -#| "#!/bin/sh\n" -#| "\n" -#| "zenity --notification\\\n" -#| " --window-icon=\"info\" \\\n" -#| " --text=\"There are system updates necessary!\"\n" -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Hai actualizacións necesarias para o seu sistema\"\n" - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Exemplo de icona de notificación" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Exemplo da icona de notificación de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-notification-screenshot.png' " -#| "md5='b67bf309c6e479db8677947f1810a999'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='b67bf309c6e479db8677947f1810a999'" - -#. (itstool) path: page/p -#: C/notification.page:41 -#, fuzzy -#| msgid "The following example script shows how to create a notification icon:" -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de selección de " -"notificación:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" - -#. (itstool) path: figure/title -#: C/notification.page:50 -#, fuzzy -#| msgid "Notification Icon Example" -msgid "Notification Icon with --listen Example" -msgstr "Exemplo de icona de notificación" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -#, fuzzy -#| msgid "Zenity notification icon example" -msgid "Zenity notification with --listen example" -msgstr "Exemplo da icona de notificación de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-notification-screenshot.png' " -#| "md5='b67bf309c6e479db8677947f1810a999'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='b67bf309c6e479db8677947f1810a999'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Use a opción --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Diálogo de contrasinal" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Use a opción para crear un diálogo de contrasinal." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "O diálogo de contrasinal admite as seguintes opcións:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Mostrar o campo de nome de usuario." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de contrasinal:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nome de usuario: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Contrasinal : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Deter inicio de sesión.\";;\n" -" -1)\n" -" echo \"Produciuse un erro non esperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Exemplo de diálogo de contrasinal" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Exemplo de diálogo de entrada de contrasinal Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-password-screenshot.png' " -#| "md5='6adbeb624a307f78072593d6d1c6def6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='6adbeb624a307f78072593d6d1c6def6'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Use a opción --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Diálogo de progreso" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "Use a opción --progress para crear un diálogo de progreso." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "O diálogo de progreso admite as seguintes opcións:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Especifica o texto que se mostra no diálogo de progreso." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=porcentaxe" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Especifica o porcentaxe inicial que se estabelece no diálogo de progreso." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Pecha o diálogo de progreso cando se alcanza o 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Especifica que a barra de progreso pulse até que un caracter EOF se lee desde " -"a entrada estandar." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de progreso:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Exemplo de diálogo de progreso" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-error-screenshot.png' " -#| "md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Use a opción --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Diálogo de pregunta" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Use a opción --question para crear un diálogo de pregunta." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "O seguinte script de exemplo mostra como crear un diálogo de pregunta:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Está seguro de que quere continuar?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Exemplo do diálogo de pregunta" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Exemplo do diálogo de pregunta de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-question-screenshot.png' " -#| "md5='5889e2a57b9d1885f22977587a269610'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='5889e2a57b9d1885f22977587a269610'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Use a opción --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Diálogo de escala" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Use a opción --scale para crear un diálogo de escala." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "O diálogo de escala admite as seguintes opcións:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"EStabeleza o texto do diálogo. (Predeterminado: «Axustar o valor da escala»)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Estableza o valor mínimo. (Predeteminado: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "" - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Ocultar o valor nun diálogo." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"O seguinte script de exemplo mostra como se crea un diálogo de calendario:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Seleccionouse $VALUE%.\";;\n" -" 1)\n" -" echo \"Non se seleccionou ningún valor.\";;\n" -" -1)\n" -" echo \"Produciuse un erro non esperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Exemplo de diálogo de escala" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Exemplo do diálogo de escala de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-scale-screenshot.png' " -#| "md5='d44259a5b5b6e6ba0aceffd8501d0873'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='d44259a5b5b6e6ba0aceffd8501d0873'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Use a opción --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Diálogo para o texto de información" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "Use a opción --warning para crear un diálogo de pregunta." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "O diálogo de texto de información admite as seguintes opcións:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Especifica un ficheiro que se carga no diálogo de texto de información." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Permite que o texto mostrado sexa editado. O texto editado devólvese pola " -"saída estándar cando o diálogo se pecha." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=TIPO_DE_LETRA" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Especifica o tipo de letra do texto." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXTO" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "Activar unha casilla para usala como «Lin e acepto os termos.»" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Activar a compatibilidade de HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Configura unha URL no lugar dun ficheiro. Só funciona se usa a opción «--html»" - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de selección de " -"ficheiro:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Debe copiar o archivo \"COPYING\" no mesmo cartafol que este script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licenza\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Lin e acepto os termos.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Comenzar instalación\"\n" -"\t# seguinte paso\n" -"\t;;\n" -" 1)\n" -" echo \"Deter instalación\"\n" -"\t;;\n" -" -1)\n" -" echo \"Produciuse un error non esperado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Exemplo do diálogo de texto de información" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Exemplo do diálogo de texto de información de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-text-screenshot.png' " -#| "md5='79446b388fa6c3c3a619c8d6565b9f61'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='79446b388fa6c3c3a619c8d6565b9f61'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Pode usar Zenity para crear diálogos simples que interactúen " -"graficamente co usuario." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Uso" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Cando escriba scripts, pode usar Zenity para crear diálogos " -"simples que interactúen graficamente co usuario, como por exemplo:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, you " -"can prompt the user to select a date from a calendar dialog, or to select a " -"file from a file selection dialog." -msgstr "" -"Pode crear un diálogo para obter información do usuario. Por exemplo, pode " -"pedir ao usuario seleccionar unha data dun diálogo do calendario. ou " -"seleccionar un ficheiro dun diálogo de selección de ficheiro." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an operation, " -"or use a warning message dialog to alert the user." -msgstr "" -"Vostede pode crear un diálogo para fornecer información ao usuario. Por " -"exemplo, pode usar un diálogo de progreso para indicar o estado actual dunha " -"operación, ou usar un diálogo de advertencia para alertar ao usuario." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Cando o usuario pecha o diálogo, Zenity imprime o texto producido " -"polo diálogo á saída estándar de erro." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Cando vostede escriba ordes de Zenity, asgúrese de poñer comiñas " -"ao redor de cada argumento." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Por exemplo, use:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Calendario de vacacións\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Non use:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Calendario de vacacións" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Se non usa comi;as, pode que consiga resultados non esperados." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Combinacións de teclas" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or dialog. " -"Each access key is identified by an underlined letter on a menu or dialog " -"option." -msgstr "" -"Unha combinación de teclas permítelle realizar unha acción desde o teclado no " -"lugar de empregar o rato para elixir unha orde dun menú ou un diálogo. Cada " -"combinación de teclas identifícase por unha tecla subliñadad nunha opción do " -"menú ou dun diálogo." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify the " -"character to use as the access key, place an underscore before that character " -"in the text of the dialog. The following example shows how to specify the " -"letter 'C' as the access key:" -msgstr "" -"Algúns diálogos de Zenity admiten o uso de combinacións de teclas. " -"Para especificar o carácter que se empregará como combinación de teclas, poña " -"un guión baixo precedendo ese carácter no texto do diálogo. O seguinte " -"exemplo mostra como especificar a letra «E» como combinación de teclas:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Seleccione un nome\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Códigos de saída" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity retorna os seguintes códigos de erro:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Código de saída" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Descrición" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"O usuario premeu Aceptar ou Pechar." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"O usuario presionou Cancelar, ou usou a función " -"da xanela para pechar o diálogo." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Produciuse un erro inesperado." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "O diálogo pechouse porque o tempo de espera alcanzouse." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Opcións xerais" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "" -"Tódolos diálogos de Zenity son compatíbeis coas seguintes opcións xerais:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=título" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Especifica o título dun diálogo." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "=ruta_de_icona" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. There " -"are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Especifica a icona que se mostra no marco da xanela do diálogo. Hai 4 iconas " -"dispoñíbeis, fornecendo as palabras chave seguintes - «info», «warning», " -"«question» e «erro»." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=anchura" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Especifica o ancho dun diálogo" - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=altura" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Especifica o alto dun diálogo" - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=tempo_de_expiración" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Especifica o tempo de espera en segundos despois do cal o diálogo se pechará." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Opcións de axuda" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity fornece as seguintes opcións de axuda" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Mostra un texto de axuda abreviado." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Mostra o texto de axuda para os diálogos" - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Mostra o texto de axuda para as opcións de diálogo xerais." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo do calendario." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de erro." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de información." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Mostra o texto de axuda para as opcións do diálogo de selección de ficheiros." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de lista." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Mostra o texto de axuda para as opcións de iconas de notificación." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de progreso." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de pregunta." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Mostra o texto de axuda para as opcións do diálogo de avisos." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Mostra o texto de axuda para as opcións de diálogo de información." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Mostra axuda para opcións varias." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Mostra axuda para as opcóns de GTK+" - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Opcións varias" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity tamén fornece as seguintes opcións varias:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Mostra o diálogo Sobre Zenity, que contén información da " -"versión de Zenity, información de copyright e información do desenvolvedor." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Mostra o número de versión de Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Opcións de GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity admite as opcións GTK+ estándar. Para obter máis información sobre as " -"opcións de GTK+, execute a orde zenity -?." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Variábeis de contorno" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Xeralmente Zenity detecta a xanela do terminal desde a que se iniciou e se " -"mantén por enriba desa xanela. Ese comportamento pódese desactivar coa " -"variábel de entorno WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Use a opción --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Diálogo de advertencia" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Use a opción --warning para crear un diálogo de pregunta." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"O seguinte script de exemplo mostra como crear un diálogo de advertencia:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Desconecte o cable eléctrico para evitar un shock eléctrico.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Exemplo do diálogo de advertencia" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Exemplo do diálogo de advertencia de Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -#, fuzzy -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-warning-screenshot.png' " -#| "md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" diff --git a/help/hu/hu.po b/help/hu/hu.po deleted file mode 100644 index ad6f32e..0000000 --- a/help/hu/hu.po +++ /dev/null @@ -1,2632 +0,0 @@ -# Hungarian translation for zenity_help. -# Copyright (C) 2012, 2014, 2015, 2019. Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Gabor Kelemen , 2012, 2014. -# Balázs Úr , 2014, 2015, 2019. -msgid "" -msgstr "" -"Project-Id-Version: zenity_help master\n" -"POT-Creation-Date: 2019-09-07 13:19+0000\n" -"PO-Revision-Date: 2019-09-09 08:13+0200\n" -"Last-Translator: Balázs Úr \n" -"Language-Team: Hungarian \n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 18.12.3\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -#| msgid "GNU Free Documentation License (GFDL)" -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License 1.1-es verzió" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "Ez a mű a <_:link-1/> vagy bármely későbbi verzió szerint licencelt." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "hivatkozáson" - -#. (itstool) path: license/p -#: C/legal.xml:8 -#| msgid "" -#| "Permission is granted to copy, distribute and/or modify this document " -#| "under the terms of the GNU Free Documentation License (GFDL), Version 1.1 " -#| "or any later version published by the Free Software Foundation with no " -#| "Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You " -#| "can find a copy of the GFDL at this <_:link-1/> or in the file COPYING-" -#| "DOCS distributed with this manual." -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Jelen dokumentum szabadon másolható, terjeszthető és/vagy módosítható a GNU " -"Free Documentation License (GFDL) 1.1-es verziója vagy a Free Software " -"Foundation által kiadott ennél frissebb verziója alatt, a „Nem változtatható " -"szakaszok”, „Címlapszövegek” és a „Hátlapszövegek” kivételével. A GFDL " -"leírása ezen a <_:link-1/> érhető el." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Ez a kézikönyv része a GFDL alatt megjelenő GNOME dokumentációk " -"gyűjteményének. A kézikönyv a gyűjteménytől függetlenül szabadon " -"terjeszthető, a licenc másolatát mellékelve a 6. fejezetben leírtaknak " -"megfelelően." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"A cégek különböző, védjegy alá tartozó elnevezéseket használnak termékeik és " -"szolgáltatásuk megkülönböztetéséhez. Ahol ezek a nevek megjelennek bármelyik " -"GNOME dokumentációban és a GNOME dokumentációs projekt tagjainak tudomásuk " -"van a védjegyről, abban az esetben ezek az elnevezések teljes egészében vagy " -"kezdőbetűik nagybetűsek." - -#. (itstool) path: license/p -#: C/legal.xml:33 -#| msgid "" -#| "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE " -#| "TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER " -#| "UNDERSTANDING THAT: <_:orderedlist-1/>" -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"A DOKUMENTUM ÉS A DOKUMENTUM MÓDOSÍTOTT VERZIÓJA A GNU FREE DOCUMENTATION " -"LICENSE (GFDL) ALATT JELENIK MEG AZ ALÁBBI ÉRTELMEZÉSSEL:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"A DOKUMENTUM „JELEN ÁLLAPOTÁBAN” KERÜL KIADÁSRA MINDENFÉLE GARANCIAVÁLLALÁS " -"NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM " -"KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA, A JELEN " -"DOKUMENTUMNAK VAGY ANNAK MÓDOSÍTOTT VERZIÓJÁNAK HIBAMENTESSÉGÉRE VONATKOZÓ " -"GARANCIÁKAT. A DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT VÁLTOZATÁNAK MINŐSÉGÉBŐL ÉS " -"FELHASZNÁLHATÓSÁGÁBÓL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A " -"DOKUMENTUM BIZONYÍTOTTAN HIBÁS, A FELHASZNÁLÓNAK MAGÁNAK (NEM A DOKUMENTUM " -"ÍRÓJÁNAK, KIADÓJÁNAK VAGY BÁRMELY KÖZREMŰKÖDŐNEK) KELL VÁLLALNIA A " -"JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. A JELEN GARANCIAELUTASÍTÁS A JELEN " -"LICENC LÉNYEGI RÉSZE. A LEFEDETT DOKUMENTUM VAGY ANNAK MÓDOSÍTOTT " -"VERZIÓJÁNAK HASZNÁLATA CSAK A JELEN ELUTASÍTÁSSAL EGYÜTT ENGEDÉLYEZETT, ÉS" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"SEMMILYEN KÖRÜLMÉNYEK KÖZÖTT ÉS SEMMILYEN JOGI MEGFONTOLÁSBÓL, LEGYEN AZ " -"MAGÁNJOGI VÉTKES CSELEKMÉNY (BELEÉRTVE A HANYAGSÁGOT), SZERZŐDÉS VAGY " -"BÁRMELY MÁS DOLOG, NEM FELELŐS ÖN, A LEFEDETT KÓD ELSŐ FEJLESZTŐJE ÉS TÖBBI " -"KÖZREMŰKÖDŐJE VAGY EZEK BÁRMELY SZÁLLÍTÓJA SEMMILYEN MÁS SZEMÉLY FELÉ " -"SEMMILYEN FAJTA KÖZVETLEN, SPECIÁLIS, VÉLETLEN VAGY KÖVETKEZMÉNYES KÁRÉRT, " -"BELEÉRTVE DE NEM KIZÁRÓLAG A HÍRNÉV ELVESZTÉSÉBŐL, MUNKA LEÁLLÁSÁBÓL, " -"SZÁMÍTÓGÉP MEGHIBÁSODÁSÁBÓL VAGY HELYTELEN MŰKÖDÉSÉBŐL SZÁRMAZÓ, VAGY " -"BÁRMELY EGYÉB KERESKEDELMI KÁROKAT ÉS VESZTESÉGEKET, MÉG AKKOR IS, HA AZ " -"ILYEN FÉL INFORMÁLVA LETT AZ ILYEN KÁROK ELŐFORDULÁSÁNAK LEHETŐSÉGÉRŐL. A " -"FELELŐSSÉG EZEN KORLÁTOZÁSA NEM ALKALMAZHATÓ ABBAN AZ ESETBEN, HA HALÁL VAGY " -"SZEMÉLYI SÉRÜLÉS TÖRTÉNT A FÉL HANYAGSÁGÁBÓL KIFOLYÓLAG, OLYAN MÉRTÉKBEN, " -"AMENNYIRE AZ ALKALMAZHATÓ TÖRVÉNYEK MEGTILTJÁK AZ ILYEN KORLÁTOZÁSOKAT." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "Kelemen Gábor , 2012, 2014." - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "A --calendar kapcsoló használata." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Naptár ablak" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"A --calendar kapcsoló használatával naptár ablakot hozhat létre. " -"A Zenity a kiválasztott dátumot a szabványos kimenetre írja. Ha nincs " -"megadva dátum a parancssorban, akkor az ablak az aktuális dátumot használja." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "A naptár ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=szöveg" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "A naptár ablakban megjelenítendő szöveg megadása." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=nap" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Megadja a naptár ablakban kiválasztott napot. A napnak 1 és 31 között kell " -"lennie, ezeket is beleértve." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=hónap" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Megadja a naptár ablakban kiválasztott hónapot. A hónapnak 1 és 12 között " -"kell lennie, ezeket is beleértve." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=év" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Megadja a naptár ablakban kiválasztott évet." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=formátum" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"A naptár ablakból a dátum választása után visszaadott dátum formátumát adja " -"meg. Az alapértelmezett formátum függ a területi beállítástól. A formátumnak " -"az strftime függvény által elfogadhatónak kell lennie, például: " -"%A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "A következő példa parancsfájl bemutatja a naptár ablak létrehozását:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Válasszon egy dátumot\" \\\n" -"--text=\"Kattintson egy dátumra annak kiválasztásához.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Nincs kiválasztva dátum\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Példa naptár ablak" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Zenity példa naptár ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "A --color-selection kapcsoló használata." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Színválasztó ablak" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"A --color-selection kapcsoló használatával színválasztó ablakot " -"hozhat létre." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "A színválasztó ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=érték" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "A kiinduló szín beállítása (például: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "A paletta megjelenítése." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a színválasztó ablak létrehozását:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Ezt a színt választotta: $COLOR.\";;\n" -" 1)\n" -" echo \"Nem választott színt.\";;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Példa színválasztó ablak" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Zenity példa színválasztó ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "A --entry kapcsoló használata." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Szövegbeviteli ablak" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"A --entry kapcsoló használatával szövegbeviteli ablakot hozhat " -"létre. A Zenity a szövegbeviteli mező tartalmát kiírja a " -"szabványos kimenetre." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "A szövegbeviteli ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "A szövegbeviteli ablakban megjelenítendő szöveg megadása." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=szöveg" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"A szövegbeviteli ablak beviteli mezőjében megjelenítendő szöveg megadása." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "A szöveg elrejtése a szövegbeviteli ablak beviteli mezőjében." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a szövegbeviteli ablak létrehozását:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Új profil hozzáadása\" \\\n" -"--text=\"Adja meg az új profil nevét:\" \\\n" -"--entry-text \"ÚjProfil\"\n" -" then echo $?\n" -" else echo \"Nem adott meg nevet\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Példa szövegbeviteli ablak" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Zenity példa szövegbeviteli ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "A --error kapcsoló használata." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Hiba ablak" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "A --error kapcsolóval hiba ablakot hozhat létre. " - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "A következő példa parancsfájl bemutatja a hiba ablak létrehozását:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"A /var/log/syslog nem található.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Példa hiba ablak" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Zenity példa hiba ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "A --file-selection kapcsoló használata." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Fájlválasztó ablak" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"A --file-selection kapcsolóval fájlválasztó ablakot hozhat létre. " -"A Zenity a kiválasztott fájlokat vagy könyvtárakat a szabványos " -"kimenetre írja ki. A fájlválasztó ablak alapértelmezett módja a megnyitás." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "A fájlválasztó ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=fájlnév" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Megadja a fájlválasztó ablak első megjelenítésekor az ablakban megjelenő " -"fájlt vagy könyvtárat." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Lehetővé teszi több fájlnév kiválasztását a fájlválasztó ablakban." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Csak könyvtárak kiválasztását teszi lehetővé a fájlválasztó ablakban." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "A fájlválasztó ablak mentés módba állítása." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=elválasztó" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Megadja a visszaadott fájlnevek listájának elválasztására használt " -"karakterláncot." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a fájlválasztó ablak létrehozását:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Válasszon egy fájlt\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" kiválasztva.\";;\n" -" 1)\n" -" echo \"Nincs fájl kiválasztva.\";;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Példa fájlválasztó ablak" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Zenity példa fájlválasztó ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "A --forms kapcsoló használata." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Űrlapok ablak" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"A --forms kapcsoló használatával űrlapok ablakot hozhat létre." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Az űrlapok ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=Mezőnév" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Új bejegyzés hozzáadása az Űrlapok ablakhoz." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=Mezőnév" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Új jelszóbeviteli mező hozzáadása az Űrlapok ablakhoz. (szöveg elrejtése)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=Mezőnév" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Új naptár hozzáadása az Űrlapok ablakhoz." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=SZÖVEG" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Ablak szövegének beállítása." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=elválasztó" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "A kimenet elválasztókarakterének beállítása. (Alapértelmezett: | )" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=Minta" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"A visszaadott dátum formátumának beállítása. Az alapértelmezett formátum " -"függ a területi beállítástól. A formátumnak az strftime függvény " -"által elfogadhatónak kell lennie, például: %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "A következő példa parancsfájl bemutatja az űrlapok ablak létrehozását:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Ismerős felvétele\" \\\n" -"\t--text=\"Adja meg az ismerősével kapcsolatos információkat.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Utónév\" \\\n" -"\t--add-entry=\"Vezetéknév\" \\\n" -"\t--add-entry=\"E-mail cím\" \\\n" -"\t--add-calendar=\"Születésnap\" >> cím.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Ismerős felvéve.\";;\n" -" 1)\n" -" echo \"Az ismerős nem lett felvéve.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Példa űrlapok ablak" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Zenity példa űrlapok ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java Desktop System Documentation Team" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Zenity kézikönyv" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Párbeszédablakok" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "A --info kapcsoló használata." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Információs ablak" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "" -"A --info kapcsoló használatával egy információs ablak hozható " -"létre." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja az információs ablak létrehozását:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Az összefésülés kész. 10 fájlból 3 frissítve.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Példa információs ablak" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Zenity példa információs ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"A Zenity lehetővé teszi különböző egyszerű párbeszédablakok " -"létrehozását." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Bevezetés" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"A Zenity lehetővé teszi a következő típusú egyszerű " -"párbeszédablakok létrehozását:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Naptár" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Fájlválasztó" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Űrlapok" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Értesítési ikon" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Üzenet" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Hiba" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Információ" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Kérdés" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Figyelmeztetés" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Jelszóbeviteli mező" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Folyamatjelző" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Szövegmező" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Szöveges információk" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Méretezés" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Színválasztó" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "A --list kapcsoló használata." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Lista ablak" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"A --list kapcsoló használatával lista ablakot hozhat létre. A " -"Zenity a kijelölt sorok első szövegoszlopának bejegyzéseit kiírja " -"a szabványos kimenetre." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Az ablak adatait oszlopról oszlopra, sorról sorra kell megadni. Az ablak " -"adatai megadhatók a szabványos bemeneten keresztül. Minden bejegyzést új sor " -"karakterrel kell elválasztani." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Ha a --checklist vagy --radiolist kapcsolókat " -"használja, akkor minden sornak a „TRUE” vagy „FALSE” egyikével kell " -"kezdődnie." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "A lista ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=oszlop" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"A lista ablakban megjelenő oszlopfejlécek megadása. Az ablakban " -"megjelenítendő minden oszlophoz meg kell adnia egy --column " -"kapcsolót." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Megadja, hogy a lista ablak első oszlopa jelölőnégyzeteket tartalmaz." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Megadja, hogy a lista ablak első oszlopa választógombokat tartalmaz." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Lehetővé teszi a megjelenített elemek szerkesztését." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Megadja, hogy melyik karakterlánc kerül felhasználásra, amikor a lista ablak " -"visszaadja a kijelölt bejegyzéseket." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=oszlop" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Megadja, hogy melyik oszlopot kell kiírni kiválasztáskor. Az alapértelmezett " -"oszlop az „1”. A lista összes oszlopának kiírására az „ALL” érték " -"használható." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "A következő példa parancsfájl bemutatja a lista ablak létrehozását:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Válassza ki a megjelenítendő hibajegyeket\" \\\n" -" --column=\"Hiba száma\" --column=\"Súlyosság\" --column=\"Leírás\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Példa lista ablak" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Zenity példa lista ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Hiba, Info, Kérdés, Figyelmeztetés" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Üzenet ablak" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Minden típus esetén használja a --text kapcsolót az ablakban " -"megjelenített szöveg megadásához." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "A --notification kapcsoló használata." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Értesítési ikon" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"A --notification kapcsoló használatával értesítési ikont hozhat " -"létre." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Az értesítési területen megjelenítendő szöveg megadása." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'szöveg', message: 'szöveg', " -"tooltip: 'szöveg', visible: 'szöveg'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Parancsokat vár a szabványos bemeneten. Legalább egy parancsot meg kell " -"adni. A parancsokat vesszők választják el. Egy parancsot kettőspontnak és " -"értéknek kell követnie." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Az icon parancs elfogad négy alap ikonértéket is, mint az " -"error, info, question és warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"A következő példa parancsfájl bemutatja az értesítési ikon létrehozását:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Rendszerfrissítés szükséges!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Példa értesítési ikon" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Zenity példa értesítési ikon" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"A következő példa parancsfájl bemutatja az értesítési ikon létrehozását a " -"--listen használatával:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: ez az üzenetszöveg\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Példa értesítési ikon a --listen használatával" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" -"Zenity példa értesítési ikon a --listen használatával" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "A --password kapcsoló használata." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Jelszó ablak" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"A --password kapcsoló használatával jelszóbeviteli ablakot hozhat " -"létre." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "A jelszóbeviteli ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "A felhasználónév mező megjelenítése." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a jelszóbeviteli ablak létrehozását:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Felhasználónév: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Jelszó : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Bejelentkezés leállítása.\";;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Példa jelszóbeviteli ablak" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Zenity példa jelszóbeviteli ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "A --progress kapcsoló használata." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Folyamatjelző ablak" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"A --progress kapcsoló használatával folyamatjelző ablakot hozhat " -"létre." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"A Zenity az adatokat a szabványos bemenetről soronként olvassa. " -"Ha egy sor #-tel kezdődik, akkor a szöveg frissítésre kerül ezen sor " -"szövegével. Ha a sor csak egy számot tartalmaz, akkor a százalékérték azzal " -"a számmal kerül frissítésre." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "A folyamatjelző ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "A folyamatjelző ablakban megjelenítendő szöveg megadása." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=százalék" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"A folyamatjelző ablakban megjelenítendő kiinduló százalékérték megadása." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Folyamatjelző ablak bezárása amikor a 100%-ot elérte." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"A folyamatjelző sáv pulzál, amíg nem olvas EOF karaktert a szabványos " -"bemenetről." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a folyamatjelző ablak létrehozását:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Levelezőnaplók frissítése\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# cron feladatok visszaállítása\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Ez a sor figyelmen kívül marad\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rendszer újraindítása\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Rendszernaplók frissítése\" \\\n" -" --text=\"Levelezőnaplók vizsgálata...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Frissítés megszakítva.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Példa folyamatjelző ablak" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Zenity példa folyamatjelző ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "A --question kapcsoló használata." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Kérdés ablak" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "" -"A --question kapcsoló használatával kérdés ablakot hozhat létre." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "A következő példa parancsfájl bemutatja a kérdés ablak létrehozását:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Biztos, hogy folytatni szeretné?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Példa kérdés ablak" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Zenity példa kérdés ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "A --scale kapcsoló használata." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Méretezés ablak" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "" -"A --scale kapcsoló használatával méretezés ablakot hozhat létre." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "A méretezés ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "" -"Az ablak szövegének beállítása. (Alapértelmezett: A méretezés értékének " -"beállítása)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=ÉRTÉK" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Kiinduló érték beállítása (Alapértelmezett: 0). Az értéket a minimális és a " -"maximális érték között kell megadnia." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=ÉRTÉK" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Minimális érték beállítása (Alapértelmezett: 0)." - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=ÉRTÉK" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Maximális érték beállítása (Alapértelmezett: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=ÉRTÉK" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Lépés értékének beállítása (Alapértelmezett: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Érték kiírása a szabványos kimenetre amikor csak az érték változik." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Érték elrejtése az ablakban." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a méretezés ablak létrehozását:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Válassza ki az ablak átlátszóságát.\"" -" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Ezt választotta: $VALUE%.\";;\n" -" 1)\n" -" echo \"Nem választott értéket.\";;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Példa méretezés ablak" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Zenity példa méretezés ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "A --text-info kapcsoló használata." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Szöveges információs ablak" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"A --text-info kapcsoló használatával egy szöveges információs " -"ablak hozható létre." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "A szöveges információs ablak a következő kapcsolókat támogatja:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "A szöveges információs ablakba betöltendő fájl megadása." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Lehetővé teszi a megjelenített szöveg szerkesztését. A szerkesztett szöveg a " -"szabványos kimenetre kerül az ablak bezárásakor." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=BETŰKÉSZLET" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "A szöveg betűkészletének megadása." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=SZÖVEG" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Jelölőnégyzet megjelenítése, például „Elolvastam és elfogadom a " -"feltételeket” jellegű felhasználásra." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "HTML-támogatás engedélyezése." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"URL-címet állít be fájl helyett. Csak a --html kapcsolóval együtt működik." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a szöveges információs ablak " -"létrehozását:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# A „COPYING” fájlt ugyanabba a mappába kell elhelyeznie, mint ezt a" -" parancsfájlt.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licenc\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Elolvastam és elfogadom a feltételeket.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Telepítés indítása!\"\n" -"\t# következő lépés\n" -"\t;;\n" -" 1)\n" -" echo \"Telepítés leállítása!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Váratlan hiba történt.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Példa szöveges információs ablak" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Zenity példa szöveges információs ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"A Zenity segítségével egyszerű grafikus párbeszédablakokat hozhat " -"létre." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Használat" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Parancsfájlok írásakor a Zenity segítségével egyszerű grafikus " -"párbeszédablakokat hozhat létre, amelyek a következőképpen kommunikálnak a " -"felhasználóval:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Létrehozhat egy ablakot, amelyben információkat kér a felhasználótól. " -"Megkérheti például a felhasználót egy dátum kiválasztására a dátumválasztó " -"ablakból, vagy fájl kiválasztására a fájlválasztó ablakból." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Létrehozhat egy ablakot, amelyben információkat ad a felhasználónak. Egy " -"folyamatjelző ablak használatával például jelezheti egy művelet aktuális " -"állapotát, vagy egy figyelmeztető ablakkal felhívhatja valamire a " -"felhasználó figyelmét." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Amikor a felhasználó bezárja az ablakot, a Zenity kiírja az ablak " -"által visszaadott szöveget a szabványos kimenetre." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Amikor Zenity parancsokat ír, mindig tegye idézőjelek közé az " -"egyes argumentumokat." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Például így:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Szabadság tervezése\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Ne használja így:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Szabadság tervezése" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Ha nem használ idézőjeleket, akkor váratlan eredményeket kaphat." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Hívóbetűk" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"A hívóbetű lehetővé teszi egy művelet végrehajtását a billentyűzetről, így " -"nem muszáj mindig az egérrel kiválasztania a parancsot a menüből vagy " -"ablakból. A hívóbetűk a menüpontok vagy beállítások szövegének aláhúzott " -"betűi." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Egyes Zenity ablakok támogatják a hívóbetűk használatát. A " -"hívóbetűként használandó karakter megadásához helyezzen el egy aláhúzást az " -"ablak szövegében. A következő példa bemutatja, hogyan adhatja meg a „V” " -"betűt hívóbetűként:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Válasszon egy nevet.\"" - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Kilépési kódok" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "A Zenity a következő kilépési kódokat adja vissza:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Kilépési kód" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Leírás" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"A felhasználó megnyomta az OK vagy a Bezárás gombot." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"A felhasználó megnyomta a Mégse gombot, vagy az " -"ablakvezérlő elemekkel bezárta az ablakot." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Váratlan hiba történt." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Az ablak az időkorlát elérése miatt bezárva." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Általános beállítások" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Minden Zenity ablak támogatja a következő általános beállításokat:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=cím" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Az ablak címének megadása." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ikonútvonal" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Az ablakkeretben megjelenő ikon megadása. A következő kulcsszavak " -"megadásával elérhető 4 alapértelmezett ikon is: „info”, " -"„warning” (figyelmeztetés), „question” (kérdés) és „error” (hiba)." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=szélesség" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Az ablak szélességének megadása." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=magasság" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Az ablak magasságának megadása." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=időkorlát" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Időkorlát megadása másodpercben, amely után az ablak bezárandó." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Súgólehetőségek" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "A Zenity a következő súgólehetőségeket biztosítja:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Rövid súgószöveg megjelenítése." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Részletes súgószöveg megjelenítése minden ablakhoz." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Súgószöveg megjelenítése az általános ablakbeállításokhoz." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Súgószöveg megjelenítése a naptár ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Súgószöveg megjelenítése a szövegbeviteli ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Súgószöveg megjelenítése a hibaablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Súgószöveg megjelenítése az információs ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Súgószöveg megjelenítése a fájlválasztó ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Súgószöveg megjelenítése a lista ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Súgószöveg megjelenítése az értesítési ikon beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Súgószöveg megjelenítése a folyamatjelző ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Súgószöveg megjelenítése a kérdés ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Súgószöveg megjelenítése a figyelmeztető ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Súgószöveg megjelenítése a szöveges információs ablak beállításaihoz." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Súgószöveg megjelenítése egyéb beállításokhoz." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Súgószöveg megjelenítése a GTK+ beállításokhoz." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Egyéb beállítások" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "A Zenity a következő egyéb beállításokat is biztosítja:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Megjeleníti a Zenity névjegye ablakot, amely verzió-, szerzői " -"jogi és fejlesztői információkat tartalmaz." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "A Zenity verziószámának megjelenítése." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "GTK+ beállításai" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"A Zenity támogatja a szabványos GTK+ beállításokat. A GTK+ beállításokkal " -"kapcsolatos további információkért adja ki a zenity --help-gtk " -"parancsot." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Környezeti változók" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Általában a Zenity felismeri azt a terminálablakot, amelyből elindították, " -"és azon ablak fölött tartja magát. Ez a viselkedés letiltható a " -"WINDOWID környezeti változó törlésével." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "A --warning kapcsoló használata." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Figyelmeztető ablak" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "" -"A --warning kapcsoló használatával figyelmeztető ablakot hozhat " -"létre." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "" -"A következő példa parancsfájl bemutatja a figyelmeztető ablak létrehozását:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Az áramütés elkerülése érdekében húzza ki az elektromos kábelt.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Példa figyelmeztető ablak" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Zenity példa figyelmeztető ablak" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" diff --git a/help/ja/figures/zenity-colorselection-screenshot.png b/help/ja/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index a271d6d..0000000 Binary files a/help/ja/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/ja/figures/zenity-password-screenshot.png b/help/ja/figures/zenity-password-screenshot.png deleted file mode 100644 index bb7b4bf..0000000 Binary files a/help/ja/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/ja/ja.po b/help/ja/ja.po deleted file mode 100644 index 399559a..0000000 --- a/help/ja/ja.po +++ /dev/null @@ -1,1997 +0,0 @@ -# Japanese translation for zenity. -# Copyright (C) 2012 zenity's COPYRIGHT HOLDER -# This file is distributed under the GNU Free Documentation License. -# Yasumichi Akahoshi , 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2012-08-23 04:21+0000\n" -"PO-Revision-Date: 2012-08-23 22:03+0900\n" -"Last-Translator: Yasumichi Akahoshi \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.5\n" - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "赤星 柔充 , 2011,2012" - -#: C/index.page:6(credit/name) -msgid "Sun Java Desktop System Documentation Team" -msgstr "サン Java デスクトップシステムドキュメンテーションチーム" - -#: C/index.page:9(credit/name) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/index.page:12(credit/name) -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#: C/index.page:16(credit/name) -msgid "Yasumichi Akahoshi" -msgstr "赤星 柔充" - -#: C/index.page:20(license/p) -msgid "GNU Free Documentation License (GFDL)" -msgstr "GNU Free Documentation License (GFDL)" - -#: C/index.page:24(page/title) -msgid "Zenity Manual" -msgstr "Zenity マニュアル" - -#: C/index.page:27(section/title) -msgid "Dialogs" -msgstr "ダイアログ" - -#: C/legal.xml:9(para/ulink) -msgid "link" -msgstr "link" - -#: C/legal.xml:2(legalnotice/para) -msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed with this manual." -msgstr "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed with this manual." - -#: C/legal.xml:12(legalnotice/para) -msgid "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." -msgstr "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." - -#: C/legal.xml:19(legalnotice/para) -msgid "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." -msgstr "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." - -#: C/legal.xml:35(listitem/para) -msgid "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN 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 "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" - -#: C/legal.xml:55(listitem/para) -msgid "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." -msgstr "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." - -#: C/legal.xml:28(legalnotice/para) -msgid "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: <_:orderedlist-1/>" -msgstr "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: <_:orderedlist-1/>" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:66(media) -msgctxt "_" -msgid "external ref='figures/zenity-calendar-screenshot.png' md5='92bf5317d799665acf0d4005cee184c2'" -msgstr "external ref='figures/zenity-calendar-screenshot.png' md5='7389014444a6b0cad0e5b71e16bf9fa6l'" - -#: C/calendar.page:6(info/desc) -msgid "Use the --calendar option." -msgstr "--calendar オプションの使用" - -#: C/calendar.page:8(page/title) -msgid "Calendar Dialog" -msgstr "カレンダーダイアログ" - -#: C/calendar.page:9(page/p) -msgid "Use the --calendar option to create a calendar dialog. Zenity returns the selected date to standard output. If no date is specified on the command line, the dialog uses the current date." -msgstr "カレンダーダイアログを作成するには、--calendar というオプションを使ってください。Zenity は、標準出力へ選択された日付を返却します。コマンドラインで日付を指定しなかった場合、ダイアログは現在の日付を利用します。" - -#: C/calendar.page:12(page/p) -msgid "The calendar dialog supports the following options:" -msgstr "カレンダーダイアログは、以下のオプションをサポートしています。" - -#: C/calendar.page:19(item/title) C/entry.page:19(item/title) -#: C/notification.page:16(item/title) C/progress.page:24(item/title) -msgid "--text=text" -msgstr "--text=テキスト" - -#: C/calendar.page:20(item/p) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "カレンダーダイアログに表示されるテキストを指定します。" - -#: C/calendar.page:24(item/title) -msgid "--day=day" -msgstr "--day=" - -#: C/calendar.page:25(item/p) -msgid "Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "カレンダーダイアログで選択されている日を指定します。日は、1 から 31 の数字でなければなりません。" - -#: C/calendar.page:29(item/title) -msgid "--month=month" -msgstr "--month=" - -#: C/calendar.page:30(item/p) -msgid "Specifies the month that is selected in the calendar dialog. month must be a number between 1 and 12 inclusive." -msgstr "カレンダーダイアログで選択されている月を指定します。月は、1 から 12 の数字でなければなりません。" - -#: C/calendar.page:34(item/title) -msgid "--year=year" -msgstr "--year=" - -#: C/calendar.page:35(item/p) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "カレンダーダイアログで選択されている年を指定します。(訳注:西暦の数字部分で指定します。)" - -#: C/calendar.page:39(item/title) -msgid "--date-format=format" -msgstr "--date-format=書式" - -#: C/calendar.page:40(item/p) -msgid "Specifies the format that is returned from the calendar dialog after date selection. The default format depends on your locale. Format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "日付が選択された後、カレンダーダイアログが返却する書式を指定します。デフォルトの書式は、locale に依存します。書式は、 strftime 関数が受け取れる書式でなければなりません。たとえば、%A %d/%m/%y です。" - -#: C/calendar.page:45(page/p) -msgid "The following example script shows how to create a calendar dialog:" -msgstr "以下のスクリプトの例でカレンダーダイアログの作成方法を示します。" - -#: C/calendar.page:49(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"日付の選択\" \\\n" -"--text=\"日付をクリックして選択してください。\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"日付が選択されませんでした。\"\n" -"fi\n" - -#: C/calendar.page:64(figure/title) -msgid "Calendar Dialog Example" -msgstr "カレンダーダイアログの例" - -#: C/calendar.page:65(figure/desc) -msgid "Zenity calendar dialog example" -msgstr "Zenity カレンダーダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:52(media) -msgctxt "_" -msgid "external ref='figures/zenity-colorselection-screenshot.png' md5='febe3f417acea789c9db628fbe44f798'" -msgstr "external ref='figures/zenity-colorselection-screenshot.png' md5='e484c95ca216f1491b539549244241c3'" - -#: C/color-selection.page:6(info/desc) -msgid "Use the --color-selection option." -msgstr "--color-selection オプションの使用" - -#: C/color-selection.page:8(page/title) -msgid "Color Selection Dialog" -msgstr "色選択ダイアログ" - -#: C/color-selection.page:9(page/p) -msgid "Use the --color-selection option to create a color selection dialog." -msgstr "色選択ダイアログを作成するには、--color-selection というオプションを使ってください。" - -#: C/color-selection.page:12(page/p) -msgid "The color selection dialog supports the following options:" -msgstr "色選択ダイアログは、以下のオプションをサポートしています。" - -#: C/color-selection.page:19(item/title) -msgid "--color=VALUE" -msgstr "--color=" - -#: C/color-selection.page:20(item/p) -msgid "Set the initial color.(ex: #FF0000)" -msgstr "初期の色を指定します。(例: #FF0000)" - -#: C/color-selection.page:24(item/title) -msgid "--show-palette" -msgstr "--show-palette" - -#: C/color-selection.page:25(item/p) -msgid "Show the palette." -msgstr "パレットを表示します。" - -#: C/color-selection.page:30(page/p) -msgid "The following example script shows how to create a color selection dialog:" -msgstr "以下のスクリプトの例で色選択ダイアログの作成方法を示します。" - -#: C/color-selection.page:34(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"$COLOR を選択しました。\";;\n" -" 1)\n" -" echo \"色が選択されませんでした。\";;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\";;\n" -"esac\n" - -#: C/color-selection.page:50(figure/title) -msgid "Color Selection Dialog Example" -msgstr "色選択ダイアログの例" - -#: C/color-selection.page:51(figure/desc) -msgid "Zenity color selection dialog example" -msgstr "Zenity 色選択ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:55(media) -msgctxt "_" -msgid "external ref='figures/zenity-entry-screenshot.png' md5='bae6bf4342a66a3900deb15bde82ff42'" -msgstr "external ref='figures/zenity-entry-screenshot.png' md5='886020a439d7b3cc830a242cf43397e2'" - -#: C/entry.page:6(info/desc) -msgid "Use the --entry option." -msgstr "--entry オプションの使用" - -#: C/entry.page:8(page/title) -msgid "Text Entry Dialog" -msgstr "テキスト入力ダイアログ" - -#: C/entry.page:9(page/p) -msgid "Use the --entry option to create a text entry dialog. Zenity returns the contents of the text entry to standard output." -msgstr "テキスト入力ダイアログを作成するには、--entry というオプションを使ってください。Zenity は、テキスト入力の内容を標準出力へ返却します。" - -#: C/entry.page:12(page/p) -msgid "The text entry dialog supports the following options:" -msgstr "テキスト入力ダイアログは、以下のオプションをサポートしています。" - -#: C/entry.page:20(item/p) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "テキスト入力ダイアログに表示するテキストを指定します。" - -#: C/entry.page:24(item/title) -msgid "--entry-text=text" -msgstr "--entry-text=テキスト" - -#: C/entry.page:25(item/p) -msgid "Specifies the text that is displayed in the entry field of the text entry dialog." -msgstr "テキスト入力ダイアログの入力欄に表示されるテキストを指定します。" - -#: C/entry.page:29(item/title) -msgid "--hide-text" -msgstr "--hide-text" - -#: C/entry.page:30(item/p) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "テキスト入力ダイアログの入力欄にあるテキストを隠します。" - -#: C/entry.page:35(page/p) -msgid "The following example script shows how to create a text entry dialog:" -msgstr "以下のスクリプトの例でテキスト入力ダイアログの作成方法を示します。" - -#: C/entry.page:39(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"新しいプロファイルの追加\" \\\n" -"--text=\"新しいプロファイルの名前を入力してください:\" \\\n" -"--entry-text \"新しいプロファイル\"\n" -" then echo $?\n" -" else echo \"名前が入力されませんでした。\"\n" -"fi\n" - -#: C/entry.page:53(figure/title) -msgid "Text Entry Dialog Example" -msgstr "テキスト入力ダイアログの例" - -#: C/entry.page:54(figure/desc) -msgid "Zenity text entry dialog example" -msgstr "Zenity テキスト入力ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:28(media) -msgctxt "_" -msgid "external ref='figures/zenity-error-screenshot.png' md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgstr "external ref='figures/zenity-error-screenshot.png' md5='41f4ca4e63f0a578c4010ccfb9fccb23'" - -#: C/error.page:6(info/desc) -msgid "Use the --error option." -msgstr "--error オプションの使用" - -#: C/error.page:8(page/title) -msgid "Error Dialog" -msgstr "エラーダイアログ" - -#: C/error.page:9(page/p) -msgid "Use the --error option to create an error dialog." -msgstr "エラーダイアログを作成するには、--error というオプションを使ってください。" - -#: C/error.page:13(page/p) -msgid "The following example script shows how to create an error dialog:" -msgstr "以下のスクリプトの例でエラーダイアログの作成方法を示します。" - -#: C/error.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"/var/log/syslog が見つかりません。\"\n" - -#: C/error.page:26(figure/title) -msgid "Error Dialog Example" -msgstr "エラーダイアログの例" - -#: C/error.page:27(figure/desc) -msgid "Zenity error dialog example" -msgstr "Zenity エラーダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:68(media) -msgctxt "_" -msgid "external ref='figures/zenity-fileselection-screenshot.png' md5='bbba2652577f14ab4719f55a2ff57073'" -msgstr "external ref='figures/zenity-fileselection-screenshot.png' md5='9cafa0431b20920cc62be0fe0f598a8d'" - -#: C/file-selection.page:6(info/desc) -msgid "Use the --file-selection option." -msgstr "--file-selection オプションの使用" - -#: C/file-selection.page:8(page/title) -msgid "File Selection Dialog" -msgstr "ファイル選択ダイアログ" - -#: C/file-selection.page:9(page/p) -msgid "Use the --file-selection option to create a file selection dialog. Zenity returns the selected files or directories to standard output. The default mode of the file selection dialog is open." -msgstr "ファイル選択ダイアログを作成するには、--file-selection というオプションを使ってください。Zenity は、選択されたファイルあるいはフォルダーを標準出力へ返却します。ファイル選択ダイアログのデフォルトのモードは、開くです。" - -#: C/file-selection.page:13(page/p) -msgid "The file selection dialog supports the following options:" -msgstr "ファイル選択ダイアログは、以下のオプションをサポートしています。" - -#: C/file-selection.page:20(item/title) C/text.page:20(item/title) -msgid "--filename=filename" -msgstr "--filename=ファイル名" - -#: C/file-selection.page:21(item/p) -msgid "Specifies the file or directory that is selected in the file selection dialog when the dialog is first shown." -msgstr "ファイル選択ダイアログが最初に表示された時に選択されているファイルまたはフォルダーを指定します。" - -#: C/file-selection.page:25(item/title) -msgid "--multiple" -msgstr "--multiple" - -#: C/file-selection.page:26(item/p) -msgid "Allows the selection of multiple filenames in the file selection dialog." -msgstr "ファイル選択ダイアログで複数ファイルの選択を可能にします。" - -#: C/file-selection.page:30(item/title) -msgid "--directory" -msgstr "--directory" - -#: C/file-selection.page:31(item/p) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "ファイル選択ダイアログでフォルダーのみを選択可能にします。" - -#: C/file-selection.page:35(item/title) -msgid "--save" -msgstr "--save" - -#: C/file-selection.page:36(item/p) -msgid "Set the file selection dialog into save mode." -msgstr "ファイル選択ダイアログを保存モードに設定します。" - -#: C/file-selection.page:40(item/title) C/list.page:52(item/title) -msgid "--separator=separator" -msgstr "--separator=セパレーター" - -#: C/file-selection.page:41(item/p) -msgid "Specifies the string that is used to divide the returned list of filenames." -msgstr "返却するファイル名の一覧を区切るのに使う文字を指定します。" - -#: C/file-selection.page:46(page/p) -msgid "The following example script shows how to create a file selection dialog:" -msgstr "以下のスクリプトの例でファイル選択ダイアログの作成方法を示します。" - -#: C/file-selection.page:50(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"ファイルの選択\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" が選択されました。\";;\n" -" 1)\n" -" echo \"ファイルが選択されませんでした。\";;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\";;\n" -"esac\n" - -#: C/file-selection.page:66(figure/title) -msgid "File Selection Dialog Example" -msgstr "ファイル選択ダイアログの例" - -#: C/file-selection.page:67(figure/desc) -msgid "Zenity file selection dialog example" -msgstr "Zenity ファイル選択ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:81(media) -msgctxt "_" -msgid "external ref='figures/zenity-forms-screenshot.png' md5='c11fab02e4d51212a538ce6859799d5f'" -msgstr "external ref='figures/zenity-forms-screenshot.png' md5='251435ebb13fed36b2726d9a634fbf36'" - -#: C/forms.page:6(info/desc) -msgid "Use the --forms option." -msgstr "--forms オプションの使用" - -#: C/forms.page:8(page/title) -msgid "Forms Dialog" -msgstr "フォームダイアログ" - -#: C/forms.page:9(page/p) -msgid "Use the --forms option to create a forms dialog." -msgstr "フォームダイアログを作成するには、--forms というオプションを使ってください。" - -#: C/forms.page:13(page/p) -msgid "The forms dialog supports the following options:" -msgstr "フォームダイアログは、以下のオプションをサポートしています。" - -#: C/forms.page:20(item/title) -msgid "--add-entry=FieldName" -msgstr "--add-entry=項目名" - -#: C/forms.page:21(item/p) -msgid "Add a new Entry in forms dialog." -msgstr "フォームダイアログに入力欄を追加します。" - -#: C/forms.page:25(item/title) -msgid "--add-password=FieldName" -msgstr "--add-password=項目名" - -#: C/forms.page:26(item/p) -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "フォームダイアログにパスワード入力欄を追加します。 (入力テキストを隠します)" - -#: C/forms.page:30(item/title) -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=項目名" - -#: C/forms.page:31(item/p) -msgid "Add a new Calendar in forms dialog." -msgstr "フォームダイアログにカレンダーを追加します。" - -#: C/forms.page:35(item/title) C/scale.page:19(item/title) -msgid "--text=TEXT" -msgstr "--text=テキスト" - -#: C/forms.page:36(item/p) -msgid "Set the dialog text." -msgstr "ダイアログに表示するテキストを指定します。" - -#: C/forms.page:40(item/title) -msgid "--separator=SEPARATOR" -msgstr "--separator=セパレーター" - -#: C/forms.page:41(item/p) -msgid "Set output separator character. (Default: | )" -msgstr "セパレーターとして出力する文字を指定します。(既定値: | )" - -#: C/forms.page:45(item/title) -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=パターン" - -#: C/forms.page:46(item/p) -msgid "Set the format for the returned date. The default format depends on your locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "日付を返却する書式を指定します。デフォルトの書式は、locale に依存します。書式は、 strftime 関数が受け取れる書式でなければなりません。たとえば、%A %d/%m/%y です。" - -#: C/forms.page:51(page/p) -msgid "The following example script shows how to create a forms dialog:" -msgstr "以下のスクリプトの例でフォームダイアログの作成方法を示します。" - -#: C/forms.page:55(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"友達の追加\" \\\n" -"\t--text=\"友達について情報を入力してください。\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"名\" \\\n" -"\t--add-entry=\"姓\" \\\n" -"\t--add-entry=\"電子メール\" \\\n" -"\t--add-calendar=\"誕生日\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"友達が追加されました。\";;\n" -" 1)\n" -" echo \"友達は追加されませんでした。\"\n" -"\t;;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\"\n" -"\t;;\n" -"esac\n" - -#: C/forms.page:79(figure/title) -msgid "Forms Dialog Example" -msgstr "フォームダイアログの例" - -#: C/forms.page:80(figure/desc) -msgid "Zenity forms dialog example" -msgstr "Zenity フォームダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:28(media) -msgctxt "_" -msgid "external ref='figures/zenity-information-screenshot.png' md5='72386d53a991c46e918ee6dd22795aa6'" -msgstr "external ref='figures/zenity-information-screenshot.png' md5='49dd2b6fabd6288d5a74fc233c8f72b5'" - -#: C/info.page:6(info/desc) -msgid "Use the --info option." -msgstr "--info オプションの使用" - -#: C/info.page:8(page/title) -msgid "Info Dialog" -msgstr "情報ダイアログ" - -#: C/info.page:9(page/p) -msgid "Use the --info option to create an information dialog." -msgstr "情報ダイアログを作成するには、--info というオプションを使ってください。" - -#: C/info.page:13(page/p) -msgid "The following example script shows how to create an information dialog:" -msgstr "以下のスクリプトの例で情報ダイアログの作成方法を示します。" - -#: C/info.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"マージが完了しました。10 個中 3 個のファイルが更新されました。\"\n" - -#: C/info.page:26(figure/title) -msgid "Information Dialog Example" -msgstr "情報ダイアログの例" - -#: C/info.page:27(figure/desc) -msgid "Zenity information dialog example" -msgstr "Zenity 情報ダイアログの例" - -#: C/intro.page:6(info/desc) -msgid "Zenity enables you to create the various types of simple dialog." -msgstr "Zenity を使えば、様々な種類の簡単なダイアログを作成できます。" - -#: C/intro.page:8(page/title) -msgid "Introduction" -msgstr "はじめに" - -#: C/intro.page:9(page/p) -msgid "Zenity enables you to create the following types of simple dialog:" -msgstr "Zenity を使えば、以下の種類の簡単なダイアログを作成できます。" - -#: C/intro.page:14(item/p) -msgid "Calendar" -msgstr "カレンダー" - -#: C/intro.page:15(item/p) -msgid "File selection" -msgstr "ファイル選択" - -#: C/intro.page:16(item/p) -msgid "Forms" -msgstr "フォーム" - -#: C/intro.page:17(item/p) -msgid "List" -msgstr "一覧" - -#: C/intro.page:18(item/p) -msgid "Notification icon" -msgstr "通知アイコン" - -#: C/intro.page:19(item/p) -msgid "Message" -msgstr "メッセージ" - -#: C/intro.page:21(item/p) -msgid "Error" -msgstr "エラー" - -#: C/intro.page:22(item/p) -msgid "Information" -msgstr "情報" - -#: C/intro.page:23(item/p) -msgid "Question" -msgstr "質問" - -#: C/intro.page:24(item/p) -msgid "Warning" -msgstr "警告" - -#: C/intro.page:27(item/p) -msgid "Password entry" -msgstr "パスワード入力" - -#: C/intro.page:28(item/p) -msgid "Progress" -msgstr "進捗表示" - -#: C/intro.page:29(item/p) -msgid "Text entry" -msgstr "テキスト入力" - -#: C/intro.page:30(item/p) -msgid "Text information" -msgstr "テキスト情報" - -#: C/intro.page:31(item/p) -msgid "Scale" -msgstr "スケール" - -#: C/intro.page:32(item/p) -msgid "Color selection" -msgstr "色選択" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:84(media) -msgctxt "_" -msgid "external ref='figures/zenity-list-screenshot.png' md5='8bd9ad9c760516a966d3590b2019fa1e'" -msgstr "external ref='figures/zenity-list-screenshot.png' md5='182bb239ca06ce5115daa57d3607c7c4'" - -#: C/list.page:6(info/desc) -msgid "Use the --list option." -msgstr "--list オプションの使用" - -#: C/list.page:8(page/title) -msgid "List Dialog" -msgstr "一覧ダイアログ" - -#: C/list.page:9(page/p) -msgid "Use the --list option to create a list dialog. Zenity returns the entries in the first column of text of selected rows to standard output." -msgstr "一覧ダイアログを作成するには、--list というオプションを使ってください。Zenity は、選択された行の最初の列のテキストを標準出力へ返却します。" - -#: C/list.page:13(page/p) -msgid "Data for the dialog must specified column by column, row by row. Data can be provided to the dialog through standard input. Each entry must be separated by a newline character." -msgstr "一覧ダイアログ向けのデータは、列ごと、行ごとに指定しなければなりません。データは、標準入力を通してダイアログに提供することができます。各項目は、改行文字によって分割されている必要があります。" - -#: C/list.page:17(page/p) -msgid "If you use the --checklist or --radiolist options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "--checklist--radiolist というオプションを使用する場合、各行は 'TRUE' か 'FALSE' で始める必要があります。" - -#: C/list.page:21(page/p) -msgid "The list dialog supports the following options:" -msgstr "一覧ダイアログは、以下のオプションをサポートしています。" - -#: C/list.page:28(item/title) -msgid "--column=column" -msgstr "--column=" - -#: C/list.page:29(item/p) -msgid "Specifies the column headers that are displayed in the list dialog. You must specify a --column option for each column that you want to display in the dialog." -msgstr "一覧ダイアログに表示される列の見出しを指定します。ダイアログに表示したい各列ごとに --column オプションを指定しなければなりません。" - -#: C/list.page:34(item/title) -msgid "--checklist" -msgstr "--checklist" - -#: C/list.page:35(item/p) -msgid "Specifies that the first column in the list dialog contains check boxes." -msgstr "このオプションを指定すると一覧ダイアログの最初の列がチェックボックスになります。" - -#: C/list.page:40(item/title) -msgid "--radiolist" -msgstr "--radiolist" - -#: C/list.page:41(item/p) -msgid "Specifies that the first column in the list dialog contains radio boxes." -msgstr "このオプションを指定すると一覧ダイアログの最初の列がラジオボックスになります。" - -#: C/list.page:46(item/title) C/text.page:25(item/title) -msgid "--editable" -msgstr "--editable" - -#: C/list.page:47(item/p) -msgid "Allows the displayed items to be edited." -msgstr "表示した項目の編集を許可します。" - -#: C/list.page:53(item/p) -msgid "Specifies what string is used when the list dialog returns the selected entries." -msgstr "一覧ダイアログが選択した項目を返却する際に使用する文字を指定します。" - -#: C/list.page:58(item/title) -msgid "--print-column=column" -msgstr "--print-column=" - -#: C/list.page:59(item/p) -msgid "Specifies what column should be printed out upon selection. The default column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "選択した項目を出力する列を指定します。デフォルトの列は、'1' です。'ALL' を使えば、一覧のすべての列を出力できます。" - -#: C/list.page:66(page/p) -msgid "The following example script shows how to create a list dialog:" -msgstr "以下のスクリプトの例で一覧ダイアログの作成方法を示します。" - -#: C/list.page:69(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"閲覧したいバグを選択してください\" \\\n" -" --column=\"バグ番号\" --column=\"重大度\" --column=\"説明\" \\\n" -" 992383 通常 \"GtkTreeView が複数選択時にクラッシュする\" \\\n" -" 293823 高い \"GNOME 辞書がプロキシを操作できない\" \\\n" -" 393823 重大 \"GNOME 2.0 でメニュー編集が動作しない\"\n" - -#: C/list.page:82(figure/title) -msgid "List Dialog Example" -msgstr "一覧ダイアログの例" - -#: C/list.page:83(figure/desc) -msgid "Zenity list dialog example" -msgstr "Zenity 一覧ダイアログの例" - -#: C/message.page:6(info/desc) -msgid "Error, Info, Question, Warning" -msgstr "エラー, 情報, 質問, 警告" - -#: C/message.page:13(page/title) -msgid "Message Dialog" -msgstr "メッセージダイアログ" - -#: C/message.page:14(page/p) -msgid "For each type, use the --text option to specify the text that is displayed in the dialog." -msgstr "各種類ともダイアログに表示するテキストを指定するには、--text というオプションを使ってください。" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:37(media) -msgctxt "_" -msgid "external ref='figures/zenity-notification-screenshot.png' md5='b67bf309c6e479db8677947f1810a999'" -msgstr "external ref='figures/zenity-notification-screenshot.png' md5='12956333cdc73f5bf931cb8b6b85d806'" - -#: C/notification.page:6(info/desc) -msgid "Use the --notification option." -msgstr "--notification オプションの使用" - -#: C/notification.page:8(page/title) -msgid "Notification Icon" -msgstr "通知アイコン" - -#: C/notification.page:9(page/p) -msgid "Use the --notification option to create a notification icon." -msgstr "通知アイコンを作成するには、--notification というオプションを使ってください。" - -#: C/notification.page:17(item/p) -msgid "Specifies the text that is displayed in the notification area." -msgstr "通知領域に表示するテキストを指定します。" - -#: C/notification.page:22(page/p) -msgid "The following example script shows how to create a notification icon:" -msgstr "以下のスクリプトの例で通知アイコンの作成方法を示します。" - -#: C/notification.page:25(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"システムの更新が必要です!\"\n" - -#: C/notification.page:35(figure/title) -msgid "Notification Icon Example" -msgstr "通知アイコンの例" - -#: C/notification.page:36(figure/desc) -msgid "Zenity notification icon example" -msgstr "Zenity 通知アイコンの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:47(media) -msgctxt "_" -msgid "external ref='figures/zenity-password-screenshot.png' md5='6adbeb624a307f78072593d6d1c6def6'" -msgstr "external ref='figures/zenity-password-screenshot.png' md5='a3d2932400fb90d1f79bafd7d7e2ac2c'" - -#: C/password.page:6(info/desc) -msgid "Use the --password option." -msgstr "--password オプションの使用" - -#: C/password.page:8(page/title) -msgid "Password Dialog" -msgstr "パスワードダイアログ" - -#: C/password.page:9(page/p) -msgid "Use the --password option to create a password entry dialog." -msgstr "パスワードダイアログを作成するには、--password というオプションを使ってください。" - -#: C/password.page:12(page/p) -msgid "The password entry dialog supports the following options:" -msgstr "パスワードダイアログは、以下のオプションをサポートしています。" - -#: C/password.page:18(item/title) -msgid "--username" -msgstr "--username" - -#: C/password.page:19(item/p) -msgid "Display the username field." -msgstr "ユーザー名入力欄を表示します。" - -#: C/password.page:23(page/p) -msgid "The following example script shows how to create a password entry dialog:" -msgstr "以下のスクリプトの例でパスワードダイアログの作成方法を示します。" - -#: C/password.page:27(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"ユーザー名: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"パスワード: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"ログインを中止しました。\";;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\";;\n" -"esac\n" - -#: C/password.page:45(figure/title) -msgid "Password Entry Dialog Example" -msgstr "パスワード入力ダイアログの例" - -#: C/password.page:46(figure/desc) -msgid "Zenity password entry dialog example" -msgstr "Zenity パスワード入力ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:77(media) -msgctxt "_" -msgid "external ref='figures/zenity-progress-screenshot.png' md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -msgstr "external ref='figures/zenity-progress-screenshot.png' md5='96fde10f17f34b00393b7b950858c2a4'" - -#: C/progress.page:6(info/desc) -msgid "Use the --progress option." -msgstr "--progress オプションの使用" - -#: C/progress.page:8(page/title) -msgid "Progress Dialog" -msgstr "進捗表示ダイアログ" - -#: C/progress.page:9(page/p) -msgid "Use the --progress option to create a progress dialog." -msgstr "進捗表示ダイアログを作成するには、--progress というオプションを使ってください。" - -#: C/progress.page:13(page/p) -msgid "Zenity reads data from standard input line by line. If a line is prefixed with #, the text is updated with the text on that line. If a line contains only a number, the percentage is updated with that number." -msgstr "Zenity は、標準入力から 1 行ごとにデータを読み込みます。行が # で始まっている場合、進捗表示ダイアログに表示しているテキストを更新します。行が数値のみを含んでいる場合、進捗状況のパーセンテージをその数値で更新します。" - -#: C/progress.page:17(page/p) -msgid "The progress dialog supports the following options:" -msgstr "進捗表示ダイアログは、以下のオプションをサポートしています。" - -#: C/progress.page:25(item/p) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "進捗表示ダイアログに表示するテキストを指定します。" - -#: C/progress.page:29(item/title) -msgid "--percentage=percentage" -msgstr "--percentage=パーセンテージ" - -#: C/progress.page:30(item/p) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "進捗表示ダイアログに設定する初期のパーセンテージを指定します。" - -#: C/progress.page:34(item/title) -msgid "--auto-close" -msgstr "--auto-close" - -#: C/progress.page:35(item/p) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "100% に到達した際に進捗表示ダイアログを閉じます。" - -#: C/progress.page:39(item/title) -msgid "--pulsate" -msgstr "--pulsate" - -#: C/progress.page:40(item/p) -msgid "Specifies that the progress bar pulsates until an EOF character is read from standard input." -msgstr "標準入力から EOF 文字を読み込むまで進捗表示バーを振動させたい場合に指定します。" - -#: C/progress.page:45(page/p) -msgid "The following example script shows how to create a progress dialog:" -msgstr "以下のスクリプトの例で進捗表示ダイアログの作成方法を示します。" - -#: C/progress.page:49(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# メールログの更新\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# cron ジョブの再設定\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"この行は無視されます\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# システムの再起動\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"システムログの更新\" \\\n" -" --text=\"メールログを走査中...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"更新がキャンセルされました。\"\n" -"fi\n" -"\n" - -#: C/progress.page:75(figure/title) -msgid "Progress Dialog Example" -msgstr "進捗表示ダイアログの例" - -#: C/progress.page:76(figure/desc) -msgid "Zenity progress dialog example" -msgstr "Zenity 進捗表示ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:28(media) -msgctxt "_" -msgid "external ref='figures/zenity-question-screenshot.png' md5='5889e2a57b9d1885f22977587a269610'" -msgstr "external ref='figures/zenity-question-screenshot.png' md5='4b62d43128b638a26189cd524a0e8d05'" - -#: C/question.page:6(info/desc) -msgid "Use the --question option." -msgstr "--question オプションの使用" - -#: C/question.page:8(page/title) -msgid "Question Dialog" -msgstr "質問ダイアログ" - -#: C/question.page:9(page/p) -msgid "Use the --question option to create a question dialog." -msgstr "質問ダイアログを作成するには、--question というオプションを使ってください。" - -#: C/question.page:13(page/p) -msgid "The following example script shows how to create a question dialog:" -msgstr "以下のスクリプトの例で質問ダイアログの作成方法を示します。" - -#: C/question.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"続行しますか?\"\n" - -#: C/question.page:26(figure/title) -msgid "Question Dialog Example" -msgstr "質問ダイアログの例" - -#: C/question.page:27(figure/desc) -msgid "Zenity question dialog example" -msgstr "Zenity 質問ダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:77(media) -msgctxt "_" -msgid "external ref='figures/zenity-scale-screenshot.png' md5='d44259a5b5b6e6ba0aceffd8501d0873'" -msgstr "external ref='figures/zenity-scale-screenshot.png' md5='7eb046e5edadba17052753d713eea016'" - -#: C/scale.page:6(info/desc) -msgid "Use the --scale option." -msgstr "--scale の使用" - -#: C/scale.page:8(page/title) -msgid "Scale Dialog" -msgstr "スケールダイアログ" - -#: C/scale.page:9(page/p) -msgid "Use the --scale option to create a scale dialog." -msgstr "スケールダイアログを作成するには、--scale というオプションを使ってください。" - -#: C/scale.page:12(page/p) -msgid "The scale dialog supports the following options:" -msgstr "スケールダイアログは、以下のオプションをサポートしています。" - -#: C/scale.page:20(item/p) -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "ダイアログのテキストを指定します。(既定値: スケール値の調整)" - -#: C/scale.page:24(item/title) -msgid "--value=VALUE" -msgstr "--value=" - -#: C/scale.page:25(item/p) -msgid "Set initial value. (Default: 0) You must specify value between minimum value to maximum value." -msgstr "初期値を指定します。 (既定値: 0) 最小値から最大値の間で指定しなければなりません。" - -#: C/scale.page:29(item/title) -msgid "--min-value=VALUE" -msgstr "--min-value=" - -#: C/scale.page:30(item/p) -msgid "Set minimum value. (Default: 0)" -msgstr "最小値を指定します。 (既定値: 0)" - -#: C/scale.page:34(item/title) -msgid "--max-value=VALUE" -msgstr "--max-value=" - -#: C/scale.page:35(item/p) -msgid "Set maximum value. (Default: 100)" -msgstr "最大値を指定します。 (既定値: 100)" - -#: C/scale.page:39(item/title) -msgid "--step=VALUE" -msgstr "--step=" - -#: C/scale.page:40(item/p) -msgid "Set step size. (Default: 1)" -msgstr "刻み幅を指定します。 (既定値: 1)" - -#: C/scale.page:44(item/title) -msgid "--print-partial" -msgstr "--print-partial" - -#: C/scale.page:45(item/p) -msgid "Print value to standard output, whenever a value is changed." -msgstr "値が変更される度に標準出力へ値を出力します。" - -#: C/scale.page:49(item/title) -msgid "--hide-value" -msgstr "--hide-value" - -#: C/scale.page:50(item/p) -msgid "Hide value on dialog." -msgstr "ダイアログで値を非表示にします。" - -#: C/scale.page:55(page/p) -msgid "The following example script shows how to create a scale dialog:" -msgstr "以下のスクリプトの例でスケールダイアログの作成方法を示します。" - -#: C/scale.page:59(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"ウィンドウの透過率を指定してください。\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"$VALUE% が指定されました。\";;\n" -" 1)\n" -" echo \"値が指定されませんでした。\";;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\";;\n" -"esac\n" - -#: C/scale.page:75(figure/title) -msgid "Scale Dialog Example" -msgstr "スケールダイアログの例" - -#: C/scale.page:76(figure/desc) -msgid "Zenity scale dialog example" -msgstr "Zenity スケールダイアログの例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:83(media) -msgctxt "_" -msgid "external ref='figures/zenity-text-screenshot.png' md5='79446b388fa6c3c3a619c8d6565b9f61'" -msgstr "external ref='figures/zenity-text-screenshot.png' md5='185d6411e52d5b14536ef318302cc1d2'" - -#: C/text.page:6(info/desc) -msgid "Use the --text-info option." -msgstr "--text-info オプションの使用" - -#: C/text.page:8(page/title) -msgid "Text Information Dialog" -msgstr "テキスト情報ダイアログ" - -#: C/text.page:9(page/p) -msgid "Use the --text-info option to create a text information dialog." -msgstr "テキスト情報ダイアログを作成するには、--text-info というオプションを使ってください。" - -#: C/text.page:13(page/p) -msgid "The text information dialog supports the following options:" -msgstr "テキスト情報ダイアログは、以下のオプションをサポートしています。" - -#: C/text.page:21(item/p) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "テキスト情報ダイアログに読み込むファイルを指定します。" - -#: C/text.page:26(item/p) -msgid "Allows the displayed text to be edited. The edited text is returned to standard output when the dialog is closed." -msgstr "表示されたテキストの編集を許可します。ダイアログを閉じると標準出力へ編集されたテキストが返却されます。" - -#: C/text.page:30(item/title) -msgid "--font=FONT" -msgstr "--font=フォント" - -#: C/text.page:31(item/p) -msgid "Specifies the text font." -msgstr "テキストのフォントを指定します。" - -#: C/text.page:35(item/title) -msgid "--checkbox=TEXT" -msgstr "--checkbox=テキスト" - -#: C/text.page:36(item/p) -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "「文書を読み承諾します。」というように使うチェックボックスを有効にします。" - -#: C/text.page:40(item/title) -msgid "--html" -msgstr "--html" - -#: C/text.page:41(item/p) -msgid "Enable html support." -msgstr "HTML サポートを有効にします。" - -#: C/text.page:45(item/title) -msgid "--url=URL" -msgstr "--url=URL" - -#: C/text.page:46(item/p) -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "ファイルの代わりに URL を指定します。--html オプションを利用している場合にのみ機能します。" - -#: C/text.page:51(page/p) -msgid "The following example script shows how to create a text information dialog:" -msgstr "以下のスクリプトの例でテキスト情報ダイアログの作成方法を示します。" - -#: C/text.page:55(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"ライセンス\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"文書を読み承諾します。\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"インストールを開始します!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"インストールを停止します!\"\n" -"\t;;\n" -" -1)\n" -" echo \"予期せぬエラーが発生しました。\"\n" -"\t;;\n" -"esac\n" - -#: C/text.page:81(figure/title) -msgid "Text Information Dialog Example" -msgstr "テキスト情報ダイアログの例" - -#: C/text.page:82(figure/desc) -msgid "Zenity text information dialog example" -msgstr "Zenity テキスト情報ダイアログの例" - -#: C/usage.page:6(info/desc) -msgid "You can use Zenity to create simple dialogs that interact graphically with the user." -msgstr "Zenity を使えば、ユーザーと視覚的に対話する簡単なダイアログを作成できます。" - -#: C/usage.page:8(page/title) -msgid "Usage" -msgstr "使用法" - -#: C/usage.page:9(page/p) -msgid "When you write scripts, you can use Zenity to create simple dialogs that interact graphically with the user, as follows:" -msgstr "スクリプトを書く際に Zenity を使えば、以下のようにユーザーと視覚的に対話する簡単なダイアログを作成できます。" - -#: C/usage.page:14(item/p) -msgid "You can create a dialog to obtain information from the user. For example, you can prompt the user to select a date from a calendar dialog, or to select a file from a file selection dialog." -msgstr "ユーザーからの情報を取得するダイアログを作成できます。たとえば、カレンダーから日付を選択したり、ファイル選択ダイアログからファイルを選択したりするようにユーザーに求めることができます。" - -#: C/usage.page:19(item/p) -msgid "You can create a dialog to provide the user with information. For example, you can use a progress dialog to indicate the current status of an operation, or use a warning message dialog to alert the user." -msgstr "ユーザーに情報を提供するダイアログが作成できます。たとえば、処理の現在の状況を示す進捗表示ダイアログやユーザーに注意を促す警告メッセージダイアログを使用できます。" - -#: C/usage.page:24(page/p) -msgid "When the user closes the dialog, Zenity prints the text produced by the dialog to standard output." -msgstr "ユーザーがダイアログを閉じると Zenity は標準出力へダイアログにより作成されたテキストを出力します。" - -#: C/usage.page:29(note/p) -msgid "When you write Zenity commands, ensure that you place quotation marks around each argument." -msgstr "Zenity コマンドを書く時は、確実に各引数を引用符で囲むようにしてください。" - -#: C/usage.page:32(note/p) -msgid "For example, use:" -msgstr "たとえば、次のように使います。" - -#: C/usage.page:33(note/screen) -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Holiday Planner\"" - -#: C/usage.page:34(note/p) -msgid "Do not use:" -msgstr "次のように使ってはいけません。" - -#: C/usage.page:35(note/screen) -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Holiday Planner" - -#: C/usage.page:36(note/p) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "引用符を利用しない場合、予期せぬ結果を招く恐れがあります。" - -#: C/usage.page:42(section/title) -msgid "Access Keys" -msgstr "アクセスキー" - -#: C/usage.page:43(section/p) -msgid "An access key is a key that enables you to perform an action from the keyboard rather than use the mouse to choose a command from a menu or dialog. Each access key is identified by an underlined letter on a menu or dialog option." -msgstr "アクセスキーは、メニューやダイアログからマウスでコマンドを選択する代わりにキーボードで操作ができるようにするキーです。それぞれのアクセスキーは、メニューやダイアログのオプションで下線によって識別されます。" - -#: C/usage.page:46(section/p) -msgid "Some Zenity dialogs support the use of access keys. To specify the character to use as the access key, place an underscore before that character in the text of the dialog. The following example shows how to specify the letter 'C' as the access key:" -msgstr "いくつかの Zenity ダイアログは、アクセスキーの利用をサポートしています。アクセスキーとして利用する文字を指定するには、ダイアログのテキスト内にあるアクセスキーにしたい文字の前にアンダースコア (_) を置いてください。以下の例は、アクセスキーとして文字 'C' を指定する方法を示しています。" - -#: C/usage.page:49(section/screen) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"名前の選択(_C)\"" - -#: C/usage.page:53(section/title) -msgid "Exit Codes" -msgstr "終了コード" - -#: C/usage.page:54(section/p) -msgid "Zenity returns the following exit codes:" -msgstr "Zenity は、以下の終了コードを返します。" - -#: C/usage.page:62(td/p) -msgid "Exit Code" -msgstr "終了コード" - -#: C/usage.page:64(td/p) -msgid "Description" -msgstr "説明" - -#: C/usage.page:70(td/p) -msgid "0" -msgstr "0" - -#: C/usage.page:73(td/p) -msgid "The user has pressed either OK or Close." -msgstr "ユーザーが、OK閉じるを押しました。" - -#: C/usage.page:78(td/p) -msgid "1" -msgstr "1" - -#: C/usage.page:81(td/p) -msgid "The user has either pressed Cancel, or used the window functions to close the dialog." -msgstr "ユーザーがキャンセルを押したか、ウィンドウの機能を利用してダイアログを閉じました。" - -#: C/usage.page:86(td/p) -msgid "-1" -msgstr "-1" - -#: C/usage.page:89(td/p) -msgid "An unexpected error has occurred." -msgstr "予期しないエラーが発生しました。" - -#: C/usage.page:94(td/p) -msgid "5" -msgstr "5" - -#: C/usage.page:97(td/p) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "タイムアウトに達したため、ダイアログが閉じました。" - -#: C/usage.page:109(section/title) -msgid "General Options" -msgstr "汎用的なオプション" - -#: C/usage.page:111(section/p) -msgid "All Zenity dialogs support the following general options:" -msgstr "すべての Zenity ダイアログは、以下の汎用的なオプションをサポートしています。" - -#: C/usage.page:118(item/title) -msgid "--title=title" -msgstr "--title=タイトル" - -#: C/usage.page:119(item/p) -msgid "Specifies the title of a dialog." -msgstr "ダイアログのタイトルを指定します。" - -#: C/usage.page:123(item/title) -msgid "--window-icon=icon_path" -msgstr "--window-icon=アイコンのパス" - -#: C/usage.page:124(item/p) -msgid "Specifies the icon that is displayed in the window frame of the dialog. There are 4 stock icons also available by providing the following keywords - 'info', 'warning', 'question' and 'error'." -msgstr "ダイアログのウィンドウフレームに表示するアイコンを指定します。「info」、「warning」、「question」および「error」というキーワードで提供される 4 つのストックアイコンも利用可能です。" - -#: C/usage.page:131(item/title) -msgid "--width=width" -msgstr "--width=" - -#: C/usage.page:132(item/p) -msgid "Specifies the width of the dialog." -msgstr "ダイアログの幅を指定します。" - -#: C/usage.page:136(item/title) -msgid "--height=height" -msgstr "--height=高さ" - -#: C/usage.page:137(item/p) -msgid "Specifies the height of the dialog." -msgstr "ダイアログの高さを指定します。" - -#: C/usage.page:141(item/title) -msgid "--timeout=timeout" -msgstr "--timeout=タイムアウト" - -#: C/usage.page:142(item/p) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "ダイアログが閉じるまでのタイムアウト値を秒数で指定します。" - -#: C/usage.page:152(section/title) -msgid "Help Options" -msgstr "ヘルプのオプション" - -#: C/usage.page:154(section/p) -msgid "Zenity provides the following help options:" -msgstr "Zenity は、以下のヘルプのオプションを提供しています。" - -#: C/usage.page:161(item/title) -msgid "--help" -msgstr "--help" - -#: C/usage.page:162(item/p) -msgid "Displays shortened help text." -msgstr "簡単なヘルプを表示します。" - -#: C/usage.page:166(item/title) -msgid "--help-all" -msgstr "--help-all" - -#: C/usage.page:167(item/p) -msgid "Displays full help text for all dialogs." -msgstr "すべてのダイアログに関する完全なヘルプを表示します。" - -#: C/usage.page:171(item/title) -msgid "--help-general" -msgstr "--help-general" - -#: C/usage.page:172(item/p) -msgid "Displays help text for general dialog options." -msgstr "汎用的なオプションを表示します。" - -#: C/usage.page:176(item/title) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/usage.page:177(item/p) -msgid "Displays help text for calendar dialog options." -msgstr "カレンダーダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:181(item/title) -msgid "--help-entry" -msgstr "--help-entry" - -#: C/usage.page:182(item/p) -msgid "Displays help text for text entry dialog options." -msgstr "テキスト入力ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:186(item/title) -msgid "--help-error" -msgstr "--help-error" - -#: C/usage.page:187(item/p) -msgid "Displays help text for error dialog options." -msgstr "エラーダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:191(item/title) -msgid "--help-info" -msgstr "--help-info" - -#: C/usage.page:192(item/p) -msgid "Displays help text for information dialog options." -msgstr "情報ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:196(item/title) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/usage.page:197(item/p) -msgid "Displays help text for file selection dialog options." -msgstr "ファイル選択ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:201(item/title) -msgid "--help-list" -msgstr "--help-list" - -#: C/usage.page:202(item/p) -msgid "Displays help text for list dialog options." -msgstr "一覧ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:206(item/title) -msgid "--help-notification" -msgstr "--help-notification" - -#: C/usage.page:207(item/p) -msgid "Displays help text for notification icon options." -msgstr "通知アイコンのオプションに関するヘルプを表示します。" - -#: C/usage.page:211(item/title) -msgid "--help-progress" -msgstr "--help-progress" - -#: C/usage.page:212(item/p) -msgid "Displays help text for progress dialog options." -msgstr "進捗表示ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:216(item/title) -msgid "--help-question" -msgstr "--help-question" - -#: C/usage.page:217(item/p) -msgid "Displays help text for question dialog options." -msgstr "質問ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:221(item/title) -msgid "--help-warning" -msgstr "--help-warning" - -#: C/usage.page:222(item/p) -msgid "Displays help text for warning dialog options." -msgstr "警告ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:226(item/title) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/usage.page:227(item/p) -msgid "Displays help for text information dialog options." -msgstr "テキスト情報ダイアログのオプションに関するヘルプを表示します。" - -#: C/usage.page:231(item/title) -msgid "--help-misc" -msgstr "--help-misc" - -#: C/usage.page:232(item/p) -msgid "Displays help for miscellaneous options." -msgstr "種々雑多なオプションに関するヘルプを表示します。" - -#: C/usage.page:236(item/title) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/usage.page:237(item/p) -msgid "Displays help for GTK+ options." -msgstr "GTK+ のオプションに関するヘルプを表示します。" - -#: C/usage.page:247(section/title) -msgid "Miscellaneous Options" -msgstr "種々雑多なオプション" - -#: C/usage.page:249(section/p) -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity は、以下のような種々雑多なオプションも提供しています。" - -#: C/usage.page:256(item/title) -msgid "--about" -msgstr "--about" - -#: C/usage.page:257(item/p) -msgid "Displays the About Zenity dialog, which contains Zenity version information, copyright information, and developer information." -msgstr "Zenity のバージョン情報、著作権情報および開発者の情報を含んだ「Zenity について」というダイアログを表示します。" - -#: C/usage.page:261(item/title) -msgid "--version" -msgstr "--version" - -#: C/usage.page:262(item/p) -msgid "Displays the version number of Zenity." -msgstr "Zenity のバージョン番号を標準出力に表示します。" - -#: C/usage.page:272(section/title) -msgid "GTK+ Options" -msgstr "GTK+ のオプション" - -#: C/usage.page:274(section/p) -msgid "Zenity supports the standard GTK+ options. For more information about the GTK+ options, execute the zenity --help-gtk command." -msgstr "Zenity は、標準的な GTK+ のオプションをサポートしています。GTK+ のオプションについての詳細は、zenity --help-gtk というコマンドを実行して確認してください。" - -#: C/usage.page:283(section/title) -msgid "Environment Variables" -msgstr "環境変数" - -#: C/usage.page:285(section/p) -msgid "Normally, Zenity detects the terminal window from which it was launched and keeps itself above that window. This behavior can be disabled by unsetting the WINDOWID environment variable." -msgstr "通常、Zenity は自身が起動された端末ウィンドウを検出し、そのウィンドウより前面に位置し続けます。この振る舞いは、WINDOWID という環境変数の定義を解除することにより、無効にできます。" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28(media) -msgctxt "_" -msgid "external ref='figures/zenity-warning-screenshot.png' md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" -msgstr "external ref='figures/zenity-warning-screenshot.png' md5='0191dca893e44d4fce778742649fe9f1'" - -#: C/warning.page:6(info/desc) -msgid "Use the --warning option." -msgstr "--warning オプションの使用" - -#: C/warning.page:8(page/title) -msgid "Warning Dialog" -msgstr "警告ダイアログ" - -#: C/warning.page:9(page/p) -msgid "Use the --warning option to create a warning dialog." -msgstr "警告ダイアログを作成するには、--warning というオプションを使ってください。" - -#: C/warning.page:13(page/p) -msgid "The following example script shows how to create a warning dialog:" -msgstr "以下のスクリプトの例で警告ダイアログの作成方法を示します。" - -#: C/warning.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"電気ショックを避けるために電源ケーブルの接続を解除しました。\"\n" - -#: C/warning.page:26(figure/title) -msgid "Warning Dialog Example" -msgstr "警告ダイアログの例" - -#: C/warning.page:27(figure/desc) -msgid "Zenity warning dialog example" -msgstr "Zenity 警告ダイアログの例" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "--version" -#~ msgstr "--version" - -#~ msgid "--html" -#~ msgstr "--html" - -#~ msgid "yasumichi@vinelinux.org" -#~ msgstr "yasumichi@vinelinux.org" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "@@image: 'figures/zenity-entry-screenshot.png'; md5=0fb790cbb6d13ec13a314b34f844ee80" -#~ msgstr "@@image: 'figures/zenity-entry-screenshot.png'; md5=e35a423cc463ecbe48f672ed7fce2fa5" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Zenity デスクトップアプリケーションマニュアル V2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "サン・マイクロシステムズ" - -#~ msgid "Sun" -#~ msgstr "サン" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Java デスクトップシステムドキュメンテーションチーム" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "GNOME ドキュメンテーションプロジェクト" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "2004年 8月" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Zenity マニュアル V1.0" - -#~ msgid "January 2003" -#~ msgstr "2003年 1月" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "このマニュアルは、Zenity バージョン 2.6.0 について記述しています。" - -#~ msgid "Feedback" -#~ msgstr "フィードバック" - -#~ msgid "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "フィードバックを送るには、Feedback Page の指示に従ってください。" - -#, fuzzy -#~ msgid "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to display dialog boxes from the commandline and shell scripts." -#~ msgstr "Zenity は gdialog を書きなおしたものです。コマンドラインやシェルスクリプトから、ダイアログボックスを表示できるように GNOME に移植されました。" - -#~ msgid "zenity command" -#~ msgstr "zenity コマンド" - -#~ msgid "dialog creator" -#~ msgstr "ダイアログクリエーター" - -#~ msgid "For example, use: zenity --calendar --title=\"Holiday Planner\" Do not use: zenity --calendar --title=Holiday Planner" -#~ msgstr "例えば、次のように使います: zenity --calendar --title=\"Holiday Planner\" 次のように使ってはいけません: zenity --calendar --title=Holiday Planner" - -#~ msgid "=title" -#~ msgstr "=タイトル" - -#~ msgid "=width" -#~ msgstr "=" - -#~ msgid "=height" -#~ msgstr "=高さ" - -#~ msgid "=timeout" -#~ msgstr "=タイムアウト" - -#~ msgid "=text" -#~ msgstr "=テキスト" - -#~ msgid "=day" -#~ msgstr "=" - -#~ msgid "=month" -#~ msgstr "=" - -#~ msgid "=year" -#~ msgstr "=" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid " calendar dialog example" -#~ msgstr " カレンダーダイアログの例" - -#~ msgid "=filename" -#~ msgstr "=ファイル名" - -#~ msgid "=column" -#~ msgstr "=" - -#~ msgid "Zenity can create four types of message dialog:" -#~ msgstr "Zenity は、4 種類のメッセージダイアログを生成できます:" - -#~ msgid "=text" -#~ msgstr "=テキスト" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"ファイルの選択\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"ファイルが選択されませんでした。\";;\n" -#~ " -1)\n" -#~ " echo \"予期せぬエラーが発生しました。\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/meson.build b/help/meson.build deleted file mode 100644 index cd09412..0000000 --- a/help/meson.build +++ /dev/null @@ -1,48 +0,0 @@ -help_pages = [ - 'legal.xml', - 'calendar.page', - 'color-selection.page', - 'entry.page', - 'error.page', - 'file-selection.page', - 'forms.page', - 'index.page', - 'info.page', - 'intro.page', - 'list.page', - 'message.page', - 'notification.page', - 'password.page', - 'progress.page', - 'question.page', - 'scale.page', - 'text.page', - 'usage.page', - 'warning.page' -] - -help_media = [ - 'figures/zenity-calendar-screenshot.png', - 'figures/zenity-colorselection-screenshot.png', - 'figures/zenity-entry-screenshot.png', - 'figures/zenity-error-screenshot.png', - 'figures/zenity-fileselection-screenshot.png', - 'figures/zenity-forms-screenshot.png', - 'figures/zenity-information-screenshot.png', - 'figures/zenity-list-screenshot.png', - 'figures/zenity-notification-listen-screenshot.png', - 'figures/zenity-notification-screenshot.png', - 'figures/zenity-password-screenshot.png', - 'figures/zenity-progress-screenshot.png', - 'figures/zenity-question-screenshot.png', - 'figures/zenity-scale-screenshot.png', - 'figures/zenity-text-screenshot.png', - 'figures/zenity-warning-screenshot.png' -] - -gnome.yelp( - meson.project_name(), - sources: help_pages, - media: help_media, - symlink_media: false -) diff --git a/help/oc/oc.po b/help/oc/oc.po deleted file mode 100644 index e71f439..0000000 --- a/help/oc/oc.po +++ /dev/null @@ -1,1441 +0,0 @@ -# Translation of oc.po to Occitan -# Occitan translation of gnome-control-center documentation. -# Copyright (C) 2005-2006, 2007 Free Software Foundation, Inc. -# This file is distributed under the same license as the gedit documentation package. -# -# Yannig MARCHEGAY (yannig@marchegay.org> - 2006-2007 -# -# Yannig Marchegay (Kokoyaya) , 2007. -msgid "" -msgstr "" -"Project-Id-Version: oc\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-12-31 19:41+0000\n" -"PO-Revision-Date: 2008-01-20 16:03+0100\n" -"Last-Translator: Yannig Marchegay (Kokoyaya) \n" -"Language-Team: Occitan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:526(None) -msgid "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" -msgstr "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:614(None) -msgid "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" -msgstr "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:660(None) -msgid "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:765(None) -msgid "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgstr "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:827(None) -msgid "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgstr "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:861(None) -msgid "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" -msgstr "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:895(None) -msgid "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" -msgstr "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:929(None) -msgid "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" -msgstr "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1024(None) -msgid "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" -msgstr "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1095(None) -msgid "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" -msgstr "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1164(None) -msgid "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgstr "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" - -#: C/zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "Manual de Zenity" - -#: C/zenity.xml:21(subtitle) C/zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "" - -#: C/zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: C/zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: C/zenity.xml:25(holder) C/zenity.xml:36(publishername) -#: C/zenity.xml:45(orgname) C/zenity.xml:69(para) -msgid "Sun Microsystems, Inc." -msgstr "Sun Microsystems, Inc." - -#: C/zenity.xml:2(para) -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" - -#: C/zenity.xml:12(para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" - -#: C/zenity.xml:19(para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" - -#: C/zenity.xml:35(para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" - -#: C/zenity.xml:55(para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" - -#: C/zenity.xml:28(para) -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"" -msgstr "" - -#: C/zenity.xml:43(firstname) -msgid "Sun" -msgstr "Sun" - -#: C/zenity.xml:44(surname) -msgid "Java Desktop System Documentation Team" -msgstr "" - -#: C/zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: C/zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: C/zenity.xml:51(orgname) C/zenity.xml:58(orgname) C/zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "Projècte de documentacion de GNOME" - -#: C/zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: C/zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: C/zenity.xml:66(date) -msgid "August 2004" -msgstr "Agost de 2004" - -#: C/zenity.xml:68(para) -msgid "Sun Java Desktop System Documentation Team" -msgstr "" - -#: C/zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "Manual de Zenity 1.0" - -#: C/zenity.xml:75(date) -msgid "January 2003" -msgstr "Genièr de 2003" - -#: C/zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "Aqueste manual descriu la version 2.6.0 de Zenity." - -#: C/zenity.xml:87(title) -msgid "Feedback" -msgstr "" - -#: C/zenity.xml:88(para) -msgid "" -"To send feedback, follow the directions in the Feedback Page." -msgstr "" - -#: C/zenity.xml:95(para) -msgid "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialog boxes from the commandline and shell scripts." -msgstr "" - -#: C/zenity.xml:102(primary) -msgid "zenity command" -msgstr "comanda de zenity" - -#: C/zenity.xml:105(primary) -msgid "dialog creator" -msgstr "" - -#: C/zenity.xml:112(title) -msgid "Introduction" -msgstr "Introduccion" - -#: C/zenity.xml:114(para) -msgid "" -"Zenity enables you to create the following types " -"of simple dialog:" -msgstr "" - -#: C/zenity.xml:119(para) -msgid "Calendar" -msgstr "Calendièr" - -#: C/zenity.xml:120(para) -msgid "File selection" -msgstr "Seleccion de fichièrs" - -#: C/zenity.xml:121(para) -msgid "List" -msgstr "Tièra" - -#: C/zenity.xml:122(para) -msgid "Notification icon" -msgstr "Icòna de notificacion" - -#: C/zenity.xml:123(para) -msgid "Message" -msgstr "Messatge" - -#: C/zenity.xml:125(para) C/zenity.xml:786(para) -msgid "Error" -msgstr "Error" - -#: C/zenity.xml:126(para) C/zenity.xml:789(para) -msgid "Information" -msgstr "Entresenhas" - -#: C/zenity.xml:127(para) C/zenity.xml:792(para) -msgid "Question" -msgstr "Question" - -#: C/zenity.xml:128(para) C/zenity.xml:795(para) -msgid "Warning" -msgstr "Alèrta" - -#: C/zenity.xml:131(para) -msgid "Progress" -msgstr "Avançament" - -#: C/zenity.xml:132(para) -msgid "Text entry" -msgstr "" - -#: C/zenity.xml:133(para) -msgid "Text information" -msgstr "" - -#: C/zenity.xml:141(title) -msgid "Usage" -msgstr "Utilizacion" - -#: C/zenity.xml:143(para) -msgid "" -"When you write scripts, you can use Zenity to " -"create simple dialogs that interact graphically with the user, as follows:" -msgstr "" - -#: C/zenity.xml:148(para) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" - -#: C/zenity.xml:153(para) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" - -#: C/zenity.xml:158(para) -msgid "" -"When the user closes the dialog, Zenity prints " -"the text produced by the dialog to standard error." -msgstr "" - -#: C/zenity.xml:163(para) -msgid "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." -msgstr "" - -#: C/zenity.xml:166(para) -msgid "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" -msgstr "" - -#: C/zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" - -#: C/zenity.xml:175(title) -msgid "Access Keys" -msgstr "" - -#: C/zenity.xml:176(para) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" - -#: C/zenity.xml:179(para) -msgid "" -"Some Zenity dialogs support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialog. The following example shows " -"how to specify the letter 'C' as the access key:" -msgstr "" - -#: C/zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Causissètz un nom\"." - -#: C/zenity.xml:186(title) -msgid "Exit Codes" -msgstr "" - -#: C/zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "" - -#: C/zenity.xml:198(para) -msgid "Exit Code" -msgstr "" - -#: C/zenity.xml:200(para) -msgid "Description" -msgstr "Descripcion" - -#: C/zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: C/zenity.xml:209(para) -msgid "" -"The user has pressed either OK or Close." -msgstr "" - -#: C/zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: C/zenity.xml:217(para) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" - -#: C/zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: C/zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "" - -#: C/zenity.xml:238(title) -msgid "General Options" -msgstr "Opcions generalas" - -#: C/zenity.xml:240(para) -msgid "" -"All Zenity dialogs support the following general " -"options:" -msgstr "" - -#: C/zenity.xml:247(term) -msgid "=title" -msgstr "=títol" - -#: C/zenity.xml:249(para) -msgid "Specifies the title of a dialog." -msgstr "" - -#: C/zenity.xml:254(term) -msgid "=icon_path" -msgstr "" -"=camin_de_l'icòna" - -#: C/zenity.xml:256(para) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" - -#: C/zenity.xml:264(term) -msgid "=width" -msgstr "=largor" - -#: C/zenity.xml:266(para) -msgid "Specifies the width of the dialog." -msgstr "" - -#: C/zenity.xml:271(term) -msgid "=height" -msgstr "=nautor" - -#: C/zenity.xml:273(para) -msgid "Specifies the height of the dialog." -msgstr "" - -#: C/zenity.xml:284(title) -msgid "Help Options" -msgstr "Opcions d'ajuda" - -#: C/zenity.xml:286(para) -msgid "Zenity provides the following help options:" -msgstr "" - -#: C/zenity.xml:293(option) -msgid "--help" -msgstr "--help" - -#: C/zenity.xml:295(para) -msgid "Displays shortened help text." -msgstr "" - -#: C/zenity.xml:300(option) -msgid "--help-all" -msgstr "--help-all" - -#: C/zenity.xml:302(para) -msgid "Displays full help text for all dialogs." -msgstr "" - -#: C/zenity.xml:307(option) -msgid "--help-general" -msgstr "--help-general" - -#: C/zenity.xml:309(para) -msgid "Displays help text for general dialog options." -msgstr "" - -#: C/zenity.xml:314(option) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/zenity.xml:316(para) -msgid "Displays help text for calendar dialog options." -msgstr "" - -#: C/zenity.xml:321(option) -msgid "--help-entry" -msgstr "--help-entry" - -#: C/zenity.xml:323(para) -msgid "Displays help text for text entry dialog options." -msgstr "" - -#: C/zenity.xml:328(option) -msgid "--help-error" -msgstr "--help-error" - -#: C/zenity.xml:330(para) -msgid "Displays help text for error dialog options." -msgstr "" - -#: C/zenity.xml:335(option) -msgid "--help-info" -msgstr "--help-info" - -#: C/zenity.xml:337(para) -msgid "Displays help text for information dialog options." -msgstr "" - -#: C/zenity.xml:342(option) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/zenity.xml:344(para) -msgid "Displays help text for file selection dialog options." -msgstr "" - -#: C/zenity.xml:349(option) -msgid "--help-list" -msgstr "--help-list" - -#: C/zenity.xml:351(para) -msgid "Displays help text for list dialog options." -msgstr "" - -#: C/zenity.xml:356(option) -msgid "--help-notification" -msgstr "--help-notification" - -#: C/zenity.xml:358(para) -msgid "Displays help text for notification icon options." -msgstr "" - -#: C/zenity.xml:363(option) -msgid "--help-progress" -msgstr "--help-progress" - -#: C/zenity.xml:365(para) -msgid "Displays help text for progress dialog options." -msgstr "" - -#: C/zenity.xml:370(option) -msgid "--help-question" -msgstr "--help-question" - -#: C/zenity.xml:372(para) -msgid "Displays help text for question dialog options." -msgstr "" - -#: C/zenity.xml:377(option) -msgid "--help-warning" -msgstr "--help-warning" - -#: C/zenity.xml:379(para) -msgid "Displays help text for warning dialog options." -msgstr "" - -#: C/zenity.xml:384(option) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/zenity.xml:386(para) -msgid "Displays help for text information dialog options." -msgstr "" - -#: C/zenity.xml:391(option) -msgid "--help-misc" -msgstr "--help-misc" - -#: C/zenity.xml:393(para) -msgid "Displays help for miscellaneous options." -msgstr "" - -#: C/zenity.xml:398(option) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/zenity.xml:400(para) -msgid "Displays help for GTK+ options." -msgstr "Visualiza l'ajuda per las opcion GTK+." - -#: C/zenity.xml:411(title) -msgid "Miscellaneous Options" -msgstr "" - -#: C/zenity.xml:413(para) -msgid "" -"Zenity also provides the following miscellaneous " -"options:" -msgstr "" - -#: C/zenity.xml:420(option) -msgid "--about" -msgstr "--about" - -#: C/zenity.xml:422(para) -msgid "" -"Displays the About Zenity dialog, which contains " -"Zenity version information, copyright " -"information, and developer information." -msgstr "" - -#: C/zenity.xml:427(option) -msgid "--version" -msgstr "--version" - -#: C/zenity.xml:429(para) -msgid "Displays the version number of Zenity." -msgstr "" - -#: C/zenity.xml:440(title) -msgid "GTK+ Options" -msgstr "Opcions GTK+" - -#: C/zenity.xml:442(para) -msgid "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." -msgstr "" - -#: C/zenity.xml:452(title) -msgid "Calendar Dialog" -msgstr "" - -#: C/zenity.xml:454(para) -msgid "" -"Use the option to create a calendar dialog. " -"Zenity returns the selected date to standard " -"error. If no date is specified on the command line, the dialog uses the " -"current date." -msgstr "" - -#: C/zenity.xml:457(para) -msgid "The calendar dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:464(term) C/zenity.xml:635(term) C/zenity.xml:961(term) -#: C/zenity.xml:1050(term) -msgid "=text" -msgstr "=tèxt" - -#: C/zenity.xml:466(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "" - -#: C/zenity.xml:471(term) -msgid "=day" -msgstr "=jorn" - -#: C/zenity.xml:473(para) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" - -#: C/zenity.xml:479(term) -msgid "=month" -msgstr "=mes" - -#: C/zenity.xml:481(para) -msgid "" -"Specifies the month that is selected in the calendar dialog. " -"month must be a number between 1 and 12 inclusive." -msgstr "" - -#: C/zenity.xml:487(term) -msgid "=year" -msgstr "=annada" - -#: C/zenity.xml:489(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "" - -#: C/zenity.xml:494(term) -msgid "=format" -msgstr "=format" - -#: C/zenity.xml:496(para) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" - -#: C/zenity.xml:506(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Seleccionatz una data\" \\\n" -" --text=\"Clicatz sus una data per la seleccionar.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Pas de data seleccionada\"\n" -" fi\n" -" " - -#: C/zenity.xml:503(para) -msgid "" -"The following example script shows how to create a calendar dialog: " -"" -msgstr "" - -#: C/zenity.xml:522(title) -msgid "Calendar Dialog Example" -msgstr "" - -#: C/zenity.xml:0(application) -msgid "Zenity" -msgstr "Zenity" - -#: C/zenity.xml:529(phrase) -msgid " calendar dialog example" -msgstr "" - -#: C/zenity.xml:541(title) -msgid "File Selection Dialog" -msgstr "" - -#: C/zenity.xml:543(para) -msgid "" -"Use the option to create a file selection " -"dialog. Zenity returns the selected files or " -"directories to standard error. The default mode of the file selection dialog " -"is open." -msgstr "" - -#: C/zenity.xml:547(para) -msgid "The file selection dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:554(term) C/zenity.xml:1121(term) -msgid "=filename" -msgstr "=nom_de_fichièr" - -#: C/zenity.xml:556(para) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" - -#: C/zenity.xml:561(option) -msgid "--multiple" -msgstr "--multiple" - -#: C/zenity.xml:563(para) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" - -#: C/zenity.xml:568(option) -msgid "--directory" -msgstr "--directory" - -#: C/zenity.xml:570(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" - -#: C/zenity.xml:575(option) -msgid "--save" -msgstr "--save" - -#: C/zenity.xml:577(para) -msgid "Set the file selection dialog into save mode." -msgstr "" - -#: C/zenity.xml:582(term) C/zenity.xml:727(term) -msgid "=separator" -msgstr "" - -#: C/zenity.xml:584(para) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" - -#: C/zenity.xml:593(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" - -#: C/zenity.xml:590(para) -msgid "" -"The following example script shows how to create a file selection dialog: " -"" -msgstr "" - -#: C/zenity.xml:610(title) -msgid "File Selection Dialog Example" -msgstr "" - -#: C/zenity.xml:617(phrase) -msgid " file selection dialog example" -msgstr "" - -#: C/zenity.xml:627(title) -msgid "Notification Icon" -msgstr "Icòna de notificacion" - -#: C/zenity.xml:637(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "" - -#: C/zenity.xml:645(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" - -#: C/zenity.xml:643(para) -msgid "" -"The following example script shows how to create a notification icon: " -"" -msgstr "" - -#: C/zenity.xml:656(title) -msgid "Notification Icon Example" -msgstr "Exemple d'icòna de notificacion" - -#: C/zenity.xml:663(phrase) -msgid " notification icon example" -msgstr "" - -#: C/zenity.xml:674(title) -msgid "List Dialog" -msgstr "" - -#: C/zenity.xml:676(para) -msgid "" -"Use the option to create a list dialog. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard error." -msgstr "" - -#: C/zenity.xml:680(para) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" - -#: C/zenity.xml:684(para) -msgid "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" - -#: C/zenity.xml:688(para) -msgid "The list dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:695(term) -msgid "=column" -msgstr "=colomna" - -#: C/zenity.xml:697(para) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a option for each column that you want to " -"display in the dialog." -msgstr "" - -#: C/zenity.xml:703(option) -msgid "--checklist" -msgstr "--checklist" - -#: C/zenity.xml:705(para) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" - -#: C/zenity.xml:711(option) -msgid "--radiolist" -msgstr "--radiolist" - -#: C/zenity.xml:713(para) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" - -#: C/zenity.xml:719(option) C/zenity.xml:1128(option) -msgid "--editable" -msgstr "--editable" - -#: C/zenity.xml:721(para) -msgid "Allows the displayed items to be edited." -msgstr "Autorizar la modificacion dels elements visualizats." - -#: C/zenity.xml:729(para) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" - -#: C/zenity.xml:735(term) -msgid "=column" -msgstr "=colomna" - -#: C/zenity.xml:737(para) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" - -#: C/zenity.xml:747(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" - -#: C/zenity.xml:745(para) -msgid "" -"The following example script shows how to create a list dialog: " -msgstr "" - -#: C/zenity.xml:761(title) -msgid "List Dialog Example" -msgstr "" - -#: C/zenity.xml:768(phrase) -msgid " list dialog example" -msgstr "" - -#: C/zenity.xml:779(title) -msgid "Message Dialogs" -msgstr "" - -#: C/zenity.xml:781(para) -msgid "" -"Zenity can create four types of message dialog:" -msgstr "" - -#: C/zenity.xml:799(para) -msgid "" -"For each type, use the option to specify the text " -"that is displayed in the dialog." -msgstr "" - -#: C/zenity.xml:804(title) -msgid "Error Dialog" -msgstr "" - -#: C/zenity.xml:806(para) -msgid "Use the option to create an error dialog." -msgstr "" - -#: C/zenity.xml:813(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Impossible de trobar /var/log/syslog.\"\n" -" " - -#: C/zenity.xml:810(para) -msgid "" -"The following example script shows how to create an error dialog: " -"" -msgstr "" - -#: C/zenity.xml:823(title) -msgid "Error Dialog Example" -msgstr "" - -#: C/zenity.xml:830(phrase) -msgid " error dialog example" -msgstr "" - -#: C/zenity.xml:838(title) -msgid "Information Dialog" -msgstr "" - -#: C/zenity.xml:840(para) -msgid "Use the option to create an information dialog." -msgstr "" - -#: C/zenity.xml:847(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Fusion acabada. 3 fichièrs sur 10 meses a jorn.\"\n" -" " - -#: C/zenity.xml:844(para) -msgid "" -"The following example script shows how to create an information dialog: " -"" -msgstr "" - -#: C/zenity.xml:857(title) -msgid "Information Dialog Example" -msgstr "" - -#: C/zenity.xml:864(phrase) -msgid " information dialog example" -msgstr "" - -#: C/zenity.xml:872(title) -msgid "Question Dialog" -msgstr "" - -#: C/zenity.xml:874(para) -msgid "Use the option to create a question dialog." -msgstr "" - -#: C/zenity.xml:881(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" - -#: C/zenity.xml:878(para) -msgid "" -"The following example script shows how to create a question dialog: " -"" -msgstr "" - -#: C/zenity.xml:891(title) -msgid "Question Dialog Example" -msgstr "" - -#: C/zenity.xml:898(phrase) -msgid " question dialog example" -msgstr "" - -#: C/zenity.xml:906(title) -msgid "Warning Dialog" -msgstr "" - -#: C/zenity.xml:908(para) -msgid "Use the option to create a warning dialog." -msgstr "" - -#: C/zenity.xml:915(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" - -#: C/zenity.xml:912(para) -msgid "" -"The following example script shows how to create a warning dialog: " -"" -msgstr "" - -#: C/zenity.xml:925(title) -msgid "Warning Dialog Example" -msgstr "" - -#: C/zenity.xml:932(phrase) -msgid " warning dialog example" -msgstr "" - -#: C/zenity.xml:944(title) -msgid "Progress Dialog" -msgstr "" - -#: C/zenity.xml:946(para) -msgid "Use the option to create a progress dialog." -msgstr "" - -#: C/zenity.xml:950(para) -msgid "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." -msgstr "" - -#: C/zenity.xml:954(para) -msgid "The progress dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:963(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "" - -#: C/zenity.xml:968(term) -msgid "=percentage" -msgstr "=percentatge" - -#: C/zenity.xml:970(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" - -#: C/zenity.xml:975(option) -msgid "--auto-close" -msgstr "--auto-close" - -#: C/zenity.xml:977(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "" - -#: C/zenity.xml:982(option) -msgid "--pulsate" -msgstr "--pulsate" - -#: C/zenity.xml:984(para) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" - -#: C/zenity.xml:992(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" - -#: C/zenity.xml:990(para) -msgid "" -"The following example script shows how to create a progress dialog: " -"" -msgstr "" - -#: C/zenity.xml:1020(title) -msgid "Progress Dialog Example" -msgstr "" - -#: C/zenity.xml:1027(phrase) -msgid " progress dialog example" -msgstr "" - -#: C/zenity.xml:1038(title) -msgid "Text Entry Dialog" -msgstr "" - -#: C/zenity.xml:1040(para) -msgid "" -"Use the option to create a text entry dialog. " -"Zenity returns the contents of the text entry to " -"standard error." -msgstr "" - -#: C/zenity.xml:1043(para) -msgid "The text entry dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:1052(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "" - -#: C/zenity.xml:1057(term) -msgid "=text" -msgstr "=tèxt" - -#: C/zenity.xml:1059(para) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" - -#: C/zenity.xml:1064(option) -msgid "--hide-text" -msgstr "--hide-text" - -#: C/zenity.xml:1066(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "" - -#: C/zenity.xml:1075(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" - -#: C/zenity.xml:1072(para) -msgid "" -"The following example script shows how to create a text entry dialog: " -"" -msgstr "" - -#: C/zenity.xml:1091(title) -msgid "Text Entry Dialog Example" -msgstr "" - -#: C/zenity.xml:1098(phrase) -msgid " text entry dialog example" -msgstr "" - -#: C/zenity.xml:1108(title) -msgid "Text Information Dialog" -msgstr "" - -#: C/zenity.xml:1110(para) -msgid "" -"Use the option to create a text information " -"dialog." -msgstr "" - -#: C/zenity.xml:1114(para) -msgid "The text information dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:1123(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" - -#: C/zenity.xml:1130(para) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard error when the dialog is closed." -msgstr "" - -#: C/zenity.xml:1138(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Seleccionatz un fichièr\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"Pas de fichièr seleccionat.\";;\n" -" -1)\n" -" echo \"Pas de fichièr seleccionat.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:1136(para) -msgid "" -"The following example script shows how to create a text information dialog: " -"" -msgstr "" - -#: C/zenity.xml:1160(title) -msgid "Text Information Dialog Example" -msgstr "" - -#: C/zenity.xml:1167(phrase) -msgid " text information dialog example" -msgstr "" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2. -#: C/zenity.xml:0(None) -msgid "translator-credits" -msgstr "Yannig Marchegay (Kokoyaya) " - diff --git a/help/pl/figures/zenity-calendar-screenshot.png b/help/pl/figures/zenity-calendar-screenshot.png deleted file mode 100644 index f6b0709..0000000 Binary files a/help/pl/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-colorselection-screenshot.png b/help/pl/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 3bc35a8..0000000 Binary files a/help/pl/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-entry-screenshot.png b/help/pl/figures/zenity-entry-screenshot.png deleted file mode 100644 index c7d1705..0000000 Binary files a/help/pl/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-error-screenshot.png b/help/pl/figures/zenity-error-screenshot.png deleted file mode 100644 index 58d14ee..0000000 Binary files a/help/pl/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-fileselection-screenshot.png b/help/pl/figures/zenity-fileselection-screenshot.png deleted file mode 100644 index ec7eaf2..0000000 Binary files a/help/pl/figures/zenity-fileselection-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-forms-screenshot.png b/help/pl/figures/zenity-forms-screenshot.png deleted file mode 100644 index 613888b..0000000 Binary files a/help/pl/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-information-screenshot.png b/help/pl/figures/zenity-information-screenshot.png deleted file mode 100644 index 27d7929..0000000 Binary files a/help/pl/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-list-screenshot.png b/help/pl/figures/zenity-list-screenshot.png deleted file mode 100644 index 3494c33..0000000 Binary files a/help/pl/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-notification-listen-screenshot.png b/help/pl/figures/zenity-notification-listen-screenshot.png deleted file mode 100644 index 2587c9c..0000000 Binary files a/help/pl/figures/zenity-notification-listen-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-notification-screenshot.png b/help/pl/figures/zenity-notification-screenshot.png deleted file mode 100644 index 05b7818..0000000 Binary files a/help/pl/figures/zenity-notification-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-password-screenshot.png b/help/pl/figures/zenity-password-screenshot.png deleted file mode 100644 index 8bba629..0000000 Binary files a/help/pl/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-progress-screenshot.png b/help/pl/figures/zenity-progress-screenshot.png deleted file mode 100644 index 2ede8b7..0000000 Binary files a/help/pl/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-question-screenshot.png b/help/pl/figures/zenity-question-screenshot.png deleted file mode 100644 index 1e10338..0000000 Binary files a/help/pl/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-scale-screenshot.png b/help/pl/figures/zenity-scale-screenshot.png deleted file mode 100644 index 5d35958..0000000 Binary files a/help/pl/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-text-screenshot.png b/help/pl/figures/zenity-text-screenshot.png deleted file mode 100644 index c22f15c..0000000 Binary files a/help/pl/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/pl/figures/zenity-warning-screenshot.png b/help/pl/figures/zenity-warning-screenshot.png deleted file mode 100644 index 713679e..0000000 Binary files a/help/pl/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/pl/pl.po b/help/pl/pl.po deleted file mode 100644 index 9459a5e..0000000 --- a/help/pl/pl.po +++ /dev/null @@ -1,2574 +0,0 @@ -# Polish translation for zenity help. -# Copyright © 2017-2019 the zenity authors. -# This file is distributed under the same license as the zenity help. -# Piotr Drąg , 2017-2019. -# Aviary.pl , 2017-2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity-help\n" -"POT-Creation-Date: 2019-09-07 13:19+0000\n" -"PO-Revision-Date: 2019-09-08 10:50+0200\n" -"Last-Translator: Piotr Drąg \n" -"Language-Team: Polish \n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "Licencji GNU Wolnej Dokumentacji w wersji 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "Na warunkach <_:link-1/> lub dowolnej późniejszej." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "odnośnikiem" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Udziela się zezwolenia na kopiowanie, rozpowszechnianie i/lub modyfikację " -"tego dokumentu zgodnie z zasadami Licencji GNU Wolnej Dokumentacji w wersji " -"1.1 lub dowolnej późniejszej opublikowanej przez Free Software Foundation; " -"bez Sekcji Niezmiennych, bez Tekstu na Przedniej Okładce i bez Tekstu na " -"Tylnej Okładce. Egzemplarz licencji dostępny jest pod tym <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Ten podręcznik jest częścią kolekcji podręczników użytkownika GNOME " -"rozprowadzanych na zasadach GFDL. Jeśli chcesz rozpowszechniać ten " -"podręcznik w odłączeniu od kolekcji, możesz to zrobić dodając kopię licencji " -"do podręcznika, jak wyjaśniono to w sekcji 6. licencji." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Nazwy używane przez firmy, by wyróżniać swoje produkty i usługi są zazwyczaj " -"zarejestrowanymi znakami towarowymi. Jeśli występują one w dokumentacji " -"GNOME, w przypadku gdy są znane przez członków Projektu Dokumentacji GNOME, " -"są one napisane wielkimi literami lub zaczynają się od wielkiej litery." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"DOCUMENT IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " -"OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Piotr Drąg , 2017-2019\n" -"Aviary.pl , 2017-2019" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Używanie opcji --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Okno kalendarza" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Użyj opcji --calendar, aby utworzyć okno kalendarza. Zenity " -"zwraca wybraną datę w standardowym wyjściu. Jeśli w wierszu poleceń nie " -"podano daty, to okno używa obecnej." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Okno kalendarza obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=tekst" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Określa tekst wyświetlany w oknie kalendarza." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=dzień" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Określa dzień wybrany w oknie kalendarza. Musi być liczbą między 1 a 31, " -"włącznie." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=miesiąc" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Określa miesiąc wybrany w oknie kalendarza. Musi być liczbą między 1 a 12, " -"włącznie." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=rok" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Określa rok wybrany w oknie kalendarza." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Określa format zwracany z okna kalendarza po wybraniu daty. Domyślny format " -"zależy od języka systemu. Format musi zgadzać się z funkcją strftime, na przykład %A, %d.%m.%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno kalendarza:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Wybór daty\" \\\n" -"--text=\"Proszę kliknąć datę, aby ją wybrać.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Nie wybrano daty\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Przykład okna kalendarza" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Przykład okna kalendarza Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Używanie opcji --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Okno wyboru koloru" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Użyj opcji --color-selection, aby utworzyć okno wyboru koloru." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Okno wyboru koloru obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=WARTOŚĆ" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Ustawia początkowy kolor (np. #FF0000)." - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Wyświetla paletę." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno wyboru koloru:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Wybrano $COLOR.\";;\n" -" 1)\n" -" echo \"Nie wybrano koloru.\";;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Przykład okna wyboru koloru" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Przykład okna wyboru koloru Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Używanie opcji --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Okno wpisywania tekstu" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Użyj opcji --entry, aby utworzyć okno wpisywania tekstu. " -"Zenity zwraca wpisany tekst na standardowym wyjściu." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Okno wpisywania tekstu obsługuje te opcje:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Określa tekst wyświetlany w oknie wpisywania tekstu." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=tekst" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "Określa tekst wyświetlany w polu wpisywania okna wpisywania tekstu." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Ukrywa tekst w polu wpisywania okna wpisywania tekstu." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno wpisywania tekstu:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Dodanie nowego profilu\" \\\n" -"--text=\"Nazwa nowego profilu:\" \\\n" -"--entry-text \"NowyProfil\"\n" -" then echo $?\n" -" else echo \"Nie podano nazwy\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Przykład okna wpisywania tekstu" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Przykład okna wpisywania tekstu Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Używanie opcji --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Okno z błędem" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Użyj opcji --error, aby utworzyć okno z błędem." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z błędem:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Nie można odnaleźć pliku „/var/log/syslog”.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Przykład okna z błędem" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Przykład okna Zenity z błędem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Używanie opcji --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Okno wyboru pliku" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Użyj opcji --file-selection, aby utworzyć okno wyboru pliku. " -"Zenity zwraca wybrane pliki lub katalogi na standardowym wyjściu. " -"Domyślny tryb okna wyboru pliku to otwieranie." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Okno wyboru pliku obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=nazwa-pliku" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Określa plik lub katalog zaznaczony w oknie wyboru pliku po jego " -"wyświetleniu." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Umożliwia wybieranie wielu plików w oknie wyboru pliku." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Umożliwia wybieranie tylko katalogów w oknie wyboru pliku." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Ustawia tryb zapisywania okna wyboru pliku." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=separator" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "Określa ciąg używany do rozdzielania zwróconej listy nazw plików." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno wyboru pliku:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Wybór pliku\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Wybrano plik „$FILE”.\";;\n" -" 1)\n" -" echo \"Nie wybrano pliku.\";;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Przykład okna wyboru pliku" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Przykład okna wyboru pliku Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Używanie opcji --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Okno formularza" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Użyj opcji --forms, aby utworzyć okno formularza." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Okno formularza obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=NazwaPola" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Dodaje nowy wpis w oknie formularza." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=NazwaPola" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "Dodaje nowy wpis hasła w oknie formularza (ukrywa tekst)." - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=NazwaPola" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Dodaje nowy kalendarz w oknie formularza." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEKST" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Ustawia tekst okna." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SEPARATOR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Ustawia znak separatora wyjścia (domyślnie „|”)." - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=WZÓR" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Określa format zwracanej daty. Domyślny format zależy od języka systemu. " -"Format musi zgadzać się z funkcją strftime, na przykład %A, " -"%d.%m.%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno formularza:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Dodanie znajomego\" \\\n" -"\t--text=\"Proszę podać informacje o znajomym.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Imię\" \\\n" -"\t--add-entry=\"Nazwisko\" \\\n" -"\t--add-entry=\"Adres e-mail\" \\\n" -"\t--add-calendar=\"Urodziny\" >> adres.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Dodano znajomego.\";;\n" -" 1)\n" -" echo \"Nie dodano znajomego.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Przykład okna formularza" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Przykład okna formularza Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Zespół dokumentacji systemu Java Desktop firmy Sun" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Okna dialogowe" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Używanie opcji --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Okno z informacją" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Użyj opcji --info, aby utworzyć okno z informacją." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z informacją:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Ukończono łączenie. Zaktualizowano 3 z 10 plików.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Przykład okna z informacją" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Przykład okna Zenity z informacją" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"Zenity umożliwia tworzenie różnych rodzajów prostych okien " -"dialogowych." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Wprowadzenie" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"Zenity umożliwia tworzenie tych rodzajów prostych okien " -"dialogowych:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Kalendarz" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Wybór pliku" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formularze" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Ikona powiadomienia" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Komunikat" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Błąd" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Informacja" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Pytanie" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Ostrzeżenie" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Podawanie hasła" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Postęp" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Wpisywanie tekstu" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Informacje tekstowe" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Podziałka" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Wybór koloru" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Używanie opcji --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Okno z listą" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Użyj opcji --list, aby utworzyć okno z listą. Zenity " -"zwraca wpisy w pierwszej kolumnie tekstu wybranych rzędów na standardowym " -"wyjściu." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Dane dla okna muszą być podane kolumna po kolumnie, rząd po rzędzie. Dane " -"mogą być podawane do okna przez standardowe wejście. Każdy wpis musi być " -"rozdzielony znakiem nowego wiersza." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Jeśli używana jest opcja --checklist lub --radiolist, " -"to każdy rząd musi zaczynać się od „TRUE” (prawda) lub „FALSE” (fałsz)." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Okno z listą obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=kolumna" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Określa nagłówki kolumn wyświetlane w oknie z listą. Należy podać opcję " -"--column dla każdej kolumny wyświetlanej w oknie." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Określa, że pierwsza kolumna w oknie z listą zawiera pola wyboru." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Określa, że pierwsza kolumna w oknie z listą zawiera pola radiowe." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Umożliwia modyfikowanie wyświetlanych elementów." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "Określa ciąg używany, kiedy okno z listą zwraca wybrane wpisy." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=kolumna" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Określa, którą kolumnę wyświetlać po wybraniu. Domyślna kolumna to „1”. " -"Można użyć „ALL”, aby wyświetlić wszystkie kolumny listy." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z listą:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Wybór błędów do wyświetlenia\" \\\n" -" --column=\"Numer błędu\" --column=\"Ciężkość\" --column=\"Opis\" \\\n" -" 992383 Zwykła \"GtkTreeView zawiesza się po zaznaczeniu wielu elementów\" \\\n" -" 293823 Wysoka \"Słownik GNOME nie obsługuje pośrednika\" \\\n" -" 393823 Krytyczna \"Modyfikowanie menu nie działa w GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Przykład okna z listą" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Przykład okna Zenity z listą" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Błąd, Informacja, " -"Pytanie, Ostrzeżenie" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Okno komunikatu" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Dla każdego typu użyj opcji --text, aby określić tekst " -"wyświetlany w oknie." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Używanie opcji --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Ikona powiadomienia" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Użyj opcji --notification, aby utworzyć ikonę powiadomienia." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Określa tekst wyświetlany w obszarze powiadamiania." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'tekst', message: 'tekst', " -"tooltip: 'tekst', visible: 'tekst'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Nasłuchuje polecenia na standardowym wejściu. Należy podać co najmniej jedno " -"polecenie. Polecenia są rozdzielane przecinkami. Po poleceniu musi być " -"dwukropek i wartość." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Polecenie icon przyjmuje także wartości czterech standardowych " -"ikon: error (błąd), info (informacja), question (pytanie) i warning (ostrzeżenie)." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć ikonę powiadomienia:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Niezbędne są aktualizacje systemu.\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Przykład ikony powiadamiania" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Przykład ikony powiadamiania Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Ten przykładowy skrypt pokazuje, jak utworzyć ikonę powiadomienia z opcją " -"--listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: tekst komunikatu\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Przykład ikony powiadamiania z opcją --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "" -"Przykład ikony powiadamiania Zenity z opcją --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Używanie opcji --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Okno hasła" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "Użyj opcji --password, aby utworzyć okno podawania hasła." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Okno podawania hasła obsługuje te opcje:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Wyświetla pole nazwy użytkownika." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno podawania hasła:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nazwa użytkownika: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Hasło: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Zatrzymaj logowanie.\";;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Przykład okna podawania hasła" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Przykład okna podawania hasła Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Używanie opcji --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Okno z postępem" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "Użyj opcji --progress, aby utworzyć okno z postępem." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity odczytuje dane ze standardowego wejścia wiersz po wierszu. " -"Jeśli wiersza zaczyna się znakiem #, to tekst jest aktualizowany tekstem " -"z tego wiersza. Jeśli wiersz zawiera tylko liczbę, to procent jest " -"aktualizowany tą liczbą." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Okno z postępem obsługuje te opcje:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Określa tekst wyświetlany w oknie z postępem." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=procent" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Określa początkowy procent ustawiony w oknie z postępem." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Zamyka okno z postępem po osiągnięciu 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Określa, że pasek postępu pulsuje do czasu odczytania znaku EOF ze " -"standardowego wejścia." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z postępem:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Aktualizowanie dzienników poczty\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Przywracanie zadań cron\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Ten wiersz zostanie zignorowany\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Ponowne uruchamianie systemu\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Aktualizacja dzienników systemu\" \\\n" -" --text=\"Wyszukiwanie dzienników poczty…\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Anulowano aktualizację.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Przykład okna z postępem" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Przykład okna Zenity z postępem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Używanie opcji --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Okno z pytaniem" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Użyj opcji --question, aby utworzyć okno z pytaniem." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z pytaniem:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Na pewno kontynuować?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Przykład okna z pytaniem" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Przykład okna Zenity z pytaniem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Używanie opcji --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Okno z podziałką" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Użyj opcji --scale, aby utworzyć okno z podziałką." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Okno z podziałką obsługuje te opcje:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "Ustawia tekst okna (domyślnie „Dopasowanie wartości podziałki”)." - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=WARTOŚĆ" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Ustawia początkową wartość (domyślnie 0). Należy podać wartość między " -"minimalną a maksymalną." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=WARTOŚĆ" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Ustawia minimalną wartość (domyślnie 0)." - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=WARTOŚĆ" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Ustawia maksymalną wartość (domyślnie 100)." - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=WARTOŚĆ" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Ustawia rozmiar kroku (domyślnie 1)." - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Wyświetla wartość na standardowym wyjściu po jej zmianie." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Ukrywa wartość w oknie." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z podziałką:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Wybór przezroczystości okna.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Wybrano $VALUE%.\";;\n" -" 1)\n" -" echo \"Nie wybrano wartości.\";;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Przykład okna z podziałką" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Przykład okna Zenity z podziałką" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Używanie opcji --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Okno z informacją tekstową" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Użyj opcji --text-info, aby utworzyć okno z informacją tekstową." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Okno z informacją tekstową obsługuje te opcje:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Określa plik wczytywany w oknie informacji tekstowej." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Umożliwia modyfikowanie wyświetlanego tekstu. Zmodyfikowany tekst jest " -"zwracany do standardowego wyjścia po zamknięciu okna." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=CZCIONKA" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Określa czcionkę tekstu." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEKST" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "Włącza pole wyboru, takie jak „Przeczytałam i zgadzam się”." - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Włącza obsługę języka HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "Ustawia adres URL zamiast pliku. Działa tylko z opcją --html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"Ten przykładowy skrypt pokazuje, jak utworzyć okno z informacją tekstową:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Plik „COPYING” musi być w tym samym katalogu co ten skrypt.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licencja\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Przeczytałam i zgadzam się.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Rozpocznij instalację.\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Zatrzymaj instalację.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Wystąpił nieoczekiwany błąd.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Przykład okna z informacją tekstową" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Przykład okna Zenity z informacją tekstową" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Można używać Zenity do tworzenia prostych okien dialogowych " -"obsługiwanych przez użytkownika." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Użycie" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Podczas pisania skryptów można używać programu Zenity do " -"tworzenia prostych okien dialogowych obsługiwanych przez użytkownika:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Można utworzyć okno, aby uzyskać informacje od użytkownika. Na przykład, " -"można poprosić użytkownika o wybranie daty z kalendarza, albo o wybranie " -"pliku." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Można utworzyć okno, aby przekazać użytkownikowi informacje. Na przykład, " -"można użyć okno z postępem, aby informować o obecnym stanie działania, albo " -"użyć okna z ostrzeżeniem, aby powiadomić użytkownika o niebezpieczeństwie." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Po zamknięciu okna przez użytkownika Zenity wyświetla tekst " -"utworzony przez okno w standardowym wyjściu." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Podczas pisania poleceń Zenity należy się upewnić, że każdy " -"parametr jest w cudzysłowach." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Prawidłowe polecenie:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Plan wakacji\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Nieprawidłowe polecenie:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Plan wakacji" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Pominięcie cudzysłowów spowoduje nieoczekiwane wyniki." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Klawisze dostępu" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Klawisz dostępu umożliwia wykonanie działania za pomocą klawiatury, zamiast " -"używać myszy do wyboru polecenia z menu lub okna dialogowego. Klawisze " -"dostępu można rozpoznać po podkreślonej literze w menu lub opcji okna." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Część okien Zenity obsługuje klawisze dostępu. Aby określić znak " -"używany jako klawisz dostępu, umieść znak podkreślenia przed tym znakiem " -"w tekście okna. Ten przykład pokazuje, jak określić literę „W” jako klawisz " -"dostępu:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Wybierz nazwę\"" - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Kody wyjściowe" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity zwraca te kody wyjściowe:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Kod wyjściowy" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Opis" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Użytkownik kliknął przycisk OK lub Zamknij." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Użytkownik kliknął przycisk Anuluj lub „×” okna." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Wystąpił nieoczekiwany błąd." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Okno zostało zamknięte, ponieważ przekroczono czas oczekiwania." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Ogólne opcje" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Wszystkie okna Zenity obsługują te ogólne opcje:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=tytuł" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Określa tytuł okna." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ścieżka-do-ikony" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Określa ikonę wyświetlaną w ramce okna. Dostępne są także cztery standardowe " -"ikony, które można określić słowami kluczowymi „info” (informacja), " -"„warning” (ostrzeżenie), „question” (pytanie) i „error” (błąd)." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=szerokość" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Określa szerokość okna." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=wysokość" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Określa wysokość okna." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=czas-oczekiwania" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Określa czas oczekiwania w sekundach, po jakich okno zostanie zamknięte." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Opcje pomocy" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity dostarcza te opcje pomocy:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Wyświetla skrócony tekst pomocy." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Wyświetla pełny tekst pomocy dla wszystkich okien." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Wyświetla tekst pomocy dla ogólnych opcji okna." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna kalendarza." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna wpisywania tekstu." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z błędem." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z informacją." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna wyboru pliku." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z listą." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Wyświetla tekst pomocy dla opcji ikony powiadamiania." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z postępem." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z pytaniem." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Wyświetla tekst pomocy dla opcji okna z ostrzeżeniem." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Wyświetla pomoc dla opcji okna z informacją tekstową." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Wyświetla pomoc dla różnych opcji." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Wyświetla pomoc dla opcji biblioteki GTK." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Różne opcje" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity dostarcza także te różne opcje:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Wyświetla okno O programie Zenity, zawierające wersję oraz " -"informacje o prawach autorskich i programistach." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Wyświetla wersję Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Opcje biblioteki GTK" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity obsługuje standardowe opcje biblioteki GTK. Wykonanie polecenia " -"zenity --help-gtk wyświetli więcej informacji." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Zmienne środowiskowe" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Zwykle program Zenity wykrywa okno terminala, z którego został uruchomiony " -"i wyświetla swoje okna nad tym oknem. Można to wyłączyć usuwając ustawienie " -"zmiennej środowiskowej WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Używanie opcji --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Okno z ostrzeżeniem" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Użyj opcji --warning, aby utworzyć okno z ostrzeżeniem." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "Ten przykładowy skrypt pokazuje, jak utworzyć okno z ostrzeżeniem:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Odłącz kabel zasilania, aby uniknąć porażenia prądem.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Przykład okna z ostrzeżeniem" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Przykład okna Zenity z ostrzeżeniem" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" diff --git a/help/pt_BR/figures/zenity-calendar-screenshot.png b/help/pt_BR/figures/zenity-calendar-screenshot.png deleted file mode 100644 index 383fb40..0000000 Binary files a/help/pt_BR/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-colorselection-screenshot.png b/help/pt_BR/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index feaf50e..0000000 Binary files a/help/pt_BR/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-entry-screenshot.png b/help/pt_BR/figures/zenity-entry-screenshot.png deleted file mode 100644 index 2ca9737..0000000 Binary files a/help/pt_BR/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-error-screenshot.png b/help/pt_BR/figures/zenity-error-screenshot.png deleted file mode 100644 index 1c9fa87..0000000 Binary files a/help/pt_BR/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-fileselection-screenshot.png b/help/pt_BR/figures/zenity-fileselection-screenshot.png deleted file mode 100644 index d19a5d9..0000000 Binary files a/help/pt_BR/figures/zenity-fileselection-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-forms-screenshot.png b/help/pt_BR/figures/zenity-forms-screenshot.png deleted file mode 100644 index 0e85642..0000000 Binary files a/help/pt_BR/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-information-screenshot.png b/help/pt_BR/figures/zenity-information-screenshot.png deleted file mode 100644 index 6e6b531..0000000 Binary files a/help/pt_BR/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-list-screenshot.png b/help/pt_BR/figures/zenity-list-screenshot.png deleted file mode 100644 index 7553381..0000000 Binary files a/help/pt_BR/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-notification-listen-screenshot.png b/help/pt_BR/figures/zenity-notification-listen-screenshot.png deleted file mode 100644 index 177aa8c..0000000 Binary files a/help/pt_BR/figures/zenity-notification-listen-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-notification-screenshot.png b/help/pt_BR/figures/zenity-notification-screenshot.png deleted file mode 100644 index f597d0b..0000000 Binary files a/help/pt_BR/figures/zenity-notification-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-password-screenshot.png b/help/pt_BR/figures/zenity-password-screenshot.png deleted file mode 100644 index fa5c422..0000000 Binary files a/help/pt_BR/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-progress-screenshot.png b/help/pt_BR/figures/zenity-progress-screenshot.png deleted file mode 100644 index 4804098..0000000 Binary files a/help/pt_BR/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-question-screenshot.png b/help/pt_BR/figures/zenity-question-screenshot.png deleted file mode 100644 index 82ffbe5..0000000 Binary files a/help/pt_BR/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-scale-screenshot.png b/help/pt_BR/figures/zenity-scale-screenshot.png deleted file mode 100644 index 36078fc..0000000 Binary files a/help/pt_BR/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-text-screenshot.png b/help/pt_BR/figures/zenity-text-screenshot.png deleted file mode 100644 index bb7059b..0000000 Binary files a/help/pt_BR/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/pt_BR/figures/zenity-warning-screenshot.png b/help/pt_BR/figures/zenity-warning-screenshot.png deleted file mode 100644 index c6d21c4..0000000 Binary files a/help/pt_BR/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/pt_BR/pt_BR.po b/help/pt_BR/pt_BR.po deleted file mode 100644 index 3359287..0000000 --- a/help/pt_BR/pt_BR.po +++ /dev/null @@ -1,2903 +0,0 @@ -# Brazilian Portuguese translation for Zenity. -# Copyright (C) 2019 Free Software Foundation, Inc. -# This file is distributed under the same license as the Zenity package. -# Rodolfo Ribeiro Gomes , 2009. -# Isis Binder , 2010. -# Rafael Fontenelle , 2017-2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2019-09-07 13:19+0000\n" -"PO-Revision-Date: 2019-09-09 20:42-0300\n" -"Last-Translator: Rafael Fontenelle \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" -"X-Generator: Gtranslator 3.32.0\n" -"X-Project-Style: gnome\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -#| msgid "GNU Free Documentation License (GFDL)" -msgid "GNU Free Documentation License Version 1.1" -msgstr "Licença de Documentação Livre GNU Versão 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Essa obra está licenciada sob uma <_:link-1/> ou qualquer versão posterior." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "link" - -#. (itstool) path: license/p -#: C/legal.xml:8 -#| msgid "" -#| "Permission is granted to copy, distribute and/or modify this document " -#| "under the terms of the GNU Free Documentation License (GFDL), Version 1.1 " -#| "or any later version published by the Free Software Foundation with no " -#| "Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You " -#| "can find a copy of the GFDL at this <_:ulink-1/> or in the file COPYING-" -#| "DOCS distributed with this manual." -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Permissão concedida para copiar, distribuir e/ou modificar este documento " -"sob os termos da Licença de Documentação Livre GNU (GNU Free Documentation " -"License), Versão 1.1 ou qualquer versão mais recente publicada pela Free " -"Software Foundation; sem Seções Invariantes, sem Textos de Capa Frontal, e " -"sem Textos de Contracapa. Você pode encontrar uma cópia da licença GFDL " -"neste <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"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 é parte da coleção de manuais do GNOME distribuídos sob a GFDL. " -"Se você quiser distribuí-lo separadamente da coleção, você pode fazê-lo " -"adicionando ao manual uma cópia da licença, como descrito na seção 6 da " -"licença." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Muitos dos nomes usados por empresas para distinguir seus produtos e " -"serviços são reivindicados como marcas registradas. Onde esses nomes " -"aparecem em qualquer documentação do GNOME e os membros do Projeto de " -"Documentação do GNOME estiverem cientes dessas marcas registradas, os nomes " -"aparecerão impressos em letras maiúsculas ou com iniciais em maiúsculas." - -#. (itstool) path: license/p -#: C/legal.xml:33 -#| msgid "" -#| "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE " -#| "TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER " -#| "UNDERSTANDING THAT: <_:orderedlist-1/>" -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"O DOCUMENTO E VERSÕES MODIFICADAS DO DOCUMENTO SÃO FORNECIDOS SOB OS TERMOS " -"DA LICENÇA DE DOCUMENTAÇÃO LIVRE DO GNU COM O ENTENDIMENTO ADICIONAL DE QUE:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"O DOCUMENTO É FORNECIDO NA BASE “COMO ESTÁ”, SEM GARANTIAS DE QUALQUER TIPO, " -"TANTO EXPRESSA OU IMPLÍCITA, INCLUINDO, MAS NÃO LIMITADO A, GARANTIAS DE QUE " -"O DOCUMENTO OU VERSÃO MODIFICADA DO DOCUMENTO SEJA COMERCIALIZÁVEL, LIVRE DE " -"DEFEITOS, PRÓPRIO PARA UM PROPÓSITO ESPECÍFICO OU SEM INFRAÇÕES. TODO O " -"RISCO A RESPEITO DA QUALIDADE, EXATIDÃO, E DESEMPENHO DO DOCUMENTO OU " -"VERSÕES MODIFICADAS DO DOCUMENTO É DE SUA RESPONSABILIDADE. SE ALGUM " -"DOCUMENTO OU VERSÃO MODIFICADA SE PROVAR DEFEITUOSO EM QUALQUER ASPECTO, " -"VOCÊ (NÃO O ESCRITOR INICIAL, AUTOR OU QUALQUER CONTRIBUIDOR) ASSUME O CUSTO " -"DE QUALQUER SERVIÇO NECESSÁRIO, REPARO OU CORREÇÃO. ESSA RENÚNCIA DE " -"GARANTIAS CONSTITUI UMA PARTE ESSENCIAL DESTA LICENÇA. NENHUM USO DESTE " -"DOCUMENTO OU VERSÃO MODIFICADA DESTE DOCUMENTO É AUTORIZADO SE NÃO FOR SOB " -"ESSA RENÚNCIA; E" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"SOB NENHUMA CIRCUNSTÂNCIA E SOB NENHUMA TEORIA LEGAL, TANTO EM DANO " -"(INCLUINDO NEGLIGÊNCIA), CONTRATO, OU OUTROS, DEVEM O AUTOR, ESCRITOR " -"INICIAL, QUALQUER CONTRIBUIDOR, OU QUALQUER DISTRIBUIDOR DO DOCUMENTO OU " -"VERSÃO MODIFICADA DO DOCUMENTO, OU QUALQUER FORNECEDOR DE ALGUMA DESSAS " -"PARTES, SER CONSIDERADOS RESPONSÁVEIS A QUALQUER PESSOA POR QUALQUER DANO, " -"SEJA DIRETO, INDIRETO, ESPECIAL, ACIDENTAL OU CONSEQUENCIAL DE QUALQUER " -"INDIVÍDUO, INCLUINDO, MAS NÃO LIMITADO A, DANOS POR PERDA DE BOA VONTADE, " -"TRABALHO PARADO, FALHA OU MAU FUNCIONAMENTO DO COMPUTADOR, OU QUALQUER E " -"TODOS OS OUTROS DANOS OU PERDAS RESULTANTES OU RELACIONADOS AO USO DO " -"DOCUMENTO E VERSÕES MODIFICADAS, MESMO QUE TAL PARTE TENHA SIDO INFORMADA DA " -"POSSIBILIDADE DE TAIS DANOS." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Rodolfo Ribeiro Gomes , 2009\n" -"Rafael Fontenelle , 2017-2019" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Use a opção --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Diálogo de calendário" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Use a opção --calendar para criar um diálogo de calendário. O " -"Zenity returna a data selecionada para a saída padrão. Se nenhuma data for " -"especificada na linha de comando, o diálogo usa a data atual como valor " -"inicial." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "O diálogo de calendário oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=texto" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Especifica o texto que é exibido no diálogo de calendário." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=dia" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Especifica o dia que começa selecionado no diálogo de calendário. Dia deve " -"ser um número entre 1 e 31 inclusive." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=mês" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Especifica o mês que começa selecionado no diálogo de calendário. Mês deve " -"ser um número entre 1 e 12 inclusive." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=ano" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Especifica o ano que começa selecionado no diálogo de calendário." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=formato" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Especifica o formato que é utilizado no retorno do diálogo de calendário " -"depois da seleção da data. O formato padrão depende de sua localidade. " -"Formato deve ser um formato que seja aceitável pela função strftime, por exemplo %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de calendário:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Selecione uma data\" \\\n" -"--text=\"Clique em uma data para selecioná-la.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Nenhuma data foi selecionada\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Exemplo de diálogo de calendário" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Exemplo de diálogo de calendário do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-calendar-screenshot.png' " -#| "md5='92bf5317d799665acf0d4005cee184c2'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Use a opção --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Diálogo de seleção de cor" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Use a opção --color-selection para criar um diálogo de seleção de " -"cor." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "O diálogo de seleção de cor oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VALOR" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Define a cor inicial.(ex: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Mostra a paleta." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de seleção de cor:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Você selecionou $COR.\";;\n" -" 1)\n" -" echo \"Nenhuma cor selecionada.\";;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Exemplo de diálogo de seleção de cor" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Exemplo de diálogo de seleção de cor do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-colorselection-screenshot.png' " -#| "md5='febe3f417acea789c9db628fbe44f798'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Use a opção --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Diálogo de entrada de texto" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Use a opção --entry para criar um diálogo de entrada de texto. O " -"Zenity retorna o conteúdo da entrada de texto para a saída padrão." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "O diálogo de entrada de texto oferece suporte às seguintes opções:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Especifica o texto que é exibido no diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=texto" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Especifica o texto que é exibido no campo de entrada do diálogo de entrada " -"de texto." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Oculta o texto no campo de entrada do diálogo de entrada de texto." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de entrada de " -"texto:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Adicionar um novo perfil\" \\\n" -"--text=\"Digite um nome do novo perfil:\" \\\n" -"--entry-text \"NovoPerfil\"\n" -" then echo $?\n" -" else echo \"Nenhum nome foi digitado\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Exemplo de diálogo de entrada de texto" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Exemplo de diálogo de entrada de texto do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-entry-screenshot.png' " -#| "md5='bae6bf4342a66a3900deb15bde82ff42'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Use a opção --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Diálogo de erro" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Use a opção --error para criar um diálogo de erro." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "O script de exemplo a seguir mostra como criar um diálogo de erro:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Não foi possível localizar /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Exemplo de diálogo de erro" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Exemplo de diálogo de erro do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-error-screenshot.png' " -#| "md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Use a opção --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Diálogo de seleção de arquivo" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Use a opção --file-selection para criar um diálogo de seleção de " -"arquivo. O Zenity retorna os arquivos ou diretórios selecionados " -"para a saída padrão. O modo padrão para o diálogo de seleção de arquivo é " -"aberto." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "O diálogo de seleção de arquivo oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=arquivo" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Especifica o arquivo ou o diretório que começa selecionado no diálogo quando " -"ele é mostrado pela primeira vez." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "" -"Permite a seleção de múltiplos arquivos no diálogo de seleção de arquivos." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" -"Permite apenas a seleção de diretórios no diálogo de seleção de arquivos." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Ajusta o diálogo de seleção de arquivos para o modo de salvamento." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=separador" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Especifica o texto que será usado para dividir a lista de nomes de arquivos " -"retornada." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de seleção de " -"arquivo:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ARQUIVO=`zenity --file-selection --title=\"Selecione um arquivo\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$ARQUIVO\\\" selecionado.\";;\n" -" 1)\n" -" echo \"Nenhum arquivo selecionado.\";;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Exemplo de diálogo de seleção de arquivo" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Exemplo de diálogo de seleção de arquivo do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-fileselection-screenshot.png' " -#| "md5='bbba2652577f14ab4719f55a2ff57073'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81's" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Use a opção --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Diálogo de formulários" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Use a opção --forms para criar um diálogo de formulários." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "" -"O diálogo de formulários de progresso oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=NomeCampo" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Adiciona uma nova entrada no diálogo de formulários." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=NomeCampo" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Adiciona uma nova entrada de senha no diálogo de formulários. (texto oculto)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=NomeCampo" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Adiciona um novo calendário no diálogo de formulários." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXTO" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Define o texto do diálogo." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=SEPARADOR" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Define o caractere separador de saída. (Padrão: | )" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=MODELO" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Define o formato para a data retornada. O formato padrão depende de sua " -"localidade. O formato deve ser um aceitável pela função strftime, " -"por exemplo %A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo indicador de " -"progresso:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Adicionar amigo\" \\\n" -"\t--text=\"Digite informações sobre seu amigo.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Primeiro nome\" \\\n" -"\t--add-entry=\"Sobrenome\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Data de nascimento\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Amigo adicionado.\";;\n" -" 1)\n" -" echo \"Nenhum amigo adicionado.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Exemplo de diálogo de formulários" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Exemplo de diálogo de formulários do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-forms-screenshot.png' " -#| "md5='c11fab02e4d51212a538ce6859799d5f'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java Desktop System Documentation Team" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Manual do Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Diálogos" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Use a opção --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Diálogo de informação" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Use a opção --info para criar um diálogo de informação." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de informação:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Mesclagem completa. Foram atualizados 3 de 10 arquivos.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Exemplo de diálogo de informação" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Exemplo de diálogo de informação do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-information-screenshot.png' " -#| "md5='72386d53a991c46e918ee6dd22795aa6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "" -"O Zenity lhe permite a criar os seguintes tipos de diálogo " -"simples." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introdução" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "" -"O Zenity lhe permite a criar os seguintes tipos de diálogo " -"simples:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Calendário" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Seleção de arquivo" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formulários" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Ícone de notificação" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Mensagem" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Erro" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Informação" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Pergunta" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Aviso" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Entrada de senha" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Indicador de progresso" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Entrada de texto" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Informação de texto" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Escala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Seleção de cor" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Use a opção --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Diálogo de lista" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Use a opção --list para criar um diálogo de lista. O Zenity retorna para a saída padrão os itens na primeira coluna de texto das " -"linhas selecionadas." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Os dados para o diálogo devem ser especificados coluna por coluna, linha por " -"linha. Eles podem ser fornecidos através da entrada padrão. Cada item deve " -"ser separado por um caractere de nova-linha." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Se você usar as opções --checklist ou --radiolist, " -"cada linha deve começar ou com “TRUE” (verdadeiro) ou com “FALSE” (falso)." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "O diálogo de lista oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=coluna" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Especifica o cabeçalho das colunas que são exibidas no diálogo de lista. " -"Você deve especificar a opção --column para cada coluna que " -"queira exibir no diálogo." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Especifica que a primeira coluna no diálogo de lista contém caixas de " -"seleção." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "" -"Especifica que a primeira coluna no diálogo de lista contém botões de opção." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Permite que os itens exibidos sejam editados." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Especifica que texto é usado quando o diálogo de lista retorna os itens " -"selecionados." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=coluna" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Especifica que coluna deveria ser emitida após seleção. A coluna padrão é " -"“1”. “ALL” (tudo) pode ser usado para emitir todas as colunas na lista." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "O script de exemplo a seguir mostra como criar um diálogo de lista:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Escolha os defeitos que deseja ver\" \\\n" -" --column=\"Número do defeito\" --column=\"Gravidade\" --column=\"Descrição\" \\\n" -" 992383 Normal \"GtkTreeView quebra com seleções múltiplas\" \\\n" -" 293823 Alta \"O Dicionário do GNOME não faz uso do proxy\" \\\n" -" 393823 Crítica \"A edição do menu não funciona no GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Exemplo de diálogo de lista" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Exemplo de diálogo de lista do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-list-screenshot.png' " -#| "md5='8bd9ad9c760516a966d3590b2019fa1e'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Erro, Informação, " -"Pergunta, Aviso" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Diálogo de mensagem" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"Para cada tipo, use a opção --text para especificar o texto que " -"será exibido no diálogo." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Use a opção --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Ícone de notificação" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Use a opção --notification para criar um ícone de notificação." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Especifica o texto que é exibido na área de notificação." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'texto', message: 'texto', " -"tooltip: 'texto', visible: 'texto'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Ouve comandos na entrada padrão. Pelo menos um comando deve ser " -"especificado. Comandos são separados por vírgula. Um comando deve ser " -"seguido por dois pontos e um valor." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"O comando icon também aceita quatro valores pré-definidos tais " -"como error, info, question e warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "" -"O script de exemplo a seguir mostra como criar um ícone de notificação:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Existem atualizações de sistema importantes!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Exemplo de ícone de notificação" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "exemplo de ícone de notificação do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-notification-screenshot.png' " -#| "md5='49ebe82aa255c5536d018f2b4f919c51'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"O script de exemplo a seguir mostra como criar um ícone de notificação junto " -"com --listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: este é o texto da mensagem\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Exemplo de ícone de notificação com --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "Exemplo de notificação com --listen do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-notification-listen-screenshot.png' " -#| "md5='e7e6edba1c794426c4ce749bc355b25d'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Use a opção --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Diálogo de senha" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Use a opção --password para criar um diálogo indicador de " -"progresso." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "O diálogo de entrada de senha oferece suporte às seguintes opções:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Exibe o campo de nome de usuário." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de entrada de " -"senha:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRADA=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Nome de usuário: `echo $ENTRADA | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRADA | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Interromper início de sessão.\";;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Exemplo de diálogo de entrada de senha" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Exemplo de diálogo de entrada de texto do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-password-screenshot.png' " -#| "md5='6adbeb624a307f78072593d6d1c6def6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Use a opção --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Diálogo indicador de progresso" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "" -"Use a opção --progress para criar um diálogo indicador de " -"progresso." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"O Zenity lê dados da entrada padrão linha por linha. Se uma linha " -"for prefixada com #, o texto é atualizado com o texto dessa linha. Se uma " -"linha contiver apenas um número, o percentual é atualizado com tal número." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "O diálogo indicador de progresso oferece suporte às seguintes opções:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Especifica o texto que é exibido no diálogo indicador de progresso." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=porcentagem" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" -"Especifica a porcentagem inicial definida para o diálogo indicador de " -"progresso." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Fecha o diálogo indicador de progresso quando atinge os 100%." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Especifica que a barra de progresso pulse até que um caractere EOF (fim de " -"arquivo) seja lido da entrada padrão." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de indicador de " -"progresso:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Atualizando os registros do correio\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Reconfigurando os trabalhos do cron\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Esta linha será simplesmente ignorada\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Reiniciando o sistema\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Registro de atualizações do sistema\" \\\n" -" --text=\"Varrendo os registros de correio...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Atualização cancelada.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Exemplo de diálogo indicador de progresso" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Exemplo de diálogo indicador de progresso do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-error-screenshot.png' " -#| "md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Use a opção --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Diálogo de pergunta" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Use a opção --question para criar um diálogo de pergunta." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "O script de exemplo a seguir mostra como criar um diálogo de pergunta:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Tem certeza de que deseja prosseguir?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Exemplo de diálogo de pergunta" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Exemplo de diálogo de pergunta do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-question-screenshot.png' " -#| "md5='5889e2a57b9d1885f22977587a269610'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Use a opção --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Diálogo de escala" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Use a opção --scale para criar um diálogo de erro." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "O diálogo de escala oferece suporte às seguintes opções:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "Define o texto do diálogo. (Padrão: Ajusta o valor da escola)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Define o valor inicial. (Padrão: 0) Você deve especificar um valor entre o " -"valor mínimo e o valor máximo." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Define um valor mínimo. (Padrão: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Define um valor máximo. (Padrão: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VALOR" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Define o tamanho do passo. (Padrão: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Imprime o valor para a saída padrão, sempre que um valor é alterado." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Oculta o valor no diálogo." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "O script de exemplo a seguir mostra como criar um diálogo de escala:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALOR=`zenity --scale --text=\"Selecione a transparência da janela.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Você selecionou $VALOR%.\";;\n" -" 1)\n" -" echo \"Nenhum valor foi selecionado.\";;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Exemplo de diálogo de escala" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Exemplo de diálogo de escala do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-scale-screenshot.png' " -#| "md5='d44259a5b5b6e6ba0aceffd8501d0873'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Use a opção --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Diálogo de informação textual" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Use a opção --text-info para criar um diálogo de informação " -"textual." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "O diálogo de informação textual oferece suporte às seguintes opções:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" -"Especifica um arquivo que será carregado no diálogo de informação textual." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Permite que o texto exibido seja editado. O texto editado é retornado para a " -"saída padrão quando o diálogo é fechado." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=FONTE" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Especifica a fonte do texto." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXTO" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Habilita a caixa de seleção para uso como um “Eu lei e aceito os termos.”" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Habilita suporte a html." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Define uma url em vez de um arquivo. Funciona apenas se você usar a opção --" -"html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"O script de exemplo a seguir mostra como criar um diálogo de informação " -"textual:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Você deve colocar o arquivo \"COPYING\" na mesma pasta deste script.\n" -"ARQUIVO=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licença\" \\\n" -" --filename=$ARQUIVO \\\n" -" --checkbox=\"Eu li e aceito os termos.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Iniciar a instalação!\"\n" -"\t# próximo passo\n" -"\t;;\n" -" 1)\n" -" echo \"Parar a instalação!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ocorreu um erro inesperado.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Exemplo de diálogo de informação textual" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Exemplo de diálogo de informação textual do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-text-screenshot.png' " -#| "md5='79446b388fa6c3c3a619c8d6565b9f61'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"É possível usar o Zenity para criar diálogos simples que " -"interajam graficamente com o usuário." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Modo de uso" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Quando se escreve scripts, é possível usar o Zenity para criar " -"diálogos simples que interajam graficamente com o usuário:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Você pode criar um diálogo para obter informações do usuário. Por exemplo, " -"você pedir ao usuário que selecione uma data em um diálogo de calendário ou " -"para escolher um arquivo por um diálogo de seleção de arquivo." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Você pode criar um diálogo para prover informações ao usuário. Por exemplo, " -"você pode usar um diálogo indicador de progresso para indicar o estado atual " -"de uma operação ou usar um diálogo de mensagem de aviso para alertar o " -"usuário." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Quando o usuário fecha um diálogo, o Zenity emite o texto " -"produzido por ele para a saída padrão." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Ao escrever os comandos do Zenity, assegure-se de fazer uso das " -"aspas em volta de cada argumento." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Por exemplo, use:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Planejamento do feriado\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Não use:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Planejamento do feriado" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Se você não utilizar as aspas, pode obter resultados inesperados." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Teclas de acesso" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Uma tecla de acesso é aquela que lhe habilita desempenhar uma ação a partir " -"do teclado, em vez de usar o mouse, para escolher um comando de um menu ou " -"de um diálogo. Cada tecla de acesso é identificada por uma letra sublinhada " -"em uma opção do menu ou do diálogo." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Alguns diálogos do Zenity oferecem suporte para o uso de teclas " -"de acesso. Para especificar o caractere a usar como tecla de acesso, coloque " -"um sublinhado antes de tal caractere no texto do diálogo. Os exemplos a " -"seguir mostram como especificar a letra “E” como tecla de acesso:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "“_Escolha um nome”." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Códigos de saída" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "O Zenity retorna os seguintes códigos de saída:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Código de saída" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Descrição" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"O usuário pressionou ou OK ou Fechar." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"O usuário ou pressionou Cancelar ou usou as " -"funções da janela para fechar o diálogo." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Ocorreu um erro inesperado." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "O diálogo foi fechado porque o tempo de espera se esgotou." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Opções gerais" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "" -"Todos os diálogos do Zenity oferecem suporte às seguintes opções gerais:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=título" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Especifica o título de um diálogo." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=caminho_ícone" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Especifica o ícone que é exibido na moldura do diálogo. Existem 4 ícones pré-" -"definidos que também estão disponíveis ao usar as seguintes palavras-chave - " -"“info” (informação), “warning” (aviso), “question” (pergunta) e " -"“error” (erro)." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=largura" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Especifica a largura do diálogo." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=altura" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Especifica a altura do diálogo." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=tempo" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Especifica o tempo de espera em segundos depois do qual o diálogo será " -"fechado." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Opções de ajuda" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "O Zenity fornece as seguintes opções de ajuda:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Exibe o texto resumido de ajuda." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Exibe o texto completo de ajuda para todos os diálogos." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Exibe os textos de ajuda para opções gerais de diálogos." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de calendário." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de entrada de texto." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de erro." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de informação." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "" -"Exibe o texto de ajuda para as opções do diálogo de seleção de arquivo." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de lista." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Exibe o texto de ajuda para as opções de ícones de notificação." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "" -"Exibe o texto de ajuda para as opções do diálogo indicador de progresso." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de pergunta." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Exibe o texto de ajuda para as opções do diálogo de aviso." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "" -"Exibe o texto de ajuda para as opções do diálogo de informação de texto." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Exibe o texto de ajuda para outras opções." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Exibe ajuda para as opções do GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Outras opções" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "O Zenity também fornece as seguintes opções adicionais:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Exibe o diálogo Sobre o zenity, que contém as informações da " -"versão do Zenity, dos direitos autorais e dos desenvolvedores." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Exibe o número da versão do Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Opções do GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"O Zenity oferece suporte às opções padrões do GTK+. Para mais informações " -"sobre elas, execute o comando zenity --help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Variáveis de ambiente" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalmente, o Zenity detecta a janela de terminal pela qual foi lançado e " -"se mantém acima dessa janela. Esse comportamento pode ser desativado " -"desconfigurando a variável de ambiente WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Use a opção --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Diálogo de aviso" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Use a opção --warning para criar um diálogo de aviso." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "O script de exemplo a seguir mostra como criar um diálogo de aviso:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Desconecte o cabo de energia para evitar choque elétrico.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Exemplo de diálogo de aviso" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Exemplo de diálogo de aviso do Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -#| msgctxt "_" -#| msgid "" -#| "external ref='figures/zenity-warning-screenshot.png' " -#| "md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -#~ msgstr "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='6ee4831b1fd0242414bfc72e38a39287'" - -#~ msgid "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" -#~ msgstr "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Manual do aplicativo Zenity V2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems, Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Java Desktop System Documentation Team" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "Projeto de documentação do GNOME" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "Agosto de 2004" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Manual do Zenity V1.0" - -#~ msgid "January 2003" -#~ msgstr "Janeiro de 2003" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "Este manual descreve a versão 2.6.0 do Zenity." - -#~ msgid "Feedback" -#~ msgstr "Feedback" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "Para enviar um feedback, siga as instruções da página de feedback." - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "Zenity é uma reescritura do gdialog, o porte GNOME do dialog, que lhe " -#~ "permite exibir caixas de diálogo a parti de linha de comando e scripts " -#~ "shell." - -#~ msgid "zenity command" -#~ msgstr "o comando zenity" - -#~ msgid "dialog creator" -#~ msgstr "criador de diálogo" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "Por exemplo, use: zenity --calendar --title=" -#~ "\"Planejador de feriado\" Não use: " -#~ "zenity --calendar --title=Planejador de " -#~ "feriado" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "=title" -#~ msgstr "=título" - -#~ msgid "=width" -#~ msgstr "=largura" - -#~ msgid "=height" -#~ msgstr "=altura" - -#~ msgid "=timeout" -#~ msgstr "" -#~ "=tempo_de_espera" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "=text" -#~ msgstr "=texto" - -#~ msgid "=day" -#~ msgstr "=dia" - -#~ msgid "=month" -#~ msgstr "=mês" - -#~ msgid "=year" -#~ msgstr "=ano" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid "=filename" -#~ msgstr "" -#~ "=nome_de_arquivo" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "=column" -#~ msgstr "=coluna" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "" -#~ "O Zenity pode criar quarto tipos de diálogos " -#~ "de mensagem:" - -#~ msgid "=text" -#~ msgstr "=texto" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Selecione um arquivo\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"Nenhum arquivo foi selecionado.\";;\n" -#~ " -1)\n" -#~ " echo \"Nenhum arquivo foi selecionado.\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/ru/figures/zenity-colorselection-screenshot.png b/help/ru/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index 5f771e0..0000000 Binary files a/help/ru/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/ru/figures/zenity-password-screenshot.png b/help/ru/figures/zenity-password-screenshot.png deleted file mode 100644 index a1857c3..0000000 Binary files a/help/ru/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/ru/ru.po b/help/ru/ru.po deleted file mode 100644 index e89501e..0000000 --- a/help/ru/ru.po +++ /dev/null @@ -1,1734 +0,0 @@ -# Yuri Kozlov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: zenity help trunk\n" -"POT-Creation-Date: 2011-06-17 13:56+0000\n" -"PO-Revision-Date: 2011-06-25 11:55+0400\n" -"Last-Translator: Yuri Kozlov \n" -"Language-Team: Russian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:554(None) -msgid "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" -msgstr "" -"@@image: 'figures/zenity-calendar-screenshot.png'; " -"md5=b739d32aad963be4415d34ec103baf26" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:642(None) -msgid "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" -msgstr "" -"@@image: 'figures/zenity-fileselection-screenshot.png'; " -"md5=2c903cba26fb40462deea0bb6b931ea7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:688(None) -msgid "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "" -"@@image: 'figures/zenity-notification-screenshot.png'; " -"md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:793(None) -msgid "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgstr "" -"@@image: 'figures/zenity-list-screenshot.png'; " -"md5=9c5a2704eb27e21a8e8739c49f77b3fc" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:855(None) -msgid "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgstr "" -"@@image: 'figures/zenity-error-screenshot.png'; " -"md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:889(None) -msgid "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" -msgstr "" -"@@image: 'figures/zenity-information-screenshot.png'; " -"md5=5a9af4275678c8bfb9b48010860a45e5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:923(None) -msgid "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" -msgstr "" -"@@image: 'figures/zenity-question-screenshot.png'; " -"md5=df8414504f8c8ca946a3f1e63a460938" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:957(None) -msgid "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" -msgstr "" -"@@image: 'figures/zenity-warning-screenshot.png'; " -"md5=cde1378d51f800a025b8c37ecdb60a20" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1052(None) -msgid "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" -msgstr "" -"@@image: 'figures/zenity-progress-screenshot.png'; " -"md5=706736240f396ada12044c23b708a6a6" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1123(None) -msgid "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" -msgstr "" -"@@image: 'figures/zenity-entry-screenshot.png'; " -"md5=0fb790cbb6d13ec13a314b34f844ee80" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1192(None) -msgid "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgstr "" -"@@image: 'figures/zenity-text-screenshot.png'; " -"md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" - -#: C/zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "Руководство Zenity" - -#: C/zenity.xml:21(subtitle) C/zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "Руководство Zenity, версия 2.0" - -#: C/zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: C/zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: C/zenity.xml:25(holder) C/zenity.xml:36(publishername) -#: C/zenity.xml:45(orgname) C/zenity.xml:69(para) -msgid "Sun Microsystems, Inc." -msgstr "Sun Microsystems, Inc." - -#: C/zenity.xml:2(para) -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this link or " -"in the file COPYING-DOCS distributed with this manual." -msgstr "" -"Следующим разрешается копировать и/или модифицировать этот документ при " -"условии соблюдения GNU Free Documentation License (GFDL), версии 1.1 или " -"любой более поздней опубликованной ассоциацией свободного программного " -"обеспечения версией без неизменяемых частей, без текстов на обложках. Вы " -"можете найти копию лицензии по этой ссылке или в файле COPYING-DOCS, распространяемом с этим " -"документом." - -#: C/zenity.xml:12(para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Этот документ является частью документации GNOME распространяемой под " -"лицензией GFDL. Если вы хотите распространять этот документ отдельно от " -"общей документации, вы должны приложить копию лицензии к документу, как " -"написано в части 6 лицензии." - -#: C/zenity.xml:19(para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Некоторые имена и марки используются компаниями для различения их продуктов " -"и услуг и являются торговыми марками. Эти марки присутствуют в документации " -"и члены проекта документирования GNOME знают об этом. Имена выделяются " -"заглавными буквами или начальной заглавной буквой." - -#: C/zenity.xml:35(para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"ДОКУМЕНТ РАСПРОСТРАНЯЕТСЯ \"КАК ЕСТЬ\", БЕЗ ВСЯКИХ ГАРАНТИЙ, ПРИДУМАННЫХ ИЛИ " -"УНАСЛЕДОВАННЫХ, БЕЗ ОГРАНИЧЕНИЙ, ГАРАНТИЙ ТОГО ЧТО ДОКУМЕНТ ИЛИ " -"МОДИФИЦИРОВАННАЯ ВЕРСИЯ ДОКУМЕНТА СВОБОДНА ОТ ДЕФЕКТОВ, ТОЛЬКО ДЛЯ " -"СПЕЦИАЛЬНОГО ИСПОЛЬЗОВАНИЯ НЕ ЗАКЛЮЧАЮЩЕГО В СЕБЕ РИСКИ КАЧЕСТВА, " -"АККУРАТНОСТИ ИЛИ СООТВЕТСТВИЯ ДОКУМЕНТА ИЛИ ИЗМЕНЁННЫХ ВЕРСИЙ ДОКУМЕНТА " -"ВАШИМ ТРЕБОВАНИЯМ. ЕСЛИ ДОКУМЕНТ ИЛИ МОДИФИЦИРОВАННАЯ ВЕРСИЯ ДОКУМЕНТА ИМЕЕТ " -"НЕДОСТАТКИ, ВЫ (А НЕ АВТОР ДОКУМЕНТА ИЛИ ЕГО ПОМОЩНИК) ДОЛЖНЫ САМИ ПРИЛОЖИТЬ " -"УСИЛИЯ К ЕГО ДОРАБОТКИ, КОРРЕКЦИИ ИЛИ ВОССТАНОВЛЕНИЮ. ЭТО ПРЕДУПРЕЖДЕНИЕ " -"СОСТАВЛЯЕТ СУЩЕСТВЕННУЮ ЧАСТЬ ЛИЦЕНЗИИ. ДОКУМЕНТ НЕ ДОЛЖЕН ИСПОЛЬЗОВАТЬСЯ " -"БЕЗ ДАННОГО ПРЕДУПРЕЖДЕНИЯ И" - -#: C/zenity.xml:55(para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"НИ ПРИ КАКИХ ОБСТОЯТЕЛЬСТВАХ И НИ ПРИ КАКОМ ЗАКОННОМ СПОСОБЕ, НИ ПО КАКОМУ " -"СОГЛАШЕНИЮ ИЛИ ДРУГОЙ ПРИЧИНЕ, АВТОР, СОЗДАТЕЛЬ ИЛИ ПОМОЩНИКИ НЕ НЕСУТ " -"ОТВЕТСТВЕННОСТЬ ЗА ПРЯМОЕ, КОСВЕННОЕ, СПЕЦИАЛЬНОЕ, СЛУЧАЙНОЕ ИЛИ " -"ПРЕДНАМЕРЕННОЕ ПОВРЕЖДЕНИЕ ЛЮБОГО СВОЙСТВА, ВКЛЮЧАЯ БЕЗ ОГРАНИЧЕНИЯ ПОТЕРЮ " -"ЖЕЛАНИЯ, РАБОТОСПОСОБНОСТИ, КОМПЬЮТЕРНЫЕ СБОИ ИЛИ НЕПРАВИЛЬНОЕ " -"ВЗАИМОДЕЙСТВИЕ, ВМЕСТЕ ИЛИ ПО ОТДЕЛЬНОСТИ. НИКАКИЕ ПОВРЕЖДЕНИЯ И ПОТЕРИ НЕ " -"МОГУТ БЫТЬ ВОЗЛОЖЕНЫ НА АВТОРА ДОКУМЕНТА ИЛИ МОДИФИЦИРОВАННОЙ ВЕРСИИ " -"ДОКУМЕНТА, ДАЖЕ ЕСЛИ СТОРОНА БЫЛА ПРОИНФОРМИРОВАНА О ВОЗМОЖНОСТИ ТАКИХ " -"ПОВРЕЖДЕНИЙ." - -#: C/zenity.xml:28(para) -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"" -msgstr "" -"ДОКУМЕНТ И ИЗМЕНЁННЫЕ ВЕРСИИ ДОКУМЕНТА ПРЕДСТАВЛЯЮТСЯ ПОЛЬЗОВАТЕЛЮ ПОД " -"ЛИЦЕНЗИЕЙ GNU FREE DOCUMENTATION LICENSE С УВЕДОМЛЕНИЕМ О ТОМ, ЧТО " -"" - -#: C/zenity.xml:43(firstname) -msgid "Sun" -msgstr "Sun" - -#: C/zenity.xml:44(surname) -msgid "Java Desktop System Documentation Team" -msgstr "Команда документирования Java Desktop System" - -#: C/zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: C/zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: C/zenity.xml:51(orgname) C/zenity.xml:58(orgname) C/zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "Проект документирования GNOME" - -#: C/zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: C/zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: C/zenity.xml:66(date) -msgid "August 2004" -msgstr "Август, 2004" - -#: C/zenity.xml:68(para) -msgid "Sun Java Desktop System Documentation Team" -msgstr "Команда документирования Sun Java Desktop System" - -#: C/zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "Руководство Zenity, версия 1.0" - -#: C/zenity.xml:75(date) -msgid "January 2003" -msgstr "Январь 2003" - -#: C/zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "Это руководство описывает версию Zenity 2.6.0." - -#: C/zenity.xml:87(title) -msgid "Feedback" -msgstr "Обратная связь" - -#: C/zenity.xml:88(para) -msgid "" -"To send feedback, follow the directions in the Feedback Page." -msgstr "" -"Для обратной связи, следуйте указаниям на странице обратной связи." - -#: C/zenity.xml:95(para) -msgid "" -"Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to " -"display dialog boxes from the commandline and shell scripts." -msgstr "" -"Zenity это переписанная версия программы gdialog, адаптация программы dialog " -"для среды GNOME. Она позволяет вам изображать диалоговые окна из командной " -"строки и сценариев оболочки." - -#: C/zenity.xml:102(primary) -msgid "zenity command" -msgstr "команда zenity" - -#: C/zenity.xml:105(primary) -msgid "dialog creator" -msgstr "создатель диалоговых окон" - -#: C/zenity.xml:112(title) -msgid "Introduction" -msgstr "Введение" - -#: C/zenity.xml:114(para) -msgid "" -"Zenity enables you to create the following types " -"of simple dialog:" -msgstr "" -"Zenity позволяет вам создавать следующие типы " -"простых диалоговых окон:" - -#: C/zenity.xml:119(para) -msgid "Calendar" -msgstr "Календарь" - -#: C/zenity.xml:120(para) -msgid "File selection" -msgstr "Выбор файла" - -#: C/zenity.xml:121(para) -msgid "List" -msgstr "Список" - -#: C/zenity.xml:122(para) -msgid "Notification icon" -msgstr "Значок уведомления" - -#: C/zenity.xml:123(para) -msgid "Message" -msgstr "Сообщение" - -#: C/zenity.xml:125(para) C/zenity.xml:814(para) -msgid "Error" -msgstr "Ошибка" - -#: C/zenity.xml:126(para) C/zenity.xml:817(para) -msgid "Information" -msgstr "Информация" - -#: C/zenity.xml:127(para) C/zenity.xml:820(para) -msgid "Question" -msgstr "Вопрос" - -#: C/zenity.xml:128(para) C/zenity.xml:823(para) -msgid "Warning" -msgstr "Предупреждение" - -#: C/zenity.xml:131(para) -msgid "Progress" -msgstr "Ход выполнения" - -#: C/zenity.xml:132(para) -msgid "Text entry" -msgstr "Ввод текста" - -#: C/zenity.xml:133(para) -msgid "Text information" -msgstr "Текстовая информация" - -#: C/zenity.xml:141(title) -msgid "Usage" -msgstr "Использование" - -#: C/zenity.xml:143(para) -msgid "" -"When you write scripts, you can use Zenity to " -"create simple dialogs that interact graphically with the user, as follows:" -msgstr "" -"Когда вы пишите сценарии, вы можете использовать Zenity для создания простых графических диалоговых окон, которые " -"взаимодействуют с пользователем, как в следующих случаях:" - -#: C/zenity.xml:148(para) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Вы можете создать диалоговое окно, чтобы получить информацию от " -"пользователя. Например, вы можете попросить пользователя выбрать дату из " -"календаря или выбрать файл из окна выбора файла." - -#: C/zenity.xml:153(para) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Вы можете создать диалоговое окно, чтобы предоставить информацию " -"пользователю. Например, вы можете использовать окно с ходом выполнения, " -"чтобы указать текущее состояние операции или использовать окно " -"предупреждения, чтобы оповестить пользователя." - -#: C/zenity.xml:158(para) -msgid "" -"When the user closes the dialog, Zenity prints " -"the text produced by the dialog to standard output." -msgstr "" -"Когда пользователь закрывает диалоговое окно, Zenity печатает текст, создаваемый окном, в стандартный поток вывода." - -#: C/zenity.xml:163(para) -msgid "" -"When you write Zenity commands, ensure that you " -"place quotation marks around each argument." -msgstr "" -"Когда вы пишите команды Zenity, убедитесь, что вы " -"помещаете каждый аргумент в кавычки." - -#: C/zenity.xml:166(para) -msgid "" -"For example, use: zenity --calendar --title=" -"\"Holiday Planner\" Do not use: " -"zenity --calendar --title=Holiday Planner" -msgstr "" -"Например, используйте: zenity --calendar --title=" -"\"Планировщик праздников\" Не пишите: " -"zenity --calendar --title=Планировщик " -"праздников" - -#: C/zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" -"Если не использовать кавычки, то можно получить неожиданные результаты." - -#: C/zenity.xml:175(title) -msgid "Access Keys" -msgstr "Клавиши доступа" - -#: C/zenity.xml:176(para) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Клавиша доступа это клавиша, которая позволяет вам выполнять действие с " -"клавиатуры, нежели используя мышь, для выбора команды из меню или " -"диалогового окна. Каждая клавиша доступа назначается с помощью подчёркнутой " -"буквы в параметре, задающем текст меню или диалогового окна." - -#: C/zenity.xml:179(para) -msgid "" -"Some Zenity dialogs support the use of access " -"keys. To specify the character to use as the access key, place an underscore " -"before that character in the text of the dialog. The following example shows " -"how to specify the letter 'C' as the access key:" -msgstr "" -"Некоторые окна Zenity поддерживают использование " -"клавиш доступа. Чтобы указать символ, который нужно использовать для клавиши " -"доступа, поместите знак подчёркивания перед тем символом в тексте " -"диалогового окна. Следующий пример показывает, как установить букву «В» для " -"клавиши доступа:" - -#: C/zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Выберите имя\"." - -#: C/zenity.xml:186(title) -msgid "Exit Codes" -msgstr "Коды Выхода" - -#: C/zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "Zenity возвращает следующие коды выхода:" - -#: C/zenity.xml:198(para) -msgid "Exit Code" -msgstr "Код выхода" - -#: C/zenity.xml:200(para) -msgid "Description" -msgstr "Описание" - -#: C/zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: C/zenity.xml:209(para) -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Пользователь нажал либо OK, либо Закрыть." - -#: C/zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: C/zenity.xml:217(para) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Пользователь нажал либо Отмена, либо использовал " -"функции окна, чтобы закрыть диалоговое окно." - -#: C/zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: C/zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "Произошла неожиданная ошибка." - -#: C/zenity.xml:230(varname) -msgid "5" -msgstr "5" - -#: C/zenity.xml:233(para) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Окно диалога закрыто из-за завершения времени ожидания." - -#: C/zenity.xml:246(title) -msgid "General Options" -msgstr "Общие параметры" - -#: C/zenity.xml:248(para) -msgid "" -"All Zenity dialogs support the following general " -"options:" -msgstr "" -"Все диалоговые окна Zenity поддерживают следующие " -"общие параметры:" - -#: C/zenity.xml:255(term) -msgid "=title" -msgstr "=заголовок" - -#: C/zenity.xml:257(para) -msgid "Specifies the title of a dialog." -msgstr "Указывает заголовок диалогового окна." - -#: C/zenity.xml:262(term) -msgid "=icon_path" -msgstr "" -"=путь_к_значку" - -#: C/zenity.xml:264(para) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Указывает значок, который изображается в рамке диалогового окна. Существуют " -"4 запасных значка, доступных по следующим ключевым словам: info, warning, " -"question и error." - -#: C/zenity.xml:272(term) -msgid "=width" -msgstr "=ширина" - -#: C/zenity.xml:274(para) -msgid "Specifies the width of the dialog." -msgstr "Указывает ширину диалогового окна." - -#: C/zenity.xml:279(term) -msgid "=height" -msgstr "=высота" - -#: C/zenity.xml:281(para) -msgid "Specifies the height of the dialog." -msgstr "Указывает высоту диалогового окна." - -#: C/zenity.xml:286(term) -msgid "=timeout" -msgstr "=время_ожидания" - -#: C/zenity.xml:288(para) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Указывает время ожидания в секундах, по истечении которого диалоговое окно " -"закрывается." - -#: C/zenity.xml:299(title) -msgid "Help Options" -msgstr "Параметры вызова справки" - -#: C/zenity.xml:301(para) -msgid "Zenity provides the following help options:" -msgstr "" -"Zenity предоставляет следующие параметры справки:" - -#: C/zenity.xml:308(option) -msgid "--help" -msgstr "--help" - -#: C/zenity.xml:310(para) -msgid "Displays shortened help text." -msgstr "Показывает сокращённый текст справки." - -#: C/zenity.xml:315(option) -msgid "--help-all" -msgstr "--help-all" - -#: C/zenity.xml:317(para) -msgid "Displays full help text for all dialogs." -msgstr "Показывает полный текст справки для всех диалоговых окон." - -#: C/zenity.xml:322(option) -msgid "--help-general" -msgstr "--help-general" - -#: C/zenity.xml:324(para) -msgid "Displays help text for general dialog options." -msgstr "Показывает текст справки по общим параметрам диалоговых окон." - -#: C/zenity.xml:329(option) -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/zenity.xml:331(para) -msgid "Displays help text for calendar dialog options." -msgstr "Показывает текст справки по параметрам диалогового окна календаря." - -#: C/zenity.xml:336(option) -msgid "--help-entry" -msgstr "--help-entry" - -#: C/zenity.xml:338(para) -msgid "Displays help text for text entry dialog options." -msgstr "Показывает текст справки по параметрам диалогового окна ввода текста." - -#: C/zenity.xml:343(option) -msgid "--help-error" -msgstr "--help-error" - -#: C/zenity.xml:345(para) -msgid "Displays help text for error dialog options." -msgstr "" -"Показывает текст справки по параметрам диалогового окна сообщения об ошибке." - -#: C/zenity.xml:350(option) -msgid "--help-info" -msgstr "--help-info" - -#: C/zenity.xml:352(para) -msgid "Displays help text for information dialog options." -msgstr "" -"Показывает текст справки по параметрам информационного диалогового окна." - -#: C/zenity.xml:357(option) -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/zenity.xml:359(para) -msgid "Displays help text for file selection dialog options." -msgstr "Показывает текст справки по параметрам диалогового окна выбора файла." - -#: C/zenity.xml:364(option) -msgid "--help-list" -msgstr "--help-list" - -#: C/zenity.xml:366(para) -msgid "Displays help text for list dialog options." -msgstr "Показывает текст справки по параметрам диалогового окна списка." - -#: C/zenity.xml:371(option) -msgid "--help-notification" -msgstr "--help-notification" - -#: C/zenity.xml:373(para) -msgid "Displays help text for notification icon options." -msgstr "Показывает текст справки по параметрам значка уведомлений." - -#: C/zenity.xml:378(option) -msgid "--help-progress" -msgstr "--help-progress" - -#: C/zenity.xml:380(para) -msgid "Displays help text for progress dialog options." -msgstr "" -"Показывает текст справки по параметрам диалогового окна хода выполнения." - -#: C/zenity.xml:385(option) -msgid "--help-question" -msgstr "--help-question" - -#: C/zenity.xml:387(para) -msgid "Displays help text for question dialog options." -msgstr "Показывает текст справки по параметрам диалогового окна вопроса." - -#: C/zenity.xml:392(option) -msgid "--help-warning" -msgstr "--help-warning" - -#: C/zenity.xml:394(para) -msgid "Displays help text for warning dialog options." -msgstr "" -"Показывает текст справки по параметрам диалогового окна предупреждения." - -#: C/zenity.xml:399(option) -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/zenity.xml:401(para) -msgid "Displays help for text information dialog options." -msgstr "" -"Показывает текст справки по параметрам диалогового окна текстовой информации." - -#: C/zenity.xml:406(option) -msgid "--help-misc" -msgstr "--help-misc" - -#: C/zenity.xml:408(para) -msgid "Displays help for miscellaneous options." -msgstr "Показывает справки по разнообразным параметрам." - -#: C/zenity.xml:413(option) -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/zenity.xml:415(para) -msgid "Displays help for GTK+ options." -msgstr "Показывает справку по параметрам GTK+." - -#: C/zenity.xml:426(title) -msgid "Miscellaneous Options" -msgstr "Разнообразные параметры" - -#: C/zenity.xml:428(para) -msgid "" -"Zenity also provides the following miscellaneous " -"options:" -msgstr "" -"Zenity также может запускаться со следующими " -"дополнительными параметрами:" - -#: C/zenity.xml:435(option) -msgid "--about" -msgstr "--about" - -#: C/zenity.xml:437(para) -msgid "" -"Displays the About Zenity dialog, which contains " -"Zenity version information, copyright " -"information, and developer information." -msgstr "" -"Изображает диалоговое окно О программе Zenity, которое " -"содержит информацию о версии Zenity, информацию " -"об авторских правах и информацию о разработчике." - -#: C/zenity.xml:442(option) -msgid "--version" -msgstr "--version" - -#: C/zenity.xml:444(para) -msgid "Displays the version number of Zenity." -msgstr "Изображает номер версии Zenity." - -#: C/zenity.xml:455(title) -msgid "GTK+ Options" -msgstr "Параметры GTK+" - -#: C/zenity.xml:457(para) -msgid "" -"Zenity supports the standard GTK+ options. For " -"more information about the GTK+ options, execute the zenity -? command." -msgstr "" -"Zenity поддерживает стандартные параметры " -"программ GTK+. Для получения дополнительной информации о параметрах GTK+, " -"выполните команду zenity -?." - -#: C/zenity.xml:466(title) -msgid "Environment Variables" -msgstr "Переменные окружения" - -#: C/zenity.xml:468(para) -msgid "" -"Normally, Zenity detects the terminal window from " -"which it was launched and keeps itself above that window. This behavior can " -"be disabled by unsetting the WINDOWID environment variable." -msgstr "" -"Обычно, Zenity определяет окно терминала из " -"которого она была запущена и выводит диалоговые окна поверх этого окна. Это " -"можно отключить удалив переменную окружения WINDOWID." - -#: C/zenity.xml:480(title) -msgid "Calendar Dialog" -msgstr "Диалоговое окно календарь" - -#: C/zenity.xml:482(para) -msgid "" -"Use the option to create a calendar dialog. " -"Zenity returns the selected date to standard " -"output. If no date is specified on the command line, the dialog uses the " -"current date." -msgstr "" -"Используйте параметр , чтобы создать диалоговое " -"окно с календарём. Zenity возвращает выбранную " -"дату в стандартный поток. Если в командной строке не указана дата, то " -"диалоговое окно будет использовать текущую дату." - -#: C/zenity.xml:485(para) -msgid "The calendar dialog supports the following options:" -msgstr "Диалоговое окно календарь поддерживает следующие параметры:" - -#: C/zenity.xml:492(term) C/zenity.xml:663(term) C/zenity.xml:989(term) -#: C/zenity.xml:1078(term) -msgid "=text" -msgstr "=текст" - -#: C/zenity.xml:494(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Указывает текст, который будет изображён в диалоговом окне календаря." - -#: C/zenity.xml:499(term) -msgid "=day" -msgstr "=день" - -#: C/zenity.xml:501(para) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" -"Указывает день, который будет выделен в диалоговом окне календаря. " -"День должен быть числом между 1 и 31, " -"включительно." - -#: C/zenity.xml:507(term) -msgid "=month" -msgstr "=месяц" - -#: C/zenity.xml:509(para) -msgid "" -"Specifies the month that is selected in the calendar dialog. " -"month must be a number between 1 and 12 inclusive." -msgstr "" -"Указывает месяц, который будет выделен в диалоговом окне календаря. " -"Месяц должен быть числом между 1 и 12, " -"включительно." - -#: C/zenity.xml:515(term) -msgid "=year" -msgstr "=год" - -#: C/zenity.xml:517(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Указывает год, который будет выбран в диалоговом окне календаря." - -#: C/zenity.xml:522(term) -msgid "=format" -msgstr "=формат" - -#: C/zenity.xml:524(para) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Указывает формат даты, в котором она будет возвращена после выбора из " -"диалогового окна. Формат даты по умолчанию зависит от локали. " -"Формат должен иметь вид, приемлемый для функции " -"strftime, например %A %d/%m/%y." - -#: C/zenity.xml:534(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Выберите Дату\" \\\n" -" --text=\"Щёлкните на дате, чтобы выбрать её.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Дата не выбрана\"\n" -" fi\n" -" " - -#: C/zenity.xml:531(para) -msgid "" -"The following example script shows how to create a calendar dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"календаря: " - -#: C/zenity.xml:550(title) -msgid "Calendar Dialog Example" -msgstr "Пример диалогового окна календарь" - -#: C/zenity.xml:0(application) -msgid "Zenity" -msgstr "Zenity" - -#: C/zenity.xml:557(phrase) -msgid " calendar dialog example" -msgstr " пример диалогового окна календарь" - -#: C/zenity.xml:569(title) -msgid "File Selection Dialog" -msgstr "Диалоговое окно выбора файла" - -#: C/zenity.xml:571(para) -msgid "" -"Use the option to create a file selection " -"dialog. Zenity returns the selected files or " -"directories to standard output. The default mode of the file selection " -"dialog is open." -msgstr "" -"Используйте параметр , чтобы создать " -"диалоговое окно выбора файла. Zenity возвращает " -"имена выбранных файлов или каталогов в стандартный поток. Режимом " -"диалогового окна выбора файлов по умолчанию является режим «открыть»." - -#: C/zenity.xml:575(para) -msgid "The file selection dialog supports the following options:" -msgstr "Диалоговое окно выбора файлов поддерживает следующие параметры:" - -#: C/zenity.xml:582(term) C/zenity.xml:1149(term) -msgid "=filename" -msgstr "=имя_файла" - -#: C/zenity.xml:584(para) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Указывает файл или каталог, который будет выбран в диалоговом окне, когда " -"оно впервые появится." - -#: C/zenity.xml:589(option) -msgid "--multiple" -msgstr "--multiple" - -#: C/zenity.xml:591(para) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Позволяет выбирать сразу несколько файлов в окне выбора." - -#: C/zenity.xml:596(option) -msgid "--directory" -msgstr "--directory" - -#: C/zenity.xml:598(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Позволяет выбирать только каталоги в диалоговом окне выбора файла." - -#: C/zenity.xml:603(option) -msgid "--save" -msgstr "--save" - -#: C/zenity.xml:605(para) -msgid "Set the file selection dialog into save mode." -msgstr "Устанавливает диалоговое окно в режим сохранения файла." - -#: C/zenity.xml:610(term) C/zenity.xml:755(term) -msgid "=separator" -msgstr "=разделитель" - -#: C/zenity.xml:612(para) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Указывает строку, которая будет использована для разделения имён файлов в " -"возвращаемом списке." - -#: C/zenity.xml:621(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Выберите файл\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"Выбран \\\"$FILE\\\".\";;\n" -" 1)\n" -" echo \"Файл не выбран.\";;\n" -" -1)\n" -" echo \"Файл не выбран.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:618(para) -msgid "" -"The following example script shows how to create a file selection dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"выбора файла: " - -#: C/zenity.xml:638(title) -msgid "File Selection Dialog Example" -msgstr "Пример диалогового окна выбора файла" - -#: C/zenity.xml:645(phrase) -msgid " file selection dialog example" -msgstr " пример диалогового окна выбора файла" - -#: C/zenity.xml:655(title) -msgid "Notification Icon" -msgstr "Значок уведомления" - -#: C/zenity.xml:665(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "Указывает текст, который будет изображён в области уведомления." - -#: C/zenity.xml:673(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Необходимо обновить систему.\"\n" -" " - -#: C/zenity.xml:671(para) -msgid "" -"The following example script shows how to create a notification icon: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать значок уведомлений: " -"" - -#: C/zenity.xml:684(title) -msgid "Notification Icon Example" -msgstr "Пример значка уведомления" - -#: C/zenity.xml:691(phrase) -msgid " notification icon example" -msgstr " пример значка уведомления" - -#: C/zenity.xml:702(title) -msgid "List Dialog" -msgstr "Диалоговое окно списка" - -#: C/zenity.xml:704(para) -msgid "" -"Use the option to create a list dialog. " -"Zenity returns the entries in the first column of " -"text of selected rows to standard output." -msgstr "" -"Используйте параметр , чтобы создать диалоговое окно " -"списка. Zenity возвращает элементы первого " -"столбца текста из выбранных строк в стандартный поток." - -#: C/zenity.xml:708(para) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Данные для этого диалогового окна должны указываться столбец за столбцом, " -"строка за строкой. Данные могут быть поданы диалоговому окну через " -"стандартный ввод. Каждая запись должна быть отделена символом новой строки." - -#: C/zenity.xml:712(para) -msgid "" -"If you use the or " -"options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Если вы используете параметр или , каждая строка должна начинаться либо с TRUE, либо с " -"FALSE." - -#: C/zenity.xml:716(para) -msgid "The list dialog supports the following options:" -msgstr "Диалоговое окно списка поддерживает следующие параметры:" - -#: C/zenity.xml:723(term) -msgid "=column" -msgstr "=столбец" - -#: C/zenity.xml:725(para) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a option for each column that you want to " -"display in the dialog." -msgstr "" -"Указывает заголовки столбцов, которые будут изображены в диалоговом окне " -"списка. Вы должны указать параметр для каждого " -"столбца, который вы хотите отобразить в диалоговом окне." - -#: C/zenity.xml:731(option) -msgid "--checklist" -msgstr "--checklist" - -#: C/zenity.xml:733(para) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "" -"Указывает, что первый столбец в диалоговом окне списка содержит флажки." - -#: C/zenity.xml:739(option) -msgid "--radiolist" -msgstr "--radiolist" - -#: C/zenity.xml:741(para) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Указывает, что первый столбец в диалоговом окне содержит поля выбора." - -#: C/zenity.xml:747(option) C/zenity.xml:1156(option) -msgid "--editable" -msgstr "--editable" - -#: C/zenity.xml:749(para) -msgid "Allows the displayed items to be edited." -msgstr "Позволяет редактирование отображаемых элементов." - -#: C/zenity.xml:757(para) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Указывает строку-разделитель, используемую, когда диалоговое окно возвращает " -"выбранные элементы." - -#: C/zenity.xml:763(term) -msgid "=column" -msgstr "=столбец" - -#: C/zenity.xml:765(para) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Указывает, какой столбец нужно вывести при выборе элемента. По умолчания это " -"1-й столбец. Можно использовать ALL, чтобы вывести все столбцы из списка." - -#: C/zenity.xml:775(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Выберите ошибки, которые Вы хотите просмотреть\" \\\n" -" --column=\"Номер ошибки\" --column=\"Критичность\" --column=\"Описание\" \\\n" -" 992383 Normal \"GtkTreeView падает при множественном выборе\" \\\n" -" 293823 High \"Словарь GNOME не умеет обращаться с прокси\" \\\n" -" 393823 Critical \"Редактирование Меню не работает в GNOME 2.0\"\n" -" " - -#: C/zenity.xml:773(para) -msgid "" -"The following example script shows how to create a list dialog: " -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"списка: " - -#: C/zenity.xml:789(title) -msgid "List Dialog Example" -msgstr "Пример диалогового окна списка" - -#: C/zenity.xml:796(phrase) -msgid " list dialog example" -msgstr " пример диалогового окна списка" - -#: C/zenity.xml:807(title) -msgid "Message Dialogs" -msgstr "Диалоговое окно сообщения" - -#: C/zenity.xml:809(para) -msgid "" -"Zenity can create four types of message dialog:" -msgstr "" -"Zenity может создавать четыре типа диалоговых " -"окон сообщений:" - -#: C/zenity.xml:827(para) -msgid "" -"For each type, use the option to specify the text " -"that is displayed in the dialog." -msgstr "" -"Для каждого типа используйте параметр , чтобы задать " -"текст в диалоге." - -#: C/zenity.xml:832(title) -msgid "Error Dialog" -msgstr "Диалоговое окно ошибки" - -#: C/zenity.xml:834(para) -msgid "Use the option to create an error dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое окно " -"ошибки." - -#: C/zenity.xml:841(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Не удалось найти /var/log/syslog.\"\n" -" " - -#: C/zenity.xml:838(para) -msgid "" -"The following example script shows how to create an error dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как можно создавать диалоговое " -"окно ошибки: " - -#: C/zenity.xml:851(title) -msgid "Error Dialog Example" -msgstr "Пример диалогового окна ошибки" - -#: C/zenity.xml:858(phrase) -msgid " error dialog example" -msgstr " пример диалогового окна ошибки" - -#: C/zenity.xml:866(title) -msgid "Information Dialog" -msgstr "Диалоговое окно информации" - -#: C/zenity.xml:868(para) -msgid "Use the option to create an information dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое окно " -"информации." - -#: C/zenity.xml:875(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Слияние завершено. Обновлено 3 из 10 файлов.\"\n" -" " - -#: C/zenity.xml:872(para) -msgid "" -"The following example script shows how to create an information dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"информации: " - -#: C/zenity.xml:885(title) -msgid "Information Dialog Example" -msgstr "Пример диалогового окна информации" - -#: C/zenity.xml:892(phrase) -msgid " information dialog example" -msgstr " пример диалогового окна информации" - -#: C/zenity.xml:900(title) -msgid "Question Dialog" -msgstr "Диалоговое окно вопроса" - -#: C/zenity.xml:902(para) -msgid "Use the option to create a question dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое " -"окно вопроса." - -#: C/zenity.xml:909(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Вы уверены, что хотите продолжить?\"\n" -" " - -#: C/zenity.xml:906(para) -msgid "" -"The following example script shows how to create a question dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"вопроса: " - -#: C/zenity.xml:919(title) -msgid "Question Dialog Example" -msgstr "Пример диалогового окна вопроса" - -#: C/zenity.xml:926(phrase) -msgid " question dialog example" -msgstr " пример диалогового окна вопроса" - -#: C/zenity.xml:934(title) -msgid "Warning Dialog" -msgstr "Диалоговое окно предупреждения" - -#: C/zenity.xml:936(para) -msgid "Use the option to create a warning dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое " -"окно предупреждения." - -#: C/zenity.xml:943(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Отсоедините кабель питания, чтобы избежать удара током.\"\n" -" " - -#: C/zenity.xml:940(para) -msgid "" -"The following example script shows how to create a warning dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как создавать диалоговое окно " -"предупреждения: " - -#: C/zenity.xml:953(title) -msgid "Warning Dialog Example" -msgstr "Пример диалогового окна предупреждения" - -#: C/zenity.xml:960(phrase) -msgid " warning dialog example" -msgstr " пример диалогового окна предупреждения" - -#: C/zenity.xml:972(title) -msgid "Progress Dialog" -msgstr "Диалоговое окно хода выполнения" - -#: C/zenity.xml:974(para) -msgid "Use the option to create a progress dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое " -"окно хода выполнения." - -#: C/zenity.xml:978(para) -msgid "" -"Zenity reads data from standard input line by " -"line. If a line is prefixed with #, the text is updated with the text on " -"that line. If a line contains only a number, the percentage is updated with " -"that number." -msgstr "" -"Zenity считывает данные из стандартного ввода " -"строка за строкой. Если строка начинается с #, то текст, следующий за этим " -"префиксом, размещается в диалоговом окне. Если строка содержит только число, " -"то индикатор хода выполнения устанавливается на этот процент выполнения." - -#: C/zenity.xml:982(para) -msgid "The progress dialog supports the following options:" -msgstr "" -"Диалоговое окно индикатора хода выполнения поддерживает следующие параметры:" - -#: C/zenity.xml:991(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Указывает текст, который будет изображён в диалоговом окне." - -#: C/zenity.xml:996(term) -msgid "=percentage" -msgstr "=процент" - -#: C/zenity.xml:998(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Указывает начальное состояние индикатора хода выполнения." - -#: C/zenity.xml:1003(option) -msgid "--auto-close" -msgstr "--auto-close" - -#: C/zenity.xml:1005(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Диалоговое окно закрывается, когда процент выполнения достигает 100%." - -#: C/zenity.xml:1010(option) -msgid "--pulsate" -msgstr "--pulsate" - -#: C/zenity.xml:1012(para) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Указывает, что индикатор хода выполнения пульсирует до тех пор, пока из " -"стандартного ввода не будет прочитан символ конца файла EOF." - -#: C/zenity.xml:1020(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Обновление журнала почты\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Сброс задачи cron\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"Это строка будет просто проигнорирована\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Перезагрузка системы\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Обновление системного журнала\" \\\n" -" --text=\"Просмотр журналы почты...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Обновление отменено.\"\n" -" fi\n" -"\n" -" " - -#: C/zenity.xml:1018(para) -msgid "" -"The following example script shows how to create a progress dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как можно создавать диалоговое " -"окно индикатора хода выполнения: " - -#: C/zenity.xml:1048(title) -msgid "Progress Dialog Example" -msgstr "Пример диалогового окна индикатора хода выполнения" - -#: C/zenity.xml:1055(phrase) -msgid " progress dialog example" -msgstr " пример диалогового окна индикатора хода выполнения" - -#: C/zenity.xml:1066(title) -msgid "Text Entry Dialog" -msgstr "Диалоговое окно ввода текста" - -#: C/zenity.xml:1068(para) -msgid "" -"Use the option to create a text entry dialog. " -"Zenity returns the contents of the text entry to " -"standard output." -msgstr "" -"Используйте параметр , чтобы создать диалоговое окно " -"ввода текста. Zenity возвращает введенный текст в " -"стандартный поток вывода." - -#: C/zenity.xml:1071(para) -msgid "The text entry dialog supports the following options:" -msgstr "Диалоговое окно ввода текста поддерживает следующие параметры:" - -#: C/zenity.xml:1080(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "" -"Указывает текст, который будет изображён в диалоговом окне (но не в поле " -"ввода)." - -#: C/zenity.xml:1085(term) -msgid "=text" -msgstr "=текст" - -#: C/zenity.xml:1087(para) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Указывает текст, который будет изображён в поле ввода диалогового окна." - -#: C/zenity.xml:1092(option) -msgid "--hide-text" -msgstr "--hide-text" - -#: C/zenity.xml:1094(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Скрывает текст в поле ввода диалогового окна." - -#: C/zenity.xml:1103(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Добавить запись\" \\\n" -" --text=\"Введите пароль:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"Пароль не введён\\\"\n" -" fi\n" -" " - -#: C/zenity.xml:1100(para) -msgid "" -"The following example script shows how to create a text entry dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как можно создать диалоговое окно " -"ввода текста: " - -#: C/zenity.xml:1119(title) -msgid "Text Entry Dialog Example" -msgstr "Пример диалогового окна ввода текста" - -#: C/zenity.xml:1126(phrase) -msgid " text entry dialog example" -msgstr " пример диалогового окна ввода текста" - -#: C/zenity.xml:1136(title) -msgid "Text Information Dialog" -msgstr "Диалоговое окно текстовой информации" - -#: C/zenity.xml:1138(para) -msgid "" -"Use the option to create a text information " -"dialog." -msgstr "" -"Используйте параметр , чтобы создать диалоговое " -"окно текстовой информации." - -#: C/zenity.xml:1142(para) -msgid "The text information dialog supports the following options:" -msgstr "Диалоговое окно текстовой информации поддерживает следующие параметры:" - -#: C/zenity.xml:1151(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" -"Указывает имя файла, который будет загружен в окно текстовой информации." - -#: C/zenity.xml:1158(para) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Позволяет редактирование изображённого текста. Отредактированный текст " -"возвращается в стандартный поток, после того, как диалоговое окно будет " -"закрыто." - -#: C/zenity.xml:1166(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Выберите файл\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"Файл не выбран.\";;\n" -" -1)\n" -" echo \"Файл не выбран.\";;\n" -" esac\n" -" " - -#: C/zenity.xml:1164(para) -msgid "" -"The following example script shows how to create a text information dialog: " -"" -msgstr "" -"Следующий сценарий является примером того, как можно создавать диалоговое " -"окно текстовой информации: " - -#: C/zenity.xml:1188(title) -msgid "Text Information Dialog Example" -msgstr "Пример диалогового окна текстовой информации" - -#: C/zenity.xml:1195(phrase) -msgid " text information dialog example" -msgstr " пример диалогового окна текстовой информации" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 -#: C/zenity.xml:0(None) -msgid "translator-credits" -msgstr "Deshko Yury , 2007" diff --git a/help/sl/sl.po b/help/sl/sl.po deleted file mode 100644 index c1ab04f..0000000 --- a/help/sl/sl.po +++ /dev/null @@ -1,1229 +0,0 @@ -# Slovenian translations for zenity help. -# Copyright (C) 2009 zenity COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# -# Ime Priimek , leto -# -msgid "" -msgstr "" -"Project-Id-Version: zenity help master\n" -"POT-Creation-Date: 2010-10-08 23:38+0000\n" -"PO-Revision-Date: 2010-10-14 21:32+0100\n" -"Last-Translator: Matej Urbančič \n" -"Language-Team: Slovenian GNOME Translation Team \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" -"X-Poedit-Country: SLOVENIA\n" -"X-Poedit-Language: Slovenian\n" -"X-Poedit-SourceCharset: utf-8\n" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:554(None) -msgid "@@image: 'figures/zenity-calendar-screenshot.png'; md5=b739d32aad963be4415d34ec103baf26" -msgstr "@@image: 'figures/zenity-calendar-screenshot.png'; md5=b739d32aad963be4415d34ec103baf26" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:642(None) -msgid "@@image: 'figures/zenity-fileselection-screenshot.png'; md5=2c903cba26fb40462deea0bb6b931ea7" -msgstr "@@image: 'figures/zenity-fileselection-screenshot.png'; md5=2c903cba26fb40462deea0bb6b931ea7" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:688(None) -msgid "@@image: 'figures/zenity-notification-screenshot.png'; md5=d7a119ced7cdf49b307013551d94e11e" -msgstr "@@image: 'figures/zenity-notification-screenshot.png'; md5=d7a119ced7cdf49b307013551d94e11e" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:793(None) -msgid "@@image: 'figures/zenity-list-screenshot.png'; md5=9c5a2704eb27e21a8e8739c49f77b3fc" -msgstr "@@image: 'figures/zenity-list-screenshot.png'; md5=9c5a2704eb27e21a8e8739c49f77b3fc" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:855(None) -msgid "@@image: 'figures/zenity-error-screenshot.png'; md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgstr "@@image: 'figures/zenity-error-screenshot.png'; md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:889(None) -msgid "@@image: 'figures/zenity-information-screenshot.png'; md5=5a9af4275678c8bfb9b48010860a45e5" -msgstr "@@image: 'figures/zenity-information-screenshot.png'; md5=5a9af4275678c8bfb9b48010860a45e5" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:923(None) -msgid "@@image: 'figures/zenity-question-screenshot.png'; md5=df8414504f8c8ca946a3f1e63a460938" -msgstr "@@image: 'figures/zenity-question-screenshot.png'; md5=df8414504f8c8ca946a3f1e63a460938" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:957(None) -msgid "@@image: 'figures/zenity-warning-screenshot.png'; md5=cde1378d51f800a025b8c37ecdb60a20" -msgstr "@@image: 'figures/zenity-warning-screenshot.png'; md5=cde1378d51f800a025b8c37ecdb60a20" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1052(None) -msgid "@@image: 'figures/zenity-progress-screenshot.png'; md5=706736240f396ada12044c23b708a6a6" -msgstr "@@image: 'figures/zenity-progress-screenshot.png'; md5=706736240f396ada12044c23b708a6a6" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1123(None) -msgid "@@image: 'figures/zenity-entry-screenshot.png'; md5=0fb790cbb6d13ec13a314b34f844ee80" -msgstr "@@image: 'figures/zenity-entry-screenshot.png'; md5=0fb790cbb6d13ec13a314b34f844ee80" - -#. When image changes, this message will be marked fuzzy or untranslated for you. -#. It doesn't matter what you translate it to: it's not used at all. -#: C/zenity.xml:1192(None) -msgid "@@image: 'figures/zenity-text-screenshot.png'; md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgstr "@@image: 'figures/zenity-text-screenshot.png'; md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" - -#: C/zenity.xml:20(title) -msgid "Zenity Manual" -msgstr "" - -#: C/zenity.xml:21(subtitle) -#: C/zenity.xml:65(revnumber) -msgid "Zenity Desktop Application Manual V2.0" -msgstr "" - -#: C/zenity.xml:23(year) -msgid "2003" -msgstr "2003" - -#: C/zenity.xml:24(year) -msgid "2004" -msgstr "2004" - -#: C/zenity.xml:25(holder) -#: C/zenity.xml:36(publishername) -#: C/zenity.xml:45(orgname) -#: C/zenity.xml:69(para) -msgid "Sun Microsystems, Inc." -msgstr "" - -#: C/zenity.xml:2(para) -msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." -msgstr "" - -#: C/zenity.xml:12(para) -msgid "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." -msgstr "" - -#: C/zenity.xml:19(para) -msgid "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." -msgstr "" - -#: C/zenity.xml:35(para) -msgid "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN 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 "" - -#: C/zenity.xml:55(para) -msgid "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." -msgstr "" - -#: C/zenity.xml:28(para) -msgid "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -msgstr "" - -#: C/zenity.xml:43(firstname) -msgid "Sun" -msgstr "Sun" - -#: C/zenity.xml:44(surname) -msgid "Java Desktop System Documentation Team" -msgstr "" - -#: C/zenity.xml:48(firstname) -msgid "Glynn" -msgstr "Glynn" - -#: C/zenity.xml:49(surname) -msgid "Foster" -msgstr "Foster" - -#: C/zenity.xml:51(orgname) -#: C/zenity.xml:58(orgname) -#: C/zenity.xml:78(para) -msgid "GNOME Documentation Project" -msgstr "" - -#: C/zenity.xml:55(firstname) -msgid "Nicholas" -msgstr "Nicholas" - -#: C/zenity.xml:56(surname) -msgid "Curran" -msgstr "Curran" - -#: C/zenity.xml:66(date) -msgid "August 2004" -msgstr "" - -#: C/zenity.xml:68(para) -msgid "Sun Java Desktop System Documentation Team" -msgstr "" - -#: C/zenity.xml:74(revnumber) -msgid "Zenity Manual V1.0" -msgstr "" - -#: C/zenity.xml:75(date) -msgid "January 2003" -msgstr "" - -#: C/zenity.xml:77(para) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/zenity.xml:83(releaseinfo) -msgid "This manual describes version 2.6.0 of Zenity." -msgstr "" - -#: C/zenity.xml:87(title) -msgid "Feedback" -msgstr "Odziv" - -#: C/zenity.xml:88(para) -msgid "To send feedback, follow the directions in the Feedback Page." -msgstr "" - -#: C/zenity.xml:95(para) -msgid "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you to display dialog boxes from the commandline and shell scripts." -msgstr "" - -#: C/zenity.xml:102(primary) -msgid "zenity command" -msgstr "" - -#: C/zenity.xml:105(primary) -msgid "dialog creator" -msgstr "" - -#: C/zenity.xml:112(title) -msgid "Introduction" -msgstr "" - -#: C/zenity.xml:114(para) -msgid "Zenity enables you to create the following types of simple dialog:" -msgstr "" - -#: C/zenity.xml:119(para) -msgid "Calendar" -msgstr "Koledar" - -#: C/zenity.xml:120(para) -msgid "File selection" -msgstr "" - -#: C/zenity.xml:121(para) -msgid "List" -msgstr "Seznam" - -#: C/zenity.xml:122(para) -msgid "Notification icon" -msgstr "" - -#: C/zenity.xml:123(para) -msgid "Message" -msgstr "Sporočilo" - -#: C/zenity.xml:125(para) -#: C/zenity.xml:814(para) -msgid "Error" -msgstr "Napaka" - -#: C/zenity.xml:126(para) -#: C/zenity.xml:817(para) -msgid "Information" -msgstr "Podrobnosti" - -#: C/zenity.xml:127(para) -#: C/zenity.xml:820(para) -msgid "Question" -msgstr "Vprašanje" - -#: C/zenity.xml:128(para) -#: C/zenity.xml:823(para) -msgid "Warning" -msgstr "Opozorilo" - -#: C/zenity.xml:131(para) -msgid "Progress" -msgstr "Napredek" - -#: C/zenity.xml:132(para) -msgid "Text entry" -msgstr "Vnos besedila" - -#: C/zenity.xml:133(para) -msgid "Text information" -msgstr "" - -#: C/zenity.xml:141(title) -msgid "Usage" -msgstr "Uporaba" - -#: C/zenity.xml:143(para) -msgid "When you write scripts, you can use Zenity to create simple dialogs that interact graphically with the user, as follows:" -msgstr "" - -#: C/zenity.xml:148(para) -msgid "You can create a dialog to obtain information from the user. For example, you can prompt the user to select a date from a calendar dialog, or to select a file from a file selection dialog." -msgstr "" - -#: C/zenity.xml:153(para) -msgid "You can create a dialog to provide the user with information. For example, you can use a progress dialog to indicate the current status of an operation, or use a warning message dialog to alert the user." -msgstr "" - -#: C/zenity.xml:158(para) -msgid "When the user closes the dialog, Zenity prints the text produced by the dialog to standard output." -msgstr "" - -#: C/zenity.xml:163(para) -msgid "When you write Zenity commands, ensure that you place quotation marks around each argument." -msgstr "" - -#: C/zenity.xml:166(para) -msgid "For example, use: zenity --calendar --title=\"Holiday Planner\" Do not use: zenity --calendar --title=Holiday Planner" -msgstr "" - -#: C/zenity.xml:169(para) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "" - -#: C/zenity.xml:175(title) -msgid "Access Keys" -msgstr "" - -#: C/zenity.xml:176(para) -msgid "An access key is a key that enables you to perform an action from the keyboard rather than use the mouse to choose a command from a menu or dialog. Each access key is identified by an underlined letter on a menu or dialog option." -msgstr "" - -#: C/zenity.xml:179(para) -msgid "Some Zenity dialogs support the use of access keys. To specify the character to use as the access key, place an underscore before that character in the text of the dialog. The following example shows how to specify the letter 'C' as the access key:" -msgstr "" - -#: C/zenity.xml:182(userinput) -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "" - -#: C/zenity.xml:186(title) -msgid "Exit Codes" -msgstr "" - -#: C/zenity.xml:187(para) -msgid "Zenity returns the following exit codes:" -msgstr "" - -#: C/zenity.xml:198(para) -msgid "Exit Code" -msgstr "" - -#: C/zenity.xml:200(para) -msgid "Description" -msgstr "" - -#: C/zenity.xml:206(varname) -msgid "0" -msgstr "0" - -#: C/zenity.xml:209(para) -msgid "The user has pressed either OK or Close." -msgstr "" - -#: C/zenity.xml:214(varname) -msgid "1" -msgstr "1" - -#: C/zenity.xml:217(para) -msgid "The user has either pressed Cancel, or used the window functions to close the dialog." -msgstr "" - -#: C/zenity.xml:222(varname) -msgid "-1" -msgstr "-1" - -#: C/zenity.xml:225(para) -msgid "An unexpected error has occurred." -msgstr "" - -#: C/zenity.xml:230(varname) -msgid "5" -msgstr "5" - -#: C/zenity.xml:233(para) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "" - -#: C/zenity.xml:246(title) -msgid "General Options" -msgstr "" - -#: C/zenity.xml:248(para) -msgid "All Zenity dialogs support the following general options:" -msgstr "" - -#: C/zenity.xml:255(term) -msgid "=title" -msgstr "" - -#: C/zenity.xml:257(para) -msgid "Specifies the title of a dialog." -msgstr "" - -#: C/zenity.xml:262(term) -msgid "=icon_path" -msgstr "" - -#: C/zenity.xml:264(para) -msgid "Specifies the icon that is displayed in the window frame of the dialog. There are 4 stock icons also available by providing the following keywords - 'info', 'warning', 'question' and 'error'." -msgstr "" - -#: C/zenity.xml:272(term) -msgid "=width" -msgstr "" - -#: C/zenity.xml:274(para) -msgid "Specifies the width of the dialog." -msgstr "" - -#: C/zenity.xml:279(term) -msgid "=height" -msgstr "" - -#: C/zenity.xml:281(para) -msgid "Specifies the height of the dialog." -msgstr "" - -#: C/zenity.xml:286(term) -msgid "=timeout" -msgstr "" - -#: C/zenity.xml:288(para) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" - -#: C/zenity.xml:299(title) -msgid "Help Options" -msgstr "" - -#: C/zenity.xml:301(para) -msgid "Zenity provides the following help options:" -msgstr "" - -#: C/zenity.xml:308(option) -msgid "--help" -msgstr "" - -#: C/zenity.xml:310(para) -msgid "Displays shortened help text." -msgstr "" - -#: C/zenity.xml:315(option) -msgid "--help-all" -msgstr "" - -#: C/zenity.xml:317(para) -msgid "Displays full help text for all dialogs." -msgstr "" - -#: C/zenity.xml:322(option) -msgid "--help-general" -msgstr "" - -#: C/zenity.xml:324(para) -msgid "Displays help text for general dialog options." -msgstr "" - -#: C/zenity.xml:329(option) -msgid "--help-calendar" -msgstr "" - -#: C/zenity.xml:331(para) -msgid "Displays help text for calendar dialog options." -msgstr "" - -#: C/zenity.xml:336(option) -msgid "--help-entry" -msgstr "" - -#: C/zenity.xml:338(para) -msgid "Displays help text for text entry dialog options." -msgstr "" - -#: C/zenity.xml:343(option) -msgid "--help-error" -msgstr "" - -#: C/zenity.xml:345(para) -msgid "Displays help text for error dialog options." -msgstr "" - -#: C/zenity.xml:350(option) -msgid "--help-info" -msgstr "" - -#: C/zenity.xml:352(para) -msgid "Displays help text for information dialog options." -msgstr "" - -#: C/zenity.xml:357(option) -msgid "--help-file-selection" -msgstr "" - -#: C/zenity.xml:359(para) -msgid "Displays help text for file selection dialog options." -msgstr "" - -#: C/zenity.xml:364(option) -msgid "--help-list" -msgstr "" - -#: C/zenity.xml:366(para) -msgid "Displays help text for list dialog options." -msgstr "" - -#: C/zenity.xml:371(option) -msgid "--help-notification" -msgstr "" - -#: C/zenity.xml:373(para) -msgid "Displays help text for notification icon options." -msgstr "" - -#: C/zenity.xml:378(option) -msgid "--help-progress" -msgstr "" - -#: C/zenity.xml:380(para) -msgid "Displays help text for progress dialog options." -msgstr "" - -#: C/zenity.xml:385(option) -msgid "--help-question" -msgstr "" - -#: C/zenity.xml:387(para) -msgid "Displays help text for question dialog options." -msgstr "" - -#: C/zenity.xml:392(option) -msgid "--help-warning" -msgstr "" - -#: C/zenity.xml:394(para) -msgid "Displays help text for warning dialog options." -msgstr "" - -#: C/zenity.xml:399(option) -msgid "--help-text-info" -msgstr "" - -#: C/zenity.xml:401(para) -msgid "Displays help for text information dialog options." -msgstr "" - -#: C/zenity.xml:406(option) -msgid "--help-misc" -msgstr "" - -#: C/zenity.xml:408(para) -msgid "Displays help for miscellaneous options." -msgstr "" - -#: C/zenity.xml:413(option) -msgid "--help-gtk" -msgstr "" - -#: C/zenity.xml:415(para) -msgid "Displays help for GTK+ options." -msgstr "" - -#: C/zenity.xml:426(title) -msgid "Miscellaneous Options" -msgstr "" - -#: C/zenity.xml:428(para) -msgid "Zenity also provides the following miscellaneous options:" -msgstr "" - -#: C/zenity.xml:435(option) -msgid "--about" -msgstr "" - -#: C/zenity.xml:437(para) -msgid "Displays the About Zenity dialog, which contains Zenity version information, copyright information, and developer information." -msgstr "" - -#: C/zenity.xml:442(option) -msgid "--version" -msgstr "" - -#: C/zenity.xml:444(para) -msgid "Displays the version number of Zenity." -msgstr "" - -#: C/zenity.xml:455(title) -msgid "GTK+ Options" -msgstr "" - -#: C/zenity.xml:457(para) -msgid "Zenity supports the standard GTK+ options. For more information about the GTK+ options, execute the zenity -? command." -msgstr "" - -#: C/zenity.xml:466(title) -msgid "Environment Variables" -msgstr "" - -#: C/zenity.xml:468(para) -msgid "Normally, Zenity detects the terminal window from which it was launched and keeps itself above that window. This behavior can be disabled by unsetting the WINDOWID environment variable." -msgstr "" - -#: C/zenity.xml:480(title) -msgid "Calendar Dialog" -msgstr "" - -#: C/zenity.xml:482(para) -msgid "Use the option to create a calendar dialog. Zenity returns the selected date to standard output. If no date is specified on the command line, the dialog uses the current date." -msgstr "" - -#: C/zenity.xml:485(para) -msgid "The calendar dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:492(term) -#: C/zenity.xml:663(term) -#: C/zenity.xml:989(term) -#: C/zenity.xml:1078(term) -msgid "=text" -msgstr "" - -#: C/zenity.xml:494(para) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "" - -#: C/zenity.xml:499(term) -msgid "=day" -msgstr "" - -#: C/zenity.xml:501(para) -msgid "Specifies the day that is selected in the calendar dialog. day must be a number between 1 and 31 inclusive." -msgstr "" - -#: C/zenity.xml:507(term) -msgid "=month" -msgstr "" - -#: C/zenity.xml:509(para) -msgid "Specifies the month that is selected in the calendar dialog. month must be a number between 1 and 12 inclusive." -msgstr "" - -#: C/zenity.xml:515(term) -msgid "=year" -msgstr "" - -#: C/zenity.xml:517(para) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "" - -#: C/zenity.xml:522(term) -msgid "=format" -msgstr "" - -#: C/zenity.xml:524(para) -msgid "Specifies the format that is returned from the calendar dialog after date selection. The default format depends on your locale. format must be a format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" - -#: C/zenity.xml:534(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -"\n" -" if zenity --calendar \\\n" -" --title=\"Select a Date\" \\\n" -" --text=\"Click on a date to select that date.\" \\\n" -" --day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -" fi\n" -" " -msgstr "" - -#: C/zenity.xml:531(para) -msgid "The following example script shows how to create a calendar dialog: " -msgstr "" - -#: C/zenity.xml:550(title) -msgid "Calendar Dialog Example" -msgstr "" - -#: C/zenity.xml:0(application) -msgid "Zenity" -msgstr "Zenity" - -#: C/zenity.xml:557(phrase) -msgid " calendar dialog example" -msgstr "" - -#: C/zenity.xml:569(title) -msgid "File Selection Dialog" -msgstr "" - -#: C/zenity.xml:571(para) -msgid "Use the option to create a file selection dialog. Zenity returns the selected files or directories to standard output. The default mode of the file selection dialog is open." -msgstr "" - -#: C/zenity.xml:575(para) -msgid "The file selection dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:582(term) -#: C/zenity.xml:1149(term) -msgid "=filename" -msgstr "" - -#: C/zenity.xml:584(para) -msgid "Specifies the file or directory that is selected in the file selection dialog when the dialog is first shown." -msgstr "" - -#: C/zenity.xml:589(option) -msgid "--multiple" -msgstr "" - -#: C/zenity.xml:591(para) -msgid "Allows the selection of multiple filenames in the file selection dialog." -msgstr "" - -#: C/zenity.xml:596(option) -msgid "--directory" -msgstr "" - -#: C/zenity.xml:598(para) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "" - -#: C/zenity.xml:603(option) -msgid "--save" -msgstr "" - -#: C/zenity.xml:605(para) -msgid "Set the file selection dialog into save mode." -msgstr "" - -#: C/zenity.xml:610(term) -#: C/zenity.xml:755(term) -msgid "=separator" -msgstr "" - -#: C/zenity.xml:612(para) -msgid "Specifies the string that is used to divide the returned list of filenames." -msgstr "" - -#: C/zenity.xml:621(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" - -#: C/zenity.xml:618(para) -msgid "The following example script shows how to create a file selection dialog: " -msgstr "" - -#: C/zenity.xml:638(title) -msgid "File Selection Dialog Example" -msgstr "" - -#: C/zenity.xml:645(phrase) -msgid " file selection dialog example" -msgstr "" - -#: C/zenity.xml:655(title) -msgid "Notification Icon" -msgstr "" - -#: C/zenity.xml:665(para) -msgid "Specifies the text that is displayed in the notification area." -msgstr "" - -#: C/zenity.xml:673(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" - -#: C/zenity.xml:671(para) -msgid "The following example script shows how to create a notification icon: " -msgstr "" - -#: C/zenity.xml:684(title) -msgid "Notification Icon Example" -msgstr "" - -#: C/zenity.xml:691(phrase) -msgid " notification icon example" -msgstr "" - -#: C/zenity.xml:702(title) -msgid "List Dialog" -msgstr "" - -#: C/zenity.xml:704(para) -msgid "Use the option to create a list dialog. Zenity returns the entries in the first column of text of selected rows to standard output." -msgstr "" - -#: C/zenity.xml:708(para) -msgid "Data for the dialog must specified column by column, row by row. Data can be provided to the dialog through standard input. Each entry must be separated by a newline character." -msgstr "" - -#: C/zenity.xml:712(para) -msgid "If you use the or options, each row must start with either 'TRUE' or 'FALSE'." -msgstr "" - -#: C/zenity.xml:716(para) -msgid "The list dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:723(term) -msgid "=column" -msgstr "" - -#: C/zenity.xml:725(para) -msgid "Specifies the column headers that are displayed in the list dialog. You must specify a option for each column that you want to display in the dialog." -msgstr "" - -#: C/zenity.xml:731(option) -msgid "--checklist" -msgstr "" - -#: C/zenity.xml:733(para) -msgid "Specifies that the first column in the list dialog contains check boxes." -msgstr "" - -#: C/zenity.xml:739(option) -msgid "--radiolist" -msgstr "" - -#: C/zenity.xml:741(para) -msgid "Specifies that the first column in the list dialog contains radio boxes." -msgstr "" - -#: C/zenity.xml:747(option) -#: C/zenity.xml:1156(option) -msgid "--editable" -msgstr "" - -#: C/zenity.xml:749(para) -msgid "Allows the displayed items to be edited." -msgstr "" - -#: C/zenity.xml:757(para) -msgid "Specifies what string is used when the list dialog returns the selected entries." -msgstr "" - -#: C/zenity.xml:763(term) -msgid "=column" -msgstr "" - -#: C/zenity.xml:765(para) -msgid "Specifies what column should be printed out upon selection. The default column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" - -#: C/zenity.xml:775(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -" " -msgstr "" - -#: C/zenity.xml:773(para) -msgid "The following example script shows how to create a list dialog: " -msgstr "" - -#: C/zenity.xml:789(title) -msgid "List Dialog Example" -msgstr "" - -#: C/zenity.xml:796(phrase) -msgid " list dialog example" -msgstr "" - -#: C/zenity.xml:807(title) -msgid "Message Dialogs" -msgstr "" - -#: C/zenity.xml:809(para) -msgid "Zenity can create four types of message dialog:" -msgstr "" - -#: C/zenity.xml:827(para) -msgid "For each type, use the option to specify the text that is displayed in the dialog." -msgstr "" - -#: C/zenity.xml:832(title) -msgid "Error Dialog" -msgstr "" - -#: C/zenity.xml:834(para) -msgid "Use the option to create an error dialog." -msgstr "" - -#: C/zenity.xml:841(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --error \\\n" -" --text=\"Could not find /var/log/syslog.\"\n" -" " -msgstr "" - -#: C/zenity.xml:838(para) -msgid "The following example script shows how to create an error dialog: " -msgstr "" - -#: C/zenity.xml:851(title) -msgid "Error Dialog Example" -msgstr "" - -#: C/zenity.xml:858(phrase) -msgid " error dialog example" -msgstr "" - -#: C/zenity.xml:866(title) -msgid "Information Dialog" -msgstr "" - -#: C/zenity.xml:868(para) -msgid "Use the option to create an information dialog." -msgstr "" - -#: C/zenity.xml:875(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --info \\\n" -" --text=\"Merge complete. Updated 3 of 10 files.\"\n" -" " -msgstr "" - -#: C/zenity.xml:872(para) -msgid "The following example script shows how to create an information dialog: " -msgstr "" - -#: C/zenity.xml:885(title) -msgid "Information Dialog Example" -msgstr "" - -#: C/zenity.xml:892(phrase) -msgid " information dialog example" -msgstr "" - -#: C/zenity.xml:900(title) -msgid "Question Dialog" -msgstr "" - -#: C/zenity.xml:902(para) -msgid "Use the option to create a question dialog." -msgstr "" - -#: C/zenity.xml:909(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -"\n" -" zenity --question \\\n" -" --text=\"Are you sure you wish to proceed?\"\n" -" " -msgstr "" - -#: C/zenity.xml:906(para) -msgid "The following example script shows how to create a question dialog: " -msgstr "" - -#: C/zenity.xml:919(title) -msgid "Question Dialog Example" -msgstr "" - -#: C/zenity.xml:926(phrase) -msgid " question dialog example" -msgstr "" - -#: C/zenity.xml:934(title) -msgid "Warning Dialog" -msgstr "" - -#: C/zenity.xml:936(para) -msgid "Use the option to create a warning dialog." -msgstr "" - -#: C/zenity.xml:943(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/bash\n" -" \n" -" zenity --warning \\\n" -" --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -" " -msgstr "" - -#: C/zenity.xml:940(para) -msgid "The following example script shows how to create a warning dialog: " -msgstr "" - -#: C/zenity.xml:953(title) -msgid "Warning Dialog Example" -msgstr "" - -#: C/zenity.xml:960(phrase) -msgid " warning dialog example" -msgstr "" - -#: C/zenity.xml:972(title) -msgid "Progress Dialog" -msgstr "" - -#: C/zenity.xml:974(para) -msgid "Use the option to create a progress dialog." -msgstr "" - -#: C/zenity.xml:978(para) -msgid "Zenity reads data from standard input line by line. If a line is prefixed with #, the text is updated with the text on that line. If a line contains only a number, the percentage is updated with that number." -msgstr "" - -#: C/zenity.xml:982(para) -msgid "The progress dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:991(para) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "" - -#: C/zenity.xml:996(term) -msgid "=percentage" -msgstr "" - -#: C/zenity.xml:998(para) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "" - -#: C/zenity.xml:1003(option) -msgid "--auto-close" -msgstr "" - -#: C/zenity.xml:1005(para) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "" - -#: C/zenity.xml:1010(option) -msgid "--pulsate" -msgstr "" - -#: C/zenity.xml:1012(para) -msgid "Specifies that the progress bar pulsates until an EOF character is read from standard input." -msgstr "" - -#: C/zenity.xml:1020(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" (\n" -" echo \"10\" ; sleep 1\n" -" echo \"# Updating mail logs\" ; sleep 1\n" -" echo \"20\" ; sleep 1\n" -" echo \"# Resetting cron jobs\" ; sleep 1\n" -" echo \"50\" ; sleep 1\n" -" echo \"This line will just be ignored\" ; sleep 1\n" -" echo \"75\" ; sleep 1\n" -" echo \"# Rebooting system\" ; sleep 1\n" -" echo \"100\" ; sleep 1\n" -" ) |\n" -" zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -" if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -" fi\n" -"\n" -" " -msgstr "" - -#: C/zenity.xml:1018(para) -msgid "The following example script shows how to create a progress dialog: " -msgstr "" - -#: C/zenity.xml:1048(title) -msgid "Progress Dialog Example" -msgstr "" - -#: C/zenity.xml:1055(phrase) -msgid " progress dialog example" -msgstr "" - -#: C/zenity.xml:1066(title) -msgid "Text Entry Dialog" -msgstr "" - -#: C/zenity.xml:1068(para) -msgid "Use the option to create a text entry dialog. Zenity returns the contents of the text entry to standard output." -msgstr "" - -#: C/zenity.xml:1071(para) -msgid "The text entry dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:1080(para) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "" - -#: C/zenity.xml:1085(term) -msgid "=text" -msgstr "" - -#: C/zenity.xml:1087(para) -msgid "Specifies the text that is displayed in the entry field of the text entry dialog." -msgstr "" - -#: C/zenity.xml:1092(option) -msgid "--hide-text" -msgstr "" - -#: C/zenity.xml:1094(para) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "" - -#: C/zenity.xml:1103(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" if zenity --entry \\\n" -" --title=\"Add an Entry\" \\\n" -" --text=\"Enter your _password:\" \\\n" -" --entry-text \"password\" \\\n" -" --hide-text\n" -" then echo $?\n" -" else echo \"No password entered\"\n" -" fi\n" -" " -msgstr "" - -#: C/zenity.xml:1100(para) -msgid "The following example script shows how to create a text entry dialog: " -msgstr "" - -#: C/zenity.xml:1119(title) -msgid "Text Entry Dialog Example" -msgstr "" - -#: C/zenity.xml:1126(phrase) -msgid " text entry dialog example" -msgstr "" - -#: C/zenity.xml:1136(title) -msgid "Text Information Dialog" -msgstr "" - -#: C/zenity.xml:1138(para) -msgid "Use the option to create a text information dialog." -msgstr "" - -#: C/zenity.xml:1142(para) -msgid "The text information dialog supports the following options:" -msgstr "" - -#: C/zenity.xml:1151(para) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "" - -#: C/zenity.xml:1158(para) -msgid "Allows the displayed text to be edited. The edited text is returned to standard output when the dialog is closed." -msgstr "" - -#: C/zenity.xml:1166(programlisting) -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" FILE=`zenity --file-selection \\\n" -" --title=\"Select a File\"`\n" -"\n" -" case $? in\n" -" 0)\n" -" zenity --text-info \\\n" -" --title=$FILE \\\n" -" --filename=$FILE \\\n" -" --editable 2>/tmp/tmp.txt;;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"No file selected.\";;\n" -" esac\n" -" " -msgstr "" - -#: C/zenity.xml:1164(para) -msgid "The following example script shows how to create a text information dialog: " -msgstr "" - -#: C/zenity.xml:1188(title) -msgid "Text Information Dialog Example" -msgstr "" - -#: C/zenity.xml:1195(phrase) -msgid " text information dialog example" -msgstr "" - -#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 -#: C/zenity.xml:0(None) -msgid "translator-credits" -msgstr "" - diff --git a/help/sv/figures/zenity-calendar-screenshot.png b/help/sv/figures/zenity-calendar-screenshot.png deleted file mode 100644 index 9ff4b02..0000000 Binary files a/help/sv/figures/zenity-calendar-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-colorselection-screenshot.png b/help/sv/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index b31cbdb..0000000 Binary files a/help/sv/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-entry-screenshot.png b/help/sv/figures/zenity-entry-screenshot.png deleted file mode 100644 index 83e2481..0000000 Binary files a/help/sv/figures/zenity-entry-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-error-screenshot.png b/help/sv/figures/zenity-error-screenshot.png deleted file mode 100644 index 2e58722..0000000 Binary files a/help/sv/figures/zenity-error-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-fileselection-screenshot.png b/help/sv/figures/zenity-fileselection-screenshot.png deleted file mode 100644 index 12b8997..0000000 Binary files a/help/sv/figures/zenity-fileselection-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-forms-screenshot.png b/help/sv/figures/zenity-forms-screenshot.png deleted file mode 100644 index e779c83..0000000 Binary files a/help/sv/figures/zenity-forms-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-information-screenshot.png b/help/sv/figures/zenity-information-screenshot.png deleted file mode 100644 index 99c76f8..0000000 Binary files a/help/sv/figures/zenity-information-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-list-screenshot.png b/help/sv/figures/zenity-list-screenshot.png deleted file mode 100644 index fd79f9a..0000000 Binary files a/help/sv/figures/zenity-list-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-notification-listen-screenshot.png b/help/sv/figures/zenity-notification-listen-screenshot.png deleted file mode 100644 index 7228721..0000000 Binary files a/help/sv/figures/zenity-notification-listen-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-notification-screenshot.png b/help/sv/figures/zenity-notification-screenshot.png deleted file mode 100644 index 34db904..0000000 Binary files a/help/sv/figures/zenity-notification-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-password-screenshot.png b/help/sv/figures/zenity-password-screenshot.png deleted file mode 100644 index 05051da..0000000 Binary files a/help/sv/figures/zenity-password-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-progress-screenshot.png b/help/sv/figures/zenity-progress-screenshot.png deleted file mode 100644 index 128a275..0000000 Binary files a/help/sv/figures/zenity-progress-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-question-screenshot.png b/help/sv/figures/zenity-question-screenshot.png deleted file mode 100644 index eabdbe9..0000000 Binary files a/help/sv/figures/zenity-question-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-scale-screenshot.png b/help/sv/figures/zenity-scale-screenshot.png deleted file mode 100644 index a978834..0000000 Binary files a/help/sv/figures/zenity-scale-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-text-screenshot.png b/help/sv/figures/zenity-text-screenshot.png deleted file mode 100644 index 0b2e2de..0000000 Binary files a/help/sv/figures/zenity-text-screenshot.png and /dev/null differ diff --git a/help/sv/figures/zenity-warning-screenshot.png b/help/sv/figures/zenity-warning-screenshot.png deleted file mode 100644 index 3531eb8..0000000 Binary files a/help/sv/figures/zenity-warning-screenshot.png and /dev/null differ diff --git a/help/sv/sv.po b/help/sv/sv.po deleted file mode 100644 index 23891d7..0000000 --- a/help/sv/sv.po +++ /dev/null @@ -1,2786 +0,0 @@ -# Swedish messages for Zenity manual. -# Copyright © 2006-2019 zenity's COPYRIGHT HOLDER -# Daniel Nylander , 2006, 2009. -# Josef Andersson, , 2015. -# Sebastian Rasmussen , 2016. -# Anders Jonsson , 2017, 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=docs\n" -"POT-Creation-Date: 2020-04-03 07:50+0000\n" -"PO-Revision-Date: 2020-04-06 22:02+0200\n" -"Last-Translator: Anders Jonsson \n" -"Language-Team: Swedish \n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License Version 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Detta verk är licensierat under <_:link-1/> eller någon senare version." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "länk" - -#. (itstool) path: license/p -#: C/legal.xml:8 -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Tillstånd att kopiera, distribuera och/eller modifiera detta dokument ges " -"under villkoren i GNU Free Documentation License (GFDL), version 1.1 eller " -"senare, utgivet av Free Software Foundation utan standardavsnitt och " -"omslagstexter. En kopia av GFDL finns att hämta på denna <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Denna handbok utgör en av flera GNOME-handböcker som distribueras under " -"villkoren i GFDL. Om du vill distribuera denna handbok separat från övriga " -"handböcker kan du göra detta genom att lägga till en kopia av licensavtalet " -"i handboken enligt instruktionerna i avsnitt 6 i licensavtalet." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Flera namn på produkter och tjänster är registrerade varumärken. I de fall " -"dessa namn förekommer i GNOME-dokumentation - och medlemmarna i GNOME-" -"dokumentationsprojektet är medvetna om dessa varumärken - är de skrivna med " -"versaler eller med inledande versal." - -#. (itstool) path: license/p -#: C/legal.xml:33 -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"DOKUMENTET OCH MODIFIERADE VERSIONER AV DOKUMENTET TILLHANDAHÅLLS UNDER " -"VILLKOREN I GNU FREE DOCUMENTATION LICENSE ENDAST UNDER FÖLJANDE " -"FÖRUTSÄTTNINGAR:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"DOKUMENTET TILLHANDAHÅLLS I \"BEFINTLIGT SKICK\" UTAN NÅGRA SOM HELST " -"GARANTIER, VARE SIG UTTRYCKLIGA ELLER UNDERFÖRSTÅDDA, INKLUSIVE, MEN INTE " -"BEGRÄNSAT TILL, GARANTIER ATT DOKUMENTET ELLER EN MODIFIERAD VERSION AV " -"DOKUMENTET INTE INNEHÅLLER NÅGRA FELAKTIGHETER, ÄR LÄMPLIGT FÖR ETT VISST " -"ÄNDAMÅL ELLER INTE STRIDER MOT LAG. HELA RISKEN VAD GÄLLER KVALITET, " -"EXAKTHET OCH UTFÖRANDE AV DOKUMENTET OCH MODIFIERADE VERSIONER AV DOKUMENTET " -"LIGGER HELT OCH HÅLLET PÅ ANVÄNDAREN. OM ETT DOKUMENT ELLER EN MODIFIERAD " -"VERSION AV ETT DOKUMENT SKULLE VISA SIG INNEHÅLLA FELAKTIGHETER I NÅGOT " -"HÄNSEENDE ÄR DET DU (INTE DEN URSPRUNGLIGA SKRIBENTEN, FÖRFATTAREN ELLER " -"NÅGON ANNAN MEDARBETARE) SOM FÅR STÅ FÖR ALLA EVENTUELLA KOSTNADER FÖR " -"SERVICE, REPARATIONER ELLER KORRIGERINGAR. DENNA GARANTIFRISKRIVNING UTGÖR " -"EN VÄSENTLIG DEL AV DETTA LICENSAVTAL. DETTA INNEBÄR ATT ALL ANVÄNDNING AV " -"ETT DOKUMENT ELLER EN MODIFIERAD VERSION AV ETT DOKUMENT BEVILJAS ENDAST " -"UNDER DENNA ANSVARSFRISKRIVNING;" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"UNDER INGA OMSTÄNDIGHETER ELLER INOM RAMEN FÖR NÅGON LAGSTIFTNING, OAVSETT " -"OM DET GÄLLER KRÄNKNING (INKLUSIVE VÅRDSLÖSHET), KONTRAKT ELLER DYLIKT, SKA " -"FÖRFATTAREN, DEN URSPRUNGLIGA SKRIBENTEN ELLER ANNAN MEDARBETARE ELLER " -"ÅTERFÖRSÄLJARE AV DOKUMENTET ELLER AV EN MODIFIERAD VERSION AV DOKUMENTET " -"ELLER NÅGON LEVERANTÖR TILL NÅGON AV NÄMNDA PARTER STÄLLAS ANSVARIG GENTEMOT " -"NÅGON FÖR NÅGRA DIREKTA, INDIREKTA, SÄRSKILDA ELLER OFÖRUTSEDDA SKADOR ELLER " -"FÖLJDSKADOR AV NÅGOT SLAG, INKLUSIVE, MEN INTE BEGRÄNSAT TILL, SKADOR " -"BETRÄFFANDE FÖRLORAD GOODWILL, HINDER I ARBETET, DATORHAVERI ELLER NÅGRA " -"ANDRA TÄNKBARA SKADOR ELLER FÖRLUSTER SOM KAN UPPKOMMA PÅ GRUND AV ELLER " -"RELATERAT TILL ANVÄNDNINGEN AV DOKUMENTET ELLER MODIFIERADE VERSIONER AV " -"DOKUMENTET, ÄVEN OM PART SKA HA BLIVIT INFORMERAD OM MÖJLIGHETEN TILL SÅDANA " -"SKADOR." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -msgctxt "_" -msgid "translator-credits" -msgstr "" -"Daniel Nylander , 2006, 2009\n" -"Sebastian Rasmussen , 2016" - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Använd flaggan --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Kalenderdialog" - -#. (itstool) path: page/p -#: C/calendar.page:10 -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Använd flaggan --calendar för att skapa en kalenderdialog. Zenity " -"returnerar det markerade datumet till standard ut. Om inget datum har " -"angivits på kommandoraden, kommer dialogrutan att använda dagens datum." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Kalenderdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=text" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Anger texten som visas i kalenderdialogen." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=dag" - -#. (itstool) path: item/p -#: C/calendar.page:26 -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Anger dagen som är markerad i kalenderdialogen. dag måste vara ett tal i det " -"slutna intervallet 1 till 31." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=månad" - -#. (itstool) path: item/p -#: C/calendar.page:31 -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Anger månaden som är markerad i kalenderdialogen. månad måste vara ett tal i " -"det slutna intervallet 1 till 12." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=år" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Anger året som är markerat i kalenderdialogen." - -#. (itstool) path: item/title -#: C/calendar.page:40 -msgid "--date-format=format" -msgstr "--date-format=format" - -#. (itstool) path: item/p -#: C/calendar.page:41 -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Anger formatet som returneras från kalenderdialogen efter en datummarkering. " -"Standardformatet beror på din lokalinställning. Format måste vara ett format " -"som är acceptabelt för funktionen strftime, till exempel %A " -"%Y-%m-%d." - -#. (itstool) path: page/p -#: C/calendar.page:46 -msgid "The following example script shows how to create a calendar dialog:" -msgstr "Följande exempelskript visar hur man skapar en kalenderdialog:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Välj ett datum\" \\\n" -"--text=\"Klicka på ett datum för att det välja datumet.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Inget datum har valts\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Exempel på kalenderdialog" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -msgid "Zenity calendar dialog example" -msgstr "Zenity-exempel på kalenderdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Använd flaggan --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -msgid "Color Selection Dialog" -msgstr "Färgväljardialog" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Använd flaggan --color-selection för att skapa en " -"färgväljardialog." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -msgid "The color selection dialog supports the following options:" -msgstr "Färgväljardialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=VÄRDE" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Ställ in förvald färg.(ex: #FF0000)" - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Visa paletten." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "Följande exempelskript visar hur man skapar en färgväljardialog:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Du valde $COLOR.\";;\n" -" 1)\n" -" echo \"Ingen färg vald.\";;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -msgid "Color Selection Dialog Example" -msgstr "Exempel på färgväljardialog" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -msgid "Zenity color selection dialog example" -msgstr "Zenity-exempel på färgväljardialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Använd flaggan --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Textinmatningsdialog" - -#. (itstool) path: page/p -#: C/entry.page:10 -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Använd flaggan -entry för att skapa en textinmatningsdialog. " -"Zenity returnerar innehållet av textinmatningen till standard ut." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Textinmatningsdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Anger texten som visas i textinmatningsdialogen." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=text" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "Anger texten som visas i inmatningsfältet för textinmatningsdialogen." - -#. (itstool) path: item/title -#: C/entry.page:30 -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Döljer texten i inmatningsfältet för textinmatningsdialogen." - -#. (itstool) path: page/p -#: C/entry.page:36 -msgid "The following example script shows how to create a text entry dialog:" -msgstr "Följande exempelskript visar hur man skapar en textinmatningsdialog:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Lägg till ny profil\" \\\n" -"--text=\"Ange namn på ny profil:\" \\\n" -"--entry-text \"NyProfil\"\n" -" then echo $?\n" -" else echo \"Inget namn angavs\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Exempel på textinmatningsdialog" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -msgid "Zenity text entry dialog example" -msgstr "Zenity-exempel på textinmatningsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Använd flaggan --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Feldialog" - -#. (itstool) path: page/p -#: C/error.page:10 -msgid "Use the --error option to create an error dialog." -msgstr "Använd flaggan --error för att skapa en feldialog." - -#. (itstool) path: page/p -#: C/error.page:14 -msgid "The following example script shows how to create an error dialog:" -msgstr "Följande exempelskript visar hur man skapar en feldialog:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Kunde inte hitta /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Exempel på feldialog" - -#. (itstool) path: figure/desc -#: C/error.page:28 -msgid "Zenity error dialog example" -msgstr "Zenity-exempel på feldialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Använd flaggan --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Filväljardialog" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Använd flaggan --file-selection för att skapa en filväljardialog. " -"Zenity returnerar de valda filerna eller katalogerna till " -"standard ut. Standardläget för filväljardialogen är öppna." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Filväljardialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=filnamn" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Anger filen eller katalogen som är markerad i filväljardialogen när dialogen " -"först visas." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Tillåter markering av flera filnamn i filväljardialogen." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Tillåter endast markering av kataloger i filväljardialogen." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Ställ in filväljardialogen till sparningsläge." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -msgid "--separator=separator" -msgstr "--separator=avgränsare" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Anger strängen som används för att avgränsa den returnerade listan över " -"filnamn." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "Följande exempelskript visar hur man skapar en filväljardialog:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Välj en fil\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" vald.\";;\n" -" 1)\n" -" echo \"Ingen fil vald.\";;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Exempel på filväljardialog" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -msgid "Zenity file selection dialog example" -msgstr "Zenity-exempel på filväljardialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Använd flaggan --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -msgid "Forms Dialog" -msgstr "Formulärdialog" - -#. (itstool) path: page/p -#: C/forms.page:10 -msgid "Use the --forms option to create a forms dialog." -msgstr "Använd flaggan --forms för att skapa en formulärdialog." - -#. (itstool) path: page/p -#: C/forms.page:14 -msgid "The forms dialog supports the following options:" -msgstr "Formulärdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=Fältnamn" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Lägg till en ny inmatningsruta i formulärdialogen." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=Fältnamn" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "Lägg till en ny lösenordsinmatningsruta i formulärdialogen. (Göm text)" - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=Fältnamn" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Lägg till en ny kalender i formulärdialogen." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=TEXT" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Ställer in dialogtexten." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=AVGRÄNSARE" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Ställ in tecken för utmatningsavgränsning. (Standardvärde: | )" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=MÖNSTER" - -#. (itstool) path: item/p -#: C/forms.page:47 -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Ställ in formatet för det returnerade datumet. Standardformatet beror på din " -"lokalinställning. format måste vara ett format som är acceptabelt för " -"funktionen strftime, till exempel %A %Y-%m-%d." - -#. (itstool) path: page/p -#: C/forms.page:52 -msgid "The following example script shows how to create a forms dialog:" -msgstr "Följande exempelskript visar hur man skapar en formulärdialog:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Lägg till vän\" \\\n" -"\t--text=\"Ange information om din vän.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Förnamn\" \\\n" -"\t--add-entry=\"Efternamn\" \\\n" -"\t--add-entry=\"E-post\" \\\n" -"\t--add-calendar=\"Födelsedag\" >> adr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Vän tillagd.\";;\n" -" 1)\n" -" echo \"Ingen vän tillagd.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -msgid "Forms Dialog Example" -msgstr "Exempel på formulärdialog" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -msgid "Zenity forms dialog example" -msgstr "Zenity-exempel på informationsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java Desktop System Documentation Team" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Handbok för Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -msgid "Dialogs" -msgstr "Dialoger" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Använd flaggan --info." - -#. (itstool) path: page/title -#: C/info.page:9 -msgid "Info Dialog" -msgstr "Informationsdialog" - -#. (itstool) path: page/p -#: C/info.page:10 -msgid "Use the --info option to create an information dialog." -msgstr "Använd flaggan --info för att skapa en informationsdialog." - -#. (itstool) path: page/p -#: C/info.page:14 -msgid "The following example script shows how to create an information dialog:" -msgstr "Följande exempelskript visar hur man skapar en informationsdialog:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Sammanslagning färdig. Uppdaterade 3 av 10 filer.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Exempel på informationsdialog" - -#. (itstool) path: figure/desc -#: C/info.page:28 -msgid "Zenity information dialog example" -msgstr "Zenity-exempel på informationsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "Zenity låter dig skapa olika typer av enkla dialoger." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Introduktion" - -#. (itstool) path: page/p -#: C/intro.page:10 -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "Zenity låter dig skapa följande typer av enkla dialoger:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Kalender" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Filval" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Formulär" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Lista" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Aviseringsikon" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Meddelande" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Fel" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Information" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Fråga" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Varning" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Lösenordsinmatning" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Förlopp" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Textinmatning" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Textinformation" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Skala" - -#. (itstool) path: item/p -#: C/intro.page:33 -msgid "Color selection" -msgstr "Färgval" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Använd flaggan --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Listdialog" - -#. (itstool) path: page/p -#: C/list.page:10 -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Använd flaggan --list för att skapa en listdialog. Zenity returnerar posterna i den första textkolumnen av markerade rader till " -"standard ut." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Data för dialogen måste anges kolumn för kolumn, rad för rad. Data kan " -"tillhandahållas till dialogen genom standard in. Varje post måste separeras " -"med ett nyradstecken." - -#. (itstool) path: page/p -#: C/list.page:18 -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"Om du använder flaggorna --checklist eller --radiolist, måste varje rad börja med antingen 'TRUE' eller 'FALSE'." - -#. (itstool) path: page/p -#: C/list.page:22 -msgid "The list dialog supports the following options:" -msgstr "Listdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/list.page:29 -msgid "--column=column" -msgstr "--column=kolumn" - -#. (itstool) path: item/p -#: C/list.page:30 -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"Anger kolumnhuvuden som visas i listdialogen. Du måste ange flaggan --" -"column för varje kolumn som du vill visa i dialogen." - -#. (itstool) path: item/title -#: C/list.page:35 -msgid "--checklist" -msgstr "--checklist" - -#. (itstool) path: item/p -#: C/list.page:36 -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "Anger att den första kolumnen i listdialogen innehåller kryssrutor." - -#. (itstool) path: item/title -#: C/list.page:41 -msgid "--radiolist" -msgstr "--radiolist" - -#. (itstool) path: item/p -#: C/list.page:42 -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "Anger att första kolumnen i listdialogen innehåller radioknappar." - -#. (itstool) path: item/title -#: C/list.page:47 C/text.page:26 -msgid "--editable" -msgstr "--editable" - -#. (itstool) path: item/p -#: C/list.page:48 -msgid "Allows the displayed items to be edited." -msgstr "Tillåter att de visade posterna kan redigeras." - -#. (itstool) path: item/p -#: C/list.page:54 -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "" -"Anger vilken sträng som används när listdialogen returnerar de markerade " -"posterna." - -#. (itstool) path: item/title -#: C/list.page:59 -msgid "--print-column=column" -msgstr "--print-column=kolumn" - -#. (itstool) path: item/p -#: C/list.page:60 -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "" -"Anger vilken kolumn som ska skrivas ut vid markering. Standardkolumnen är " -"\"1\". \"ALL\" kan användas för att skriva ut alla kolumner i listan." - -#. (itstool) path: page/p -#: C/list.page:67 -msgid "The following example script shows how to create a list dialog:" -msgstr "Följande exempelskript visar hur man skapar en listdialog:" - -#. (itstool) path: page/code -#: C/list.page:70 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Välj de fel som du önskar att se\" \\\n" -" --column=\"Felnummer\" --column=\"Allvarlighetsgrad\" --column=\"Beskrivning\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" - -#. (itstool) path: figure/title -#: C/list.page:83 -msgid "List Dialog Example" -msgstr "Exempel på listdialog" - -#. (itstool) path: figure/desc -#: C/list.page:84 -msgid "Zenity list dialog example" -msgstr "Zenity-exempel på listdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:85 -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='a538e91abd09009fa36ad3f8f575a2ca'" - -#. (itstool) path: info/desc -#: C/message.page:6 -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"Fel, Info, Fråga, Varning" - -#. (itstool) path: page/title -#: C/message.page:14 -msgid "Message Dialog" -msgstr "Meddelandedialoger" - -#. (itstool) path: page/p -#: C/message.page:15 -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"För varje typ, använd flaggan --text för att ange texten som " -"visas i dialogrutan." - -#. (itstool) path: info/desc -#: C/notification.page:6 -msgid "Use the --notification option." -msgstr "Använd flaggan --notification." - -#. (itstool) path: page/title -#: C/notification.page:9 -msgid "Notification Icon" -msgstr "Aviseringsikon" - -#. (itstool) path: page/p -#: C/notification.page:10 -msgid "Use the --notification option to create a notification icon." -msgstr "" -"Använd flaggan --notification för att skapa en aviseringsikon." - -#. (itstool) path: item/p -#: C/notification.page:15 -msgid "Specifies the text that is displayed in the notification area." -msgstr "Anger texten som visas i aviseringsytan." - -#. (itstool) path: item/title -#: C/notification.page:18 -msgid "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," -msgstr "" -"--listen=icon: 'text', message: 'text', " -"tooltip: 'text', visible: 'text'," - -#. (itstool) path: item/p -#: C/notification.page:19 -msgid "" -"Listens for commands at standard input. At least one command must be " -"specified. Commands are comma separated. A command must be followed by a " -"colon and a value." -msgstr "" -"Lyssnar efter kommandon på standard in. Åtminstone ett kommando måste anges. " -"Kommandon är kommaavgränsade. Ett kommando måste följas av ett kolon och ett " -"värde." - -#. (itstool) path: note/p -#: C/notification.page:21 -msgid "" -"The icon command also accepts four stock icon values such as " -"error, info, question and warning." -msgstr "" -"Kommandot icon accepterar fyra standardikonvärden så som " -"error, info, question och warning." - -#. (itstool) path: page/p -#: C/notification.page:26 -msgid "The following example script shows how to create a notification icon:" -msgstr "Följande exempelskript visar hur man skapar en aviseringsikon:" - -#. (itstool) path: page/code -#: C/notification.page:27 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -"\n" -" zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"Det finns nödvändiga systemuppdateringar!\"\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:36 -msgid "Notification Icon Example" -msgstr "Exempel på aviseringsikon" - -#. (itstool) path: figure/desc -#: C/notification.page:37 -msgid "Zenity notification icon example" -msgstr "Zenity-exempel på aviseringsikon" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:38 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='723bd2d1283f5a888967815991cbe858'" - -#. (itstool) path: page/p -#: C/notification.page:41 -msgid "" -"The following example script shows how to create a notification icon along " -"with --listen:" -msgstr "" -"Följande exempelskript visar hur man skapar en aviseringsikon tillsammans " -"med --listen:" - -#. (itstool) path: page/code -#: C/notification.page:42 -#, no-wrap -msgid "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: this is the message text\n" -" EOH\n" -" " -msgstr "" -"\n" -" #!/bin/sh\n" -" cat <<EOH| zenity --notification --listen\n" -" message: Detta är meddelandetexten\n" -" EOH\n" -" " - -#. (itstool) path: figure/title -#: C/notification.page:50 -msgid "Notification Icon with --listen Example" -msgstr "Exempel på aviseringsikon med --listen" - -#. (itstool) path: figure/desc -#: C/notification.page:51 -msgid "Zenity notification with --listen example" -msgstr "Zenity-aviseringsexempel med --listen" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:52 -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" -msgstr "" -"external ref='figures/zenity-notification-listen-screenshot.png' " -"md5='a1fe47d166ef20c0b35f9ba3ca15a03f'" - -#. (itstool) path: info/desc -#: C/password.page:6 -msgid "Use the --password option." -msgstr "Använd flaggan --password." - -#. (itstool) path: page/title -#: C/password.page:9 -msgid "Password Dialog" -msgstr "Lösenordsdialog" - -#. (itstool) path: page/p -#: C/password.page:10 -msgid "Use the --password option to create a password entry dialog." -msgstr "" -"Använd flaggan --password för att skapa en " -"lösenordsinmatningsdialog." - -#. (itstool) path: page/p -#: C/password.page:13 -msgid "The password entry dialog supports the following options:" -msgstr "Lösenordsinmatningsdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/title -#: C/password.page:19 -msgid "--username" -msgstr "--username" - -#. (itstool) path: item/p -#: C/password.page:20 -msgid "Display the username field." -msgstr "Visa fältet användarnamn." - -#. (itstool) path: page/p -#: C/password.page:24 -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "" -"Följande exempelskript visar hur man skapar en lösenordsinmatningsdialog:" - -#. (itstool) path: page/code -#: C/password.page:28 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"Användarnamn: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Lösenord : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Avsluta inloggning.\";;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/password.page:46 -msgid "Password Entry Dialog Example" -msgstr "Exempel på lösenordsinmatningsdialog" - -#. (itstool) path: figure/desc -#: C/password.page:47 -msgid "Zenity password entry dialog example" -msgstr "Zenity-exempel på lösenordsinmatningsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:48 -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='5555776db3dfda22137e5c0583e0f3da'" - -#. (itstool) path: info/desc -#: C/progress.page:6 -msgid "Use the --progress option." -msgstr "Använd flaggan --progress." - -#. (itstool) path: page/title -#: C/progress.page:9 -msgid "Progress Dialog" -msgstr "Förloppsdialog" - -#. (itstool) path: page/p -#: C/progress.page:10 -msgid "Use the --progress option to create a progress dialog." -msgstr "Använd flaggan --progress för att skapa en förloppsdialog." - -#. (itstool) path: page/p -#: C/progress.page:14 -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity läser data rad för rad från standard in. Om en rad inleds " -"med #, kommer texten att uppdateras med texten på den raden. Om en rad " -"endast innehåller en tal, kommer procenttalet att uppdateras med det talet." - -#. (itstool) path: page/p -#: C/progress.page:18 -msgid "The progress dialog supports the following options:" -msgstr "Förloppsdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/p -#: C/progress.page:26 -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "Anger texten som visas i förloppsdialogen." - -#. (itstool) path: item/title -#: C/progress.page:30 -msgid "--percentage=percentage" -msgstr "--percentage=procenttal" - -#. (itstool) path: item/p -#: C/progress.page:31 -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "Anger den initiala procenttalet som är inställt i förloppsdialogen." - -#. (itstool) path: item/title -#: C/progress.page:35 -msgid "--auto-close" -msgstr "--auto-close" - -#. (itstool) path: item/p -#: C/progress.page:36 -msgid "Closes the progress dialog when 100% has been reached." -msgstr "Stänger förloppsdialogen när 100% har nåtts." - -#. (itstool) path: item/title -#: C/progress.page:40 -msgid "--pulsate" -msgstr "--pulsate" - -#. (itstool) path: item/p -#: C/progress.page:41 -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "" -"Anger att förloppsindikatorn pulserar tills ett EOF-tecken läses in från " -"standard in." - -#. (itstool) path: page/p -#: C/progress.page:46 -msgid "The following example script shows how to create a progress dialog:" -msgstr "Följande exempelskript visar hur man skapar en förloppsdialog:" - -#. (itstool) path: page/code -#: C/progress.page:50 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Uppdaterar e-postloggar\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Återställer cron-jobb\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"Den här raden kommer att ignoreras\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Startar om systemet\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Uppdatera systemloggar\" \\\n" -" --text=\"Söker av e-postloggarna...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Uppdatering avbruten.\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/progress.page:76 -msgid "Progress Dialog Example" -msgstr "Exempel på förloppsdialog" - -#. (itstool) path: figure/desc -#: C/progress.page:77 -msgid "Zenity progress dialog example" -msgstr "Zenity-exempel på förloppsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='a9f492a4c872ef2fe4484c310d78eb6a'" - -#. (itstool) path: info/desc -#: C/question.page:6 -msgid "Use the --question option." -msgstr "Använd flaggan --question." - -#. (itstool) path: page/title -#: C/question.page:9 -msgid "Question Dialog" -msgstr "Frågedialog" - -#. (itstool) path: page/p -#: C/question.page:10 -msgid "Use the --question option to create a question dialog." -msgstr "Använd flaggan --question för att skapa en frågedialog." - -#. (itstool) path: page/p -#: C/question.page:14 -msgid "The following example script shows how to create a question dialog:" -msgstr "Följande exempelskript visar hur man skapar en frågedialog:" - -#. (itstool) path: page/code -#: C/question.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Är du säker på att du vill fortsätta?\"\n" - -#. (itstool) path: figure/title -#: C/question.page:27 -msgid "Question Dialog Example" -msgstr "Exempel på frågedialog" - -#. (itstool) path: figure/desc -#: C/question.page:28 -msgid "Zenity question dialog example" -msgstr "Zenity-exempel på frågedialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:29 -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='962af0ddab7e11f11288e1f188066a84'" - -#. (itstool) path: info/desc -#: C/scale.page:6 -msgid "Use the --scale option." -msgstr "Använd flaggan --scale." - -#. (itstool) path: page/title -#: C/scale.page:9 -msgid "Scale Dialog" -msgstr "Skaldialog" - -#. (itstool) path: page/p -#: C/scale.page:10 -msgid "Use the --scale option to create a scale dialog." -msgstr "Använd flaggan --scale för att skapa en skaldialog." - -#. (itstool) path: page/p -#: C/scale.page:13 -msgid "The scale dialog supports the following options:" -msgstr "Skaldialogen har stöd för följande flaggor:" - -#. (itstool) path: item/p -#: C/scale.page:21 -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "Ställ in dialogtexten. (Standardvärde: Justera skalningsvärdet)" - -#. (itstool) path: item/title -#: C/scale.page:25 -msgid "--value=VALUE" -msgstr "--value=VÄRDE" - -#. (itstool) path: item/p -#: C/scale.page:26 -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "" -"Ställ in begynnelsevärde. (Standardvärde: 0) Du måste ange ett värde mellan " -"minimivärdet och maximivärdet." - -#. (itstool) path: item/title -#: C/scale.page:30 -msgid "--min-value=VALUE" -msgstr "--min-value=VÄRDE" - -#. (itstool) path: item/p -#: C/scale.page:31 -msgid "Set minimum value. (Default: 0)" -msgstr "Ställ in minimivärde. (Standardvärde: 0)" - -#. (itstool) path: item/title -#: C/scale.page:35 -msgid "--max-value=VALUE" -msgstr "--max-value=VÄRDE" - -#. (itstool) path: item/p -#: C/scale.page:36 -msgid "Set maximum value. (Default: 100)" -msgstr "Ställ in maximivärde. (Standardvärde: 100)" - -#. (itstool) path: item/title -#: C/scale.page:40 -msgid "--step=VALUE" -msgstr "--step=VÄRDE" - -#. (itstool) path: item/p -#: C/scale.page:41 -msgid "Set step size. (Default: 1)" -msgstr "Ställ in stegstorlek. (Standardvärde: 1)" - -#. (itstool) path: item/title -#: C/scale.page:45 -msgid "--print-partial" -msgstr "--print-partial" - -#. (itstool) path: item/p -#: C/scale.page:46 -msgid "Print value to standard output, whenever a value is changed." -msgstr "Skriv ut värde till standard ut, närhelst ett värde ändras." - -#. (itstool) path: item/title -#: C/scale.page:50 -msgid "--hide-value" -msgstr "--hide-value" - -#. (itstool) path: item/p -#: C/scale.page:51 -msgid "Hide value on dialog." -msgstr "Dölj värde i dialog." - -#. (itstool) path: page/p -#: C/scale.page:56 -msgid "The following example script shows how to create a scale dialog:" -msgstr "Följande exempelskript visar hur man skapar en skaldialog:" - -#. (itstool) path: page/code -#: C/scale.page:60 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Välj fönstertransparens.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Du valde $VALUE%.\";;\n" -" 1)\n" -" echo \"Inget värde valt.\";;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/scale.page:76 -msgid "Scale Dialog Example" -msgstr "Exempel på skaldialog" - -#. (itstool) path: figure/desc -#: C/scale.page:77 -msgid "Zenity scale dialog example" -msgstr "Zenity-exempel på skaldialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:78 -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='efab2668ba53b567551697665a34f7f8'" - -#. (itstool) path: info/desc -#: C/text.page:6 -msgid "Use the --text-info option." -msgstr "Använd flaggan --text-info." - -#. (itstool) path: page/title -#: C/text.page:9 -msgid "Text Information Dialog" -msgstr "Textinformationsdialog" - -#. (itstool) path: page/p -#: C/text.page:10 -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "" -"Använd flaggan --text-info för att skapa en " -"textinformationsdialog." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Textinformationsdialogen har stöd för följande flaggor:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Anger en fil som läses in i textinformationsdialogen." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Tillåter att den visade texten redigeras. Den redigerade texten returneras " -"till standard ut när dialogrutan stängs." - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=TYPSNITT" - -#. (itstool) path: item/p -#: C/text.page:32 -msgid "Specifies the text font." -msgstr "Anger texttypsnittet." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=TEXT" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Aktivera en kryssruta för användning i stil med ”Jag har läst och accepterar " -"villkoren.”" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Aktivera html-stöd." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=URL" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Ställer in en url istället för en fil. Fungerar endast om du använder " -"flaggan --html." - -#. (itstool) path: page/p -#: C/text.page:52 -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "Följande exempelskript visar hur man skapar en textinformationsdialog:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Du måste placera filen \"COPYING\" i samma mapp som detta skript.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Licens\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Jag har läst och accepterar villkoren.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Påbörja installation!\"\n" -"\t# nästa steg\n" -"\t;;\n" -" 1)\n" -" echo \"Avsluta installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Ett oväntat fel har inträffat.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Exempel på textinformationsdialog" - -#. (itstool) path: figure/desc -#: C/text.page:83 -msgid "Zenity text information dialog example" -msgstr "Zenity-exempel på textinformationsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Du kan använda Zenity för att skapa enkla dialogrutor som " -"interagerar grafiskt med användaren." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Användning" - -#. (itstool) path: page/p -#: C/usage.page:10 -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"När du skriver skript kan du använda Zenity för att skapa enkla " -"dialogrutor som interagerar grafiskt med användaren enligt följande:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Du kan skapa en dialogruta för att hämta in information från användaren. " -"Till exempel kan du fråga användaren om att välja ett datum från en " -"kalenderdialog, eller att välja en fil från en filväljardialog." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Du kan skapa en dialogruta för att tillhandahålla information till " -"användaren. Till exempel kan du använda en förloppsdialog för att indikera " -"aktuell status för en åtgärd, eller använda en varningsdialog för att larma " -"användaren." - -#. (itstool) path: page/p -#: C/usage.page:25 -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"När användaren stänger dialogrutan, skriver Zenity ut texten som " -"producerats av dialogrutan till standard ut." - -#. (itstool) path: note/p -#: C/usage.page:30 -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"När du skriver Zenity-kommandon, säkerställ att du placerar " -"citationstecken runt varje argument." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Använd till exempel:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Min helgplanerare\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Använd inte:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Min helgplanerare" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Om du inte använder citationstecken kan du få oväntade resultat." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Snabbtangenter" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"En snabbtangent är en tangent som låter dig genomföra en åtgärd från " -"tangentbordet istället för att använda musen för att välja ett kommando från " -"en meny eller dialog. Varje snabbtangent identifieras av en understruken " -"bokstav i en meny eller dialogflagga." - -#. (itstool) path: section/p -#: C/usage.page:47 -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"Vissa Zenity-dialoger har stöd för användningen av " -"snabbtangenter. För att ange tecknet som ska användas som snabbtangenten, " -"placera ett understreck före den bokstaven i dialogens text. Följande " -"exempel visar hur man specificerar bokstaven ”V” som en snabbtangent:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -msgid "\"_Choose a name\"." -msgstr "\"_Välj ett namn\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Avslutningskoder" - -#. (itstool) path: section/p -#: C/usage.page:55 -msgid "Zenity returns the following exit codes:" -msgstr "Zenity returnerar följande avslutningskoder:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Avslutningskod" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Beskrivning" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Användaren har antingen tryckt på OK eller Stäng." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Användaren har antingen tryckt på Avbryt, eller " -"använt fönsterfunktioner för att stänga dialogrutan." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Ett oväntat fel har inträffat." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Dialogrutan har stängts därför att tidsgränsen har nåtts." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Allmänna alternativ" - -#. (itstool) path: section/p -#: C/usage.page:112 -msgid "All Zenity dialogs support the following general options:" -msgstr "Alla Zenity-dialoger har stöd för följande allmänna flaggor:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=titel" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Anger titeln på en dialogruta." - -#. (itstool) path: item/title -#: C/usage.page:124 -msgid "--window-icon=icon_path" -msgstr "--window-icon=ikonsökväg" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Anger ikonen som visas i fönsterramen för dialogen. Det finns 4 " -"standardikoner som finns tillgängliga genom att ange något av följande " -"nyckelord - \"info\", \"warning\", \"question\" och \"error\"." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=bredd" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Anger bredden på dialogrutan." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=höjd" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Anger höjden på dialogrutan." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=tidsgräns" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "Anger tidsgränsen i sekunder efter vilken dialogrutan stängs." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Hjälpflaggor" - -#. (itstool) path: section/p -#: C/usage.page:155 -msgid "Zenity provides the following help options:" -msgstr "Zenity tillhandahåller följande hjälpflaggor:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Visar förkortad hjälptext." - -#. (itstool) path: item/title -#: C/usage.page:167 -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Visar fullständig hjälptext för alla dialoger." - -#. (itstool) path: item/title -#: C/usage.page:172 -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Visar hjälptext för allmänna dialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:177 -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Visar hjälptext för kalenderdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:182 -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Visar hjälptext för textinmatningsdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:187 -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Visar hjälptext för feldialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:192 -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Visar hjälptext för informationsdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:197 -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Visar hjälptext för filväljardialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:202 -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Visar hjälptext för listdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:207 -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Visar hjälptext för aviseringsikonflaggor." - -#. (itstool) path: item/title -#: C/usage.page:212 -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Visar hjälptext för förloppsdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:217 -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Visar hjälptext för frågedialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:222 -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Visar hjälptext för varningsdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:227 -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Visar hjälp för textinformationsdialogflaggor." - -#. (itstool) path: item/title -#: C/usage.page:232 -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Visar hjälp för diverse flaggor." - -#. (itstool) path: item/title -#: C/usage.page:237 -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Visar hjälp för GTK+-flaggor." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Diverse flaggor" - -#. (itstool) path: section/p -#: C/usage.page:250 -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity tillhandahåller även följande flaggor för diverse saker:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Visar dialogrutan Om Zenity, vilken innehåller " -"versionsinformation för Zenity, upphovsrättsinformation, och " -"utvecklarinformation." - -#. (itstool) path: item/title -#: C/usage.page:262 -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -msgid "Displays the version number of Zenity." -msgstr "Visar versionsnumret för Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "GTK+-flaggor" - -#. (itstool) path: section/p -#: C/usage.page:275 -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity har stöd för standardflaggorna för GTK+. För mer information om GTK+-" -"flaggorna, kör kommandot zenity --help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Miljövariabler" - -#. (itstool) path: section/p -#: C/usage.page:286 -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Normalt kommer Zenity att identifiera terminalfönstret från vilket det " -"startades och håller sig själv ovanför det fönstret. Detta beteende kan " -"inaktiveras genom att tömma ur miljövariabeln WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Använd flaggan --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Varningsdialog" - -#. (itstool) path: page/p -#: C/warning.page:10 -msgid "Use the --warning option to create a warning dialog." -msgstr "Använd flaggan --warning för att skapa en varningsdialog." - -#. (itstool) path: page/p -#: C/warning.page:14 -msgid "The following example script shows how to create a warning dialog:" -msgstr "Följande exempelskript visar hur man skapar en varningsdialog:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Koppla från strömkabeln för att undvika elektriska stötar.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Exempel på varningsdialog" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -msgid "Zenity warning dialog example" -msgstr "Zenity-exempel på varningsdialog" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" - -#~ msgctxt "_" -#~ msgid "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -#~ msgstr "" -#~ "external ref='figures/zenity-progress-screenshot.png' " -#~ "md5='75121bbbcb9cc92de4ebf7fbb92f0780'" - -#~ msgid "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" -#~ msgstr "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Handbok för skrivbordsprogrammet Zenity v2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems, Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Java Desktop System Documentation Team" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "Dokumentationsprojekt för GNOME" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "Augusti 2004" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Handbok för Zenity v1.0" - -#~ msgid "January 2003" -#~ msgstr "Januari 2003" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "Den här handboken beskriver version 2.6.0 av Zenity." - -#~ msgid "Feedback" -#~ msgstr "Återkoppling" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "För att skicka in kommentarer eller förslag, följ instruktionerna på " -#~ "återkopplingssidan." - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "Zenity är en vidareutveckling av gdialog, GNOME-porteringen av dialog som " -#~ "låter dig visa dialogrutor från kommandoraden och skalskript." - -#~ msgid "zenity command" -#~ msgstr "zenity-kommando" - -#~ msgid "dialog creator" -#~ msgstr "dialogskapare" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "Till exempel, använd: zenity --calendar --" -#~ "title=\"Semesterplanerare\" Använd inte: " -#~ "zenity --calendar --title=Semesterplanerare" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "=title" -#~ msgstr "=titel" - -#~ msgid "=width" -#~ msgstr "=bredd" - -#~ msgid "=height" -#~ msgstr "=höjd" - -#~ msgid "=timeout" -#~ msgstr "=tidsgräns" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "=text" -#~ msgstr "=text" - -#~ msgid "=day" -#~ msgstr "=dag" - -#~ msgid "=month" -#~ msgstr "=månad" - -#~ msgid "=year" -#~ msgstr "=år" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid "=filename" -#~ msgstr "=filnamn" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "=column" -#~ msgstr "=kolumn" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "" -#~ "Zenity kan skapa fyra typer av " -#~ "meddelandedialoger:" - -#~ msgid "=text" -#~ msgstr "=text" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Välj en fil\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"Ingen fil vald.\";;\n" -#~ " -1)\n" -#~ " echo \"Ingen fil vald.\";;\n" -#~ " esac\n" -#~ " " diff --git a/help/uk/.cvsignore b/help/uk/.cvsignore deleted file mode 100644 index eee9bc4..0000000 --- a/help/uk/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -.xml2po.mo -zenity.xml diff --git a/help/uk/figures/zenity-colorselection-screenshot.png b/help/uk/figures/zenity-colorselection-screenshot.png deleted file mode 100644 index eaff970..0000000 Binary files a/help/uk/figures/zenity-colorselection-screenshot.png and /dev/null differ diff --git a/help/uk/uk.po b/help/uk/uk.po deleted file mode 100644 index 2fb6230..0000000 --- a/help/uk/uk.po +++ /dev/null @@ -1,3052 +0,0 @@ -# Ukrainian translation of zenity manual -# Copyright (C) 2001 Free Software Foundation, Inc. -# -# Maxim Dziumanenko , 2005-2007. -# Yuri Chornoivan , 2020. -msgid "" -msgstr "" -"Project-Id-Version: zenity manual\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-03 07:50+0000\n" -"PO-Revision-Date: 2020-04-12 10:53+0300\n" -"Last-Translator: Yuri Chornoivan \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" -"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 20.07.70\n" - -#. (itstool) path: p/link -#: C/legal.xml:5 -msgid "GNU Free Documentation License Version 1.1" -msgstr "GNU Free Documentation License, версії 1.1" - -#. (itstool) path: license/p -#: C/legal.xml:4 -msgid "This work is licensed under a <_:link-1/> or any later version." -msgstr "" -"Ця робота розповсюджується за умов дотримання <_:link-1/> або будь-якої" -" наступної версії." - -#. (itstool) path: p/link -#: C/legal.xml:15 -msgid "link" -msgstr "посиланням" - -#. (itstool) path: license/p -#: C/legal.xml:8 -#| msgid "" -#| "Permission is granted to copy, distribute and/or modify this document " -#| "under the terms of the GNU Free Documentation License (GFDL), Version 1.1 " -#| "or any later version published by the Free Software Foundation with no " -#| "Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You " -#| "can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:link-1/>." -msgstr "" -"Дозволяється копіювати, розповсюджувати та/або змінювати цей документ на " -"умовах ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-" -"якої старшої версії, що опублікована Free Software Foundation без " -"інваріантних розділів, тексту титульної сторінки, та тексту фінальної " -"сторінки. Копію GFDL можна знайти за цим <_:link-1/>." - -#. (itstool) path: license/p -#: C/legal.xml:17 -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"Цей підручник є частиною збірки документації з GNOME, що постачається на" -" умовах ліцензії GFDL. Якщо ви бажаєте розповсюджувати цю довідку окремо від" -" збірки, " -"можете це зробити додавши до довідки копію ліцензії, як описано у пункті 6" -" ліцензії." - -#. (itstool) path: license/p -#: C/legal.xml:24 -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"Більшість назв, що використовуються компаніями для розповсюдження їх " -"продуктів та послуг є торговими марками. Якщо такі назви зустрічаються у " -"документації з GNOME та учасникам проекту документування GNOME відомо, що " -"вони є торговими марками, тоді ці назви пишуться великими літерами або " -"починаються з великої літери." - -#. (itstool) path: license/p -#: C/legal.xml:33 -#| msgid "" -#| "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE " -#| "TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER " -#| "UNDERSTANDING THAT: " -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT:" -msgstr "" -"ДОКУМЕНТ ТА ЗМІНЕНІ ВЕРСІЇ ДОКУМЕНТУ НАДАЮТЬСЯ КОРИСТУВАЧУ ЗА УМОВАМИ " -"ЛІЦЕНЗІЇ GNU FREE DOCUMENTATION LICENSE З ПОДАЛЬШИМ РОЗУМІННЯМ ПРО ТЕ, ЩО:" - -#. (itstool) path: item/p -#: C/legal.xml:40 -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"ДОКУМЕНТ НАДАЄТЬСЯ \"ЯК Є\", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, " -"ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ, ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ " -"ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ " -"АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ " -"ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС. ЯКЩО БУДЬ-ЯКИЙ " -"ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ " -"ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ " -"НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. " -"ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ " -"ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ " -"ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА" - -#. (itstool) path: item/p -#: C/legal.xml:60 -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ " -"ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, " -"ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ " -"ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ " -"СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, " -"НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ " -"ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, " -"ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ, ЩО " -"ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ " -"ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ " -"ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ." - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -#| msgid "translator-credits" -msgctxt "_" -msgid "translator-credits" -msgstr "Максим Дзюманенко " - -#. (itstool) path: info/desc -#: C/calendar.page:6 -msgid "Use the --calendar option." -msgstr "Користування параметром --calendar." - -#. (itstool) path: page/title -#: C/calendar.page:9 -msgid "Calendar Dialog" -msgstr "Вікно календаря" - -#. (itstool) path: page/p -#: C/calendar.page:10 -#| msgid "" -#| "Use the option to create a calendar dialog. " -#| "Zenity returns the selected date to standard " -#| "output. If no date is specified on the command line, the dialog uses the " -#| "current date." -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"Для створення вікна календаря використовується параметр --calendar. Zenity повертає вибрану дату у " -"стандартний потік. Якщо дату не було вказано у командному рядку, " -"використовується поточна дата." - -#. (itstool) path: page/p -#: C/calendar.page:13 -msgid "The calendar dialog supports the following options:" -msgstr "Вікно календаря підтримує наступні параметри:" - -#. (itstool) path: item/title -#: C/calendar.page:20 C/entry.page:20 C/notification.page:14 C/progress.page:25 -msgid "--text=text" -msgstr "--text=текст" - -#. (itstool) path: item/p -#: C/calendar.page:21 -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "Вказує текст, який буде показано у вікні календаря." - -#. (itstool) path: item/title -#: C/calendar.page:25 -msgid "--day=day" -msgstr "--day=день" - -#. (itstool) path: item/p -#: C/calendar.page:26 -#| msgid "" -#| "Specifies the day that is selected in the calendar dialog. " -#| "day must be a number between 1 and 31 " -#| "inclusive." -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "" -"Вказує день, який виділяється у вікні календаря. День має бути числом від 1" -" до 31." - -#. (itstool) path: item/title -#: C/calendar.page:30 -msgid "--month=month" -msgstr "--month=місяць" - -#. (itstool) path: item/p -#: C/calendar.page:31 -#| msgid "" -#| "Specifies the month that is selected in the calendar dialog. " -#| "month must be a number between 1 and 12 " -#| "inclusive." -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "" -"Вказує місяць, який виділяється у вікні календаря. Місяць має бути числом від" -" 1 до 12." - -#. (itstool) path: item/title -#: C/calendar.page:35 -msgid "--year=year" -msgstr "--year=рік" - -#. (itstool) path: item/p -#: C/calendar.page:36 -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "Вказує рік, який виділяється у вікні календаря." - -#. (itstool) path: item/title -#: C/calendar.page:40 -#| msgid "=format" -msgid "--date-format=format" -msgstr "--date-format=формат" - -#. (itstool) path: item/p -#: C/calendar.page:41 -#| msgid "" -#| "Specifies the format that is returned from the calendar dialog after date " -#| "selection. The default format depends on your locale. " -#| "format must be a format that is acceptable to " -#| "the strftime function, for example %A %d/%m/" -#| "%y." -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"Вказує формат дати, яку буде повернуто після вибору дати. Типовий формат " -"залежить від локалі. Формат має бути допустимим " -"виразом для функції strftime, наприклад %A %d/%m/" -"%y." - -#. (itstool) path: page/p -#: C/calendar.page:46 -#| msgid "" -#| "The following example script shows how to create a calendar dialog: " -#| "" -msgid "The following example script shows how to create a calendar dialog:" -msgstr "У наступному прикладі сценарію показано створення вікна календаря:" - -#. (itstool) path: page/code -#: C/calendar.page:50 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/sh\n" -#| "\n" -#| "\n" -#| " if zenity --calendar \\\n" -#| " --title=\"Select a Date\" \\\n" -#| " --text=\"Click on a date to select that date.\" \\\n" -#| " --day=10 --month=8 --year=2004\n" -#| " then echo $?\n" -#| " else echo \"No date selected\"\n" -#| " fi\n" -#| " " -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Виберіть дату\" \\\n" -"--text=\"Клацніть на даті для її вибору.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"Дату не вибрано\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/calendar.page:65 -msgid "Calendar Dialog Example" -msgstr "Приклад вікна календаря" - -#. (itstool) path: figure/desc -#: C/calendar.page:66 -#| msgid "Calendar Dialog Example" -msgid "Zenity calendar dialog example" -msgstr "Приклад вікна календаря Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:67 -#| msgid "" -#| "@@image: 'figures/zenity-calendar-screenshot.png'; " -#| "md5=b739d32aad963be4415d34ec103baf26" -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='5179d22e4b3bd9b106792ea5f3b037ca'" - -#. (itstool) path: info/desc -#: C/color-selection.page:6 -msgid "Use the --color-selection option." -msgstr "Використання параметра --color-selection." - -#. (itstool) path: page/title -#: C/color-selection.page:9 -#| msgid "File Selection Dialog" -msgid "Color Selection Dialog" -msgstr "Вікно вибору кольору" - -#. (itstool) path: page/p -#: C/color-selection.page:10 -#| msgid "" -#| "Use the option to create a question dialog." -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "" -"Використання параметра --color-selection для створення діалогового" -" вікна вибору кольору." - -#. (itstool) path: page/p -#: C/color-selection.page:13 -#| msgid "The file selection dialog supports the following options:" -msgid "The color selection dialog supports the following options:" -msgstr "У вікні вибору кольору передбачено підтримку таких параметрів:" - -#. (itstool) path: item/title -#: C/color-selection.page:20 -msgid "--color=VALUE" -msgstr "--color=ЗНАЧЕННЯ" - -#. (itstool) path: item/p -#: C/color-selection.page:21 -msgid "Set the initial color.(ex: #FF0000)" -msgstr "Встановити початковий колір (наприклад #FF0000)." - -#. (itstool) path: item/title -#: C/color-selection.page:25 -msgid "--show-palette" -msgstr "--show-palette" - -#. (itstool) path: item/p -#: C/color-selection.page:26 -msgid "Show the palette." -msgstr "Показати палітру." - -#. (itstool) path: page/p -#: C/color-selection.page:31 -#| msgid "" -#| "The following example script shows how to create a file selection dialog: " -#| "" -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "У наступному прикладі показано створення вікна вибору кольору:" - -#. (itstool) path: page/code -#: C/color-selection.page:35 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/sh\n" -#| "\n" -#| " FILE=`zenity --file-selection --title=\"Select a File\"`\n" -#| "\n" -#| " case $? in\n" -#| " 0)\n" -#| " echo \"\\\"$FILE\\\" selected.\";;\n" -#| " 1)\n" -#| " echo \"No file selected.\";;\n" -#| " -1)\n" -#| " echo \"No file selected.\";;\n" -#| " esac\n" -#| " " -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"Вами вибрано колір $COLOR.\";;\n" -" 1)\n" -" echo \"Колір не вибрано.\";;\n" -" -1)\n" -" echo \"Сталася неочікувана помилка.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/color-selection.page:51 -#| msgid "File Selection Dialog Example" -msgid "Color Selection Dialog Example" -msgstr "Приклад вікна вибору кольору" - -#. (itstool) path: figure/desc -#: C/color-selection.page:52 -#| msgid " file selection dialog example" -msgid "Zenity color selection dialog example" -msgstr "Приклад вікна вибору кольору Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:53 -#| msgid "" -#| "@@image: 'figures/zenity-fileselection-screenshot.png'; " -#| "md5=2c903cba26fb40462deea0bb6b931ea7" -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='9256ba82db5dd61942cddb2e9b801ce4'" - -#. (itstool) path: info/desc -#: C/entry.page:6 -msgid "Use the --entry option." -msgstr "Використання параметра --entry." - -#. (itstool) path: page/title -#: C/entry.page:9 -msgid "Text Entry Dialog" -msgstr "Вікно вводу тексту" - -#. (itstool) path: page/p -#: C/entry.page:10 -#| msgid "" -#| "Use the option to create a text entry dialog. " -#| "Zenity returns the contents of the text entry " -#| "to standard output." -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"Для створення вікна вводу тексту використовується наступний параметр " -"--entry. Zenity повертає вміст " -"поля вводу тексту в стандартний потік виводу." - -#. (itstool) path: page/p -#: C/entry.page:13 -msgid "The text entry dialog supports the following options:" -msgstr "Вікно вводу тексту підтримує наступні параметри:" - -#. (itstool) path: item/p -#: C/entry.page:21 -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "Вказує текст, який буде показано у вікні вводу тексту." - -#. (itstool) path: item/title -#: C/entry.page:25 -msgid "--entry-text=text" -msgstr "--entry-text=текст" - -#. (itstool) path: item/p -#: C/entry.page:26 -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "" -"Вказує текст, який буде показано у полі вводу тексту в вікні вводу тексту." - -#. (itstool) path: item/title -#: C/entry.page:30 -#| msgid "--hide-text" -msgid "--hide-text" -msgstr "--hide-text" - -#. (itstool) path: item/p -#: C/entry.page:31 -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "Текст у полі вводу тексту ховається." - -#. (itstool) path: page/p -#: C/entry.page:36 -#| msgid "" -#| "The following example script shows how to create a text entry dialog: " -#| "" -msgid "The following example script shows how to create a text entry dialog:" -msgstr "" -"У наступному сценарії продемонстровано створення вікна введення тексту:" - -#. (itstool) path: page/code -#: C/entry.page:40 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/sh\n" -#| "\n" -#| " if zenity --entry \\\n" -#| " --title=\"Add an Entry\" \\\n" -#| " --text=\"Enter your _password:\" \\\n" -#| " --entry-text \"password\" \\\n" -#| " --hide-text\n" -#| " then echo $?\n" -#| " else echo \"No password entered\"\n" -#| " fi\n" -#| " " -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Додавання нового профілю\" \\\n" -"--text=\"Введіть назву нового профілю:\" \\\n" -"--entry-text \"НовийПрофіль\"\n" -" then echo $?\n" -" else echo \"Назву не введено\"\n" -"fi\n" - -#. (itstool) path: figure/title -#: C/entry.page:54 -msgid "Text Entry Dialog Example" -msgstr "Приклад вікна вводу тексту" - -#. (itstool) path: figure/desc -#: C/entry.page:55 -#| msgid " text entry dialog example" -msgid "Zenity text entry dialog example" -msgstr "Приклад вікна введення тексту Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:56 -#| msgid "" -#| "@@image: 'figures/zenity-entry-screenshot.png'; " -#| "md5=0fb790cbb6d13ec13a314b34f844ee80" -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='d7698dcc8b153c1be72fe8324b79d0f4'" - -#. (itstool) path: info/desc -#: C/error.page:6 -msgid "Use the --error option." -msgstr "Використання параметра --error." - -#. (itstool) path: page/title -#: C/error.page:9 -msgid "Error Dialog" -msgstr "Вікно помилки" - -#. (itstool) path: page/p -#: C/error.page:10 -#| msgid "Use the option to create an error dialog." -msgid "Use the --error option to create an error dialog." -msgstr "Для створення вікна помилки скористайтеся --error." - -#. (itstool) path: page/p -#: C/error.page:14 -#| msgid "" -#| "The following example script shows how to create an error dialog: " -#| "" -msgid "The following example script shows how to create an error dialog:" -msgstr "У наступному сценарії продемонстровано створення вікна помилки:" - -#. (itstool) path: page/code -#: C/error.page:18 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/bash\n" -#| "\n" -#| " zenity --error \\\n" -#| " --text=\"Could not find /var/log/syslog.\"\n" -#| " " -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Не вдається знайти /var/log/syslog.\"\n" - -#. (itstool) path: figure/title -#: C/error.page:27 -msgid "Error Dialog Example" -msgstr "Приклад вікна помилки" - -#. (itstool) path: figure/desc -#: C/error.page:28 -#| msgid " error dialog example" -msgid "Zenity error dialog example" -msgstr "Приклад вікна помилки Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:29 -#| msgid "" -#| "@@image: 'figures/zenity-error-screenshot.png'; " -#| "md5=c0fae27dcfc45eb335fd6bbc5e7f29b5" -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='4b461076520bc0ad570367af8279ef83'" - -#. (itstool) path: info/desc -#: C/file-selection.page:6 -msgid "Use the --file-selection option." -msgstr "Використання параметра --file-selection." - -#. (itstool) path: page/title -#: C/file-selection.page:9 -msgid "File Selection Dialog" -msgstr "Вікно вибору файлів" - -#. (itstool) path: page/p -#: C/file-selection.page:10 -#| msgid "" -#| "Use the option to create a file " -#| "selection dialog. Zenity returns the selected " -#| "files or directories to standard output. The default mode of the file " -#| "selection dialog is open." -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"Для створення вікна вибору файлів використовується параметр --file-selection. Zenity повертає вибрані файли чи каталоги" -" у стандартному потоці виводу. Типовим режимом вікна вибору" -" файлів є відкривання." - -#. (itstool) path: page/p -#: C/file-selection.page:14 -msgid "The file selection dialog supports the following options:" -msgstr "Вікно вибору файлів підтримує наступні параметри:" - -#. (itstool) path: item/title -#: C/file-selection.page:21 C/text.page:21 -msgid "--filename=filename" -msgstr "--filename=назва_файла" - -#. (itstool) path: item/p -#: C/file-selection.page:22 -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "" -"Вказує файл чи каталог, який буде позначено при першому показі вікна вибору " -"файлів." - -#. (itstool) path: item/title -#: C/file-selection.page:26 -#| msgid "--multiple" -msgid "--multiple" -msgstr "--multiple" - -#. (itstool) path: item/p -#: C/file-selection.page:27 -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "Уможливлює вибір кількох назв файлів у вікні вибору файлів." - -#. (itstool) path: item/title -#: C/file-selection.page:31 -#| msgid "--directory" -msgid "--directory" -msgstr "--directory" - -#. (itstool) path: item/p -#: C/file-selection.page:32 -msgid "Allows only selection of directories in the file selection dialog." -msgstr "Дозволяє лише вибір каталогів у вікні вибору файлів." - -#. (itstool) path: item/title -#: C/file-selection.page:36 -msgid "--save" -msgstr "--save" - -#. (itstool) path: item/p -#: C/file-selection.page:37 -msgid "Set the file selection dialog into save mode." -msgstr "Встановлює режим збереження у вікні вибору файлів." - -#. (itstool) path: item/title -#: C/file-selection.page:41 C/list.page:53 -#| msgid "=separator" -msgid "--separator=separator" -msgstr "--separator=роздільник" - -#. (itstool) path: item/p -#: C/file-selection.page:42 -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "" -"Вказує рядок, який використовується для розділення списку назв файлів, що " -"повертаються командою." - -#. (itstool) path: page/p -#: C/file-selection.page:47 -#| msgid "" -#| "The following example script shows how to create a file selection dialog: " -#| "" -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "У наступному прикладі показано створення вікна вибору файлів:" - -#. (itstool) path: page/code -#: C/file-selection.page:51 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/sh\n" -#| "\n" -#| " FILE=`zenity --file-selection --title=\"Select a File\"`\n" -#| "\n" -#| " case $? in\n" -#| " 0)\n" -#| " echo \"\\\"$FILE\\\" selected.\";;\n" -#| " 1)\n" -#| " echo \"No file selected.\";;\n" -#| " -1)\n" -#| " echo \"No file selected.\";;\n" -#| " esac\n" -#| " " -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Виберіть файл\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Вибрано \\\"$FILE\\\".\";;\n" -" 1)\n" -" echo \"Файл не вибрано.\";;\n" -" -1)\n" -" echo \"Сталася неочікувана помилка.\";;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/file-selection.page:67 -msgid "File Selection Dialog Example" -msgstr "Приклад вікна вибору файлів" - -#. (itstool) path: figure/desc -#: C/file-selection.page:68 -#| msgid " file selection dialog example" -msgid "Zenity file selection dialog example" -msgstr "Приклад вікна вибору файла Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:69 -#| msgid "" -#| "@@image: 'figures/zenity-fileselection-screenshot.png'; " -#| "md5=2c903cba26fb40462deea0bb6b931ea7" -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='3b722199d9524d2a1928895df5441e81'" - -#. (itstool) path: info/desc -#: C/forms.page:6 -msgid "Use the --forms option." -msgstr "Використання параметра --forms." - -#. (itstool) path: page/title -#: C/forms.page:9 -#| msgid "Error Dialog" -msgid "Forms Dialog" -msgstr "Вікно форм" - -#. (itstool) path: page/p -#: C/forms.page:10 -#| msgid "" -#| "Use the option to create an information dialog." -msgid "Use the --forms option to create a forms dialog." -msgstr "" -"Для створення діалогового вікна форм скористайтеся параметром --forms<" -"/cmd>." - -#. (itstool) path: page/p -#: C/forms.page:14 -#| msgid "The progress dialog supports the following options:" -msgid "The forms dialog supports the following options:" -msgstr "У вікні форм передбачено підтримку таких параметрів:" - -#. (itstool) path: item/title -#: C/forms.page:21 -msgid "--add-entry=FieldName" -msgstr "--add-entry=НАЗВА_ПОЛЯ" - -#. (itstool) path: item/p -#: C/forms.page:22 -msgid "Add a new Entry in forms dialog." -msgstr "Додати нове поле у вікно форм." - -#. (itstool) path: item/title -#: C/forms.page:26 -msgid "--add-password=FieldName" -msgstr "--add-password=НАЗВА_ПОЛЯ" - -#. (itstool) path: item/p -#: C/forms.page:27 -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "" -"Додати у вікно форм поле для введення пароля (приховує введений текст)." - -#. (itstool) path: item/title -#: C/forms.page:31 -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=НАЗВА_ПОЛЯ" - -#. (itstool) path: item/p -#: C/forms.page:32 -msgid "Add a new Calendar in forms dialog." -msgstr "Додати новий календар у вікно форм." - -#. (itstool) path: item/title -#: C/forms.page:36 C/scale.page:20 -msgid "--text=TEXT" -msgstr "--text=ТЕКСТ" - -#. (itstool) path: item/p -#: C/forms.page:37 -msgid "Set the dialog text." -msgstr "Вказати текст вікна." - -#. (itstool) path: item/title -#: C/forms.page:41 -msgid "--separator=SEPARATOR" -msgstr "--separator=РОЗДІЛЬНИК" - -#. (itstool) path: item/p -#: C/forms.page:42 -msgid "Set output separator character. (Default: | )" -msgstr "Встановити символ-роздільник виведених даних. (Типовий: | )" - -#. (itstool) path: item/title -#: C/forms.page:46 -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=ВЗІРЕЦЬ" - -#. (itstool) path: item/p -#: C/forms.page:47 -#| msgid "" -#| "Specifies the format that is returned from the calendar dialog after date " -#| "selection. The default format depends on your locale. " -#| "format must be a format that is acceptable to " -#| "the strftime function, for example %A %d/%m/" -#| "%y." -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"Встановити формат повернутої дати. Типовий формат залежить від локалі. Формат" -" має бути допустимим виразом для функції strftime, наприклад " -"%A %d/%m/%y." - -#. (itstool) path: page/p -#: C/forms.page:52 -#| msgid "" -#| "The following example script shows how to create a progress dialog: " -#| "" -msgid "The following example script shows how to create a forms dialog:" -msgstr "У наступному сценарії продемонстровано створення вікна форм:" - -#. (itstool) path: page/code -#: C/forms.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Додавання друга\" \\\n" -"\t--text=\"Вкажіть відомості щодо вашого друга.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"Імʼя\" \\\n" -"\t--add-entry=\"Прізвище\" \\\n" -"\t--add-entry=\"Ел. пошта\" \\\n" -"\t--add-calendar=\"День народження\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Додано друга.\";;\n" -" 1)\n" -" echo \"Друзів не додано.\"\n" -"\t;;\n" -" -1)\n" -" echo \"Сталася неочікувана помилка.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/forms.page:80 -#| msgid "Error Dialog Example" -msgid "Forms Dialog Example" -msgstr "Приклад вікна форм" - -#. (itstool) path: figure/desc -#: C/forms.page:81 -#| msgid " information dialog example" -msgid "Zenity forms dialog example" -msgstr "Приклад вікна форм Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:82 -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='4582609dd023b5b963192e6950578d79'" - -#. (itstool) path: credit/name -#: C/index.page:6 -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun команда документування Java Desktop System" - -#. (itstool) path: credit/name -#: C/index.page:9 -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#. (itstool) path: credit/name -#: C/index.page:12 -#| msgid "Nicholas" -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#. (itstool) path: credit/name -#: C/index.page:16 -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#. (itstool) path: page/title -#: C/index.page:26 -msgid "Zenity Manual" -msgstr "Довідка з програми Zenity" - -#. (itstool) path: section/title -#: C/index.page:29 -#| msgid "List Dialog" -msgid "Dialogs" -msgstr "Вікна" - -#. (itstool) path: info/desc -#: C/info.page:6 -msgid "Use the --info option." -msgstr "Використання параметра --info." - -#. (itstool) path: page/title -#: C/info.page:9 -#| msgid "Information Dialog" -msgid "Info Dialog" -msgstr "Вікно інформації" - -#. (itstool) path: page/p -#: C/info.page:10 -#| msgid "" -#| "Use the option to create an information dialog." -msgid "Use the --info option to create an information dialog." -msgstr "" -"Для створення вікна інформації скористайтеся параметром --info." - -#. (itstool) path: page/p -#: C/info.page:14 -#| msgid "" -#| "The following example script shows how to create an information dialog: " -#| "" -msgid "The following example script shows how to create an information dialog:" -msgstr "У наступному сценарії продемонстровано створення вікна інформації:" - -#. (itstool) path: page/code -#: C/info.page:18 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/bash\n" -#| "\n" -#| " zenity --info \\\n" -#| " --text=\"Merge complete. Updated 3 of 10 files.\"\n" -#| " " -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Об'єднання завершено. Оновлено 3 з 10 файлів.\"\n" - -#. (itstool) path: figure/title -#: C/info.page:27 -msgid "Information Dialog Example" -msgstr "Приклад вікна інформації" - -#. (itstool) path: figure/desc -#: C/info.page:28 -#| msgid " information dialog example" -msgid "Zenity information dialog example" -msgstr "Приклад вікна інформації Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:29 -#| msgid "" -#| "@@image: 'figures/zenity-information-screenshot.png'; " -#| "md5=5a9af4275678c8bfb9b48010860a45e5" -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='d5ac93589e2fb31c085a06b0d91f3206'" - -#. (itstool) path: info/desc -#: C/intro.page:6 -#| msgid "" -#| "Zenity enables you to create the following " -#| "types of simple dialog:" -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "Zenity надає змогу створювати різні типи простих вікон." - -#. (itstool) path: page/title -#: C/intro.page:9 -msgid "Introduction" -msgstr "Вступ" - -#. (itstool) path: page/p -#: C/intro.page:10 -#| msgid "" -#| "Zenity enables you to create the following " -#| "types of simple dialog:" -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "Zenity надає змогу створювати наступні типи простих вікон:" - -#. (itstool) path: item/p -#: C/intro.page:15 -msgid "Calendar" -msgstr "Календар" - -#. (itstool) path: item/p -#: C/intro.page:16 -msgid "File selection" -msgstr "Вибір файлів" - -#. (itstool) path: item/p -#: C/intro.page:17 -msgid "Forms" -msgstr "Форми" - -#. (itstool) path: item/p -#: C/intro.page:18 -msgid "List" -msgstr "Список" - -#. (itstool) path: item/p -#: C/intro.page:19 -msgid "Notification icon" -msgstr "Значок області сповіщення" - -#. (itstool) path: item/p -#: C/intro.page:20 -msgid "Message" -msgstr "Повідомлення" - -#. (itstool) path: item/p -#: C/intro.page:22 -msgid "Error" -msgstr "Помилка" - -#. (itstool) path: item/p -#: C/intro.page:23 -msgid "Information" -msgstr "Інформація" - -#. (itstool) path: item/p -#: C/intro.page:24 -msgid "Question" -msgstr "Запитання" - -#. (itstool) path: item/p -#: C/intro.page:25 -msgid "Warning" -msgstr "Попередження" - -#. (itstool) path: item/p -#: C/intro.page:28 -msgid "Password entry" -msgstr "Введення пароля" - -#. (itstool) path: item/p -#: C/intro.page:29 -msgid "Progress" -msgstr "Індикатор поступу" - -#. (itstool) path: item/p -#: C/intro.page:30 -msgid "Text entry" -msgstr "Поле вводу тексту" - -#. (itstool) path: item/p -#: C/intro.page:31 -msgid "Text information" -msgstr "Текстова інформація" - -#. (itstool) path: item/p -#: C/intro.page:32 -msgid "Scale" -msgstr "Шкала" - -#. (itstool) path: item/p -#: C/intro.page:33 -#| msgid "File selection" -msgid "Color selection" -msgstr "Вибір кольору" - -#. (itstool) path: info/desc -#: C/list.page:6 -msgid "Use the --list option." -msgstr "Використання параметра --list." - -#. (itstool) path: page/title -#: C/list.page:9 -msgid "List Dialog" -msgstr "Вікно списку" - -#. (itstool) path: page/p -#: C/list.page:10 -#| msgid "" -#| "Use the option to create a list dialog. " -#| "Zenity returns the entries in the first column " -#| "of text of selected rows to standard output." -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"Для створення вікна списку використовують параметр --list. Zenity повертає елементи вибраних рядків у першому стовпчику тексту у" -" стандартному потоці виводу." - -#. (itstool) path: page/p -#: C/list.page:14 -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"Дані для вікна мають вказуватись стовпчик за стовпчиком. Дані можуть " -"передаватись вікна через стандартний потік вводу. Кожен елемент має " -"відокремлюватись символом нового рядка." - -#. (itstool) path: page/p -#: C/list.page:18 -#| msgid "" -#| "If you use the or ." - -#. (itstool) path: page/p -#: C/text.page:14 -msgid "The text information dialog supports the following options:" -msgstr "Текстовий інформаційний діалог підтримує наступні параметри:" - -#. (itstool) path: item/p -#: C/text.page:22 -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "Вказує файл, який завантажується у текстовий інформаційний діалог." - -#. (itstool) path: item/p -#: C/text.page:27 -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "" -"Дозволяє редагувати текст, що виводиться. Редагований текст повертається " -"через стандартний потік виводу при закриванні вікна. " - -#. (itstool) path: item/title -#: C/text.page:31 -msgid "--font=FONT" -msgstr "--font=ШРИФТ" - -#. (itstool) path: item/p -#: C/text.page:32 -#| msgid "Specifies the title of a dialog." -msgid "Specifies the text font." -msgstr "Вказує шрифт тексту." - -#. (itstool) path: item/title -#: C/text.page:36 -msgid "--checkbox=TEXT" -msgstr "--checkbox=ТЕКСТ" - -#. (itstool) path: item/p -#: C/text.page:37 -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "" -"Увімкнути поле для позначки із міткою, подібною до «Мною прочитано умови. Я з" -" ними погоджуюся.»" - -#. (itstool) path: item/title -#: C/text.page:41 -msgid "--html" -msgstr "--html" - -#. (itstool) path: item/p -#: C/text.page:42 -msgid "Enable html support." -msgstr "Увімкнути підтримку HTML." - -#. (itstool) path: item/title -#: C/text.page:46 -msgid "--url=URL" -msgstr "--url=АДРЕСА" - -#. (itstool) path: item/p -#: C/text.page:47 -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "" -"Встановлює адресу замість файла. Працює лише за використання параметра --html." - -#. (itstool) path: page/p -#: C/text.page:52 -#| msgid "" -#| "The following example script shows how to create a text information " -#| "dialog: " -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "" -"У наступному сценарії продемонстровано створення текстового інформаційного " -"вікна:" - -#. (itstool) path: page/code -#: C/text.page:56 -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# Вам слід зберегти файл \"COPYING\" до тієї самої теки, що і сценарій.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"Ліцензування\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"Мною прочитано умови. Я з ними погоджуюся.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Почати встановлення!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Припинити встановлення!\"\n" -"\t;;\n" -" -1)\n" -" echo \"Сталася неочікувана помилка.\"\n" -"\t;;\n" -"esac\n" - -#. (itstool) path: figure/title -#: C/text.page:82 -msgid "Text Information Dialog Example" -msgstr "Приклад текстового інформаційного вікна" - -#. (itstool) path: figure/desc -#: C/text.page:83 -#| msgid " text information dialog example" -msgid "Zenity text information dialog example" -msgstr "Приклад вікна інформації Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:84 -#| msgid "" -#| "@@image: 'figures/zenity-text-screenshot.png'; " -#| "md5=55d2e2a0254f43ef3c7e9b3d0c4cde04" -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='225d7ab143dc8fa5850ebd789eb5304f'" - -#. (itstool) path: info/desc -#: C/usage.page:6 -#| msgid "" -#| "When you write scripts, you can use Zenity to " -#| "create simple dialogs that interact graphically with the user, as follows:" -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "" -"Ви можете скористатися Zenity для створення простих діалогових" -" вікон графічної взаємодії з " -"користувачем." - -#. (itstool) path: page/title -#: C/usage.page:9 -msgid "Usage" -msgstr "Використання" - -#. (itstool) path: page/p -#: C/usage.page:10 -#| msgid "" -#| "When you write scripts, you can use Zenity to " -#| "create simple dialogs that interact graphically with the user, as follows:" -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"Коли ви пишете сценарій, можете використовувати Zenity для" -" створення простих діалогових вікон графічної взаємодії з " -"користувачем, а саме:" - -#. (itstool) path: item/p -#: C/usage.page:15 -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"Можна створити діалогове вікно для отримання інформації від користувача. " -"Наприклад, можна спитати у користувача дату у діалоговому вікні календаря, " -"або вибрати файл у вікні вибору файлів." - -#. (itstool) path: item/p -#: C/usage.page:20 -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"Можна створити діалогове вікно для виводу інформації користувачу. Наприклад, " -"можна створити діалогове вікно з індикатором поступу поточної операції, або " -"вивести попереджувальне повідомлення." - -#. (itstool) path: page/p -#: C/usage.page:25 -#| msgid "" -#| "When the user closes the dialog, Zenity prints " -#| "the text produced by the dialog to standard output." -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"Коли користувач закриває вікно, Zenity виводить створений" -" діалоговим вікном текст у стандартний потік виводу." - -#. (itstool) path: note/p -#: C/usage.page:30 -#| msgid "" -#| "When you write Zenity commands, ensure that " -#| "you place quotation marks around each argument." -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "" -"Коли ви пишете команди Zenity, перевірте, що ви ставите лапки" -" навколо кожного аргументу." - -#. (itstool) path: note/p -#: C/usage.page:33 -msgid "For example, use:" -msgstr "Наприклад, використовуйте:" - -#. (itstool) path: note/screen -#: C/usage.page:34 -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"Планувальник вихідних\"" - -#. (itstool) path: note/p -#: C/usage.page:35 -msgid "Do not use:" -msgstr "Не використовуйте:" - -#. (itstool) path: note/screen -#: C/usage.page:36 -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=Планувальник вихідних" - -#. (itstool) path: note/p -#: C/usage.page:37 -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "Якщо ви пропустите липки можете отримати несподіваний результат." - -#. (itstool) path: section/title -#: C/usage.page:43 -msgid "Access Keys" -msgstr "Комбінації клавіш" - -#. (itstool) path: section/p -#: C/usage.page:44 -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"Клавіші доступу - клавіші, які дозволяють виконати дію з клавіатури, а не " -"через вибір команд мишею. Кожен символ, що утворює комбінацію виділяється " -"підкресленням у меню чи вікні. " - -#. (itstool) path: section/p -#: C/usage.page:47 -#| msgid "" -#| "Some Zenity dialogs support the use of access " -#| "keys. To specify the character to use as the access key, place an " -#| "underscore before that character in the text of the dialog. The following " -#| "example shows how to specify the letter 'C' as the access key:" -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"У деяких вікнах Zenity передбачено підтримку клавіатурних" -" скорочень. Щоб вказати, що символ використовується для комбінації клавіш, " -"вставте перед ним символ підкреслення. У наступному прикладі показано, як це" -" зробити для літери «В»:" - -#. (itstool) path: section/screen -#: C/usage.page:50 -#, no-wrap -#| msgid "\"_Choose a name\"." -msgid "\"_Choose a name\"." -msgstr "\"_Виберіть ім'я\"." - -#. (itstool) path: section/title -#: C/usage.page:54 -msgid "Exit Codes" -msgstr "Коди завершення" - -#. (itstool) path: section/p -#: C/usage.page:55 -#| msgid "Zenity returns the following exit codes:" -msgid "Zenity returns the following exit codes:" -msgstr "Zenity повертає наступні коди завершення:" - -#. (itstool) path: td/p -#: C/usage.page:63 -msgid "Exit Code" -msgstr "Код завершення" - -#. (itstool) path: td/p -#: C/usage.page:65 -msgid "Description" -msgstr "Опис" - -#. (itstool) path: td/p -#: C/usage.page:71 -msgid "0" -msgstr "0" - -#. (itstool) path: td/p -#: C/usage.page:74 -#| msgid "" -#| "The user has pressed either OK or " -#| "Close." -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"Користувач натиснув Гаразд або Закрити." - -#. (itstool) path: td/p -#: C/usage.page:79 -msgid "1" -msgstr "1" - -#. (itstool) path: td/p -#: C/usage.page:82 -#| msgid "" -#| "The user has either pressed Cancel, or used the " -#| "window functions to close the dialog." -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"Користувач або натиснув Скасувати, або закрив" -" вікно, використовуючи кнопку вікна." - -#. (itstool) path: td/p -#: C/usage.page:87 -msgid "-1" -msgstr "-1" - -#. (itstool) path: td/p -#: C/usage.page:90 -msgid "An unexpected error has occurred." -msgstr "Несподівана помилка." - -#. (itstool) path: td/p -#: C/usage.page:95 -msgid "5" -msgstr "5" - -#. (itstool) path: td/p -#: C/usage.page:98 -msgid "The dialog has been closed because the timeout has been reached." -msgstr "Вікно закрито через вичерпання часу очікування." - -#. (itstool) path: section/title -#: C/usage.page:110 -msgid "General Options" -msgstr "Загальні параметри" - -#. (itstool) path: section/p -#: C/usage.page:112 -#| msgid "" -#| "All Zenity dialogs support the following " -#| "general options:" -msgid "All Zenity dialogs support the following general options:" -msgstr "У всіх вікнах Zenity передбачено підтримку таких загальних параметрів:" - -#. (itstool) path: item/title -#: C/usage.page:119 -msgid "--title=title" -msgstr "--title=заголовок" - -#. (itstool) path: item/p -#: C/usage.page:120 -msgid "Specifies the title of a dialog." -msgstr "Вказує заголовок діалогового вікна." - -#. (itstool) path: item/title -#: C/usage.page:124 -#| msgid "=icon_path" -msgid "--window-icon=icon_path" -msgstr "--window-icon=шлях_до_піктограми" - -#. (itstool) path: item/p -#: C/usage.page:125 -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"Вказує значок, який буде показано у рамці діалогового вікна. Є 4 вбудовані " -"значки, які вказуються ключовими словами «info», «warning», «question» та" -" «error»." - -#. (itstool) path: item/title -#: C/usage.page:132 -msgid "--width=width" -msgstr "--width=ширина" - -#. (itstool) path: item/p -#: C/usage.page:133 -msgid "Specifies the width of the dialog." -msgstr "Вказує ширину вікна." - -#. (itstool) path: item/title -#: C/usage.page:137 -msgid "--height=height" -msgstr "--height=висота" - -#. (itstool) path: item/p -#: C/usage.page:138 -msgid "Specifies the height of the dialog." -msgstr "Вказує висоту вікна." - -#. (itstool) path: item/title -#: C/usage.page:142 -msgid "--timeout=timeout" -msgstr "--timeout=час_очікування" - -#. (itstool) path: item/p -#: C/usage.page:143 -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "" -"Вказує час очікування у секундах, після якого діалогове вікно буде закрите." - -#. (itstool) path: section/title -#: C/usage.page:153 -msgid "Help Options" -msgstr "Параметри довідки" - -#. (itstool) path: section/p -#: C/usage.page:155 -#| msgid "" -#| "Zenity provides the following help options:" -msgid "Zenity provides the following help options:" -msgstr "У Zenity передбачено такі параметри довідки:" - -#. (itstool) path: item/title -#: C/usage.page:162 -msgid "--help" -msgstr "--help" - -#. (itstool) path: item/p -#: C/usage.page:163 -msgid "Displays shortened help text." -msgstr "Показує коротку довідку." - -#. (itstool) path: item/title -#: C/usage.page:167 -#| msgid "--help-all" -msgid "--help-all" -msgstr "--help-all" - -#. (itstool) path: item/p -#: C/usage.page:168 -msgid "Displays full help text for all dialogs." -msgstr "Показує повну довідку з усіх вікон." - -#. (itstool) path: item/title -#: C/usage.page:172 -#| msgid "--help-general" -msgid "--help-general" -msgstr "--help-general" - -#. (itstool) path: item/p -#: C/usage.page:173 -msgid "Displays help text for general dialog options." -msgstr "Показує довідку із загальних параметрів вікон." - -#. (itstool) path: item/title -#: C/usage.page:177 -#| msgid "--help-calendar" -msgid "--help-calendar" -msgstr "--help-calendar" - -#. (itstool) path: item/p -#: C/usage.page:178 -msgid "Displays help text for calendar dialog options." -msgstr "Показує довідку про параметри вікна календаря." - -#. (itstool) path: item/title -#: C/usage.page:182 -#| msgid "--help-entry" -msgid "--help-entry" -msgstr "--help-entry" - -#. (itstool) path: item/p -#: C/usage.page:183 -msgid "Displays help text for text entry dialog options." -msgstr "Показує довідку про параметри вікна вводу тексту." - -#. (itstool) path: item/title -#: C/usage.page:187 -#| msgid "--help-error" -msgid "--help-error" -msgstr "--help-error" - -#. (itstool) path: item/p -#: C/usage.page:188 -msgid "Displays help text for error dialog options." -msgstr "Показує довідку про параметри вікна сповіщення про помилку." - -#. (itstool) path: item/title -#: C/usage.page:192 -#| msgid "--help-info" -msgid "--help-info" -msgstr "--help-info" - -#. (itstool) path: item/p -#: C/usage.page:193 -msgid "Displays help text for information dialog options." -msgstr "Показує довідку про параметри вікна з інформацією." - -#. (itstool) path: item/title -#: C/usage.page:197 -#| msgid "--help-file-selection" -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#. (itstool) path: item/p -#: C/usage.page:198 -msgid "Displays help text for file selection dialog options." -msgstr "Показує довідку про параметри вікна вибору файлів." - -#. (itstool) path: item/title -#: C/usage.page:202 -#| msgid "--help-list" -msgid "--help-list" -msgstr "--help-list" - -#. (itstool) path: item/p -#: C/usage.page:203 -msgid "Displays help text for list dialog options." -msgstr "Показує довідку про параметри вікна списку." - -#. (itstool) path: item/title -#: C/usage.page:207 -#| msgid "--help-notification" -msgid "--help-notification" -msgstr "--help-notification" - -#. (itstool) path: item/p -#: C/usage.page:208 -msgid "Displays help text for notification icon options." -msgstr "Показує довідку про параметри значка в області сповіщення." - -#. (itstool) path: item/title -#: C/usage.page:212 -#| msgid "--help-progress" -msgid "--help-progress" -msgstr "--help-progress" - -#. (itstool) path: item/p -#: C/usage.page:213 -msgid "Displays help text for progress dialog options." -msgstr "Показує довідку про параметри вікна поступу." - -#. (itstool) path: item/title -#: C/usage.page:217 -#| msgid "--help-question" -msgid "--help-question" -msgstr "--help-question" - -#. (itstool) path: item/p -#: C/usage.page:218 -msgid "Displays help text for question dialog options." -msgstr "Показує довідку про параметри вікна запитання." - -#. (itstool) path: item/title -#: C/usage.page:222 -#| msgid "--help-warning" -msgid "--help-warning" -msgstr "--help-warning" - -#. (itstool) path: item/p -#: C/usage.page:223 -msgid "Displays help text for warning dialog options." -msgstr "Показує довідку про параметри вікна попередження." - -#. (itstool) path: item/title -#: C/usage.page:227 -#| msgid "--help-text-info" -msgid "--help-text-info" -msgstr "--help-text-info" - -#. (itstool) path: item/p -#: C/usage.page:228 -msgid "Displays help for text information dialog options." -msgstr "Показує довідку про параметри вікна інформаційного тексту." - -#. (itstool) path: item/title -#: C/usage.page:232 -#| msgid "--help-misc" -msgid "--help-misc" -msgstr "--help-misc" - -#. (itstool) path: item/p -#: C/usage.page:233 -msgid "Displays help for miscellaneous options." -msgstr "Показує довідку про різні параметри." - -#. (itstool) path: item/title -#: C/usage.page:237 -#| msgid "--help-gtk" -msgid "--help-gtk" -msgstr "--help-gtk" - -#. (itstool) path: item/p -#: C/usage.page:238 -msgid "Displays help for GTK+ options." -msgstr "Показує довідку про параметри GTK+." - -#. (itstool) path: section/title -#: C/usage.page:248 -msgid "Miscellaneous Options" -msgstr "Інші параметри" - -#. (itstool) path: section/p -#: C/usage.page:250 -#| msgid "" -#| "Zenity also provides the following " -#| "miscellaneous options:" -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Крім того, Zenity має наступні інші параметри:" - -#. (itstool) path: item/title -#: C/usage.page:257 -msgid "--about" -msgstr "--about" - -#. (itstool) path: item/p -#: C/usage.page:258 -#| msgid "" -#| "Displays the About Zenity dialog, which contains " -#| "Zenity version information, copyright " -#| "information, and developer information." -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"Показує діалогове вікно Про Zenity, яке містить " -"інформацію про версію Zenity, авторські права та " -"інформацію про розробників." - -#. (itstool) path: item/title -#: C/usage.page:262 -#| msgid "--version" -msgid "--version" -msgstr "--version" - -#. (itstool) path: item/p -#: C/usage.page:263 -#| msgid "Displays the version number of Zenity." -msgid "Displays the version number of Zenity." -msgstr "Показує номер версії програми Zenity." - -#. (itstool) path: section/title -#: C/usage.page:273 -msgid "GTK+ Options" -msgstr "Параметри GTK+" - -#. (itstool) path: section/p -#: C/usage.page:275 -#| msgid "" -#| "Zenity supports the standard GTK+ options. For " -#| "more information about the GTK+ options, execute the zenity -? command." -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"У Zenity передбачено підтримку стандартних параметрів GTK+. Докладніше про" -" параметри GTK+, можна дізнатись виконавши zenity --help-gtk." - -#. (itstool) path: section/title -#: C/usage.page:284 -msgid "Environment Variables" -msgstr "Змінні оточення" - -#. (itstool) path: section/p -#: C/usage.page:286 -#| msgid "" -#| "Normally, Zenity detects the terminal window " -#| "from which it was launched and keeps itself above that window. This " -#| "behavior can be disabled by unsetting the WINDOWID " -#| "environment variable." -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"Звичайно, Zenity визначає вікно термінала, з якого її запущено та тримає своє" -" вікно над вікном термінала. Цю поведінку можна " -"вимкнути, знявши змінну оточення WINDOWID." - -#. (itstool) path: info/desc -#: C/warning.page:6 -msgid "Use the --warning option." -msgstr "Використання параметра --warning." - -#. (itstool) path: page/title -#: C/warning.page:9 -msgid "Warning Dialog" -msgstr "Вікно попередження" - -#. (itstool) path: page/p -#: C/warning.page:10 -#| msgid "" -#| "Use the option to create a warning dialog." -msgid "Use the --warning option to create a warning dialog." -msgstr "Для створення вікна попередження використовуйте --info." - -#. (itstool) path: page/p -#: C/warning.page:14 -#| msgid "" -#| "The following example script shows how to create a warning dialog: " -#| "" -msgid "The following example script shows how to create a warning dialog:" -msgstr "У наступному сценарії продемонстровано створення вікна попередження:" - -#. (itstool) path: page/code -#: C/warning.page:18 -#, no-wrap -#| msgid "" -#| "\n" -#| " #!/bin/bash\n" -#| " \n" -#| " zenity --warning \\\n" -#| " --text=\"Disconnect the power cable to avoid electrical shock.\"\n" -#| " " -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Вимкніть кабель живлення, щоб запобігти ураженню електричним" -" струмом.\"\n" - -#. (itstool) path: figure/title -#: C/warning.page:26 -msgid "Warning Dialog Example" -msgstr "Приклад вікна попередження" - -#. (itstool) path: figure/desc -#: C/warning.page:27 -#| msgid " warning dialog example" -msgid "Zenity warning dialog example" -msgstr "Приклад вікна попередження Zenity" - -#. (itstool) path: figure/media -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28 -#| msgid "" -#| "@@image: 'figures/zenity-warning-screenshot.png'; " -#| "md5=cde1378d51f800a025b8c37ecdb60a20" -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='a2d07437efca06b775ceae24816d96a6'" diff --git a/help/zh_CN/zh_CN.po b/help/zh_CN/zh_CN.po deleted file mode 100644 index 8d35409..0000000 --- a/help/zh_CN/zh_CN.po +++ /dev/null @@ -1,2367 +0,0 @@ -# Chinese (China) translation for zenity. -# Copyright (C) 2010 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# TeliuTe , 2010. -# YunQiang Su , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"POT-Creation-Date: 2012-08-21 22:17+0000\n" -"PO-Revision-Date: 2013-08-04 10:27+0800\n" -"Last-Translator: tuhaihe <1132321739qq@gmail.com>\n" -"Language-Team: Chinese (China) \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Put one translator per line, in the form NAME , YEAR1, YEAR2 -#| msgid "translator-credits" -msgctxt "_" -msgid "translator-credits" -msgstr "" -"TeliuTe , 2010\n" -"tuhaihe <1132321739qq@gmail.com>, 2012" - -#: C/index.page:6(credit/name) -msgid "Sun Java Desktop System Documentation Team" -msgstr "Sun Java 桌面系统文档小组" - -#: C/index.page:9(credit/name) -msgid "Glynn Foster" -msgstr "Glynn Foster" - -#: C/index.page:12(credit/name) -msgid "Nicholas Curran" -msgstr "Nicholas Curran" - -#: C/index.page:16(credit/name) -msgid "Yasumichi Akahoshi" -msgstr "Yasumichi Akahoshi" - -#: C/index.page:20(license/p) -msgid "GNU Free Documentation License (GFDL)" -msgstr "GNU 自由文档许可证(GFDL)" - -#: C/index.page:24(page/title) -msgid "Zenity Manual" -msgstr "Zenity 手册" - -#: C/index.page:27(section/title) -msgid "Dialogs" -msgstr "对话框" - -#: C/legal.xml:9(para/ulink) -msgid "link" -msgstr "链接" - -#: C/legal.xml:2(legalnotice/para) -#| msgid "" -#| "Permission is granted to copy, distribute and/or modify this document " -#| "under the terms of the GNU Free Documentation License (GFDL), Version 1.1 " -#| "or any later version published by the Free Software Foundation with no " -#| "Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You " -#| "can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." -msgid "" -"Permission is granted to copy, distribute and/or modify this document under " -"the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " -"later version published by the Free Software Foundation with no Invariant " -"Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy " -"of the GFDL at this <_:ulink-1/> or in the file COPYING-DOCS distributed " -"with this manual." -msgstr "" -"对于本文档的复制、分发和/或修改必须遵循自由软件基金会 (Free Software " -"Foundation) 发布的 GNU 自由文档许可证 (GFDL) 版本 1.1 或更高版本,该许可证没" -"有固定的部分、没有封面和背页文本。您可以在此 <_:ulink-1/> 或在随本手册一起分发的 COPYING-DOCS 文件中找到 GFDL 的副" -"本。" - -#: C/legal.xml:12(legalnotice/para) -msgid "" -"This manual is part of a collection of GNOME manuals distributed under the " -"GFDL. If you want to distribute this manual separately from the collection, " -"you can do so by adding a copy of the license to the manual, as described in " -"section 6 of the license." -msgstr "" -"本手册是在 GFDL 许可之下分发的 GNOME 手册集合的一部分。如果想要单独分发此手" -"册,可以在手册中添加该许可证的一份副本然后分发,如该许可证的第 6 部分所述。" - -#: C/legal.xml:19(legalnotice/para) -msgid "" -"Many of the names used by companies to distinguish their products and " -"services are claimed as trademarks. Where those names appear in any GNOME " -"documentation, and the members of the GNOME Documentation Project are made " -"aware of those trademarks, then the names are in capital letters or initial " -"capital letters." -msgstr "" -"各个公司使用的许多用于区别它们产品和服务的名称都声明为商标。在所有的 GNOME 文" -"档以及 GNOME 文档项目的成员中,这些名称都是以全大写字母或首字母大写显示,从而" -"表明它们是商标。" - -#: C/legal.xml:35(listitem/para) -msgid "" -"DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " -"EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " -"THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " -"MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " -"RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " -"MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " -"MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " -"WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " -"SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " -"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 "" -"文档按“原样”提供,不提供任何明示或暗示的保证,包括但不限于:文档或文档的修改" -"版本没有适销性方面的缺陷、适合特定目的的适用性,以及没有侵权行为。您将自行承" -"担本文档以及文档修改版本的质量、准确性以及性能方面的风险。如果任何文档或文档" -"修改版本存在缺陷,您(而不是最初的编写者、作者或撰写人)将承担所有必需的服务、" -"维修或更正的费用。此免责声明是本许可证的重要组成部分。如果不接受此免责声明," -"那么您就没有权利使用任何文档或文档的修改版本;并且" - -#: C/legal.xml:55(listitem/para) -msgid "" -"UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING " -"NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " -"CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " -"DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " -"FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " -"ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " -"WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES " -"OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " -"VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE " -"POSSIBILITY OF SUCH DAMAGES." -msgstr "" -"无论在任何情况以及在任何法律理论下,本文档或文档修改版本的作者、最初的编写" -"者、任何撰写人或任何分发者,或者任意这些方的任何提供者都不对任何人由于使用本" -"文档或文档修改版本引起或带来的任何直接的、间接的、特殊的、偶然的或继发的损失" -"承担任何民事(包括疏忽)、合同或其它方面的责任,这些损失包括但不限于信誉损失、" -"工作停止、计算机失败或故障,或任何以及所有其它损失或由此引发的或与之相关的损" -"失,即使这些方已被告知存在出现此类损失的可能性时也是如此。" - -#: C/legal.xml:28(legalnotice/para) -#| msgid "" -#| "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE " -#| "TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER " -#| "UNDERSTANDING THAT: " -msgid "" -"DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " -"OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " -"<_:orderedlist-1/>" -msgstr "" -"本文档以及文档的修改版本都是在遵循 GNU 自由文档许可证的条款下提供,这表示具有" -"以下含义:<_:orderedlist-1/>" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/calendar.page:66(media) -#| msgid "" -#| "@@image: 'figures/zenity-calendar-screenshot.png'; " -#| "md5=92bf5317d799665acf0d4005cee184c2" -msgctxt "_" -msgid "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='92bf5317d799665acf0d4005cee184c2'" -msgstr "" -"external ref='figures/zenity-calendar-screenshot.png' " -"md5='92bf5317d799665acf0d4005cee184c2'" - -#: C/calendar.page:6(info/desc) -msgid "Use the --calendar option." -msgstr "使用 --calendar 选项。" - -#: C/calendar.page:8(page/title) -msgid "Calendar Dialog" -msgstr "日历对话框" - -#: C/calendar.page:9(page/p) -msgid "" -"Use the --calendar option to create a calendar dialog. Zenity " -"returns the selected date to standard output. If no date is specified on the " -"command line, the dialog uses the current date." -msgstr "" -"使用 --calendar 选项来创建日历对话框。Zenity 在标准输出中返回选定" -"的日期。如果没有在命令行指定日期,就使用当前日期。" - -#: C/calendar.page:12(page/p) -msgid "The calendar dialog supports the following options:" -msgstr "日历对话框支持以下选项:" - -#: C/calendar.page:19(item/title) C/entry.page:19(item/title) -#: C/notification.page:16(item/title) C/progress.page:24(item/title) -msgid "--text=text" -msgstr "--text=文本" - -#: C/calendar.page:20(item/p) -msgid "Specifies the text that is displayed in the calendar dialog." -msgstr "指定日历对话框里显示的文本。" - -#: C/calendar.page:24(item/title) -msgid "--day=day" -msgstr "--day=" - -#: C/calendar.page:25(item/p) -msgid "" -"Specifies the day that is selected in the calendar dialog. day must be a " -"number between 1 and 31 inclusive." -msgstr "指定日历对话框中的日子。天必须是介于 1~31 之间的数字。" - -#: C/calendar.page:29(item/title) -msgid "--month=month" -msgstr "--month=月份" - -#: C/calendar.page:30(item/p) -msgid "" -"Specifies the month that is selected in the calendar dialog. month must be a " -"number between 1 and 12 inclusive." -msgstr "指定日历对话框中的月份。月份必须是介于 1~12 之间的数字。" - -#: C/calendar.page:34(item/title) -msgid "--year=year" -msgstr "--year=" - -#: C/calendar.page:35(item/p) -msgid "Specifies the year that is selected in the calendar dialog." -msgstr "指定日历对话框中的年份。" - -#: C/calendar.page:39(item/title) -msgid "--date-format=format" -msgstr "--date-format=格式" - -#: C/calendar.page:40(item/p) -msgid "" -"Specifies the format that is returned from the calendar dialog after date " -"selection. The default format depends on your locale. Format must be a " -"format that is acceptable to the strftime function, for example " -"%A %d/%m/%y." -msgstr "" -"指定选定的日期返回时的样式。默认的格式取决于您的区域设置。格式必须可以被 " -"strftime 函数接受,例如 %A %d/%m/%y。" - -#: C/calendar.page:45(page/p) -msgid "The following example script shows how to create a calendar dialog:" -msgstr "下面的脚本示范了如何创建一个日历对话框:" - -#: C/calendar.page:49(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"Select a Date\" \\\n" -"--text=\"Click on a date to select that date.\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"No date selected\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"\n" -"if zenity --calendar \\\n" -"--title=\"选择日期\" \\\n" -"--text=\"通过点击选择日期。\" \\\n" -"--day=10 --month=8 --year=2004\n" -" then echo $?\n" -" else echo \"没有选择日期\"\n" -"fi\n" - -#: C/calendar.page:64(figure/title) -msgid "Calendar Dialog Example" -msgstr "日历对话框范例" - -#: C/calendar.page:65(figure/desc) -msgid "Zenity calendar dialog example" -msgstr "Zenity 日历对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/color-selection.page:52(media) -#| msgid "" -#| "@@image: 'figures/zenity-colorselection-screenshot.png'; " -#| "md5=febe3f417acea789c9db628fbe44f798" -msgctxt "_" -msgid "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='febe3f417acea789c9db628fbe44f798'" -msgstr "" -"external ref='figures/zenity-colorselection-screenshot.png' " -"md5='febe3f417acea789c9db628fbe44f798'" - -#: C/color-selection.page:6(info/desc) -msgid "Use the --color-selection option." -msgstr "使用 --color-selection 选项。" - -#: C/color-selection.page:8(page/title) -msgid "Color Selection Dialog" -msgstr "颜色选择对话框" - -#: C/color-selection.page:9(page/p) -msgid "" -"Use the --color-selection option to create a color selection " -"dialog." -msgstr "使用 --color-selection 选项创建一个颜色选择对话框。" - -#: C/color-selection.page:12(page/p) -msgid "The color selection dialog supports the following options:" -msgstr "颜色选择对话框支持以下选项:" - -#: C/color-selection.page:19(item/title) -msgid "--color=VALUE" -msgstr "--color=" - -#: C/color-selection.page:20(item/p) -msgid "Set the initial color.(ex: #FF0000)" -msgstr "设置初始颜色。(例如:#FF0000)" - -#: C/color-selection.page:24(item/title) -#| msgid "--show-palette" -msgid "--show-palette" -msgstr "--show-palette" - -#: C/color-selection.page:25(item/p) -msgid "Show the palette." -msgstr "显示调色板。" - -#: C/color-selection.page:30(page/p) -msgid "" -"The following example script shows how to create a color selection dialog:" -msgstr "下面的脚本示范了如何创建一个颜色选择对话框:" - -#: C/color-selection.page:34(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $COLOR.\";;\n" -" 1)\n" -" echo \"No color selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"COLOR=`zenity --color-selection --show-palette`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"您选择了 $COLOR。\";;\n" -" 1)\n" -" echo \"未选择颜色。\";;\n" -" -1)\n" -" echo \"发生意外错误。\";;\n" -"esac\n" - -#: C/color-selection.page:50(figure/title) -msgid "Color Selection Dialog Example" -msgstr "颜色选择对话框范例" - -#: C/color-selection.page:51(figure/desc) -msgid "Zenity color selection dialog example" -msgstr "Zenity 颜色选择对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/entry.page:55(media) -#| msgid "" -#| "@@image: 'figures/zenity-entry-screenshot.png'; " -#| "md5=bae6bf4342a66a3900deb15bde82ff42" -msgctxt "_" -msgid "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='bae6bf4342a66a3900deb15bde82ff42'" -msgstr "" -"external ref='figures/zenity-entry-screenshot.png' " -"md5='bae6bf4342a66a3900deb15bde82ff42'" - -#: C/entry.page:6(info/desc) -msgid "Use the --entry option." -msgstr "使用 --entry 选项。" - -#: C/entry.page:8(page/title) -msgid "Text Entry Dialog" -msgstr "文本输入框" - -#: C/entry.page:9(page/p) -msgid "" -"Use the --entry option to create a text entry dialog. " -"Zenity returns the contents of the text entry to standard output." -msgstr "" -"使用 --entry 选项创建一个文本输入对话框。Zenity 将文本" -"框的内容返回到标准输出。" - -#: C/entry.page:12(page/p) -msgid "The text entry dialog supports the following options:" -msgstr "文本输入框支持以下选项:" - -#: C/entry.page:20(item/p) -msgid "Specifies the text that is displayed in the text entry dialog." -msgstr "指定在文本输入框中显示的文本。" - -#: C/entry.page:24(item/title) -msgid "--entry-text=text" -msgstr "--entry-text=文本" - -#: C/entry.page:25(item/p) -msgid "" -"Specifies the text that is displayed in the entry field of the text entry " -"dialog." -msgstr "指定在文本框的文本域里显示的文本。" - -#: C/entry.page:29(item/title) -#| msgid "--hide-text" -msgid "--hide-text" -msgstr "--hide-text" - -#: C/entry.page:30(item/p) -msgid "Hides the text in the entry field of the text entry dialog." -msgstr "隐藏文本框中输入的字段内容。" - -#: C/entry.page:35(page/p) -msgid "The following example script shows how to create a text entry dialog:" -msgstr "下面的脚本示范了如何创建一个文本输入对话框:" - -#: C/entry.page:39(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"Add new profile\" \\\n" -"--text=\"Enter name of new profile:\" \\\n" -"--entry-text \"NewProfile\"\n" -" then echo $?\n" -" else echo \"No name entered\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"if zenity --entry \\\n" -"--title=\"添加新配置\" \\\n" -"--text=\"输入新配置的名称:\" \\\n" -"--entry-text \"新配置\"\n" -" then echo $?\n" -" else echo \"未输入名称\"\n" -"fi\n" - -#: C/entry.page:53(figure/title) -msgid "Text Entry Dialog Example" -msgstr "文本框范例" - -#: C/entry.page:54(figure/desc) -msgid "Zenity text entry dialog example" -msgstr "Zenity 文本对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/error.page:28(media) -#| msgid "" -#| "@@image: 'figures/zenity-error-screenshot.png'; " -#| "md5=a4b287f89625cfd54ca38bc404d8bdf6" -msgctxt "_" -msgid "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" -msgstr "" -"external ref='figures/zenity-error-screenshot.png' " -"md5='a4b287f89625cfd54ca38bc404d8bdf6'" - -#: C/error.page:6(info/desc) -msgid "Use the --error option." -msgstr "使用 --error 选项。" - -#: C/error.page:8(page/title) -msgid "Error Dialog" -msgstr "错误框" - -#: C/error.page:9(page/p) -msgid "Use the --error option to create an error dialog." -msgstr "使用 --error 选项创建一个错误对话框。" - -#: C/error.page:13(page/p) -msgid "The following example script shows how to create an error dialog:" -msgstr "下面的脚本示范了如何创建一个错误对话框:" - -#: C/error.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"Could not find /var/log/syslog.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --error \\\n" -"--text=\"找不到 /var/log/syslog。\"\n" - -#: C/error.page:26(figure/title) -msgid "Error Dialog Example" -msgstr "错误框范例" - -#: C/error.page:27(figure/desc) -msgid "Zenity error dialog example" -msgstr "Zenity 错误对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/file-selection.page:68(media) -#| msgid "" -#| "@@image: 'figures/zenity-fileselection-screenshot.png'; " -#| "md5=bbba2652577f14ab4719f55a2ff57073" -msgctxt "_" -msgid "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='bbba2652577f14ab4719f55a2ff57073'" -msgstr "" -"external ref='figures/zenity-fileselection-screenshot.png' " -"md5='bbba2652577f14ab4719f55a2ff57073'" - -#: C/file-selection.page:6(info/desc) -msgid "Use the --file-selection option." -msgstr "使用 --file-selection 选项。" - -#: C/file-selection.page:8(page/title) -msgid "File Selection Dialog" -msgstr "文件选择对话框" - -#: C/file-selection.page:9(page/p) -msgid "" -"Use the --file-selection option to create a file selection " -"dialog. Zenity returns the selected files or directories to " -"standard output. The default mode of the file selection dialog is open." -msgstr "" -"使用 --file-selection 选项创建一个文件选择对话框。Zenity 在标准输出返回选中的文件或目录。默认的文件选择对话框模式是打开对话框。" - -#: C/file-selection.page:13(page/p) -msgid "The file selection dialog supports the following options:" -msgstr "文件选择对话框支持以下选项:" - -#: C/file-selection.page:20(item/title) C/text.page:20(item/title) -msgid "--filename=filename" -msgstr "--filename=文件名" - -#: C/file-selection.page:21(item/p) -msgid "" -"Specifies the file or directory that is selected in the file selection " -"dialog when the dialog is first shown." -msgstr "指定文件选择对话框在第一次显示时,选定的文件或文件夹。" - -#: C/file-selection.page:25(item/title) -#| msgid "--multiple" -msgid "--multiple" -msgstr "--multiple" - -#: C/file-selection.page:26(item/p) -msgid "" -"Allows the selection of multiple filenames in the file selection dialog." -msgstr "允许在文件选择对话框里选中多个文件名。" - -#: C/file-selection.page:30(item/title) -#| msgid "--directory" -msgid "--directory" -msgstr "--directory" - -#: C/file-selection.page:31(item/p) -msgid "Allows only selection of directories in the file selection dialog." -msgstr "在文件选择对话框里只允许选中文件夹。" - -#: C/file-selection.page:35(item/title) -#| msgid "Use the --scale option." -msgid "--save" -msgstr "--save" - -#: C/file-selection.page:36(item/p) -msgid "Set the file selection dialog into save mode." -msgstr "设置文件选择对话框模式为保存对话框。" - -#: C/file-selection.page:40(item/title) C/list.page:52(item/title) -msgid "--separator=separator" -msgstr "--separator=分隔符" - -#: C/file-selection.page:41(item/p) -msgid "" -"Specifies the string that is used to divide the returned list of filenames." -msgstr "指定用于分隔返回的文件名列表的字符。" - -#: C/file-selection.page:46(page/p) -msgid "" -"The following example script shows how to create a file selection dialog:" -msgstr "下面的脚本示范了如何创建一个文件选择对话框:" - -#: C/file-selection.page:50(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"Select a File\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" selected.\";;\n" -" 1)\n" -" echo \"No file selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"FILE=`zenity --file-selection --title=\"选择文件\"`\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"\\\"$FILE\\\" 被选中。\";;\n" -" 1)\n" -" echo \"没有选择文件。\";;\n" -" -1)\n" -" echo \"发生意外错误。\";;\n" -"esac\n" - -#: C/file-selection.page:66(figure/title) -msgid "File Selection Dialog Example" -msgstr "文件选择对话框范例" - -#: C/file-selection.page:67(figure/desc) -msgid "Zenity file selection dialog example" -msgstr "Zenity 文件选择对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/forms.page:81(media) -#| msgid "" -#| "@@image: 'figures/zenity-forms-screenshot.png'; " -#| "md5=c11fab02e4d51212a538ce6859799d5f" -msgctxt "_" -msgid "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='c11fab02e4d51212a538ce6859799d5f'" -msgstr "" -"external ref='figures/zenity-forms-screenshot.png' " -"md5='c11fab02e4d51212a538ce6859799d5f'" - -#: C/forms.page:6(info/desc) -msgid "Use the --forms option." -msgstr "使用 --forms 选项。" - -#: C/forms.page:8(page/title) -msgid "Forms Dialog" -msgstr "表单对话框" - -#: C/forms.page:9(page/p) -msgid "Use the --forms option to create a forms dialog." -msgstr "使用 --forms 选项创建一个表单对话框。" - -#: C/forms.page:13(page/p) -msgid "The forms dialog supports the following options:" -msgstr "表单对话框支持以下选项:" - -#: C/forms.page:20(item/title) -msgid "--add-entry=FieldName" -msgstr "--add-entry=字段名称" - -#: C/forms.page:21(item/p) -msgid "Add a new Entry in forms dialog." -msgstr "在表单对话框中添加新的输入框。" - -#: C/forms.page:25(item/title) -msgid "--add-password=FieldName" -msgstr "--add-password=字段名" - -#: C/forms.page:26(item/p) -msgid "Add a new Password Entry in forms dialog. (Hide text)" -msgstr "在表格对话框中输入新的密码输入框。(隐藏文本)" - -#: C/forms.page:30(item/title) -msgid "--add-calendar=FieldName" -msgstr "--add-calendar=字段名称" - -#: C/forms.page:31(item/p) -msgid "Add a new Calendar in forms dialog." -msgstr "在表格对话框中添加新日历。" - -#: C/forms.page:35(item/title) C/scale.page:19(item/title) -msgid "--text=TEXT" -msgstr "--text=文本" - -#: C/forms.page:36(item/p) -msgid "Set the dialog text." -msgstr "设置对话框文本。" - -#: C/forms.page:40(item/title) -msgid "--separator=SEPARATOR" -msgstr "--separator=分隔符" - -#: C/forms.page:41(item/p) -msgid "Set output separator character. (Default: | )" -msgstr "设置输出分隔符字符。(默认:|)" - -#: C/forms.page:45(item/title) -msgid "--forms-date-format=PATTERN" -msgstr "--forms-date-format=格式" - -#: C/forms.page:46(item/p) -msgid "" -"Set the format for the returned date. The default format depends on your " -"locale. format must be a Format that is acceptable to the strftime function, for example %A %d/%m/%y." -msgstr "" -"设置返回日期的格式。默认的格式取决于您的区域设置。格式必须可以被 " -"strftime 函数接受,例如 %A %d/%m/%y。" - -#: C/forms.page:51(page/p) -msgid "The following example script shows how to create a forms dialog:" -msgstr "下面的脚本示范了如何创建一个进度对话框:" - -#: C/forms.page:55(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"Add Friend\" \\\n" -"\t--text=\"Enter information about your friend.\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"First Name\" \\\n" -"\t--add-entry=\"Family Name\" \\\n" -"\t--add-entry=\"Email\" \\\n" -"\t--add-calendar=\"Birthday\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Friend added.\";;\n" -" 1)\n" -" echo \"No friend added.\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --forms --title=\"添加好友\" \\\n" -"\t--text=\"输入您朋友的信息。\" \\\n" -"\t--separator=\",\" \\\n" -"\t--add-entry=\"名\" \\\n" -"\t--add-entry=\"姓\" \\\n" -"\t--add-entry=\"邮件\" \\\n" -"\t--add-calendar=\"生日\" >> addr.csv\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"好友已添加。\";;\n" -" 1)\n" -" echo \"未添加好友。\"\n" -"\t;;\n" -" -1)\n" -" echo \"发生意外错误。\"\n" -"\t;;\n" -"esac\n" - -#: C/forms.page:79(figure/title) -msgid "Forms Dialog Example" -msgstr "表单对话框范例" - -#: C/forms.page:80(figure/desc) -msgid "Zenity forms dialog example" -msgstr "Zenity 表单对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/info.page:28(media) -#| msgid "" -#| "@@image: 'figures/zenity-information-screenshot.png'; " -#| "md5=72386d53a991c46e918ee6dd22795aa6" -msgctxt "_" -msgid "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='72386d53a991c46e918ee6dd22795aa6'" -msgstr "" -"external ref='figures/zenity-information-screenshot.png' " -"md5='72386d53a991c46e918ee6dd22795aa6'" - -#: C/info.page:6(info/desc) -msgid "Use the --info option." -msgstr "使用 --info 选项。" - -#: C/info.page:8(page/title) -msgid "Info Dialog" -msgstr "信息对话框" - -#: C/info.page:9(page/p) -msgid "Use the --info option to create an information dialog." -msgstr "使用 --info 选项创建一个信息对话框。" - -#: C/info.page:13(page/p) -msgid "The following example script shows how to create an information dialog:" -msgstr "下面的脚本示范了如何创建一个信息对话框:" - -#: C/info.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"Merge complete. Updated 3 of 10 files.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --info \\\n" -"--text=\"合并完成。更新了 3 / 10 个文件。\"\n" - -#: C/info.page:26(figure/title) -msgid "Information Dialog Example" -msgstr "信息对话框范例" - -#: C/info.page:27(figure/desc) -msgid "Zenity information dialog example" -msgstr "Zenity 信息对话框范例" - -#: C/intro.page:6(info/desc) -msgid "" -"Zenity enables you to create the various types of simple dialog." -msgstr "Zenity 可以创建各种类型的简单对话框。" - -#: C/intro.page:8(page/title) -msgid "Introduction" -msgstr "介绍" - -#: C/intro.page:9(page/p) -msgid "" -"Zenity enables you to create the following types of simple dialog:" -msgstr "Zenity 可以创建下列类型的简单对话框:" - -#: C/intro.page:14(item/p) -msgid "Calendar" -msgstr "日历" - -#: C/intro.page:15(item/p) -msgid "File selection" -msgstr "文件选择" - -#: C/intro.page:16(item/p) -msgid "Forms" -msgstr "表格" - -#: C/intro.page:17(item/p) -msgid "List" -msgstr "列表" - -#: C/intro.page:18(item/p) -msgid "Notification icon" -msgstr "通知图标" - -#: C/intro.page:19(item/p) -msgid "Message" -msgstr "消息" - -#: C/intro.page:21(item/p) -msgid "Error" -msgstr "错误" - -#: C/intro.page:22(item/p) -msgid "Information" -msgstr "信息" - -#: C/intro.page:23(item/p) -msgid "Question" -msgstr "问题" - -#: C/intro.page:24(item/p) -msgid "Warning" -msgstr "警告" - -#: C/intro.page:27(item/p) -msgid "Password entry" -msgstr "密码输入" - -#: C/intro.page:28(item/p) -msgid "Progress" -msgstr "进度" - -#: C/intro.page:29(item/p) -msgid "Text entry" -msgstr "文本输入" - -#: C/intro.page:30(item/p) -msgid "Text information" -msgstr "文本信息" - -#: C/intro.page:31(item/p) -msgid "Scale" -msgstr "范围" - -#: C/intro.page:32(item/p) -msgid "Color selection" -msgstr "颜色选择" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/list.page:84(media) -#| msgid "" -#| "@@image: 'figures/zenity-list-screenshot.png'; " -#| "md5=8bd9ad9c760516a966d3590b2019fa1e" -msgctxt "_" -msgid "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='8bd9ad9c760516a966d3590b2019fa1e'" -msgstr "" -"external ref='figures/zenity-list-screenshot.png' " -"md5='8bd9ad9c760516a966d3590b2019fa1e'" - -#: C/list.page:6(info/desc) -msgid "Use the --list option." -msgstr "使用 --list 选项。" - -#: C/list.page:8(page/title) -msgid "List Dialog" -msgstr "列表框" - -#: C/list.page:9(page/p) -msgid "" -"Use the --list option to create a list dialog. Zenity " -"returns the entries in the first column of text of selected rows to standard " -"output." -msgstr "" -"使用 --list 选项创建一个列表对话框,Zenity 在标准输出返" -"回选中行的第一列项目。" - -#: C/list.page:13(page/p) -msgid "" -"Data for the dialog must specified column by column, row by row. Data can be " -"provided to the dialog through standard input. Each entry must be separated " -"by a newline character." -msgstr "" -"对话框里的数据必须指定行和列,可以由标准输入提供,每一项都必须由换行符分隔。" - -#: C/list.page:17(page/p) -msgid "" -"If you use the --checklist or --radiolist options, " -"each row must start with either 'TRUE' or 'FALSE'." -msgstr "" -"如果您使用 --checklist--radiolist 选项,每一行必须" -"以“TRUE”或“FALSE”开始。" - -#: C/list.page:21(page/p) -msgid "The list dialog supports the following options:" -msgstr "列表框支持以下选项:" - -#: C/list.page:28(item/title) -msgid "--column=column" -msgstr "--column=" - -#: C/list.page:29(item/p) -msgid "" -"Specifies the column headers that are displayed in the list dialog. You must " -"specify a --column option for each column that you want to " -"display in the dialog." -msgstr "" -"指定列表对话框显示的列标题。您必须为每个要显示的列,用 --column 选" -"项指定一个列标题。" - -#: C/list.page:34(item/title) -#| msgid "--checklist" -msgid "--checklist" -msgstr "--checklist" - -#: C/list.page:35(item/p) -msgid "" -"Specifies that the first column in the list dialog contains check boxes." -msgstr "指定列表框的第一列包含一个复选框。" - -#: C/list.page:40(item/title) -#| msgid "--radiolist" -msgid "--radiolist" -msgstr "--radiolist" - -#: C/list.page:41(item/p) -msgid "" -"Specifies that the first column in the list dialog contains radio boxes." -msgstr "指定列表框的第一列包含单选按钮。" - -#: C/list.page:46(item/title) C/text.page:25(item/title) -#| msgid "--editable" -msgid "--editable" -msgstr "--editable" - -#: C/list.page:47(item/p) -msgid "Allows the displayed items to be edited." -msgstr "指定显示的项可以编辑。" - -#: C/list.page:53(item/p) -msgid "" -"Specifies what string is used when the list dialog returns the selected " -"entries." -msgstr "指定列表框返回选中项时使用的字符。" - -#: C/list.page:58(item/title) -msgid "--print-column=column" -msgstr "--print-column=" - -#: C/list.page:59(item/p) -msgid "" -"Specifies what column should be printed out upon selection. The default " -"column is '1'. 'ALL' can be used to print out all columns in the list." -msgstr "指定选择列上显示什么,默认是“1”,“ALL”用于在列表上显示所有列。" - -#: C/list.page:66(page/p) -msgid "The following example script shows how to create a list dialog:" -msgstr "下面的例子显示脚本如何创建一个列表对话框:" - -#: C/list.page:69(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"Choose the Bugs You Wish to View\" \\\n" -" --column=\"Bug Number\" --column=\"Severity\" --column=\"Description\" \\\n" -" 992383 Normal \"GtkTreeView crashes on multiple selections\" \\\n" -" 293823 High \"GNOME Dictionary does not handle proxy\" \\\n" -" 393823 Critical \"Menu editing does not work in GNOME 2.0\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --list \\\n" -" --title=\"选择您想查看的 Bugs\" \\\n" -" --column=\"Bug 编号\" --column=\"严重\" --column=\"描述\" \\\n" -" 992383 Normal \"多选时 GtkTreeView 崩溃\" \\\n" -" 293823 High \"GNOME 字典不能使用代理\" \\\n" -" 393823 Critical \"菜单编辑器在 GNOME 2.0 中不能运行\"\n" - -#: C/list.page:82(figure/title) -msgid "List Dialog Example" -msgstr "列表框范例" - -#: C/list.page:83(figure/desc) -msgid "Zenity list dialog example" -msgstr "Zenity 列表对话框范例" - -#: C/message.page:6(info/desc) -msgid "" -"Error, Info, Question, Warning" -msgstr "" -"错误、信息、问题、警告" - -#: C/message.page:13(page/title) -msgid "Message Dialog" -msgstr "消息对话框" - -#: C/message.page:14(page/p) -msgid "" -"For each type, use the --text option to specify the text that is " -"displayed in the dialog." -msgstr "" -"对于每一种类型,使用 --text 选项来指定在对话框里显示的文本。" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/notification.page:37(media) -#| msgid "" -#| "@@image: 'figures/zenity-notification-screenshot.png'; " -#| "md5=b67bf309c6e479db8677947f1810a999" -msgctxt "_" -msgid "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='b67bf309c6e479db8677947f1810a999'" -msgstr "" -"external ref='figures/zenity-notification-screenshot.png' " -"md5='b67bf309c6e479db8677947f1810a999'" - -#: C/notification.page:6(info/desc) -msgid "Use the --notification option." -msgstr "使用 --notification 选项。" - -#: C/notification.page:8(page/title) -msgid "Notification Icon" -msgstr "通知区域图标" - -#: C/notification.page:9(page/p) -msgid "Use the --notification option to create a notification icon." -msgstr "使用 --notification 选项创建一个通知对话框。" - -#: C/notification.page:17(item/p) -msgid "Specifies the text that is displayed in the notification area." -msgstr "指定在通知区域显示的文本。" - -#: C/notification.page:22(page/p) -msgid "The following example script shows how to create a notification icon:" -msgstr "下面的脚本示范了如何创建一个通知区域图标:" - -#: C/notification.page:25(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --notification\\\n" -" --window-icon=\"info\" \\\n" -" --text=\"There are system updates necessary!\"\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"zenity --notification\\\n" -" --window-icon=\"信息\" \\\n" -" --text=\"系统有必要的更新!\"\n" - -#: C/notification.page:35(figure/title) -msgid "Notification Icon Example" -msgstr "通知区域图标范例" - -#: C/notification.page:36(figure/desc) -msgid "Zenity notification icon example" -msgstr "Zenity 通知图标范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/password.page:47(media) -#| msgid "" -#| "@@image: 'figures/zenity-password-screenshot.png'; " -#| "md5=6adbeb624a307f78072593d6d1c6def6" -msgctxt "_" -msgid "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='6adbeb624a307f78072593d6d1c6def6'" -msgstr "" -"external ref='figures/zenity-password-screenshot.png' " -"md5='6adbeb624a307f78072593d6d1c6def6'" - -#: C/password.page:6(info/desc) -msgid "Use the --password option." -msgstr "使用 --password 选项。" - -#: C/password.page:8(page/title) -msgid "Password Dialog" -msgstr "口令对话框" - -#: C/password.page:9(page/p) -msgid "Use the --password option to create a password entry dialog." -msgstr "使用 --password 选项创建一个口令对话框。" - -#: C/password.page:12(page/p) -msgid "The password entry dialog supports the following options:" -msgstr "口令输入对话框支持以下选项:" - -#: C/password.page:18(item/title) -#| msgid "--username" -msgid "--username" -msgstr "--username" - -#: C/password.page:19(item/p) -msgid "Display the username field." -msgstr "显示用户名字段。" - -#: C/password.page:23(page/p) -msgid "" -"The following example script shows how to create a password entry dialog:" -msgstr "下面的脚本示范了如何创建一个口令输入对话框:" - -#: C/password.page:27(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"User Name: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"Password : `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"Stop login.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"ENTRY=`zenity --password --username`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t \techo \"用户名: `echo $ENTRY | cut -d'|' -f1`\"\n" -"\t \techo \"密码: `echo $ENTRY | cut -d'|' -f2`\"\n" -"\t\t;;\n" -" 1)\n" -" echo \"停止登陆。\";;\n" -" -1)\n" -" echo \"发生意外错误。\";;\n" -"esac\n" - -#: C/password.page:45(figure/title) -msgid "Password Entry Dialog Example" -msgstr "密码输入框范例" - -#: C/password.page:46(figure/desc) -msgid "Zenity password entry dialog example" -msgstr "Zenity 密码输入框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/progress.page:77(media) -#| msgid "" -#| "@@image: 'figures/zenity-progress-screenshot.png'; " -#| "md5=75121bbbcb9cc92de4ebf7fbb92f0780" -msgctxt "_" -msgid "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='75121bbbcb9cc92de4ebf7fbb92f0780'" -msgstr "" -"external ref='figures/zenity-progress-screenshot.png' " -"md5='75121bbbcb9cc92de4ebf7fbb92f0780'" - -#: C/progress.page:6(info/desc) -msgid "Use the --progress option." -msgstr "使用 --progress 选项。" - -#: C/progress.page:8(page/title) -msgid "Progress Dialog" -msgstr "进度框" - -#: C/progress.page:9(page/p) -msgid "Use the --progress option to create a progress dialog." -msgstr "使用 --progress 选项创建一个进度对话框。" - -#: C/progress.page:13(page/p) -msgid "" -"Zenity reads data from standard input line by line. If a line is " -"prefixed with #, the text is updated with the text on that line. If a line " -"contains only a number, the percentage is updated with that number." -msgstr "" -"Zenity 从标准输入一行行读取数据。如果某一行以 # 开" -"头,进度框里的文本会被那一行上的文本替换,如果某一行只是一个数字,数字会被换" -"成进度条的百分比。" - -#: C/progress.page:17(page/p) -msgid "The progress dialog supports the following options:" -msgstr "进度框支持以下选项:" - -#: C/progress.page:25(item/p) -msgid "Specifies the text that is displayed in the progress dialog." -msgstr "指定显示在进度框里的文本。" - -#: C/progress.page:29(item/title) -msgid "--percentage=percentage" -msgstr "--percentage=百分比" - -#: C/progress.page:30(item/p) -msgid "Specifies the initial percentage that is set in the progress dialog." -msgstr "指定进度框开始时的百分比设定。" - -#: C/progress.page:34(item/title) -#| msgid "--auto-close" -msgid "--auto-close" -msgstr "--auto-close" - -#: C/progress.page:35(item/p) -msgid "Closes the progress dialog when 100% has been reached." -msgstr "当达到 100% 时自动关闭对话框。" - -#: C/progress.page:39(item/title) -#| msgid "--pulsate" -msgid "--pulsate" -msgstr "--pulsate" - -#: C/progress.page:40(item/p) -msgid "" -"Specifies that the progress bar pulsates until an EOF character is read from " -"standard input." -msgstr "指定进度条跳动,直到从标准输入读到一个 EOF 文件结束符。" - -#: C/progress.page:45(page/p) -msgid "The following example script shows how to create a progress dialog:" -msgstr "下面的脚本示范了如何创建一个进度对话框:" - -#: C/progress.page:49(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# Updating mail logs\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# Resetting cron jobs\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"This line will just be ignored\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# Rebooting system\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"Update System Logs\" \\\n" -" --text=\"Scanning mail logs...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"Update canceled.\"\n" -"fi\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"(\n" -"echo \"10\" ; sleep 1\n" -"echo \"# 更新邮件日志\" ; sleep 1\n" -"echo \"20\" ; sleep 1\n" -"echo \"# 复位定时计划任务\" ; sleep 1\n" -"echo \"50\" ; sleep 1\n" -"echo \"该行会被忽略\" ; sleep 1\n" -"echo \"75\" ; sleep 1\n" -"echo \"# 重启系统\" ; sleep 1\n" -"echo \"100\" ; sleep 1\n" -") |\n" -"zenity --progress \\\n" -" --title=\"更新系统日志\" \\\n" -" --text=\"扫描邮件日志...\" \\\n" -" --percentage=0\n" -"\n" -"if [ \"$?\" = -1 ] ; then\n" -" zenity --error \\\n" -" --text=\"更新被取消。\"\n" -"fi\n" - -#: C/progress.page:75(figure/title) -msgid "Progress Dialog Example" -msgstr "进度框范例" - -#: C/progress.page:76(figure/desc) -msgid "Zenity progress dialog example" -msgstr "Zenity 进度对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/question.page:28(media) -#| msgid "" -#| "@@image: 'figures/zenity-question-screenshot.png'; " -#| "md5=5889e2a57b9d1885f22977587a269610" -msgctxt "_" -msgid "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='5889e2a57b9d1885f22977587a269610'" -msgstr "" -"external ref='figures/zenity-question-screenshot.png' " -"md5='5889e2a57b9d1885f22977587a269610'" - -#: C/question.page:6(info/desc) -msgid "Use the --question option." -msgstr "使用 --question 选项。" - -#: C/question.page:8(page/title) -msgid "Question Dialog" -msgstr "问题对话框" - -#: C/question.page:9(page/p) -msgid "Use the --question option to create a question dialog." -msgstr "使用 --question 选项创建一个问题对话框。" - -#: C/question.page:13(page/p) -msgid "The following example script shows how to create a question dialog:" -msgstr "下面的脚本示范了如何创建一个问题对话框:" - -#: C/question.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"Are you sure you wish to proceed?\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --question \\\n" -"--text=\"您确认要继续吗?\"\n" - -#: C/question.page:26(figure/title) -msgid "Question Dialog Example" -msgstr "问题对话框范例" - -#: C/question.page:27(figure/desc) -msgid "Zenity question dialog example" -msgstr "Zenity 问题对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/scale.page:77(media) -#| msgid "" -#| "@@image: 'figures/zenity-scale-screenshot.png'; " -#| "md5=d44259a5b5b6e6ba0aceffd8501d0873" -msgctxt "_" -msgid "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='d44259a5b5b6e6ba0aceffd8501d0873'" -msgstr "" -"external ref='figures/zenity-scale-screenshot.png' " -"md5='d44259a5b5b6e6ba0aceffd8501d0873'" - -#: C/scale.page:6(info/desc) -msgid "Use the --scale option." -msgstr "使用 --scale 选项。" - -#: C/scale.page:8(page/title) -msgid "Scale Dialog" -msgstr "范围对话框" - -#: C/scale.page:9(page/p) -msgid "Use the --scale option to create a scale dialog." -msgstr "使用 --scale 选项创建一个范围对话框。" - -#: C/scale.page:12(page/p) -msgid "The scale dialog supports the following options:" -msgstr "范围对话框支持以下选项:" - -#: C/scale.page:20(item/p) -msgid "Set the dialog text. (Default: Adjust the scale value)" -msgstr "设置对话框文本。(默认:调整范围值)" - -#: C/scale.page:24(item/title) -msgid "--value=VALUE" -msgstr "--value=" - -#: C/scale.page:25(item/p) -msgid "" -"Set initial value. (Default: 0) You must specify value between minimum value " -"to maximum value." -msgstr "设置初始值。(默认:0)您必须在最小值和最大值之间指定一个值。" - -#: C/scale.page:29(item/title) -msgid "--min-value=VALUE" -msgstr "--min-value=" - -#: C/scale.page:30(item/p) -msgid "Set minimum value. (Default: 0)" -msgstr "设置最小值。(默认:0)" - -#: C/scale.page:34(item/title) -msgid "--max-value=VALUE" -msgstr "--max-value=" - -#: C/scale.page:35(item/p) -msgid "Set maximum value. (Default: 100)" -msgstr "设置最大值。(默认:100)" - -#: C/scale.page:39(item/title) -msgid "--step=VALUE" -msgstr "--step=" - -#: C/scale.page:40(item/p) -msgid "Set step size. (Default: 1)" -msgstr "设置步长。(默认:1)" - -#: C/scale.page:44(item/title) -#| msgid "--print-partial" -msgid "--print-partial" -msgstr "--print-partial" - -#: C/scale.page:45(item/p) -msgid "Print value to standard output, whenever a value is changed." -msgstr "将值打印为标准输出,无论值何时变化。" - -#: C/scale.page:49(item/title) -#| msgid "--hide-value" -msgid "--hide-value" -msgstr "--hide-value" - -#: C/scale.page:50(item/p) -msgid "Hide value on dialog." -msgstr "隐藏对话框中的值。" - -#: C/scale.page:55(page/p) -msgid "The following example script shows how to create a scale dialog:" -msgstr "下面的脚本示范了如何创建一个范围对话框:" - -#: C/scale.page:59(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"Select window transparency.\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"You selected $VALUE%.\";;\n" -" 1)\n" -" echo \"No value selected.\";;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\";;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"VALUE=`zenity --scale --text=\"选择窗口透明度。\" --value=50`\n" -"\n" -"case $? in\n" -" 0)\n" -"\t\techo \"您选中了 $VALUE%。\";;\n" -" 1)\n" -" echo \"未选中值。\";;\n" -" -1)\n" -" echo \"发生意外错误。\";;\n" -"esac\n" - -#: C/scale.page:75(figure/title) -msgid "Scale Dialog Example" -msgstr "范围对话框范例" - -#: C/scale.page:76(figure/desc) -msgid "Zenity scale dialog example" -msgstr "Zenity 范围对话框范例" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/text.page:83(media) -#| msgid "" -#| "@@image: 'figures/zenity-text-screenshot.png'; " -#| "md5=79446b388fa6c3c3a619c8d6565b9f61" -msgctxt "_" -msgid "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='79446b388fa6c3c3a619c8d6565b9f61'" -msgstr "" -"external ref='figures/zenity-text-screenshot.png' " -"md5='79446b388fa6c3c3a619c8d6565b9f61'" - -#: C/text.page:6(info/desc) -msgid "Use the --text-info option." -msgstr "使用 --text-info 选项。" - -#: C/text.page:8(page/title) -msgid "Text Information Dialog" -msgstr "文本信息框" - -#: C/text.page:9(page/p) -msgid "" -"Use the --text-info option to create a text information dialog." -msgstr "使用 --text-info 选项来创建一个文本信息框。" - -#: C/text.page:13(page/p) -msgid "The text information dialog supports the following options:" -msgstr "文本信息框支持以下选项:" - -#: C/text.page:21(item/p) -msgid "Specifies a file that is loaded in the text information dialog." -msgstr "指定一个加载到文本信息框里的文件。" - -#: C/text.page:26(item/p) -msgid "" -"Allows the displayed text to be edited. The edited text is returned to " -"standard output when the dialog is closed." -msgstr "显示的文本允许编辑,当对话框关闭后,编辑后的文本显示到显示器上。" - -#: C/text.page:30(item/title) -msgid "--font=FONT" -msgstr "--font=字体" - -#: C/text.page:31(item/p) -msgid "Specifies the text font." -msgstr "指定文本字体。" - -#: C/text.page:35(item/title) -msgid "--checkbox=TEXT" -msgstr "--checkbox=文本" - -#: C/text.page:36(item/p) -msgid "Enable a checkbox for use like a 'I read and accept the terms.'" -msgstr "启用复选框,如“我已阅读并接受该条款。”" - -#: C/text.page:40(item/title) -msgid "--html" -msgstr "--html" - -#: C/text.page:41(item/p) -msgid "Enable html support." -msgstr "启用 html 支持。" - -#: C/text.page:45(item/title) -msgid "--url=URL" -msgstr "--url=网址" - -#: C/text.page:46(item/p) -msgid "Sets an url instead of a file. Only works if you use --html option." -msgstr "设置一个网址,而不是文件。只有当您使用 --html 选项时才有效。" - -#: C/text.page:51(page/p) -msgid "" -"The following example script shows how to create a text information dialog:" -msgstr "下面的脚本示范了如何创建一个文本信息对话框:" - -#: C/text.page:55(page/code) -#, fuzzy, no-wrap -msgid "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"License\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"I read and accept the terms.\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"Start installation!\"\n" -"\t# next step\n" -"\t;;\n" -" 1)\n" -" echo \"Stop installation!\"\n" -"\t;;\n" -" -1)\n" -" echo \"An unexpected error has occurred.\"\n" -"\t;;\n" -"esac\n" -msgstr "" -"\n" -"#!/bin/sh\n" -"\n" -"# You must place file \"COPYING\" in same folder of this script.\n" -"FILE=`dirname $0`/COPYING\n" -"\n" -"zenity --text-info \\\n" -" --title=\"许可证\" \\\n" -" --filename=$FILE \\\n" -" --checkbox=\"我已阅读并接受条目。\"\n" -"\n" -"case $? in\n" -" 0)\n" -" echo \"开始安装!\"\n" -"\t# 下一步\n" -"\t;;\n" -" 1)\n" -" echo \"停止安装!\"\n" -"\t;;\n" -" -1)\n" -" echo \"发生意外错误。\"\n" -"\t;;\n" -"esac\n" - -#: C/text.page:81(figure/title) -msgid "Text Information Dialog Example" -msgstr "文本信息框范例" - -#: C/text.page:82(figure/desc) -msgid "Zenity text information dialog example" -msgstr "Zenity 文本信息对话框范例" - -#: C/usage.page:6(info/desc) -msgid "" -"You can use Zenity to create simple dialogs that interact " -"graphically with the user." -msgstr "您可以使用 Zenity 创建简单的交互式对话框。" - -#: C/usage.page:8(page/title) -msgid "Usage" -msgstr "用法" - -#: C/usage.page:9(page/p) -msgid "" -"When you write scripts, you can use Zenity to create simple " -"dialogs that interact graphically with the user, as follows:" -msgstr "" -"在您写脚本时,可以使用 Zenity 创建简单的交互式对话框,方法如下:" - -#: C/usage.page:14(item/p) -msgid "" -"You can create a dialog to obtain information from the user. For example, " -"you can prompt the user to select a date from a calendar dialog, or to " -"select a file from a file selection dialog." -msgstr "" -"您可以创建对话框以从用户获得信息。例如,您可以提示用户从日历对话框中选择日" -"期,或者从文件选择框里选择一个文件。" - -#: C/usage.page:19(item/p) -msgid "" -"You can create a dialog to provide the user with information. For example, " -"you can use a progress dialog to indicate the current status of an " -"operation, or use a warning message dialog to alert the user." -msgstr "" -"您可以创建向用户提供信息的对话框。例如,您可以用进度条来显示一个操作的当前运" -"行状态,或者用一个警告框提醒用户。" - -#: C/usage.page:24(page/p) -msgid "" -"When the user closes the dialog, Zenity prints the text produced " -"by the dialog to standard output." -msgstr "" -"当用户关闭了对话框,Zenity 将在标准输出中打印对话框操作的文本。" - -#: C/usage.page:29(note/p) -msgid "" -"When you write Zenity commands, ensure that you place quotation " -"marks around each argument." -msgstr "当您写了 Zenity 命令,确保每个参数用引号括起来。" - -#: C/usage.page:32(note/p) -msgid "For example, use:" -msgstr "例如,使用:" - -#: C/usage.page:33(note/screen) -#, no-wrap -msgid "zenity --calendar --title=\"Holiday Planner\"" -msgstr "zenity --calendar --title=\"假日计划\"" - -#: C/usage.page:34(note/p) -msgid "Do not use:" -msgstr "不要使用:" - -#: C/usage.page:35(note/screen) -#, no-wrap -msgid "zenity --calendar --title=Holiday Planner" -msgstr "zenity --calendar --title=假日计划" - -#: C/usage.page:36(note/p) -msgid "If you do not use quotation marks, you might get unexpected results." -msgstr "如果您没有使用引号,可能会产生不可预料的结果。" - -#: C/usage.page:42(section/title) -msgid "Access Keys" -msgstr "访问键" - -#: C/usage.page:43(section/p) -msgid "" -"An access key is a key that enables you to perform an action from the " -"keyboard rather than use the mouse to choose a command from a menu or " -"dialog. Each access key is identified by an underlined letter on a menu or " -"dialog option." -msgstr "" -"访问键允许您用键盘来执行一个操作,而不是用鼠标点击菜单命令或对话框按钮。每个" -"访问键有一个标识符,是一个在菜单或对话框选项上的带下划线的字母。" - -#: C/usage.page:46(section/p) -msgid "" -"Some Zenity dialogs support the use of access keys. To specify " -"the character to use as the access key, place an underscore before that " -"character in the text of the dialog. The following example shows how to " -"specify the letter 'C' as the access key:" -msgstr "" -"一些 Zenity 对话框支持使用访问键。要指定一个字符用于访问键,在对话" -"框的文本字符前面加一个下划线。下面的例子是如何让字母“C”作为访问键:" - -#: C/usage.page:49(section/screen) -#, no-wrap -#| msgid "\"_Choose a name\"." -msgid "\"_Choose a name\"." -msgstr "“选择一个名字(_C)”。" - -#: C/usage.page:53(section/title) -msgid "Exit Codes" -msgstr "退出代码" - -#: C/usage.page:54(section/p) -msgid "Zenity returns the following exit codes:" -msgstr "Zenity 返回以下退出代码:" - -#: C/usage.page:62(td/p) -msgid "Exit Code" -msgstr "退出代码" - -#: C/usage.page:64(td/p) -msgid "Description" -msgstr "描述" - -#: C/usage.page:70(td/p) -msgid "0" -msgstr "0" - -#: C/usage.page:73(td/p) -msgid "" -"The user has pressed either OK or Close." -msgstr "" -"用户已经按下 确定关闭。" - -#: C/usage.page:78(td/p) -msgid "1" -msgstr "1" - -#: C/usage.page:81(td/p) -msgid "" -"The user has either pressed Cancel, or used the " -"window functions to close the dialog." -msgstr "" -"用户按了 取消,或者点了窗口关闭按钮关闭对话框。" - -#: C/usage.page:86(td/p) -msgid "-1" -msgstr "-1" - -#: C/usage.page:89(td/p) -msgid "An unexpected error has occurred." -msgstr "发生了意外错误。" - -#: C/usage.page:94(td/p) -msgid "5" -msgstr "5" - -#: C/usage.page:97(td/p) -msgid "The dialog has been closed because the timeout has been reached." -msgstr "对话框因超时而关闭。" - -#: C/usage.page:109(section/title) -msgid "General Options" -msgstr "常规选项" - -#: C/usage.page:111(section/p) -msgid "All Zenity dialogs support the following general options:" -msgstr "所有的 Zenity 对话框支持以下常规选项:" - -#: C/usage.page:118(item/title) -msgid "--title=title" -msgstr "--title=标题" - -#: C/usage.page:119(item/p) -msgid "Specifies the title of a dialog." -msgstr "指定对话框的标题。" - -#: C/usage.page:123(item/title) -msgid "--window-icon=icon_path" -msgstr "--window-icon=图标路径" - -#: C/usage.page:124(item/p) -msgid "" -"Specifies the icon that is displayed in the window frame of the dialog. " -"There are 4 stock icons also available by providing the following keywords - " -"'info', 'warning', 'question' and 'error'." -msgstr "" -"指定显示在对话窗口框上的图标。有四个图标也可以用下列关键字 - 'info', " -"'warning', 'question' 和 'error'。" - -#: C/usage.page:131(item/title) -msgid "--width=width" -msgstr "--width=宽度" - -#: C/usage.page:132(item/p) -msgid "Specifies the width of the dialog." -msgstr "指定对话框的宽度。" - -#: C/usage.page:136(item/title) -msgid "--height=height" -msgstr "--height=高度" - -#: C/usage.page:137(item/p) -msgid "Specifies the height of the dialog." -msgstr "指定对话框的高度。" - -#: C/usage.page:141(item/title) -msgid "--timeout=timeout" -msgstr "--timeout=超时" - -#: C/usage.page:142(item/p) -msgid "Specifies the timeout in seconds after which the dialog is closed." -msgstr "指定超出时间(秒)后对话框自动关闭。" - -#: C/usage.page:152(section/title) -msgid "Help Options" -msgstr "帮助选项" - -#: C/usage.page:154(section/p) -msgid "Zenity provides the following help options:" -msgstr "Zenity 提供以下帮助选项:" - -#: C/usage.page:161(item/title) -msgid "--help" -msgstr "--help" - -#: C/usage.page:162(item/p) -msgid "Displays shortened help text." -msgstr "显示简短的帮助文本。" - -#: C/usage.page:166(item/title) -#| msgid "--help-all" -msgid "--help-all" -msgstr "--help-all" - -#: C/usage.page:167(item/p) -msgid "Displays full help text for all dialogs." -msgstr "显示所有对话框的完整帮助。" - -#: C/usage.page:171(item/title) -#| msgid "--help-general" -msgid "--help-general" -msgstr "--help-general" - -#: C/usage.page:172(item/p) -msgid "Displays help text for general dialog options." -msgstr "显示常规对话框选项的帮助文本。" - -#: C/usage.page:176(item/title) -#| msgid "--help-calendar" -msgid "--help-calendar" -msgstr "--help-calendar" - -#: C/usage.page:177(item/p) -msgid "Displays help text for calendar dialog options." -msgstr "显示日历对话框选项的帮助文本。" - -#: C/usage.page:181(item/title) -#| msgid "--help-entry" -msgid "--help-entry" -msgstr "--help-entry" - -#: C/usage.page:182(item/p) -msgid "Displays help text for text entry dialog options." -msgstr "显示文本输入框选项的帮助文本。" - -#: C/usage.page:186(item/title) -#| msgid "--help-error" -msgid "--help-error" -msgstr "--help-error" - -#: C/usage.page:187(item/p) -msgid "Displays help text for error dialog options." -msgstr "显示错误框选项的帮助文本。" - -#: C/usage.page:191(item/title) -#| msgid "--help-info" -msgid "--help-info" -msgstr "--help-info" - -#: C/usage.page:192(item/p) -msgid "Displays help text for information dialog options." -msgstr "显示信息框选项的帮助文本。" - -#: C/usage.page:196(item/title) -#| msgid "--help-file-selection" -msgid "--help-file-selection" -msgstr "--help-file-selection" - -#: C/usage.page:197(item/p) -msgid "Displays help text for file selection dialog options." -msgstr "显示文件打开框选项的帮助文本。" - -#: C/usage.page:201(item/title) -#| msgid "--help-list" -msgid "--help-list" -msgstr "--help-list" - -#: C/usage.page:202(item/p) -msgid "Displays help text for list dialog options." -msgstr "显示列表框选项的帮助文本。" - -#: C/usage.page:206(item/title) -#| msgid "--help-notification" -msgid "--help-notification" -msgstr "--help-notification" - -#: C/usage.page:207(item/p) -msgid "Displays help text for notification icon options." -msgstr "显示提示框选项的帮助文本。" - -#: C/usage.page:211(item/title) -#| msgid "--help-progress" -msgid "--help-progress" -msgstr "--help-progress" - -#: C/usage.page:212(item/p) -msgid "Displays help text for progress dialog options." -msgstr "显示进度框选项的帮助文本。" - -#: C/usage.page:216(item/title) -#| msgid "--help-question" -msgid "--help-question" -msgstr "--help-question" - -#: C/usage.page:217(item/p) -msgid "Displays help text for question dialog options." -msgstr "显示询问框选项的帮助文本。" - -#: C/usage.page:221(item/title) -#| msgid "--help-warning" -msgid "--help-warning" -msgstr "--help-warning" - -#: C/usage.page:222(item/p) -msgid "Displays help text for warning dialog options." -msgstr "显示警告框选项的帮助文本。" - -#: C/usage.page:226(item/title) -#| msgid "--help-text-info" -msgid "--help-text-info" -msgstr "--help-text-info" - -#: C/usage.page:227(item/p) -msgid "Displays help for text information dialog options." -msgstr "显示信息框选项的帮助文本。" - -#: C/usage.page:231(item/title) -#| msgid "--help-misc" -msgid "--help-misc" -msgstr "--help-misc" - -#: C/usage.page:232(item/p) -msgid "Displays help for miscellaneous options." -msgstr "显示其他杂项的帮助文本。" - -#: C/usage.page:236(item/title) -#| msgid "--help-gtk" -msgid "--help-gtk" -msgstr "--help-gtk" - -#: C/usage.page:237(item/p) -msgid "Displays help for GTK+ options." -msgstr "显示 GTK+ 选项的帮助文本。" - -#: C/usage.page:247(section/title) -msgid "Miscellaneous Options" -msgstr "杂项" - -#: C/usage.page:249(section/p) -msgid "Zenity also provides the following miscellaneous options:" -msgstr "Zenity 也提供了如下杂项:" - -#: C/usage.page:256(item/title) -msgid "--about" -msgstr "--about" - -#: C/usage.page:257(item/p) -msgid "" -"Displays the About Zenity dialog, which contains Zenity version " -"information, copyright information, and developer information." -msgstr "" -"显示 关于 Zenity 对话框,包含 Zenity 版本信息、版权信息和开发者信" -"息。" - -#: C/usage.page:261(item/title) -#| msgid "Use the --question option." -msgid "--version" -msgstr "--version" - -#: C/usage.page:262(item/p) -msgid "Displays the version number of Zenity." -msgstr "显示 Zenity 的版本号。" - -#: C/usage.page:272(section/title) -msgid "GTK+ Options" -msgstr "GTK+ 选项" - -#: C/usage.page:274(section/p) -msgid "" -"Zenity supports the standard GTK+ options. For more information about the GTK" -"+ options, execute the zenity --help-gtk command." -msgstr "" -"Zenity 支持标准的 GTK+ 选项。更多 GTK+ 选项的相关信息,请执行 zenity --" -"help-gtk 命令。" - -#: C/usage.page:283(section/title) -msgid "Environment Variables" -msgstr "环境变量" - -#: C/usage.page:285(section/p) -msgid "" -"Normally, Zenity detects the terminal window from which it was launched and " -"keeps itself above that window. This behavior can be disabled by unsetting " -"the WINDOWID environment variable." -msgstr "" -"通常,Zenity 会检测启动它的终端窗口,并保持在它之上。这个行为也可以通过不设" -"置 WINDOWID 环境变量来禁用。" - -#. This is a reference to an external file such as an image or video. When -#. the file changes, the md5 hash will change to let you know you need to -#. update your localized copy. The msgstr is not used at all. Set it to -#. whatever you like once you have updated your copy of the file. -#: C/warning.page:28(media) -#| msgid "" -#| "@@image: 'figures/zenity-warning-screenshot.png'; " -#| "md5=146ea22fcd7104b2f9ed7ca0cc25f51d" -msgctxt "_" -msgid "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" -msgstr "" -"external ref='figures/zenity-warning-screenshot.png' " -"md5='146ea22fcd7104b2f9ed7ca0cc25f51d'" - -#: C/warning.page:6(info/desc) -msgid "Use the --warning option." -msgstr "使用 --warning 选项。" - -#: C/warning.page:8(page/title) -msgid "Warning Dialog" -msgstr "警告对话框" - -#: C/warning.page:9(page/p) -msgid "Use the --warning option to create a warning dialog." -msgstr "使用 --warning 选项创建一个警告对话框。" - -#: C/warning.page:13(page/p) -msgid "The following example script shows how to create a warning dialog:" -msgstr "下面的脚本示范了如何创建一个警告对话框:" - -#: C/warning.page:17(page/code) -#, no-wrap -msgid "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"Disconnect the power cable to avoid electrical shock.\"\n" -msgstr "" -"\n" -"#!/bin/bash\n" -"\n" -"zenity --warning \\\n" -"--text=\"拔下电源线,避免触电。\"\n" - -#: C/warning.page:26(figure/title) -msgid "Warning Dialog Example" -msgstr "警告框范例" - -#: C/warning.page:27(figure/desc) -msgid "Zenity warning dialog example" -msgstr "Zenity 警告对话框范例" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "-1" -#~ msgstr "-1" - -#~ msgid "5" -#~ msgstr "5" - -#~ msgid "--help" -#~ msgstr "--help" - -#~ msgid "--about" -#~ msgstr "--about" - -#~ msgid "--version" -#~ msgstr "--version" - -#~ msgid "--html" -#~ msgstr "--html" - -#~ msgid "yasumichi@vinelinux.org" -#~ msgstr "yasumichi@vinelinux.org" - -#~ msgid "--save" -#~ msgstr "--save" - -#~ msgid "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" -#~ msgstr "" -#~ "@@image: 'figures/zenity-entry-screenshot.png'; " -#~ "md5=0fb790cbb6d13ec13a314b34f844ee80" - -#~ msgid "Zenity Desktop Application Manual V2.0" -#~ msgstr "Zenity 桌面程序手册 V2.0" - -#~ msgid "2003" -#~ msgstr "2003" - -#~ msgid "2004" -#~ msgstr "2004" - -#~ msgid "Sun Microsystems, Inc." -#~ msgstr "Sun Microsystems, Inc." - -#~ msgid "Sun" -#~ msgstr "Sun" - -#~ msgid "Java Desktop System Documentation Team" -#~ msgstr "Java 桌面系统文档小组" - -#~ msgid "Glynn" -#~ msgstr "Glynn" - -#~ msgid "Foster" -#~ msgstr "Foster" - -#~ msgid "GNOME Documentation Project" -#~ msgstr "GNOME 文档项目" - -#~ msgid "Curran" -#~ msgstr "Curran" - -#~ msgid "August 2004" -#~ msgstr "2004年8月" - -#~ msgid "Zenity Manual V1.0" -#~ msgstr "Zenity 手册 V1.0" - -#~ msgid "January 2003" -#~ msgstr "2003年1月" - -#~ msgid "This manual describes version 2.6.0 of Zenity." -#~ msgstr "本手册讲述的是 Zenity 2.6.0 版。" - -#~ msgid "Feedback" -#~ msgstr "反馈" - -#~ msgid "" -#~ "To send feedback, follow the directions in the Feedback Page." -#~ msgstr "" -#~ "要发送反馈信息,请参照 GNOME 反馈页 上的指导。" - -#~ msgid "" -#~ "Zenity is a rewrite of gdialog, the GNOME port of dialog which allows you " -#~ "to display dialog boxes from the commandline and shell scripts." -#~ msgstr "" -#~ "Zenity 是 gdialog 的重写,dialog 的 GNOME 移植,可以用命令或 shell 脚本显" -#~ "示对话框。" - -#~ msgid "zenity command" -#~ msgstr "zenity 命令" - -#~ msgid "dialog creator" -#~ msgstr "对话框创建器" - -#~ msgid "" -#~ "For example, use: zenity --calendar --title=" -#~ "\"Holiday Planner\" Do not use: " -#~ "zenity --calendar --title=Holiday Planner" -#~ msgstr "" -#~ "例如,使用 : zenity --calendar --title=\"假期" -#~ "安排\" 不要用: " -#~ "zenity --calendar --title=假期安排" - -#~ msgid "=title" -#~ msgstr "=标题" - -#~ msgid "=width" -#~ msgstr "=宽度" - -#~ msgid "=height" -#~ msgstr "=高度" - -#~ msgid "=timeout" -#~ msgstr "=超时" - -#~ msgid "=text" -#~ msgstr "=文本" - -#~ msgid "=day" -#~ msgstr "=" - -#~ msgid "=month" -#~ msgstr "=" - -#~ msgid "=year" -#~ msgstr "=" - -#~ msgid "Zenity" -#~ msgstr "Zenity" - -#~ msgid "=filename" -#~ msgstr "=文件名" - -#~ msgid "=column" -#~ msgstr "=" - -#~ msgid "" -#~ "Zenity can create four types of message dialog:" -#~ msgstr "Zenity 可以创建四种消息框:" - -#~ msgid "=text" -#~ msgstr "=文本" - -#~ msgid "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"Select a File\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " -1)\n" -#~ " echo \"No file selected.\";;\n" -#~ " esac\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ " #!/bin/sh\n" -#~ "\n" -#~ " FILE=`zenity --file-selection \\\n" -#~ " --title=\"选择一个文件\"`\n" -#~ "\n" -#~ " case $? in\n" -#~ " 0)\n" -#~ " zenity --text-info \\\n" -#~ " --title=$FILE \\\n" -#~ " --filename=$FILE \\\n" -#~ " --editable 2>/tmp/tmp.txt;;\n" -#~ " 1)\n" -#~ " echo \"没有选择文件。\";;\n" -#~ " -1)\n" -#~ " echo \"没有选择文件.\";;\n" -#~ " esac\n" -#~ " " diff --git a/meson_options.txt b/meson_options.txt deleted file mode 100644 index 7dd5b5a..0000000 --- a/meson_options.txt +++ /dev/null @@ -1,5 +0,0 @@ -option('libnotify', type : 'boolean', value : false, - description : 'enable libnotify for desktop notification support') - -option('webkitgtk', type : 'boolean', value : false, - description : 'enable webkitgtk support') diff --git a/meson_post_install.py b/meson_post_install.py deleted file mode 100644 index 2654e49..0000000 --- a/meson_post_install.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python3 - -import os -import subprocess - -prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr/local') -datadir = os.path.join(prefix, 'share') - -# Packaging tools define DESTDIR and this isn't needed for them -if 'DESTDIR' not in os.environ: - print('Updating icon cache...') - icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor') - if not os.path.exists(icon_cache_dir): - os.makedirs(icon_cache_dir) - subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir]) diff --git a/po/.cvsignore b/po/.cvsignore deleted file mode 100644 index 8796baa..0000000 --- a/po/.cvsignore +++ /dev/null @@ -1,14 +0,0 @@ -*.gmo -*.mo -*.pot -Makefile -Makefile.in -Makefile.in.in -POTFILES -cat-id-tbl.c -stamp-cat-id -po2tbl.sed -po2tbl.sed.in -messages -missing -stamp-it diff --git a/po/ChangeLog b/po/ChangeLog deleted file mode 100644 index 56dd74a..0000000 --- a/po/ChangeLog +++ /dev/null @@ -1,3219 +0,0 @@ -2009-03-18 Djihed Afifi - - * ar.po: Updated Arabic translation by Khaled Hosny. - -2009-03-17 Ignacio Casal Quinteiro - - * gl.po: Updated Galician translation by Suso Baleato. - -2009-03-16 Lucas Rocha - - * 2.26.0 version marker. - -2009-03-13 Amitakhya Phukan - - * as.po: Updated Assamese translations. - -2009-03-11 Krishnababu K - - * te.po: Updated Telugu Translation. - -2009-03-11 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2009-03-02 Manoj Kumar Giri - - * or.po: Updated Oriya Translation. - -2009-02-23 Gabor Kelemen - - * hu.po: Translation updated. - -2009-02-14 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - -2009-02-13 Jani Monoses - - * ro.po: Updated Romanian translation - by Adi Roiban - -2009-02-09 Gil Forcada - - * ps.po: Added Pashto translation on behalf of Zabeeh Khan. - * LINGUAS: Added ps. - -2009-01-29 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2009-01-25 Raivis Dejus - - * lv.po: Updated Latvian translation. - -2009-01-12 Lucas Rocha - - * 2.24.1 version marker. - -2008-10-22 Simos Xenitellis - - * el.po: Updated Greek translation by Nick Agianniotis. - -2008-10-19 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-10-17 Marcel Telka - - * sk.po: Updated Slovak translation. - -2008-10-13 Luca Ferretti - - * it.po: Added a note for a message. - -2008-10-11 Ihar Hrachyshka - - * be@latin.po: Updated Belarusian Latin translation by Ihar Hračyška. - -2008-09-27 Laurent Dhima - - * sq.po: Updated Albanian Translation. - -==================== 2.24.0 ==================== - -2008-09-22 Petr Kovar - - * cs.po: Updated Czech translation by Pavel Sefranek. - -2008-09-21 Leonardo Ferreira Fontenelle - - * pt_BR.po: Fixed terminology in Brazilian Portuguese translation by - Vladimir Melo. - -2008-09-21 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - -2008-09-20 Kenneth Nielsen - - * da.po: Updated Danish translation by Ask H. Larsen - -2008-09-20 Luca Ferretti - - * it.po: Updated Italian translation by Milo Casagrande. - -2008-09-19 Gabor Kelemen - - * hu.po: Translation updated. - -2008-09-18 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - -2008-09-18 Baris Cicek - - * tr.po: Updated Turkish Translation by Fatih Erguven - -2008-09-18 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-09-15 Petr Kovar - - * cs.po: Updated Czech translation by Pavel Sefranek. - -2008-09-15 Shankar Prasad - - * kn.po: Updated Kannada Translation - -2008-09-15 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-09-14 Goran Rakić - - * sr.po, sr@latin.po: Updated Serbian translation. - -2008-09-13 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2008-09-12 Mario Blättermann - - * de.po: Updated German translation. - -2008-09-12 Goran Rakić - - * sr.po, sr@latin.po: Updated Serbian translation (by Miloš Popović). - -2008-09-09 Robert Sedak - - * hr.po: Updated Croatian translation. - -2008-09-09 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2008-09-08 Tomasz Dominikowski - - * pl.po: Updated Polish translation - -2008-09-06 Philip Withnall - - * en_GB.po: Updated British English translation. - -2008-09-04 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - -2008-09-02 Runa Bhattacharjee - - * bn_IN.po: Updated Bengali India Translation - -2008-09-02 I. Felix - - * ta.po: Tamil Translation updated by Tirumurthi Vasudevan - -2008-08-30 Mario Blättermann - - * de.po: Updated German translation. - -2008-08-25 Goran Rakic - - * LINGUAS, sr@latin.po, sr@Latn.po: Conversion from sr@Latn to sr@latin. - -2008-08-24 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2008-08-25 Sandeep Shedmake - - * mr.po: Updated Translations for Marathi - -2008-08-20 Manoj Kumar Giri - - * or.po: Updated Translation for Oriya - -2008-08-15 Praveen Arimbrathodiyil - - * ml.po: Malayalam translation update by Ragsagar. - -2008-08-14 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2008-08-13 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - -2008-08-11 Ilkka Tuohela <> - - * fi.po: Updated Finnish translation. - -2008-08-10 Gil Forcada - - * ca.po: Updated Catalan translation. - -2008-08-10 Arangel Angov - - * mk.po: Updated Macedonian translation. - -2008-08-07 Sweta Kothari - - * gu.po: Committed Gujarati Translation. - -2008-08-06 Jonh Wendell - - * pt_BR.po: Brazilian Portuguese translation updated by Fábio Nogueira. - -2008-08-06 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-07-29 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-07-22 Laurent Dhima - - * sq.po: Updated Albanian Translation. - -2008-07-21 Leonardo Ferreira Fontenelle - - * pt_BR.po: Terminology improvements by Vladimir Melo. - -2008-07-02 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2008-06-24 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2008-06-23 Andre Klapper - - * de.po: Fixed bug #539437. - -2008-06-19 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2008-06-16 Lucas Rocha - - * 2.23.3.1 version marker. - -2008-06-16 Lucas Rocha - - * 2.23.3 version marker. - -2008-06-16 Claude Paroz - - * fr.po: Updated French translation. - -2008-06-11 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2008-06-11 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2008-06-03 Lucas Rocha - - * 2.23.2 version marker. - -2008-06-02 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2008-05-22 Djihed Afifi - - * ar.po: Updated Arabic Translation by Djihed Afifi. - -2008-05-22 Danishka Navin - - * LINGUAS: Added an entry for Sinhala (si) - * si.po: Added Sinhala (si) transation by Yajith Ajantha. - -2008-05-19 Djihed Afifi - - * ar.po: Updated Arabic Translation by Djihed Afifi. - -2008-05-08 Vincent van Adrighem - - * nl.po: Translation updated by Tino Meinen. - -2008-04-27 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2008-04-26 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - -2008-04-26 Jorge Gonzalez - - * es.po: Updated Spanish translation - -2008-04-25 Gabor Kelemen - - * hu.po: Translation updated. - -2008-04-25 Priit Laes - - * et.po: Translation updated by Ivar Smolin - -2008-04-22 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2008-04-21 Lucas Rocha - - * 2.23.1 version marker. - -2008-04-21 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2008-04-20 Priit Laes - - * et.po: Translation updated by Ivar Smolin - -2008-04-20 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - -2008-04-19 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2008-04-11 Marcel Telka - - * sk.po: Updated Slovak translation. - -2008-03-30 Jorge Gonzalez - - * es.po: Updated Spanish translation - -2008-03-17 Marcel Telka - - * sk.po: Updated Slovak translation. - -2008-03-17 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2008-03-10 Lucas Rocha - - * 2.22.0 version marker. - -2008-03-09 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - -2008-03-06 Marcel Telka - - * sk.po: Updated Slovak translation. - -2008-03-03 Philip Withnall - - * en_GB.po: Updated British English translation. - -2008-02-29 Jorge Gonzalez - - * es.po: Updated Spanish translation - -2008-02-25 Lucas Rocha - - * 2.21.1 version marker. - -2008-02-23 Ihar Hrachyshka - - * be@latin.po: Added Belarusian Latin translation. - * LINGUAS: Added be@latin. - -2008-02-14 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2008-02-14 Pawan Chitrakar - - * ne.po: Updated Nepali Translation. - -2008-02-09 Petr Kovar - - * cs.po: Updated Czech translation by Pavel Sefranek. - -2008-02-05 Jovan Naumovski - - * mk.po: Fix for #514613. - -2008-01-31 Djihed Afifi - - * ar.po: Updated Arabic Translation by Djihed Afifi. - -2008-01-30 Amitakhya Phukan - - * LINGUAS: Added as to LINGUAS. - * as.po: Updated assamese translations. - -2008-01-16 Gabor Kelemen - - * hu.po: Translation updated - -2008-01-14 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - -2008-01-10 Luca Ferretti - - * it.po: Import updated Italian translation from gnome-2-20 branch - -2008-01-04 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2007-12-31 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2007-12-13 Kjartan Maraas - - * nn.po: Updated Norwegian nynorsk translation from - Eskild Hustvedt - -2007-12-11 Rahul Bhalerao - - * mr.po: Added Marathi Translations given by Sandeep Shedmake - * LINGUAS: Adden an entry for mr - -2007-11-28 Yannig Marchegay - - * oc.po: Updated Occitan translation. - -2007-11-22 Sunil Mohan Adapa - - * LINGUAS, te.po: Added Telugu (te) translation - done by Matapathi Pramod . - -2007-11-13 Matej Urbančič - - * sl.po: Updated Slovenian Translation. - -2007-11-02 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2007-10-23 Djihed Afifi - - * ar.po: Updated Arabic Translation by Djihed Afifi. - -2007-10-21 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2007-10-19 Matej Urbančič - - * sl.po: Updated Slovenian translation. - -2007-10-15 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - -2007-09-18 Khandakar Mujahidul Islam - - * bn.po: Updated Bengali Translation. - -2007-09-17 Lucas Rocha - - * 2.20.0 version marker. - -2007-09-17 Baris Cicek - - * tr.po: Updated Turkish translation from Fatih Erguven - -2007-09-17 Gil Forcada - - * ca.po: Updated Catalan translation. - -2007-09-16 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - -2007-09-16 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2007-09-15 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2007-09-15 Mugurel Tudor - - * ro.po: Updated Romanian translation - -2007-09-14 Gabor Kelemen - - * hu.po: Translation updated. - -2007-09-12 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2007-09-12 Maxim Dziumanenko - - * uk.po: Update Ukrainian translation. - -2007-09-11 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - -2007-09-10 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2007-09-09 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2007-09-06 Wouter Bolsterlee - - * nl.po: Translation updated by Wouter Bolsterlee. - -2007-09-03 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2007-09-03 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - -2007-09-01 Jovan Naumovski - - * mk.po: Updated Macedonian translation. - -2007-08-31 Kenneth Nielsen - - * da.po: Updated Danish translation - -2007-08-29 I. Felix - - * ta.po: Tamil Translation updated by Tirumurthi Vasudevan - -2007-08-26 Raphael Higino - - * pt_BR.po: Updated Brazilian Portuguese translation - by Og Maciel . - -2007-08-23 Stéphane Raimbault - - * fr.po: Updated French translation. - -2007-08-19 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2007-08-16 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - -2007-08-16 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2007-08-16 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2007-08-15 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2007-08-15 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2007-08-15 Hendrik Richter - - * de.po: Updated German translation. - -2007-08-15 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2007-08-15 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2007-08-14 Jorge Gonzalez - - * es.po: Updated Spanish translation - -2007-08-13 Lucas Rocha - - * 2.19.2 version marker. - -2007-07-16 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2007-06-21 I Felix - - * ta.po: Updated Tamil Translation. - -2007-06-05 Jakub Friedl - - * cs.po: Updated Czech Translation. - -2007-05-15 Lucas Rocha - - * 2.19.1 version marker. - -2007-04-23 Jakub Friedl - - * cs.po: Updated Czech Translation. - -2007-04-19 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation from Yang Zhang. - -2007-04-09 Lucas Rocha - - * 2.18.1 version marker. - -2007-03-08 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2007-03-31 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - -2007-03-25 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2007-03-16 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2007-03-12 Baris Cicek - - * tr.po: Updated Turkish Translation - -2007-03-11 Lucas Rocha - - * 2.18.0 version marker. - -2007-03-10 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2007-03-10 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2007-03-09 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - -2007-03-08 Thierry Randrianiriana - - * mg.po: Added Malagasy translation. - * LINGUAS: Added Malagasy 'mg'. - -2007-03-05 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2007-03-04 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2007-03-04 Peter Bach - - * da.po: Updated Danish translation. - -2007-03-01 Runa Bhattacharjee - - * bn_IN.po: Updated Bengali India Translation. - -2007-03-01 Maxim Dziumanenko - - * uk.po: Update Ukrainian translation. - -2007-02-27 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2007-02-27 Leonardo Ferreira Fontenelle - - * pt_BR.po: Updated Brazilian Portuguese translation by Fábio Nogueira - . - -2007-02-26 Lucas Rocha - - * 2.17.92 version marker. - -2007-02-25 Gabor Kelemen - - * hu.po: Translation updated. - -2007-02-25 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2007-02-21 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2007-02-15 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2007-02-12 Lucas Rocha - - * 2.17.91 version marker. - -2007-02-12 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2007-02-11 Josep Puigdemont i Casamajó - - * ca.po: Updated Catalan translation. - -2007-02-05 Pema Geyleg - - * dz.po: Updated Dzongkha Translation. - -2007-02-02 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - -2007-01-30 Wouter Bolsterlee - - * nl.po: Updated Dutch Translation by Wouter Bolsterlee. - -2007-01-28 Nguyễn Thái Ngọc Duy - - * vi.po: Updated Vietnamese translation. - -2007-01-27 Stéphane Raimbault - - * fr.po: Updated French translation by Robert-André Mauchin. - -2007-01-22 Lucas Rocha - - * 2.17.90 version marker. - -2007-01-14 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - -2007-01-08 Lucas Rocha - - * 2.17.3 version marker. - -2007-01-05 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - -2007-01-3 Djihed Afifi - - * ar.po: Updated Arabic Translation by Khaled Hosny. - -2007-01-03 Matic Zgur - - * sl.po: Updated Slovenian translation. - -2007-01-01 David Lodge - - * en_GB.po: Updated English (British) translation - -2006-12-27 Djihed Afifi - - * ar.po: Updated Arabic Translation. - -2006-12-24 Djihed Afifi - - * ar.po: Updated Arabic Translation. - -2006-12-21 Hendrik Brandt - - * de.po: Updated German translation. - -2006-12-19 Raivis Dejus - - * lv.po: Updated Latvian Translation. - -2006-12-18 Lucas Rocha - - * 2.17.2 version marker. - -2006-12-18 Djihed Afifi - - * ar.po: Updated Arabic Translation. - -2006-12-18 Ales Nyakhaychyk - - * be.po: Updated Belarusian Translation. - -2006-12-14 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2006-12-11 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2006-12-11 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2006-12-11 Priit Laes - - * et.po: Translation updated. - -2006-12-11 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2006-12-04 Lucas Rocha - - * 2.17.1 version marker. - -2006-11-22 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - -2006-10-30 Djihed Afifi - - * ar.po Updated Arabic Translation. - -2006-10-26 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2006-10-17 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2006-09-16 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - -2006-09-04 Baris Cicek - - * tr.po: Updated Turkish Translation from Fatih - -2006-09-04 Lucas Rocha - - * 2.16.0 version marker. - -2006-09-04 Kostas Papadimas - - * el.po: Updated Greek translation. - -2006-01-09 Runa Bhattacharjee - - * bn_IN.po: Fixed some typos. - -2006-09-01 Abel Cheung - - * LINGUAS: Add missing entries - -2006-09-01 Subhransu Behera - - * LINGUAS: Added Oriya (or) to The List of Languages. - -2006-09-01 Maxim Dziumanenko - - * uk.po: Update Ukrainian translation. - -2006-08-28 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2006.08-22 Khandakar Mujahidul Islam - - * bn.po: Updated Bengali translation - -2006-08-22 Runa Bhattacharjee - - * bn_IN.po: Updated Bengali India Translation. - -2006-08-22 Jordi Mas - - * ca.po: Updated Catalan translation. - -2006-08-22 Ahmad Riza H Nst - - * id.po: Updated. - -2006-08-20 Ani Peter - - * ml.po: Updated Malayalam translation - -2006-08-20 Lucas Rocha - - * 2.15.92 version marker. - -2006-08-20 Raphael Higino - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2006-08-18 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - -2006-08-17 Satoru SATOH - - * ja.po: Updated Japanese translation. - -2006-08-17 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2006-08-16 Matic Žgur - - * sl.po: Updated Slovenian translation. - -2006-08-15 Gabor Kelemen - - * hu.po: Translation updated. - -2006-08-12 Leonid Kanter - - * ru.po: Updated Russian translation - -2006-08-11 Vladimer Sichinava - - * ka.po: Added Georgian translation. - -2006-08-11 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2006-08-07 Lucas Rocha - - * 2.15.91 version marker. - -2006-08-07 Inaki Larranaga - - * eu.po: Fixed some typos. - -2006-08-04 Runa Bhattacharjee - - * bn_IN.po: Updated Bengali Indian Translation. - -2006-08-03 Runa Bhattacharjee - - * bn_IN.po: Updated Bengali Indian Translation. - -2006-08-01 Jovan Naumovski - - * mk.po: Updated Macedonian translation. - -2006-08-01 Abel Cheung - - * zh_HK.po, zh_TW.po: New and updated traditional Chinese - translations. - * LINGUAS: Added zh_HK (Chinese - Hong Kong). - -2006-07-28 Lucas Rocha - - * 2.15.90 version marker. - -2006-07-27 Hendrik Richter - - * de.po: Updated German translation. - -2006-07-23 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2006-07-22 Vincent van Adrighem - - * nl.po: Translation updated. - -2006-07-21 Christophe Merlet - - * fr.po: Updated French translation. - -2006-07-21 Josep Puigdemont i Casamajó - - * ca.po: Updated Catalan translation. - -2006-07-16 Daniel Nylander - - * sv.po: Updated Swedish translation. - -2006-07-12 Benoît Dejean - - * fr.po: Updated French translation. - -2006-07-08 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - -2006-07-06 Inaki Larranaga - - * eu.po: Updated Basque translation. - -2006-07-03 Runa Bhattacharjee - - * bn_IN.po: Added Bengali India Translation - * LINGUAS: Added Bengali India (bn_IN) to the list of languages. - -2006-07-02 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2006-06-30 Raivis Dejus - - * lv.po: Added Latvian translation. - -2006-06-29 Guntupalli Karunakar - - * dz.po: Updated Dzongkha translation - by Dzongkhalinux, DIT - -2006-06-27 I. Felix - - * ta.po: Updated Tamil Translation. - -2006-06-26 Rajesh Ranjan - - * hi.po: Updated Hindi Translation. - -2006-06-16 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2006-06-15 Hendrik Richter - - * de.po: Updated German translation. - -2006-06-14 Marcel Telka - - * sk.po: Updated Slovak translation. - -2006-06-12 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - -2006-06-12 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2006-06-11 Priit Laes - - * et.po: Translation updated. - -2006-06-10 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2006-06-09 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2006-06-05 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2006-06-04 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2006-06-04 Marcel Telka - - * sk.po: Updated Slovak translation. - -2006-05-16 Lucas Rocha - - * 2.15.2 version marker. - -2006-04-24 Lucas Rocha - - * 2.15.1 version marker. - -2006-04-18 Kjartan Maraas - - * LINGUAS: Remove obsolete entry for no_NO - * no.po: And the translation. - -2006-04-17 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2006-04-14 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - -2006-04-07 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2006-03-21 Gora Mohanty - - * or.po: Added Oriya translation. - -2006-03-13 Lucas Rocha - - * 2.14.0 version marker. - -2006-03-13 Benoît Dejean - - * fr.po: Updated French translation. - -2006-03-06 Rajesh Ranjan - - * hi.po: Updated Hindi Translation. - -2006-03-06 Daniel Nylander - - * sv.po: Updated Swedish translation - -2006-03-05 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2006-03-05 Mugurel Tudor - - * ro.po: Updated Romanian translation - -2006-03-05 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2006-03-03 Maxim Dziumanenko - - * uk.po: Updated Ukrainian translation. - -2006-03-02 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2006-02-28 Leonid Kanter - - * ru.po: Updated Russian translation - -2006-02-25 Rhys Jones - - * cy.po: Updated Welsh translation. - -2006-02-22 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2006-02-22 Inaki Larranaga - - * eu.po: Updated Basque translation. - -2006-02-19 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - -2006-02-15 Yair Hershkovitz - - * he.po: Updated Hebrew translation - -2006-02-14 Hendrik Richter - - * de.po: Updated German translation. - -2006-02-13 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2006-02-12 Kostas Papadimas - - * el.po Updated Greek Translation - -2006-02-09 Vincent van Adrighem - - * nl.po: Translation updated. - -2006-02-04 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2006-01-29 Lucas Rocha - - * 2.13.90 version marker. - -2006-01-29 Gabor Kelemen - - * hu.po: Hungarian translation updated. - -2006-01-27 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2006-01-24 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - -2006-01-21 Lasse Bang Mikkelsen - - * da.po: Updated Danish translation. - -2006-01-16 Lucas Rocha - - * 2.13.5 version marker. - -2006-01-12 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation - -2006-01-09 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - -2006-01-08 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2006-01-08 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2006-01-05 Lucas Rocha - - * 2.13.4 version marker. - -2006-01-02 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - -2005-12-30 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2005-12-29 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - -2005-12-29 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2005-12-28 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-12-26 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2005-12-26 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2005-12-25 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2005-12-25 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2005-12-23 Adam Weinberger - - * POTFILES.in: Added missing file. - * en_CA.po: Updated Canadian English translation. - -2005-12-23 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-12-22 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2005-12-20 Alessio Frusciante - - * it.po: Updated Italian translation by - Luca Ferretti . - -2005-12-18 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2005-12-17 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2005-12-16 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2005-12-15 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2005-12-14 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-12-14 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2005-12-13 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2005-12-13 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2005-12-12 Lucas Rocha - - * 2.13.3 version marker. - -2005-11-13 Lucas Rocha - - * 2.13.2 version marker. - -2005-10-27 Erdal Ronahi - - * ku.po: Added Kurdish translation. - -2005-10-24 Lucas Rocha - - * 2.13.1 version marker. - -2005-10-20 Runa Bhattacharjee - - * bn.po: Updated Bengali (bn) Translation - by Mahay Alam Khan - -2005-10-15 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-10-03 Christian Rose - - * sv.po: Reverted unauthorized changes made by - user 'kloczek'. - -2005-09-08 Inaki Larranaga - - * eu.po: Updated Basque translation. - -2005-09-06 Lucas Rocha - - * 2.12.0 version marker. - -2005-09-04 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - -2005-09-04 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2005-09-02 Baris Cicek - - * tr.po: Updated Turkish Translation from Burcin Donmez - -2005-09-02 Leonid Kanter - - * ru.po: Updated Russian translation - -2005-09-02 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - -2005-08-29 Telsa Gwynne - - * cy.po: Updated Welsh translation. - -2005-08-29 Changwoo Ryu - - * ko.po: Updated Korean translation by Young-Ho Cha. - -2005-08-27 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2005-08-23 Lucas Rocha - - * 2.11.92 version marker. - -2005-08-21 Maxim Dziumanenko - - * uk.po: Updated Ukrainian translation. - -2005-08-18 Mugurel Tudor - - * ro.po: Updated Romanian translation - -2005-08-15 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2005-08-15 Gabor Kelemen - - * hu.po: Hungarian translation updated. - -2005-08-13 Kostas Papadimas - - * el.po Updated Greek Translation - -2005-08-11 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2005-08-10 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation by Justina Klingaitė. - -2005-08-10 Christian Rose - - * sv.po: Updated Swedish translation. - -2005-08-07 Lucas Rocha - - * 2.11.91 version marker. - -2005-08-02 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - -2005-07-31 Ilkka Tuohela - - * fi.po: Bulk updates to Finnish translation - for new gnome.fi website. - -2005-07-31 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2005-07-28 Hendrik Brandt - - * de.po: Updated German translation. - -2005-07-28 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2005-07-28 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2005-07-25 Lucas Rocha - - * 2.11.90 version marker. - -2005-07-24 Ilkka Tuohela - - * fi.po: Updated Finnish translation. - -2005-07-24 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - -2005-07-24 Clytie Siddall - - * vi.po: Updated Vietnamese translation. - -2005-07-22 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - -2005-07-21 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2005-07-18 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - -2005-07-14 Yair Hershkovitz - - * he.po: Added Hebrew translation. - -2005-07-14 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-07-13 Lucas Rocha - - * 2.11.1 version marker. - -2005-07-10 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2005-07-06 Lucas Rocha - - * es.po: Fix build problem. - -2005-07-06 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-07-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2005-07-05 Benoît Dejean - - * fr.po: Updated French translation. - -2005-07-04 Hendrik Richter - - * de.po: Fixed German translation by - Jens Seidel . - -2005-07-03 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2005-07-03 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2005-07-02 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - -2005-07-02 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2005-07-01 Lucas Rocha - - * 2.11.0 version marker. - -2005-06-30 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-06-28 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - -2005-06-27 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-06-22 Abel Cheung - - * zh_TW.po: Fix language team reference. - -2005-06-16 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - -2005-06-11 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-06-11 Martin Willemoes Hansen - - * da.po: Updated Danish translation. - -2005-06-10 Rajesh Ranjan - - * hi.po: Updated Hindi translation by - Rajesh Ranjan - -2005-06-07 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - -2005-06-04 Christian Rose - - * gl.po: Updated Galician translation by - Ignacio Casal Quinteiro . - -2005-05-25 Kjartan Maraas - - * nb.po: Update - * no.po: Update - -2005-05-22 Pawan Chitrakar - - * ne.po: Updated nepali tranalstion - -2005-05-11 Kostas Papadimas - - * el.po Updated Greek Translation - -2005-05-05 Rajesh Ranjan - - * hi.po: Translation hindi updated. - -2005-05-03 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - -2005-05-02 Priit Laes - - * et.po: Translation updated. - -2005-05-01 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2005-04-30 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2005-04-29 Priit Laes - - * et.po: Translation updated. - -2005-04-25 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-04-22 Gareth Owen - - * en_GB.po: Updated British English translation. - -2005-04-20 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2005-04-06 Christian Rose - - * ug.po: Added Uighur translation by - Abduxukur Abdurixit . - -2005-04-01 Adi Attar - - * xh.po: Added Xhosa translation. - -2005-03-31 Steve Murphy - - * rw.po: Added Kinyarwanda translation. - -2005-03-18 Josep Puigdemont - - * ca.po: Updated Catalan translation. - -2005-03-17 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2005-03-07 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2005-03-07 Mugurel Tudor - - * ro.po: Updated Romanian translation. - -2005-03-05 Glynn Foster - - * 2.10.0 version marker. - -2005-03-05 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team - * ar.po: Fix plural form. - -2005-03-04 Laszlo Dvornik - - * hu.po: Hungarian translation updated by Gabor Kelemen. - -2005-03-03 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2005-03-03 Baris Cicek - - * tr.po: Updated Turkish Translation by Burcin Donmez - -2005-03-02 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2005-03-02 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-03-01 Ahmad Riza H Nst - - * id.po: Updated Indonesian Translation - -2005-02-28 Kostas Papadimas - - * el.po: Updated Greek translation. - -2005-02-28 Glynn Foster - - * 2.9.92 version marker. - -2005-02-27 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2005-02-24 Arafat Medini - - * ar.po: Updated Arabic translation. - -2005-02-24 Ankit Patel - - * gu.po: Updated Gujarati Translation. - -2005-02-24 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2005-02-23 Rhys Jones - - * cy.po: Updated Welsh translation. - -2005-02-20 Raphael Higino - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2005-02-18 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2005-02-17 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2005-02-17 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2005-02-16 Simos Xenitellis - - * el.po: Updated Greek translation. - -2005-02-15 Maxim Dziumanenko - - * uk.po: Updated Ukrainian translation. - -2005-02-14 Benoît Dejean - - * fr.po: Updated French translation. - -2005-02-14 Priit Laes - - * et.po: Translation updated. - -2005-02-13 Ole Laursen - - * da.po: Updated Danish translation. - -2005-02-12 Marcel Telka - - * sk.po: Updated Slovak translation. - -2005-02-11 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - -2005-02-09 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2005-02-09 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - -2005-02-09 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2005-02-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2005-02-08 Hendrik Richter - - * de.po: Updated German translation. - -2005-02-08 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2005-02-08 Kjartan Maraas - - * nb.po: Update - * no.po: Update - -2005-02-08 Leonid Kanter - - * ru.po: Updated Russian translation - -2005-02-08 Tommi Vainikainen - - * fi.po: Updated Finnish translation. - -2005-02-08 Glynn Foster - - * 2.9.91 version marker - -2005-02-07 Christian Rose - - * sv.po: Updated Swedish translation. - -2005-02-07 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2005-02-07 David Lodge - - * en_GB.po: Updated British translation. - -2005-02-05 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2005-02-05 Kostas Papadimas - - * el.po: Updated Greek translation. - -2005-02-04 Ole Laursen - - * da.po: Updated Danish translation. - -2005-02-03 Tommi Vainikainen - - * fi.po: Updated Finnish translation. - -2005-02-01 Raphael Higino - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2005-01-26 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2005-01-25 Glynn Foster - - * 2.9.90 version marker. - -2005-01-23 Vincent van Adrighem - - * nl.po: Translation updated. - -2005-01-22 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2005-01-18 Priit Laes - - * et.po: Translation updated. - -2005-01-16 Hendrik Richter - - * de.po: Updated German translation. - -2005-01-10 Glynn Foster - - * fr.po: Updated French translation from - Baptiste Mille-Mathias . - -2005-01-01 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2004-12-31 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - -2004-12-28 Leonid Kanter - - * ru.po: Updated Russian translation - -2004-12-28 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-12-25 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-12-22 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-12-22 Kjartan Maraas - - * nb.po: Update - * no.po: Update - -2004-12-21 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2004-12-21 Glynn Foster - - * 2.9.1 version marker. - -2004-12-20 Christian Rose - - * sv.po: Updated Swedish translation. - -2004-12-13 David Lodge - - * en_GB.po: Updated British translation. - -2004-12-12 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - -2004-12-12 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-12-09 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-12-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2004-12-07 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-12-07 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-12-07 Glynn Foster - - * POTFILES.in: Add new files. - -2004-12-04 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - -2004-11-28 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2004-11-27 Simos Xenitellis - - * el.po: Updated Greek translation. - -2004-11-23 Martin Willemoes Hansen - - * da.po: Updated Danish translation. - -2004-11-21 David Lodge - - * en_GB.po: Updated British translation. - -2004-11-16 Hendrik Richter - - * de.po: Updated German translation. - -2004-11-05 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-11-05 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-11-02 Leonid Kanter - - * ru.po: Fixed many typos - -2004-11-01 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-11-01 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-10-31 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-10-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2004-10-19 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-10-15 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2004-10-14 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-10-13 David Lodge - - * en_GB.po: Updated British English translation. - -2004-10-13 Mohammad DAMT - - * id.po: Updated Indonesian translation - -2004-10-12 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-10-11 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-10-11 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-10-11 Glynn Foster - - * POTFILES.in: Add missing files. - -2004-10-09 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-10-03 David Lodge - - * en_GB.po: Updated British English translation. - -2004-10-03 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-10-03 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-09-26 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-09-22 Dmitry G. Mastrukov - - * ru.po: Updated Russian translation - from Russian team . - -2004-09-14 Roozbeh Pournader - - * fa.po: Updated Persian translation by Meelad Zakaria - . - -2004-09-13 Takeshi AiHANA - - * ja.po: Updated Japanese translation. - -2004-09-13 Glynn Foster - - * 2.9.0 version marker. - -2004-09-13 Glynn Foster - - * 2.8.0 version marker. - -2004-09-11 Dafydd Harries - - * cy.po: Updated Welsh translation. - -2004-09-11 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation by GNOME HK Team. - -2004-09-09 Baris Cicek - - * tr.po: Updated Turkish Translation - -2004-09-09 Priit Laes - - * et.po: Translation updated. - -2004-09-08 Arafat Medini - - * ar.po: Updated Arabic translation - -2004-09-08 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-09-07 Mugurel Tudor - - * ro.po: Updated Romanian translation. - -2004-09-06 David Lodge - - * en_GB.po: Updated British translation. - -2004-09-06 Kostas Papadimas - - * el.po: Updated Greek translation. - -2004-09-05 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-09-05 Raphael Higino - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2004-09-02 Hendrik Richter - - * de.po: Updated German translation - -2004-08-30 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2004-08-30 Glynn Foster - - * 2.7.91 version marker. - -2004-08-25 Maxim Dziumanenko - - * uk.po: Updated Ukrainian translation. - -2004-08-23 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2004-08-23 Sami Pesonen - - * fi.po: Updated Finnish translation. - -2004-08-23 Martin Willemoes Hansen - - * da.po: Updated Danish translation - -2004-08-21 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2004-08-21 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2004-08-21 Kjartan Maraas - - * nb.po: Update - * no.po: these - -2004-08-20 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-08-18 Kjartan Maraas - - * nb.po: Add this. - -2004-08-18 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - -2004-08-18 Laszlo Dvornik - - * hu.po: Updated Hungarian translation. - -2004-08-18 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-08-17 Christian Rose - - * sv.po: Updated Swedish translation. - -2004-08-16 Christian Rose - - * bs.po: Added Bosnian translation by - Kemal Sanjta . - -2004-08-17 Metin Amiroff - - * az.po: Translation updated by Mətin Əmirov. - -2004-08-16 Ankit Patel - - * gu.po: Updated Final Gujarati Translation. - -2004-08-15 Francisco Javier F. Serrador - - * es.po: Updated Spanih translation. - -2004-08-13 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2004-08-13 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2004-08-12 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-08-12 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-08-11 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-08-11 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2004-08-11 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2004-08-10 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - -2004-08-07 Marcel Telka - - * sk.po: Updated Slovak translation. - -2004-08-07 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2004-08-06 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2004-08-05 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2004-08-03 Glynn Foster - - * 2.7.90 version marker. - -2004-07-31 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2004-07-30 Kjartan Maraas - - * no.po: Updated Norwegian translation. - -2004-07-29 Laszlo Dvornik - - * hu.po: Updated Hungarian translation. - -2004-07-29 Gareth Owen - - * en_GB.po: Updated British English translation - -2004-07-27 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav "zbrox" Raykov - -2004-07-26 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2004-07-24 Christian Rose - - * sv.po: Updated Swedish translation. - -2004-07-24 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-07-22 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2004-07-21 Guntupalli Karunakar - - * hi.po: Updated Hindi translation. - -2004-07-20 Alexander Winston - - * en_CA.po: Updated Canadian English translation. - -2004-07-20 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2004-07-19 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-07-19 Glynn Foster - - * 2.7.0 version marker. - -2004-07-08 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - -2004-06-28 Iñaki Larrañaga - - * eu.po: Updated Basque translation. - -2004-06-28 Laurent Dhima - - * sq.po: Translation updated. - -2004-06-26 John C Barstow - - * mi.po: Translation added. - -2004-05-27 Mohammad DAMT - - * id.po: Added Indonesian translation by Ahmad Riza H Nst - -2004-05-26 Alexander Shopov - - * bg.po: Added Bulgarian translation - by Rostislav Raykov - -2004-04-29 Glynn Foster - - * 2.6.2 version marker. - -2004-04-27 Vincent van Adrighem - - * nl.po: Translation updated. - -2004-04-26 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2004-04-26 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - -2004-04-20 Glynn Foster - - * 2.6.1 version marker. - -2004-04-13 Yogeesh MB - - * kn.po: Added Kannada translations. - -2004-04-10 Guntupalli Karunakar - - * gu.po: Added Gujurati translation by - Gujarati Team . - -2004-03-30 Adam Weinberger - - * en_CA.po: Added Canadian English translation. - -2004-03-28 Jesus Bravo Alvarez - - * gl.po: Added Galician Translation from - David Fernandez Vaamonde - -2004-03-22 Glynn Foster - - * 2.6.0 version marker - -2004-03-21 Mugurel Tudor - - * ro.po: Added Romanian translation - -2004-03-19 Andras Timar - - * hu.po: Updated Hungarian translation. - -2004-04-19 Telsa Gwynne - - * cy.po: Updated Welsh translation from Dafydd Tomos. - -2004-03-18 Kostas Papadimas - - * el.po: Updated Greek translation. - -2004-03-18 Nikos Charonitakis - - * el.po: Updated Greek translation. - -2004-03-16 Alexander Winston - - * en_CA.po: Added Canadian English translation. - -2004-03-15 Glynn Foster - - * 2.5.91 version marker - -2004-03-06 Mətin Əmirov - - * az.po: Translation updated. - -2004-03-07 Glynn Foster - - * 2.5.90 version marker - -2004-03-04 Guntupalli Karunakar - - * pa.po: Added Punjabi translation by - Amanpreet Singh Alam . - -2004-02-27 Priit Laes - - * et.po: Translation updated. - -2004-02-23 Kostas Papadimas - - * el.po: Updated Greek translation. - -2004-02-23 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-02-22 Paisa Seeluangsawat - - * th.po: Updated Thai translation. - -2004-02-22 Jarkko Ranta - - * fi.po: Updated Finnish translation. - -2004-02-21 Paisa Seeluangsawat - - * th.po: Added Thai translation by Supranee Thirawatthanasuk - -2004-02-14 Danilo Šegan - - * sr.po, sr@Latn.po: Serbian translation reviewed by Aleksandar - Urošević. - -2004-02-12 Arafat Medini - - * ar.po: Updated Arabic translation. - -2004-02-07 Robert Sedak - - * hr.po: Updated Croatian translation. - -2004-02-08 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2004-02-07 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2004-02-03 Glynn Foster - - * 2.5.2 version marker - -2004-02-02 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-01-31 Mətin Əmirov - - * az.po: Translation updated. - -2004-01-23 Funda Wang - - * zh_CN.po: Updated Simplified Chinese translation. - -2004-01-22 Andras Timar - - * hu.po: Updated Hungarian translation. - -2004-01-20 Åsmund Skjæveland - - * nn.po: Added Norwegian Nynorsk translation. - -2004-01-15 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2004-01-13 Kjartan Maraas - - * no.po: Updated Norwegian translation. - -2004-01-05 Christian Neumair - - * de.po: Updated German translation. - -2004-01-05 Roozbeh Pournader - - * fa.po: Added Persian translation. - -2004-01-04 Christophe Merlet - - * fr.po: Updated French translation. - -2004-01-03 Robert Sedak - - * hr.po: Updated Croatian translation. - -2004-01-03 Sanlig Badral - - * mn.po: Updated Mongolian translation. - -2004-01-02 Duarte Loreto - - * pt.po: Revised Portuguese translation. - -2003-12-30 Glynn Foster - - * 2.5.1 version marker - -2003-12-30 Glynn Foster - - * 1.8 version marker - -2003-12-28 Christian Rose - - * ne.po: Added Nepali translation by - Dhurba Gnawali . - -2003-12-22 Laurent Dhima - - * sq.po: Updated Albanian translation. - -2003-12-20 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2003-12-20 Arafat Medini - - * ar.po: Added Arabic translation - -2003-12-19 Marcel Telka - - * sk.po: Updated Slovak translation. - -2003-12-14 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - -2003-12-11 Tõivo Leedjärv - - * et.po: Added Estonian translation - by Priit Laes . - -2003-12-06 Iñaki Larrañaga - - * eu.po: Updated Basque translation. - -2003-12-04 Sanlig Badral - - * mn.po: Added Mongolian translation by Dulmandakh. - -2003-12-04 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - -2003-12-04 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - -2003-12-04 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - -2003-12-02 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation by - Tomas Kuliavas . - -2003-11-22 Christophe Merlet - - * fr.po: Updated French translation. - -2003-11-19 Dafydd Harries - - * cy.po: Updated Welsh translation. - -2003-11-17 Ole Laursen - - * da.po: Updated Danish translation. - -2003-11-17 Jordi Mallch - - * ca.po: Updated Catalan translation. - -2003-11-16 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - -2003-11-15 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2003-11-13 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-11-12 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2003-11-12 Artur Flinta - - * pl.po: Updated Polish translation. - -2003-11-12 Glynn Foster - - * 1.7 version marker - -2003-11-12 Miloslav Trmac - - * cs.po: updated Czech translation. - -2003-11-08 Glynn Foster - - * POTFILES.in: Add missing file. - -2003-10-29 Jordi Mallach - - * ca.po: Typo fixes by Jordi Mas . - -2003-10-18 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2003-10-13 Sami Pesonen - - * fi.po: Updated Finnish translation by - Johanna Makkonen . - -2003-10-09 Guntupalli Karunakar - - * hi.po: Updated hindi translation by Anand. - -2003-10-06 Žygimantas Beručka - - * lt.po: Added Lithuanian translation by Tomas Kuliavas - . - -2003-09-30 Christian Rose - - * eu.po: Added Basque translation by - Alberto Fernández Benito . - -2003-09-25 Andras Timar - - * hu.po: Updated Hungarian translation. - -2003-09-17 Fatih Demir - - * ta.po: Committed new Tamil translation by Dinesh. - -2003-09-10 Pablo Saratxaga - - * vi.po: Updated Vietnamese file - * fi.po,ru.po: fixed headers - -2003-09-08 Glynn Foster - - * 1.6 version marker - -2003-09-08 Marcel Telka - - * sk.po: Added Slovak translation. - -2003-09-07 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2003-09-05 Taneem Ahmed - - * bn.po: Added Bangla translation by Sayamindu - of Ankur group . - -2003-09-04 Jarkko Ranta - - * fi.po: Initial release of the Finnish translation. - -2003-09-01 Andras Timar - - * hu.po: Updated Hungarian translation. - -2003-08-28 Pablo Gonzalo del Campo - - * es.po: Revision of Spanish translation by - Francisco Javier F. Serrador . - -2003-08-26 Dafydd Harries - - * cy.po: Updated Welsh translation. - -2003-08-25 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - -2003-08-24 Glynn Foster - - * 1.5 version marker - -2003-08-24 Changwoo Ryu - - * ko.po: Updated Korean translation. - -2003-08-22 Samúel Jón Gunnarsson - - * is.po: Added Icelandic translation. - -2003-08-22 Paul Duffy - - * ga.po: Added Irish Translation. - -2003-08-21 Kjartan Maraas - - * no.po: Update Norwegian translation. - -2003-08-18 Metin Amiroff - - * az.po: Updated Azerbaijani translation. - -2003-08-18 Dmitry G. Mastrukov - - * ru.po: Added Russian translation - from Russian team . - -2003-08-17 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - -2003-08-13 Guntupalli Karunakar - - * hi.po: Added Hindi translation. - -2003-08-08 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - -2003-08-07 Glynn Foster - - * 1.4 version marker - -2003-08-06 Metin Amiroff - - * az.po: Added Azerbaijani translation. - -2003-07-31 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - -2003-07-30 Dmitry G. Mastrukov - - * be.po: Added Belarusian translation - from Belarusian team . - -2003-07-26 Wang Jian - - * zh_CN.po: Added Simplified Chinese translation by - Funda Wang . - -2003-07-19 Christophe Merlet - - * fr.po: Added French translation from - Baptiste Mille-Mathias . - -2003-07-19 Christian Neumair - - * de.po: Updated German translation. - -2003-07-18 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-07-14 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation. - -2003-07-13 Kostas Papadimas - - * el.po: Updated Greek translation - -2003-07-09 Hasbullah Bin Pit - - * ms.po: Added Malay translation. - -2003-07-09 Andras Timar - - * hu.po: Added Hungarian translation. - Autotranslate using the compedium feature of gettext. - -2003-07-09 Dafydd Harries - - * cy.po: Added Welsh translation. - -2003-07-01 Laurent Dhima - - * sq.po: Added Albanian translation. - -2003-06-30 Alessio Frusciante - - * it.po: Updated Italian translation by - Stefano Canepa . - -2003-06-27 Artur Flinta - - * pl.po: Updated Polish translation. - -2003-06-26 Ole Laursen - - * da.po: Updated Danish translation. - -2003-06-26 Duarte Loreto - - * pt,po: Updated Portuguese translation. - -2003-06-23 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2003-06-23 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - -2003-06-22 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2003-06-22 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-06-21 Mike Newman - - * en_GB.po: British English translation updated. - -2003-06-21 Mike Newman - - * en_GB.po: British English translation added. - -2003-06-15 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-06-15 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-06-13 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2003-06-13 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2003-06-12 Christian Neumair - - * de.po: Updated German translation. - -2003-06-11 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-06-07 Kjartan Maraas - - * no.po: Updated Norwegian translation. - -2003-06-04 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-06-04 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2003-06-03 Changwoo Ryu - - * ko.po: Added Korean translation from Young-Ho - Cha . - -2003-06-02 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-05-30 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-05-29 Glynn Foster - - * 1.3 version marker - -2003-05-19 Glynn Foster - - * 1.2 version marker - -2003-05-17 Jordi Mallach - - * ca.po: Updated Catalan translation. - -2003-05-17 Christian Neumair - - * de.po: Updated German translation. - -2003-05-13 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation. - -2003-05-12 Zbigniew Chyla - - * pl.po: Updated Polish translation by - GNOME PL Team . - -2003-05-11 Ole Laursen - - * da.po: Fixed some strings in the Danish translation. - -2003-05-08 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation. - -2003-05-08 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2003-05-07 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-05-07 Ole Laursen - - * da.po: Updated Danish translation. - -2003-05-07 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2003-05-07 KAMAGASAKO Masatoshi - - * ja.po: Update Japanese translation. - -2003-05-06 Danilo Šegan - - * sr.po, sr@Latn.po: Added Serbian translation by - http://Prevod.org/. - -2003-05-05 Glynn Foster - - * 1.1 version marker - -2003-05-05 KAMAGASAKO Masatoshi - - * ja.po: Updated Japanese translation. - -2003-04-26 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation - from Alexandre Folle de Menezes . - -2003-04-23 Christian Neumair - - * de.po: Updated German translation. - -2003-04-22 Zbigniew Chyla - - * pl.po: Updated Polish translation by - GNOME PL Team . - -2003-04-22 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-04-16 Jordi Mallach - - * ca.po: Added Catalan translation. - -2003-04-15 Ole Laursen - - * da.po: Updated Danish translation. - -2003-04-15 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation. - -2003-04-14 Miloslav Trmac - - * cs.po: Updated Czech translation. - -2003-04-14 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-04-13 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2003-04-08 Alessio Frusciante - - * it.po: Added Italian translation by - Stefano Canepa . - -2003-04-06 Ole Laursen - - * da.po: Updated Danish translation. - -2003-03-28 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-03-27 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation - from Alexandre Folle de Menezes . - -2003-03-21 Takeshi AIHANA - - * ja.po: Updated Japanese translation by - KAMAGASAKO Masatoshi . - -2003-03-17 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - -2003-03-17 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation. - -2003-03-14 Zbigniew Chyla - - * pl.po: Updated Polish translation by - GNOME PL Team . - -2003-03-12 Christian Neumair - - * de.po: Updated German translation. - -2003-03-11 Duarte Loreto - - * pt.po: Updated Portuguese translation. - -2003-03-11 Miloslav Trmac - - * cs.po: "Updated" Czech translation. - -2003-03-08 Evandro Fernandes Giovanini - - * pt_BR.po: Added Brazilian Portuguese translation from - Alexandre Folle de Menezes . - -2003-03-05 Kostas Papadimas - - * el.po: Added Greek translation - -2003-03-03 Zbigniew Chyla - - * pl.po: Added Polish translation by - GNOME PL Team . - -2003-03-01 Duarte Loreto - - * pt.po: Added Portuguese translation. - -2003-02-28 Takeshi AIHANA - - * ja.po: Added Japanese translation by - by KAMAGASAKO Masatoshi . - -2003-02-25 Miloslav Trmac - - * cs.po: Added Czech translation. - -2003-02-21 Glynn Foster - - * 1.0 version marker - -2003-02-19 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-02-12 Yuriy Syrota - - * uk.po: Updated Ukrainian translation. - -2003-02-10 Christian Rose - - * sv.po: Updated Swedish translation. - -2003-02-09 Christian Neumair - - * de.po: Added German translation. - -2003-02-07 Abel Cheung - - * zh_TW.po: Updated traditional Chinese translation. - -2003-02-05 Pablo Saratxaga - - * vi.po: Updated Vietnamese file - -2003-02-03 Daniel Yacob - - * am.po: Updated Amharic translation. - -2003-02-02 Daniel Yacob - - * am.po: Added Amharic translation. - -2003-02-01 Pablo Gonzalo del Campo - - * es.po: Added Spanish translation. - -2003-02-01 Ole Laursen - - * da.po: Updated Danish translation. - -2003-01-30 Pablo Saratxaga - - * vi.po: Added Vietnamese file - -2003-01-29 Vincent van Adrighem - - * nl.po: Dutch translation updated. - -2003-01-26 Kjartan Maraas - - * no.po: Added Norwegian translation. - -2003-01-24 Vincent van Adrighem - - * nl.po: Dutch translation added. - -2003-01-24 Kjartan Maraas - - * no.po: Added Norwegian translation. - -2003-01-23 Pablo Gonzalo del Campo - - * es.po: Added Spanish translation. - -2003-01-22 Ole Laursen - - * da.po: Updated Danish translation. - -2003-01-21 Abel Cheung - - * zh_TW.po: New traditional Chinese translation. - -2003-01-20 Christian Rose - - * sv.po: Added Swedish translation. - -2003-01-20 Christian Rose - - * .cvsignore: Added more entries. - -2003-01-19 Ole Laursen - - * da.po: Updated Danish translation. - -2003-01-19 Ole Laursen - - * da.po: Added Danish translation. - -2003-01-19 Glynn Foster - - * POTFILES.in, POTFILES.skip: Update. Thanks to Christian - for sanity checking. diff --git a/po/LINGUAS b/po/LINGUAS deleted file mode 100644 index 5faf7e6..0000000 --- a/po/LINGUAS +++ /dev/null @@ -1,94 +0,0 @@ -# zenity translations -# -# please keep this list sorted alphabetically -# -af -am -ar -as -ast -az -be -be@latin -bg -bn -bn_IN -bs -ca -ca@valencia -cs -cy -da -de -dz -el -en_CA -en_GB -en@shaw -eo -es -et -eu -fa -fi -fr -fur -ga -gl -gu -he -hi -hr -hu -id -is -it -ja -ka -kk -kn -ko -ku -lt -lv -mai -mg -mi -mk -ml -mn -mr -ms -nb -ne -nl -nn -oc -or -pa -pl -ps -pt -pt_BR -ro -ru -rw -si -sk -sl -sq -sr -sr@latin -sv -ta -te -tg -th -tr -ug -uk -vi -xh -zh_CN -zh_HK -zh_TW diff --git a/po/POTFILES.in b/po/POTFILES.in deleted file mode 100644 index 3488a95..0000000 --- a/po/POTFILES.in +++ /dev/null @@ -1,19 +0,0 @@ -# List of source files containing translatable strings. -# Please keep this file sorted alphabetically. -src/about.c -src/calendar.c -src/color.c -src/entry.c -src/fileselection.c -src/forms.c -src/main.c -src/msg.c -src/notification.c -src/option.c -src/password.c -src/progress.c -src/scale.c -src/text.c -src/tree.c -src/util.c -src/zenity.ui diff --git a/po/af.po b/po/af.po deleted file mode 100644 index b3db0ec..0000000 --- a/po/af.po +++ /dev/null @@ -1,705 +0,0 @@ -# Afrikaans translation for zenity. -# Copyright (C) 2011 zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# F Wolff , 2011. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity" -"&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2011-07-16 11:29+0000\n" -"PO-Revision-Date: 2011-07-17 12:27+0200\n" -"Last-Translator: F Wolff \n" -"Language-Team: translate-discuss-af@lists.sourceforge.net\n" -"Language: af\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.7.0\n" -"X-Project-Style: gnome\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "Friedel Wolff" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "Zenity-kennisgewing" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "Tik u wagwoord" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "Gebruikernaam:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "Wagwoord:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimum waarde moet groter wees as die minimum waarde.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Waarde buite omvang.\n" - -#: ../src/tree.c:324 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Geen kolomtitels gespesifiseer vir die lysdialoog nie.\n" - -#: ../src/tree.c:330 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Gebruik slegs een lysdialoogtipe.\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "Vormsdialoog" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "Voeg 'n nuwe inskrywing by" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "Pas die skaalwaarde aan" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "Alle bywerkings is voltooid." - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "'n Fout het voorgekom." - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Wil u definitief voortgaan?" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "K_alender:" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "Kalenderkeuse" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "Fout" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "Inligting" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "Vordering" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "Vraag" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "Loop tans..." - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "Kies 'n datum hier onder." - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "Kies items vanaf die lys" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "Kies items vanaf die lys hier onder." - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "Waarskuwing" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "_Tik nuwe teks:" - -#: ../src/option.c:146 -msgid "Set the dialog title" -msgstr "" - -#: ../src/option.c:147 -msgid "TITLE" -msgstr "" - -#: ../src/option.c:155 -msgid "Set the window icon" -msgstr "" - -#: ../src/option.c:156 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:164 -msgid "Set the width" -msgstr "" - -#: ../src/option.c:165 -msgid "WIDTH" -msgstr "" - -#: ../src/option.c:173 -msgid "Set the height" -msgstr "" - -#: ../src/option.c:174 -msgid "HEIGHT" -msgstr "" - -#: ../src/option.c:182 -msgid "Set dialog timeout in seconds" -msgstr "" - -#. Timeout for closing the dialog -#: ../src/option.c:184 -msgid "TIMEOUT" -msgstr "" - -#: ../src/option.c:198 -msgid "Display calendar dialog" -msgstr "" - -#: ../src/option.c:207 ../src/option.c:267 ../src/option.c:310 -#: ../src/option.c:351 ../src/option.c:471 ../src/option.c:613 -#: ../src/option.c:685 ../src/option.c:813 ../src/option.c:854 -#: ../src/option.c:959 -msgid "Set the dialog text" -msgstr "" - -#: ../src/option.c:208 ../src/option.c:268 ../src/option.c:277 -#: ../src/option.c:311 ../src/option.c:352 ../src/option.c:472 -#: ../src/option.c:579 ../src/option.c:614 ../src/option.c:686 -#: ../src/option.c:695 ../src/option.c:704 ../src/option.c:763 -#: ../src/option.c:772 ../src/option.c:781 ../src/option.c:790 -#: ../src/option.c:814 ../src/option.c:855 ../src/option.c:960 -msgid "TEXT" -msgstr "" - -#: ../src/option.c:216 -msgid "Set the calendar day" -msgstr "" - -#: ../src/option.c:217 -msgid "DAY" -msgstr "" - -#: ../src/option.c:225 -msgid "Set the calendar month" -msgstr "" - -#: ../src/option.c:226 -msgid "MONTH" -msgstr "" - -#: ../src/option.c:234 -msgid "Set the calendar year" -msgstr "" - -#: ../src/option.c:235 -msgid "YEAR" -msgstr "" - -#: ../src/option.c:243 ../src/option.c:977 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:244 ../src/option.c:978 -msgid "PATTERN" -msgstr "" - -#: ../src/option.c:258 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:276 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:285 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:301 -msgid "Display error dialog" -msgstr "" - -#: ../src/option.c:319 ../src/option.c:360 ../src/option.c:712 -#: ../src/option.c:822 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:328 ../src/option.c:369 ../src/option.c:721 -#: ../src/option.c:831 -msgid "Do not enable pango markup" -msgstr "" - -#: ../src/option.c:342 -msgid "Display info dialog" -msgstr "" - -#: ../src/option.c:383 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:392 -msgid "Set the filename" -msgstr "" - -#: ../src/option.c:393 ../src/option.c:745 -msgid "FILENAME" -msgstr "" - -#: ../src/option.c:401 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:410 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:419 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:428 ../src/option.c:507 ../src/option.c:968 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:429 ../src/option.c:508 ../src/option.c:969 -msgid "SEPARATOR" -msgstr "" - -#: ../src/option.c:437 -msgid "Confirm file selection if filename already exists" -msgstr "" - -#: ../src/option.c:446 -msgid "Sets a filename filter" -msgstr "" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:448 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "" - -#: ../src/option.c:462 -msgid "Display list dialog" -msgstr "" - -#: ../src/option.c:480 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:481 -msgid "COLUMN" -msgstr "" - -#: ../src/option.c:489 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:498 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:516 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:525 ../src/option.c:753 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:534 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#. Column index number to print out on a list dialog -#: ../src/option.c:536 ../src/option.c:545 -msgid "NUMBER" -msgstr "" - -#: ../src/option.c:544 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:553 -msgid "Hides the column headers" -msgstr "" - -#: ../src/option.c:569 -msgid "Display notification" -msgstr "" - -#: ../src/option.c:578 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:587 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:604 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:622 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:623 -msgid "PERCENTAGE" -msgstr "" - -#: ../src/option.c:631 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:641 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:651 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "" - -#: ../src/option.c:661 -#, no-c-format -msgid "Hide Cancel button" -msgstr "" - -#: ../src/option.c:676 -msgid "Display question dialog" -msgstr "" - -#: ../src/option.c:694 ../src/option.c:771 -msgid "Sets the label of the Ok button" -msgstr "" - -#: ../src/option.c:703 ../src/option.c:780 -msgid "Sets the label of the Cancel button" -msgstr "" - -#: ../src/option.c:735 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:744 -msgid "Open file" -msgstr "" - -#: ../src/option.c:762 -msgid "Set the text font" -msgstr "" - -#: ../src/option.c:789 -msgid "Enable a I read and agree checkbox" -msgstr "" - -#: ../src/option.c:804 -msgid "Display warning dialog" -msgstr "" - -#: ../src/option.c:845 -msgid "Display scale dialog" -msgstr "" - -#: ../src/option.c:863 -msgid "Set initial value" -msgstr "" - -#: ../src/option.c:864 ../src/option.c:873 ../src/option.c:882 -#: ../src/option.c:891 ../src/option.c:1026 -msgid "VALUE" -msgstr "" - -#: ../src/option.c:872 -msgid "Set minimum value" -msgstr "" - -#: ../src/option.c:881 -msgid "Set maximum value" -msgstr "" - -#: ../src/option.c:890 -msgid "Set step size" -msgstr "" - -#: ../src/option.c:899 -msgid "Print partial values" -msgstr "" - -#: ../src/option.c:908 -msgid "Hide value" -msgstr "" - -#: ../src/option.c:923 -msgid "Display forms dialog" -msgstr "" - -#: ../src/option.c:932 -msgid "Add a new Entry in forms dialog" -msgstr "" - -#: ../src/option.c:933 ../src/option.c:942 -msgid "Field name" -msgstr "" - -#: ../src/option.c:941 -msgid "Add a new Password Entry in forms dialog" -msgstr "" - -#: ../src/option.c:950 -msgid "Add a new Calendar in forms dialog" -msgstr "" - -#: ../src/option.c:951 -msgid "Calendar field name" -msgstr "" - -#: ../src/option.c:992 -msgid "Display password dialog" -msgstr "" - -#: ../src/option.c:1001 -msgid "Display the username option" -msgstr "" - -#: ../src/option.c:1016 -msgid "Display color selection dialog" -msgstr "" - -#: ../src/option.c:1025 -msgid "Set the color" -msgstr "" - -#: ../src/option.c:1034 -msgid "Show the palette" -msgstr "" - -#: ../src/option.c:1049 -msgid "About zenity" -msgstr "" - -#: ../src/option.c:1058 -msgid "Print version" -msgstr "" - -#: ../src/option.c:1881 -msgid "General options" -msgstr "" - -#: ../src/option.c:1882 -msgid "Show general options" -msgstr "" - -#: ../src/option.c:1892 -msgid "Calendar options" -msgstr "" - -#: ../src/option.c:1893 -msgid "Show calendar options" -msgstr "" - -#: ../src/option.c:1903 -msgid "Text entry options" -msgstr "" - -#: ../src/option.c:1904 -msgid "Show text entry options" -msgstr "" - -#: ../src/option.c:1914 -msgid "Error options" -msgstr "" - -#: ../src/option.c:1915 -msgid "Show error options" -msgstr "" - -#: ../src/option.c:1925 -msgid "Info options" -msgstr "" - -#: ../src/option.c:1926 -msgid "Show info options" -msgstr "" - -#: ../src/option.c:1936 -msgid "File selection options" -msgstr "" - -#: ../src/option.c:1937 -msgid "Show file selection options" -msgstr "" - -#: ../src/option.c:1947 -msgid "List options" -msgstr "" - -#: ../src/option.c:1948 -msgid "Show list options" -msgstr "" - -#: ../src/option.c:1959 -msgid "Notification icon options" -msgstr "" - -#: ../src/option.c:1960 -msgid "Show notification icon options" -msgstr "" - -#: ../src/option.c:1971 -msgid "Progress options" -msgstr "" - -#: ../src/option.c:1972 -msgid "Show progress options" -msgstr "" - -#: ../src/option.c:1982 -msgid "Question options" -msgstr "" - -#: ../src/option.c:1983 -msgid "Show question options" -msgstr "" - -#: ../src/option.c:1993 -msgid "Warning options" -msgstr "" - -#: ../src/option.c:1994 -msgid "Show warning options" -msgstr "" - -#: ../src/option.c:2004 -msgid "Scale options" -msgstr "" - -#: ../src/option.c:2005 -msgid "Show scale options" -msgstr "" - -#: ../src/option.c:2015 -msgid "Text information options" -msgstr "" - -#: ../src/option.c:2016 -msgid "Show text information options" -msgstr "" - -#: ../src/option.c:2026 -msgid "Color selection options" -msgstr "" - -#: ../src/option.c:2027 -msgid "Show color selection options" -msgstr "" - -#: ../src/option.c:2037 -msgid "Password dialog options" -msgstr "" - -#: ../src/option.c:2038 -msgid "Show password dialog options" -msgstr "" - -#: ../src/option.c:2048 -msgid "Forms dialog options" -msgstr "" - -#: ../src/option.c:2049 -msgid "Show forms dialog options" -msgstr "" - -#: ../src/option.c:2059 -msgid "Miscellaneous options" -msgstr "" - -#: ../src/option.c:2060 -msgid "Show miscellaneous options" -msgstr "" - -#: ../src/option.c:2085 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:2089 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:2093 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/am.po b/po/am.po deleted file mode 100644 index d254433..0000000 --- a/po/am.po +++ /dev/null @@ -1,497 +0,0 @@ -# Translations into the Amharic Language. -# Copyright (C) 2002 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Ge'ez Frontier Foundation , 2002. -# -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2003-02-03 10:13+EDT\n" -"Last-Translator: Ge'ez Frontier Foundation \n" -"Language-Team: Amharic \n" -"Language: am\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -#, fuzzy -msgid "translator-credits" -msgstr "ዘግዕዝ Frontier Foundation" - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "(ም) 2003 Sun Microsystems" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "ተሳታፊዎች" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "ፀሐፊው" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "ተርጓሚ" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -msgid "Zenity notification" -msgstr "" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "ስለ ዘኒቲ" - -#: ../src/zenity.glade.h:3 -msgid "Add a new entry" -msgstr "አዲስ ዕቃ ጨምር" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "" - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "" - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "ቀን መቁጠሪያ፦ (_A)" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "የቀን መቁጠሪያ ምርጫ" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "ስህተት" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "መረጃ (_I)" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "ይሻሻል" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "ጥያቄ" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "በሥራ ላይ..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "ከስር ቀን ምረጡ።" - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "ፋይል ምረጡ" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "ከዝርዝር ዕቃዎች ምረጡ" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "ከስር ዝርዝር ዕቃዎች ምረጡ።" - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "የጽሑፍ ዕይታ" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "ማስጠንቀቂያ" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "ተሳታፊዎች (_C)" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "አዲስ ጽሑፍ አስገቡ፦ (_E)" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "አርእስት" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "የቁልፉ መደብ" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "የፋይል ስም" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:430 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -msgid "Display notification" -msgstr "" - -#: ../src/option.c:481 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "ፋይል ክፈት" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "ስለ ዘኒቲ" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "አጠቃላይ መርጫዎች" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "አጠቃላይ መርጫዎች" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "የቀን መቁጠሪያ መርጫዎች" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "የቀን መቁጠሪያ መርጫዎች" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "የጽሑፍ መርጫዎች" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "የስህተት መርጫዎች" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "የስህተት መርጫዎች" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "የመረጃ መርጫዎች" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "የመረጃ መርጫዎች" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "የዝርዝር መርጫዎች" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "የዝርዝር መርጫዎች" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "የስህተት መርጫዎች" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "የማስጠንቀቂያ መርጫዎች" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "የተለያየ መርጫዎች" - -#: ../src/option.c:1392 -#, fuzzy -msgid "Show miscellaneous options" -msgstr "የተለያየ መርጫዎች" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/ar.po b/po/ar.po deleted file mode 100644 index 4bfa211..0000000 --- a/po/ar.po +++ /dev/null @@ -1,716 +0,0 @@ -# translation of zenity.HEAD.po to Arabic -# This file is distributed under the same license as the zenity package. -# Copyright (C) 2003 THE PACKAGE'S COPYRIGHT HOLDER. -# Hassan Abdin , 2003. -# Hafid BENHADRIA , 2003. -# Abdulaziz Al-Arfaj , 2004, 2005. -# Djihed Afifi , 2006. -# Khaled Hosny , 2006, 2007, 2008, 2010, 2011. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-05 19:10+0200\n" -"PO-Revision-Date: 2011-02-05 19:10+0300\n" -"Last-Translator: Khaled Hosny \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Virtaal 0.6.1\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"هذه برمجية البرنامج حر؛ بإمكانك إعادة توزيعها و/أو تعديلها تحت شروط الرخصة " -"العمومية الصغرى لجنو والتي نشرتها منظمة البرمجيات الحرة؛ سواء الإصدارة 2 من " -"الرخصة أو أي إصدارة بعدها حسب رغبتك.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"يوزّع هذا البرنامج على أمل أن يكون مفيدًا لمن يستخدمه دون أدنى مسؤولية؛ ولا " -"حتى أي ضمان يضمن صلاحية العرض في السوق أو توافقه مع أي استخدام محدد. يمكنك " -"مراجعة الرخصة العمومية الصغرى لجنو لمزيد من التفاصيل.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"من المفترض أن تكون قد استلمت نسخة من رخصة جنو العمومية الصغرى مع هذا " -"البرنامج؛ في حال عدم استلامك لذلك، يمكنك مكاتبة:\n" -"Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"فريق عربآيز للترجمة http://www.arabeyes.org :\n" -"عرفات المديني\t\n" -"جهاد عفيفي\t\n" -"خالد حسني\t" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "اعرض صناديق حوار من مخطوطات الصدفة" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"يجب عليك تحديد نوع الحوار. انظر 'zenity --help' لأجل مزيد من التَّفاصيل\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "تعذّر تحليل الأمر من الدخل القياسي ‪(stdin)‬‬\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "تعذّر تحليل الرسالة من الدخل القياسي ‪(stdin)‬‬\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "تذكير زَنِتي" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "اكتب كلمة السر" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "اسم المستخدم:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "كلمة السر:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "يجب أن تكون القيمة العظمى أعلى من القيمة الصغرى.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "قيمة خارج المدى.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "لم يتم تحديد عناوين الأعمدة من أجل حوار القائمة.\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "يجب أن تستعمل نوع واحد لحوار القائمة.\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "حوار استمارات" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "أضف مُدْخَلا جديد" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "اضبط قيمة المقياس" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "تمت كافة التَّحديثات." - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "طرأ خطأ." - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "أمتأكد أنَّك تريد المُضي قدمًا؟" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "ت_قويم:" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "اختيار التقويم" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "خطأ" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "معلومات" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "تقدُّم" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "سؤال" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "يعمل..." - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "اختر تاريخًا من الأسفل." - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "اختر عناصر من القائمة" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "اختر عناصر من القائمة السُّفليَّة." - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "عرض النَّص" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "تحذير" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "أ_دخل نصا جديدا:" - -#: ../src/option.c:144 -msgid "Set the dialog title" -msgstr "حدد عنوان صندوق الحوار" - -#: ../src/option.c:145 -msgid "TITLE" -msgstr "TITLE" - -#: ../src/option.c:153 -msgid "Set the window icon" -msgstr "حدد أيقونة النافذة" - -#: ../src/option.c:154 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:162 -msgid "Set the width" -msgstr "حدد العرض" - -#: ../src/option.c:163 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:171 -msgid "Set the height" -msgstr "حدد الارتفاع" - -#: ../src/option.c:172 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:180 -msgid "Set dialog timeout in seconds" -msgstr "حدد فترة ظهور الحوار بالثواني" - -#. Timeout for closing the dialog -#: ../src/option.c:182 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:196 -msgid "Display calendar dialog" -msgstr "اعرض صندوق حوار التقويم" - -#: ../src/option.c:205 ../src/option.c:265 ../src/option.c:308 -#: ../src/option.c:341 ../src/option.c:453 ../src/option.c:595 -#: ../src/option.c:667 ../src/option.c:760 ../src/option.c:793 -#: ../src/option.c:898 -msgid "Set the dialog text" -msgstr "حدد نص صندوق الحوار" - -#: ../src/option.c:206 ../src/option.c:266 ../src/option.c:275 -#: ../src/option.c:309 ../src/option.c:342 ../src/option.c:454 -#: ../src/option.c:561 ../src/option.c:596 ../src/option.c:668 -#: ../src/option.c:677 ../src/option.c:686 ../src/option.c:737 -#: ../src/option.c:761 ../src/option.c:794 ../src/option.c:899 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:214 -msgid "Set the calendar day" -msgstr "حدّد يوم التقويم" - -#: ../src/option.c:215 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:223 -msgid "Set the calendar month" -msgstr "حدد شهر التقويم" - -#: ../src/option.c:224 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:232 -msgid "Set the calendar year" -msgstr "حدد سنة التقويم" - -#: ../src/option.c:233 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:241 ../src/option.c:916 -msgid "Set the format for the returned date" -msgstr "حدد الصيغة للتاريخ العائد" - -#: ../src/option.c:242 ../src/option.c:917 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:256 -msgid "Display text entry dialog" -msgstr "اعرض صندوق إدخال نص" - -#: ../src/option.c:274 -msgid "Set the entry text" -msgstr "حدّد نص المُدْخَل" - -#: ../src/option.c:283 -msgid "Hide the entry text" -msgstr "اخفِ مُدْخَلة النص" - -#: ../src/option.c:299 -msgid "Display error dialog" -msgstr "اعرض صندوق حوار الخطأ" - -#: ../src/option.c:317 ../src/option.c:350 ../src/option.c:694 -#: ../src/option.c:769 -msgid "Do not enable text wrapping" -msgstr "لا تفعّل لف السّطور" - -#: ../src/option.c:332 -msgid "Display info dialog" -msgstr "اعرض صندوق حوار معلومات" - -#: ../src/option.c:365 -msgid "Display file selection dialog" -msgstr "اعرض صندوق حوار اختيار ملف" - -#: ../src/option.c:374 -msgid "Set the filename" -msgstr "حدد اسم الملف" - -#: ../src/option.c:375 ../src/option.c:719 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:383 -msgid "Allow multiple files to be selected" -msgstr "اسمح باختيار عدة ملفات" - -#: ../src/option.c:392 -msgid "Activate directory-only selection" -msgstr "نشّط اختيار الأدلة فقط" - -#: ../src/option.c:401 -msgid "Activate save mode" -msgstr "نشّط نمط الحفظ" - -#: ../src/option.c:410 ../src/option.c:489 ../src/option.c:907 -msgid "Set output separator character" -msgstr "حدد الرمز الفاصل للمُخْرَج" - -#: ../src/option.c:411 ../src/option.c:490 ../src/option.c:908 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:419 -msgid "Confirm file selection if filename already exists" -msgstr "أكّد اختيار الملف إذا كان موجودا" - -#: ../src/option.c:428 -msgid "Sets a filename filter" -msgstr "يضبط مرشح اسم الملف" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:430 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:444 -msgid "Display list dialog" -msgstr "اعرض صندوق حوار قائمة" - -#: ../src/option.c:462 -msgid "Set the column header" -msgstr "حدد ترويسة العمود" - -#: ../src/option.c:463 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:471 -msgid "Use check boxes for first column" -msgstr "استخدم خانات اختيار لأجل العمود الأول" - -#: ../src/option.c:480 -msgid "Use radio buttons for first column" -msgstr "استخدم أزرار راديو لأجل العمود الأول" - -#: ../src/option.c:498 -msgid "Allow multiple rows to be selected" -msgstr "اسمح باختيار عدة صفوف" - -#: ../src/option.c:507 ../src/option.c:727 -msgid "Allow changes to text" -msgstr "اسمح بالتَّغيير في النَّص" - -#: ../src/option.c:516 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "اطبع عمود معيّن (الافتراضي 1. يمكن استخدام 'ALL' لطباعة كل الأعمدة)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:518 ../src/option.c:527 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:526 -msgid "Hide a specific column" -msgstr "أخف عمود معيّن" - -#: ../src/option.c:535 -msgid "Hides the column headers" -msgstr "يخفي ترويسة العمود" - -#: ../src/option.c:551 -msgid "Display notification" -msgstr "اعرض صندوق حوار تذكير" - -#: ../src/option.c:560 -msgid "Set the notification text" -msgstr "حدد نصّ حوار التذكير" - -#: ../src/option.c:569 -msgid "Listen for commands on stdin" -msgstr "استمع إلى الأوامر على stdin" - -#: ../src/option.c:586 -msgid "Display progress indication dialog" -msgstr "اعرض حوار مقدار التقدم" - -#: ../src/option.c:604 -msgid "Set initial percentage" -msgstr "حدد النِّسبة المئويَّة الأوليَّة" - -#: ../src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:613 -msgid "Pulsate progress bar" -msgstr "اجعل شريط التَّقدم نَّابضا" - -#: ../src/option.c:623 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "اصرف صندوق الحوار عند بلوغ 100%" - -#: ../src/option.c:633 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "اقتل العملية الأم إذا ضُغِط زر الإلغاء" - -#: ../src/option.c:643 -#, no-c-format -msgid "Hide Cancel button" -msgstr "أخف زر الإلغاء" - -#: ../src/option.c:658 -msgid "Display question dialog" -msgstr "اعرض صندوق حوار سؤال" - -#: ../src/option.c:676 -msgid "Sets the label of the Ok button" -msgstr "يحدد عنوان زر \"موافق\"" - -#: ../src/option.c:685 -msgid "Sets the label of the Cancel button" -msgstr "يحدد عنوان زر \"ألغِ\"" - -#: ../src/option.c:709 -msgid "Display text information dialog" -msgstr "اعرض صندوق حوار معلومات" - -#: ../src/option.c:718 -msgid "Open file" -msgstr "افتح ملفا" - -#: ../src/option.c:736 -msgid "Set the text font" -msgstr "حدّد خط النص" - -#: ../src/option.c:751 -msgid "Display warning dialog" -msgstr "اعرض صندوق حوار تحذير" - -#: ../src/option.c:784 -msgid "Display scale dialog" -msgstr "اعرض صندوق حوار مقياس" - -#: ../src/option.c:802 -msgid "Set initial value" -msgstr "حدد القيمة الأولية" - -#: ../src/option.c:803 ../src/option.c:812 ../src/option.c:821 -#: ../src/option.c:830 ../src/option.c:965 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:811 -msgid "Set minimum value" -msgstr "حدد القيمة الصغرى" - -#: ../src/option.c:820 -msgid "Set maximum value" -msgstr "حدد القيمة العظمى" - -#: ../src/option.c:829 -msgid "Set step size" -msgstr "حدد حجم الخطوة" - -#: ../src/option.c:838 -msgid "Print partial values" -msgstr "اطبع القيم الجزئيّة" - -#: ../src/option.c:847 -msgid "Hide value" -msgstr "اخف القيمة" - -#: ../src/option.c:862 -msgid "Display forms dialog" -msgstr "اعرض صندوق حوار استمارات" - -#: ../src/option.c:871 -msgid "Add a new Entry in forms dialog" -msgstr "أضف مُدْخَلا جديدا في صندوق حوار استمارات" - -#: ../src/option.c:872 ../src/option.c:881 -msgid "Field name" -msgstr "اسم الحقل" - -#: ../src/option.c:880 -msgid "Add a new Password Entry in forms dialog" -msgstr "أضف مُدْخَلة كلمة سر جديدة في صندوق حوار استمارات" - -#: ../src/option.c:889 -msgid "Add a new Calendar in forms dialog" -msgstr "أضف تقويما جديدا في صندوق حوار استمارات" - -#: ../src/option.c:890 -msgid "Calendar field name" -msgstr "اسم حقل التقويم" - -#: ../src/option.c:931 -msgid "Display password dialog" -msgstr "اعرض صندوق حوار كلمة السر" - -#: ../src/option.c:940 -msgid "Display the username option" -msgstr "اعرض خيار اسم المستخدم" - -#: ../src/option.c:955 -msgid "Display color selection dialog" -msgstr "اعرض صندوق حوار اختيار ألوان" - -#: ../src/option.c:964 -msgid "Set the color" -msgstr "حدد اللون" - -#: ../src/option.c:973 -msgid "Show the palette" -msgstr "اعرض لوحة الألوان" - -#: ../src/option.c:988 -msgid "About zenity" -msgstr "عنْ زِنْتي" - -#: ../src/option.c:997 -msgid "Print version" -msgstr "اطبع الإصدارة" - -#: ../src/option.c:1813 -msgid "General options" -msgstr "خيارات عامة" - -#: ../src/option.c:1814 -msgid "Show general options" -msgstr "اعرض الخيارات العامّة" - -#: ../src/option.c:1824 -msgid "Calendar options" -msgstr "خيارات التقويم" - -#: ../src/option.c:1825 -msgid "Show calendar options" -msgstr "اعرض خيارات التقويم" - -#: ../src/option.c:1835 -msgid "Text entry options" -msgstr "خيارات مُدْخَل النَّص" - -#: ../src/option.c:1836 -msgid "Show text entry options" -msgstr "اعرض خيارات مُدخَل النَّص" - -#: ../src/option.c:1846 -msgid "Error options" -msgstr "خيارات الأخطاء" - -#: ../src/option.c:1847 -msgid "Show error options" -msgstr "اعرض خيارات الأخطاء" - -#: ../src/option.c:1857 -msgid "Info options" -msgstr "خيارات المعلومات" - -#: ../src/option.c:1858 -msgid "Show info options" -msgstr "اعرض خيارات المعلومات" - -#: ../src/option.c:1868 -msgid "File selection options" -msgstr "خيارات اختيار الملفات" - -#: ../src/option.c:1869 -msgid "Show file selection options" -msgstr "اعرض خيارات اختيار الملفّات" - -#: ../src/option.c:1879 -msgid "List options" -msgstr "خيارات القوائم" - -#: ../src/option.c:1880 -msgid "Show list options" -msgstr "اعرض خيارات القوائم" - -#: ../src/option.c:1891 -msgid "Notification icon options" -msgstr "خيارات أيقونة التذكير" - -#: ../src/option.c:1892 -msgid "Show notification icon options" -msgstr "اعرض خيارات أيقونة التذكير" - -#: ../src/option.c:1903 -msgid "Progress options" -msgstr "خيارات التَّقدم" - -#: ../src/option.c:1904 -msgid "Show progress options" -msgstr "اعرض خيارات التَّقدم" - -#: ../src/option.c:1914 -msgid "Question options" -msgstr "خيارات الأسئلة" - -#: ../src/option.c:1915 -msgid "Show question options" -msgstr "اعرض خيارات الأسئلة" - -#: ../src/option.c:1925 -msgid "Warning options" -msgstr "خيارات التَّحذير" - -#: ../src/option.c:1926 -msgid "Show warning options" -msgstr "اعرض خيارات التَّحذير" - -#: ../src/option.c:1936 -msgid "Scale options" -msgstr "خيارات المقياس" - -#: ../src/option.c:1937 -msgid "Show scale options" -msgstr "اعرض خيارات المقياس" - -#: ../src/option.c:1947 -msgid "Text information options" -msgstr "خيارات المعلومات" - -#: ../src/option.c:1948 -msgid "Show text information options" -msgstr "اعرض خيارات المعلومات" - -#: ../src/option.c:1958 -msgid "Color selection options" -msgstr "خيارات اختيار الألوان" - -#: ../src/option.c:1959 -msgid "Show color selection options" -msgstr "اعرض خيارات اختيار الألوان" - -#: ../src/option.c:1969 -msgid "Password dialog options" -msgstr "خيارات صندوق حوار كلمة السر" - -#: ../src/option.c:1970 -msgid "Show password dialog options" -msgstr "اعرض خيارات صندوق حوار كلمة السر" - -#: ../src/option.c:1980 -msgid "Forms dialog options" -msgstr "خيارات صندوق حوار الاستمارات" - -#: ../src/option.c:1981 -msgid "Show forms dialog options" -msgstr "اعرض خيارات صندوق حوار الاستمارات" - -#: ../src/option.c:1991 -msgid "Miscellaneous options" -msgstr "خيارات متنوعة" - -#: ../src/option.c:1992 -msgid "Show miscellaneous options" -msgstr "اعرض الخيارات المتنوّعة" - -#: ../src/option.c:2017 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "هذا الخيار غير مدعوم. الرجاء الرجوع إلى ‪--help‬ لاستعراض كل الخيارات.\n" - -#: ../src/option.c:2021 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ليس مدعوما لهذا الحوار\n" - -#: ../src/option.c:2025 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "تم تحديد خيارَيْ حوار أو أكثر\n" - -#~ msgid "Select a file" -#~ msgstr "اختر ملفًا" diff --git a/po/as.po b/po/as.po deleted file mode 100644 index b054829..0000000 --- a/po/as.po +++ /dev/null @@ -1,861 +0,0 @@ -# translation of as.po to Assamese -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Amitakhya Phukan , 2008. -# Amitakhya Phukan , 2008. -# Amitakhya Phukan , 2009. -# Nilamdyuti Goswami , 2011, 2012, 2013, 2014. -msgid "" -msgstr "" -"Project-Id-Version: as\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-19 11:00+0000\n" -"PO-Revision-Date: 2014-08-19 22:04+0530\n" -"Last-Translator: Nilamdyuti Goswami \n" -"Language-Team: Assamese \n" -"Language: as\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=(n!=1)\n" - -#: ../src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"এই প্ৰগ্ৰামটো এটা বিনামুলিয়া চফ্টৱেৰ; আপুনি Free Software Foundation ৰ দ্বাৰা " -"প্ৰকাশিত GNU Lesser General Public License ৰ চুক্তিসমূহৰ অন্তৰ্গত ইয়াক পুনৰ " -"বিলাব " -"পাৰিব অথবা সলনি কৰিব পাৰিব; হৈতো অনুজ্ঞাৰ সংস্কৰণ ২, অথবা (আপুনাৰ বিকল্পত) " -"যিকোনো পৰৱৰ্তী সংস্কৰণ।\n" - -#: ../src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"এই প্ৰগ্ৰামটো এইটো আশাত বিলোৱা হৈছে যে ই ব্যৱহাৰযোগ্য হ'ব, কিন্তু কোনো " -"ওৱাৰেন্টি " -"নথকাকৈ; ব্যৱসায়ীক অথবা কোনো এটা বিশেষ কাৰণৰ যোগ্যতাৰ বাবে বুজুৱা ওৱাৰেন্টি " -"নথকাকৈ। অধিক যানিবলৈ GNU General Public License চাওক।\n" - -#: ../src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"আপুনি হৈতো ইতিমধ্যে এই প্ৰগ্ৰামৰ সৈতে GNU Lesser General Public License ৰ কপি " -"এটা পাইছে; যদি নহয়, তেন্তে Free Software Foundation, Inc., 51 Franklin " -"Street, Fifth Floor, Boston, MA 02110-1301, USA লে লিখক।" - -#: ../src/about.c:263 -msgid "translator-credits" -msgstr "" -"অমিতাক্ষ ফুকন (aphukan@fedoraproject.org), নীলমদ্যুতি গোস্বামী " -"(ngoswami@redhat." -"com)" - -#: ../src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "শ্বেল স্ক্ৰিপ্টৰ পৰা প্ৰাপ্ত ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"ডাইলগৰ ধৰণ উল্লেখ কৰা আৱশ্যক। বিস্তাৰিতভাবে জানিবলৈ 'zenity --help' আদেশৰ " -"ফলাফল " -"পঢ়ক\n" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"এটা বুলিয়ান ধৰণ সহায়ৰ বাবে অবৈধ মান।\n" -"সমৰ্থিত মানসমূহ হল 'true' অথবা 'false'।\n" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "অসমৰ্থিত সহায়। বাদ দিয়া হৈছে।\n" - -#. unknown hints -#: ../src/notification.c:150 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "অজ্ঞাত সহায়ৰ নাম। বাদ দিয়া হৈছে।\n" - -#: ../src/notification.c:209 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "stdin ৰ পৰা কমান্ড বিশ্লেষণ কৰা নাযায়\n" - -#: ../src/notification.c:241 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin ৰ পৰা বাৰ্তা বিশ্লেষণ কৰা নাযায়\n" - -#: ../src/notification.c:323 -msgid "Zenity notification" -msgstr "Zenity ৰ অধিসূচনা" - -#. Checks if username has been passed as a parameter -#: ../src/password.c:66 -msgid "Type your password" -msgstr "আপোনাৰ পাছৱৰ্ড লিখক" - -#: ../src/password.c:69 -msgid "Type your username and password" -msgstr "আপোনাৰ ব্যৱহাৰকাৰীনাম আৰু পাছৱৰ্ড টাইপ কৰক" - -#: ../src/password.c:107 -msgid "Username:" -msgstr "ব্যৱহাৰকাৰী নাম:" - -#: ../src/password.c:123 -msgid "Password:" -msgstr "পাছৱৰ্ড:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "সৰ্বনিম্ন মানৰ তূলনাত সৰ্বোচ্চ মান অধিক হোৱা আৱশ্যক।\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "উল্লেখিত মান সীমাৰ বাহিৰ।\n" - -#: ../src/tree.c:364 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "তালিকা প্ৰদৰ্শনকাৰী ডাইলগৰ ক্ষেত্ৰত স্তম্ভৰ শীৰ্ষক ধাৰ্য কৰা নহয়।\n" - -#: ../src/tree.c:370 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "তালিকা প্ৰদৰ্শনকাৰী ডাইলগৰ ক্ষেত্ৰত অকল এটা ধৰণ ব্যৱহাৰ কৰা আৱশ্যক।\n" - -#: ../src/zenity.ui.h:1 -msgid "Adjust the scale value" -msgstr "যোখৰ মান আয়োজিত কৰক" - -#: ../src/zenity.ui.h:2 -msgid "Text View" -msgstr "লিখনি দৰ্শন" - -#: ../src/zenity.ui.h:3 -msgid "Calendar selection" -msgstr "কেলেন্ডাৰ নিৰ্বাচন" - -#: ../src/zenity.ui.h:4 -msgid "Select a date from below." -msgstr "তলৰ পৰা এটা তাৰিখ নিৰ্বাচন কৰক।" - -#: ../src/zenity.ui.h:5 -msgid "C_alendar:" -msgstr "কেলেন্ডাৰ(_a):" - -#: ../src/zenity.ui.h:6 -msgid "Add a new entry" -msgstr "এটা নতুন ইনপুট যোগ কৰক" - -#: ../src/zenity.ui.h:7 -msgid "_Enter new text:" -msgstr "নতুন লিখনি লিখক:(_E)" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "ত্ৰুটি" - -#: ../src/zenity.ui.h:9 -msgid "An error has occurred." -msgstr "এটা ত্ৰুটি দেখা দিছে।" - -#: ../src/zenity.ui.h:10 -msgid "Forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগ" - -#: ../src/zenity.ui.h:11 -msgid "Information" -msgstr "তথ্য" - -#: ../src/zenity.ui.h:12 -msgid "All updates are complete." -msgstr "সকলো আপডেইট সমপূৰ্ণ।" - -#: ../src/zenity.ui.h:13 -msgid "Progress" -msgstr "প্ৰগতি" - -#: ../src/zenity.ui.h:14 -msgid "Running..." -msgstr "চলমান..." - -#: ../src/zenity.ui.h:15 -msgid "Question" -msgstr "প্ৰশ্ন" - -#: ../src/zenity.ui.h:16 -msgid "Are you sure you want to proceed?" -msgstr "আপুনি নিশ্চিতৰূপে আগবাঢ়িব খোজে ?" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "তালিকাৰ পৰা বস্তুসমূহ নিৰ্বাচন কৰক" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "তলৰ তালিকাৰ পৰা বস্তুসমূহ নিৰ্বাচন কৰক।" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "সতৰ্কবাৰ্তা" - -#: ../src/option.c:164 -msgid "Set the dialog title" -msgstr "ডাইলগৰ শীৰ্ষক সংহতি কৰক" - -#: ../src/option.c:165 -msgid "TITLE" -msgstr "শীৰ্ষক" - -#: ../src/option.c:173 -msgid "Set the window icon" -msgstr "উইন্ডোৰ আইকন সংহতি কৰক" - -#: ../src/option.c:174 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:182 -msgid "Set the width" -msgstr "প্ৰস্থ সংহতি কৰক" - -#: ../src/option.c:183 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:191 -msgid "Set the height" -msgstr "উচ্চতা সংহতি কৰক" - -#: ../src/option.c:192 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:200 -msgid "Set dialog timeout in seconds" -msgstr "ছেকেণ্ডত ডাইলগৰ বিৰতি নিৰ্ধাৰিত কৰক" - -#. Timeout for closing the dialog -#: ../src/option.c:202 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:210 -msgid "Sets the label of the Ok button" -msgstr "ঠিক আছে বুটামৰ লেবেল সংহতি কৰে" - -#: ../src/option.c:211 ../src/option.c:220 ../src/option.c:262 -#: ../src/option.c:322 ../src/option.c:331 ../src/option.c:365 -#: ../src/option.c:423 ../src/option.c:560 ../src/option.c:676 -#: ../src/option.c:694 ../src/option.c:720 ../src/option.c:792 -#: ../src/option.c:877 ../src/option.c:886 ../src/option.c:939 -#: ../src/option.c:997 ../src/option.c:1166 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:219 -msgid "Sets the label of the Cancel button" -msgstr "বাতিল বুটামৰ লেবেল সংহতি কৰে" - -#: ../src/option.c:228 -msgid "Set the modal hint" -msgstr "মডেল ইংগিত সংহতি কৰক" - -#: ../src/option.c:237 -msgid "Set the parent window to attach to" -msgstr "সংলগ্ন কৰিবলৈ উপধায়ক উইন্ডো সংহতি কৰক" - -#: ../src/option.c:238 -msgid "WINDOW" -msgstr "উইন্ডো" - -#: ../src/option.c:252 -msgid "Display calendar dialog" -msgstr "কেলেন্ডাৰৰ ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:261 ../src/option.c:321 ../src/option.c:364 -#: ../src/option.c:422 ../src/option.c:559 ../src/option.c:719 -#: ../src/option.c:791 ../src/option.c:938 ../src/option.c:996 -#: ../src/option.c:1165 -msgid "Set the dialog text" -msgstr "ডাইলগৰ লিখনি সংহতি কৰক" - -#: ../src/option.c:270 -msgid "Set the calendar day" -msgstr "কেলেন্ডাৰৰ দিন সংহতি কৰক" - -#: ../src/option.c:271 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:279 -msgid "Set the calendar month" -msgstr "কেলেন্ডাৰৰ মাহ সংহতি কৰক" - -#: ../src/option.c:280 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:288 -msgid "Set the calendar year" -msgstr "কেলেন্ডাৰ বছৰ সংহতি কৰক" - -#: ../src/option.c:289 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:297 ../src/option.c:1183 -msgid "Set the format for the returned date" -msgstr "ঘুৰাই দিয়া তাৰিখৰ বিন্যাস সংহতি কৰক" - -#: ../src/option.c:298 ../src/option.c:1184 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:312 -msgid "Display text entry dialog" -msgstr "লিখনি প্ৰবিষ্টি ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:330 -msgid "Set the entry text" -msgstr "প্ৰবিষ্টি লিখনি সংহতি কৰক" - -#: ../src/option.c:339 -msgid "Hide the entry text" -msgstr "প্ৰবিষ্টি লিখনি লুকুৱাওক" - -#: ../src/option.c:355 -msgid "Display error dialog" -msgstr "ত্ৰুটি ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:373 ../src/option.c:431 ../src/option.c:800 -#: ../src/option.c:947 -msgid "Set the dialog icon" -msgstr "ডাইলগ আইকন সংহতি কৰক" - -#: ../src/option.c:374 ../src/option.c:432 ../src/option.c:801 -#: ../src/option.c:948 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: ../src/option.c:382 ../src/option.c:440 ../src/option.c:809 -#: ../src/option.c:956 -msgid "Do not enable text wrapping" -msgstr "লিখনি মেৰিওৱা সামৰ্থবান নকৰিব" - -#: ../src/option.c:391 ../src/option.c:449 ../src/option.c:818 -#: ../src/option.c:965 -msgid "Do not enable pango markup" -msgstr "pango মাৰ্কআপ সামৰ্থবান নকৰিব" - -#: ../src/option.c:399 ../src/option.c:457 ../src/option.c:835 -#: ../src/option.c:973 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"ডাইলগ লিখনিত ইলিপচাইজিং সামৰ্থবান কৰক। ই উচ্চ উইন্ডো আকাৰক দীঘল লিখনিৰ সৈতে " -"ঠিক " -"কৰে" - -#: ../src/option.c:413 -msgid "Display info dialog" -msgstr "তথ্য ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:471 -msgid "Display file selection dialog" -msgstr "ফাইল নিৰ্বাচনৰ ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:480 -msgid "Set the filename" -msgstr "ফাইলৰ নাম সংহতি কৰক" - -#: ../src/option.c:481 ../src/option.c:859 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:489 -msgid "Allow multiple files to be selected" -msgstr "একাধিক ফাইল নিৰ্বাচনৰ অনুমতি প্ৰদান কৰক" - -#: ../src/option.c:498 -msgid "Activate directory-only selection" -msgstr "অকল-ডাইৰেকটৰি নিৰ্বাচনৰ সক্ৰিয় কৰক" - -#: ../src/option.c:507 -msgid "Activate save mode" -msgstr "সংৰক্ষণ অৱস্থা সক্ৰিয় কৰক" - -#: ../src/option.c:516 ../src/option.c:604 ../src/option.c:1174 -msgid "Set output separator character" -msgstr "আউটপুট বিভাজক আখৰ সংহতি কৰক" - -#: ../src/option.c:517 ../src/option.c:605 ../src/option.c:1175 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:525 -msgid "Confirm file selection if filename already exists" -msgstr "ফাইলৰ নাম পূৰ্বে উপস্থিত থাকিলে ফাইল নিৰ্বাচন নিশ্চিত কৰক" - -#: ../src/option.c:534 -msgid "Sets a filename filter" -msgstr "ফাইলৰ নামৰ পৰিস্ৰাৱক সংহতি কৰে" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:536 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:550 -msgid "Display list dialog" -msgstr "তালিকা ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:568 -msgid "Set the column header" -msgstr "স্তম্ভৰ হেডাৰ সংহতি কৰক" - -#: ../src/option.c:569 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:577 -msgid "Use check boxes for first column" -msgstr "প্ৰথম স্তম্ভৰ বাবে চেক বাকচ ব্যৱহাৰ কৰক" - -#: ../src/option.c:586 -msgid "Use radio buttons for first column" -msgstr "প্ৰথম স্তম্ভৰ বাবে ৰেডিও-বুটাম ব্যৱহাৰ কৰক" - -#: ../src/option.c:595 -msgid "Use an image for first column" -msgstr "প্ৰথম স্তৰৰ বাবে এটা ছবি ব্যৱহাৰ কৰক" - -#: ../src/option.c:613 -msgid "Allow multiple rows to be selected" -msgstr "একাধিক শাৰী নিৰ্বাচনৰ অনুমতি প্ৰদান কৰক" - -#: ../src/option.c:622 ../src/option.c:867 -msgid "Allow changes to text" -msgstr "লিখনি পৰিবৰ্তনৰ অনুমতি প্ৰদান কৰক" - -#: ../src/option.c:631 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"এটা সুনিৰ্দিষ্ট স্তম্ভ প্ৰিন্ট কৰক। (অবিকল্পিত মান ১। সকলো স্তম্ভ প্ৰিন্ট " -"কৰাৰ বাবে " -"'ALL' মান প্ৰয়োগ কৰক)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:633 ../src/option.c:642 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:641 -msgid "Hide a specific column" -msgstr "এটা নিৰ্দিষ্ট স্তম্ভ লুকুৱাওক" - -#: ../src/option.c:650 -msgid "Hides the column headers" -msgstr "স্তম্ভৰ হেডাৰসমূহ লুকাওক" - -#: ../src/option.c:666 -msgid "Display notification" -msgstr "অধিসূচনা প্ৰদৰ্শন কৰক" - -#: ../src/option.c:675 -msgid "Set the notification text" -msgstr "অধিসূচনাৰ লিখনি সংহতি কৰক" - -#: ../src/option.c:684 -msgid "Listen for commands on stdin" -msgstr "stdin ৰ কমান্ড শুনক" - -#: ../src/option.c:693 -msgid "Set the notification hints" -msgstr "অধিসূচনাৰ সহায়সমূহ সংহতি কৰক" - -#: ../src/option.c:710 -msgid "Display progress indication dialog" -msgstr "কৰ্মৰ প্ৰগতি চিহ্নকাৰী ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:728 -msgid "Set initial percentage" -msgstr "আৰম্ভ শতাংশ সংহতি কৰক" - -#: ../src/option.c:729 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:737 -msgid "Pulsate progress bar" -msgstr "প্ৰগতি বাৰ কপাওক" - -#: ../src/option.c:747 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "১০০% সম্পূৰ্ণ হ'লে ডাইলগ বন্ধ কৰক" - -#: ../src/option.c:757 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "বাতিল বুটাম টিপা হলে উপধায়ক প্ৰক্ৰিয়া kill কৰক" - -#: ../src/option.c:767 -#, no-c-format -msgid "Hide Cancel button" -msgstr "বাতিল বুটাম লুকাওক" - -#: ../src/option.c:782 -msgid "Display question dialog" -msgstr "প্ৰশ্ন ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:826 -msgid "Give cancel button focus by default" -msgstr "বাতিল কৰক বুটামক অবিকল্পিত ফকাচ দিয়ক" - -#: ../src/option.c:849 -msgid "Display text information dialog" -msgstr "লিখনি তথ্যৰ ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:858 -msgid "Open file" -msgstr "ফাইল খোলক" - -#: ../src/option.c:876 -msgid "Set the text font" -msgstr "লিখনি ফন্ট সংহতি কৰক" - -#: ../src/option.c:885 -msgid "Enable an I read and agree checkbox" -msgstr "এটা মই পঢ়িছো আৰু মানি লৈছো চেকবাকচ সামৰ্থবান কৰক" - -#: ../src/option.c:895 -msgid "Enable html support" -msgstr "html সমৰ্থন সামৰ্থবান কৰক" - -#: ../src/option.c:904 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" -"এটা ফাইলৰ বিপৰিতে এটা url সংহতি কৰে। তেতিয়াহে কাম কৰিব যদি আপুনি --html " -"বিকল্প ব্যৱহাৰ কৰে" - -#: ../src/option.c:905 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:914 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"লিখনিক অন্তলৈ স্বস্ক্ৰল কৰক। কেৱল তেতিয়া যেতিয়া লিখনিক stdin ৰ পৰা গ্ৰহণ কৰা " -"হয়" - -#: ../src/option.c:929 -msgid "Display warning dialog" -msgstr "সতৰ্কবাৰ্তা ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:987 -msgid "Display scale dialog" -msgstr "যোখৰ ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:1005 -msgid "Set initial value" -msgstr "আৰম্ভ মান সংহতি কৰক" - -#: ../src/option.c:1006 ../src/option.c:1015 ../src/option.c:1024 -#: ../src/option.c:1033 ../src/option.c:1232 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:1014 -msgid "Set minimum value" -msgstr "সৰ্বনিম্ন মান সংহতি কৰক" - -#: ../src/option.c:1023 -msgid "Set maximum value" -msgstr "সৰ্বোচ্চ মান সংহতি কৰক" - -#: ../src/option.c:1032 -msgid "Set step size" -msgstr "স্তৰ আকাৰ সংহতি কৰক" - -#: ../src/option.c:1041 -msgid "Print partial values" -msgstr "আংশিক মানসমূহ প্ৰিন্ট কৰক" - -#: ../src/option.c:1050 -msgid "Hide value" -msgstr "মান লুকুৱাওক" - -#: ../src/option.c:1065 -msgid "Display forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:1074 -msgid "Add a new Entry in forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগত এটা নতুন প্ৰৱিষ্টি যোগ কৰক" - -#: ../src/option.c:1075 ../src/option.c:1084 -msgid "Field name" -msgstr "ফিল্ডৰ নাম" - -#: ../src/option.c:1083 -msgid "Add a new Password Entry in forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগত এটা নতুন পাছৱৰ্ড প্ৰৱিষ্টি যোগ কৰক" - -#: ../src/option.c:1092 -msgid "Add a new Calendar in forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগত এটা নতুন কেলেনডাৰ যোগ কৰক" - -#: ../src/option.c:1093 -msgid "Calendar field name" -msgstr "কেলেন্ডাৰ ফিল্ড নাম" - -#: ../src/option.c:1101 -msgid "Add a new List in forms dialog" -msgstr "ফৰ্মসমূহৰ ডাইলগত এটা নতুন তালিকা যোগ কৰক" - -#: ../src/option.c:1102 -msgid "List field and header name" -msgstr "ক্ষেত্ৰ আৰু হেডাৰ নাম তালিকাভুক্ত কৰক" - -#: ../src/option.c:1110 -msgid "List of values for List" -msgstr "তালিকাৰ বাবে মানসমূহৰ তালিকা" - -#: ../src/option.c:1111 ../src/option.c:1120 ../src/option.c:1138 -msgid "List of values separated by |" -msgstr "| দ্বাৰা পৃথকিত মানসমূহৰ তালিকা" - -#: ../src/option.c:1119 -msgid "List of values for columns" -msgstr "স্তম্ভসমূহৰ বাবে মানসমূহৰ তালিকা" - -#: ../src/option.c:1128 -msgid "Add a new combo box in forms dialog" -msgstr "ফৰ্ম ডাইলগত এটা নতুন কম্বো বাকচ যোগ কৰক" - -#: ../src/option.c:1129 -msgid "Combo box field name" -msgstr "কম্বো বাকচ ফিল্ড নাম" - -#: ../src/option.c:1137 -msgid "List of values for combo box" -msgstr "কম্বো বাকচৰ বাবে মানসমূহৰ তালিকা" - -#: ../src/option.c:1156 -msgid "Show the columns header" -msgstr "স্তম্ভসমূহৰ হেডাৰ দেখুৱাওক" - -#: ../src/option.c:1198 -msgid "Display password dialog" -msgstr "পাছৱৰ্ড ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:1207 -msgid "Display the username option" -msgstr "ব্যৱহাৰকাৰীৰ নাম বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:1222 -msgid "Display color selection dialog" -msgstr "ৰঙ বাচনি ডাইলগ প্ৰদৰ্শন কৰক" - -#: ../src/option.c:1231 -msgid "Set the color" -msgstr "ৰঙ সংহতি কৰক" - -#: ../src/option.c:1240 -msgid "Show the palette" -msgstr "পেলেট দেখুৱাওক" - -#: ../src/option.c:1255 -msgid "About zenity" -msgstr "zenity ৰ বিষয়ে" - -#: ../src/option.c:1264 -msgid "Print version" -msgstr "সংস্কৰণ প্ৰিন্ট কৰক" - -#: ../src/option.c:2184 -msgid "General options" -msgstr "সাধাৰণ বিকল্পসমূহ" - -#: ../src/option.c:2185 -msgid "Show general options" -msgstr "সাধাৰণ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2195 -msgid "Calendar options" -msgstr "কেলেন্ডাৰ বিকল্পসমূহ" - -#: ../src/option.c:2196 -msgid "Show calendar options" -msgstr "কেলেন্ডাৰ বিকল্পসমূহ" - -#: ../src/option.c:2206 -msgid "Text entry options" -msgstr "লিখনি প্ৰবিষ্টি বিকল্পসমূহ" - -#: ../src/option.c:2207 -msgid "Show text entry options" -msgstr "লিখনি প্ৰবিষ্টি বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2217 -msgid "Error options" -msgstr "ত্ৰুটি বিকল্পসমূহ" - -#: ../src/option.c:2218 -msgid "Show error options" -msgstr "ত্ৰুটি বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2228 -msgid "Info options" -msgstr "তথ্য বিকল্পসমূহ" - -#: ../src/option.c:2229 -msgid "Show info options" -msgstr "তথ্য বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2239 -msgid "File selection options" -msgstr "ফাইল নিৰ্বাচন বিকল্পসমূহ" - -#: ../src/option.c:2240 -msgid "Show file selection options" -msgstr "ফাইল নিৰ্বাচন বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2250 -msgid "List options" -msgstr "তালিকা বিকল্পসমূহ" - -#: ../src/option.c:2251 -msgid "Show list options" -msgstr "তালিকা বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2262 -msgid "Notification icon options" -msgstr "অধিসূচনা আইকনৰ বিকল্পসমূহ" - -#: ../src/option.c:2263 -msgid "Show notification icon options" -msgstr "অধিসূচনা আইকনৰ বিকল্পসমূহ" - -#: ../src/option.c:2274 -msgid "Progress options" -msgstr "প্ৰগতি বিকল্পসমূহ" - -#: ../src/option.c:2275 -msgid "Show progress options" -msgstr "প্ৰগতি বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2285 -msgid "Question options" -msgstr "প্ৰশ্ন বিকল্পসমূহ" - -#: ../src/option.c:2286 -msgid "Show question options" -msgstr "প্ৰশ্ন বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2296 -msgid "Warning options" -msgstr "সতৰ্কবাৰ্তা বিকল্পসমূহ" - -#: ../src/option.c:2297 -msgid "Show warning options" -msgstr "সতৰ্কবাৰ্তা বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2307 -msgid "Scale options" -msgstr "যোখ বিকল্পসমূহ" - -#: ../src/option.c:2308 -msgid "Show scale options" -msgstr "যোখ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2318 -msgid "Text information options" -msgstr "লিখনি তথ্যৰ বিকল্পসমূহ" - -#: ../src/option.c:2319 -msgid "Show text information options" -msgstr "লিখনি তথ্যৰ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2329 -msgid "Color selection options" -msgstr "ৰঙ বাচনিৰ বিকল্পসমূহ" - -#: ../src/option.c:2330 -msgid "Show color selection options" -msgstr "ৰঙ বাচনিৰ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2340 -msgid "Password dialog options" -msgstr "পাছৱৰ্ড ডাইলগ বিকল্পসমূহ" - -#: ../src/option.c:2341 -msgid "Show password dialog options" -msgstr "পাছৱৰ্ড ডাইলগ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2351 -msgid "Forms dialog options" -msgstr "ফৰ্মসমূহৰ ডাইলগ বিকল্পসমূহ" - -#: ../src/option.c:2352 -msgid "Show forms dialog options" -msgstr "ফৰ্মসমূহৰ ডাইলগ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2362 -msgid "Miscellaneous options" -msgstr "বিবিধ বিকল্পসমূহ" - -#: ../src/option.c:2363 -msgid "Show miscellaneous options" -msgstr "বিবিধ বিকল্পসমূহ দেখুৱাওক" - -#: ../src/option.c:2388 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"এই বিকল্পটো উপলব্ধ নহয়। সৰ্বধৰণৰ ব্যৱহাৰ জানিবলৈ অনুগ্ৰহ কৰি --help বিকল্পৰ " -"ফলাফল " -"পঢ়ক।\n" - -#: ../src/option.c:2392 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s বৰ্তমান ডাইলগৰ বাবে সমৰ্থিত নহয়\n" - -#: ../src/option.c:2396 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "দুটা অথবা অধিক বিকল্পসমূহ ধাৰ্য্য কৰা আছে\n" - -#~ msgid "Select a file" -#~ msgstr "এখন ফাইল নিৰ্বাচন কৰক" diff --git a/po/ast.po b/po/ast.po deleted file mode 100644 index 625ad07..0000000 --- a/po/ast.po +++ /dev/null @@ -1,643 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Asturian translation for zenity. -# Copyright (C) 2010 zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# Xandru Armesto , 2010. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: " -"http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2010-04-11 17:57+0000\n" -"PO-Revision-Date: 2010-04-11 20:00+0200\n" -"Last-Translator: Xandru Armesto \n" -"Language-Team: Asturian Team alministradores@softastur.org\n" -"Language: ast\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Virtaal 0.5.2\n" -"X-Poedit-Language: asturian\n" - -#: ../src/about.c:64 -msgid "This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "Esti programa ye software llibre; pues redistribuilu y/o modificalu embaxo " -"los términos de la Llicencia Pública Xeneral de GNU espublizada pola " -"Fundación del Software Llibre; versión 2 o (según escueyas) cualesquier " -"versión posterior.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "Esti programa distribúise cola esperanza de que seya útil, pero ENSIN " -"DENGUNA GARANTÍA; inclusive ensin la garantía implícita de COMERCIABILIDÁ o " -"IDONEIDÁ PA UN ENVÍS PARTICULAR. Véase la Llicencia Pública Xenenral Menor " -"pa más detalles.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Deberíes recibir una copia de la Llicencia Pública Xeneral Menor con esti " -"programa; en en contrariu, escribi a la Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"Launchpad Contributions:\n" -" Iñigo Varela https://launchpad.net/~malditoastur\n" -"Xandru Armesto " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Amosar caxes de diálogos dende los scripts de shell" - -#: ../src/main.c:97 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Tienes d'especificar un triba de diálogu. Llee «zenity --help» pa obtener " -"más información\n" - -#: ../src/notification.c:138 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "Nun pudo analizase'l comandu dende stdin\n" - -#: ../src/notification.c:177 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "Nun pudo analizase'l mensax de stdin\n" - -#: ../src/notification.c:262 ../src/notification.c:279 -msgid "Zenity notification" -msgstr "Notificación de Zenity" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "El valor máximu tien de ser mayor que'l valor mínimu.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Valor fuera de rangu.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Nun s'especificaron los títulos de columnes pal diálogu de la llista\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Tendríes d'usar namái un triba de diálogu List.\n" - -#: ../src/zenity.ui.h:1 -msgid "Add a new entry" -msgstr "Amestar una entrada nueva" - -#: ../src/zenity.ui.h:2 -msgid "Adjust the scale value" -msgstr "Axustar el valor de la escala" - -#: ../src/zenity.ui.h:3 -msgid "All updates are complete." -msgstr "Tolos anovamientos tán finaos." - -#: ../src/zenity.ui.h:4 -msgid "An error has occurred." -msgstr "Hebo un fallu." - -#: ../src/zenity.ui.h:5 -msgid "Are you sure you want to proceed?" -msgstr "¿Daveres que quies siguir?" - -#: ../src/zenity.ui.h:6 -msgid "C_alendar:" -msgstr "C_alendariu:" - -#: ../src/zenity.ui.h:7 -msgid "Calendar selection" -msgstr "Escoyeta de calendariu" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "Fallu" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "Información" - -#: ../src/zenity.ui.h:10 -msgid "Progress" -msgstr "Progresu" - -#: ../src/zenity.ui.h:11 -msgid "Question" -msgstr "Entruga" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "Executándose…" - -#: ../src/zenity.ui.h:13 -msgid "Select a date from below." -msgstr "Escueyi una data d'abaxo." - -#: ../src/zenity.ui.h:14 -msgid "Select items from the list" -msgstr "Escueyi elementos de la llista" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list below." -msgstr "Escueyi elementos de la llista d'abaxo." - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "Vista de testu" - -#: ../src/zenity.ui.h:17 -msgid "Warning" -msgstr "Avisu" - -#: ../src/zenity.ui.h:18 -msgid "_Enter new text:" -msgstr "_Introduz un testu nuevu:" - -#: ../src/option.c:127 -msgid "Set the dialog title" -msgstr "Afitar el títulu del diálogu" - -#: ../src/option.c:128 -msgid "TITLE" -msgstr "TÍTULU" - -#: ../src/option.c:136 -msgid "Set the window icon" -msgstr "Afitar l'iconu de la ventana" - -#: ../src/option.c:137 -msgid "ICONPATH" -msgstr "RUTAICONU" - -#: ../src/option.c:145 -msgid "Set the width" -msgstr "Afitar l'anchor" - -#: ../src/option.c:146 -msgid "WIDTH" -msgstr "ANCHURA" - -#: ../src/option.c:154 -msgid "Set the height" -msgstr "Afitar l'altor" - -#: ../src/option.c:155 -msgid "HEIGHT" -msgstr "ALTOR" - -#: ../src/option.c:163 -msgid "Set dialog timeout in seconds" -msgstr "Afitar el tiempu d'espiración del diálogu en segundos" - -#. Timeout for closing the dialog -#: ../src/option.c:165 -msgid "TIMEOUT" -msgstr "TIEMPU D'ESPIRACIÓN" - -#: ../src/option.c:179 -msgid "Display calendar dialog" -msgstr "Amosar el diálogu del calendariu" - -#: ../src/option.c:188 ../src/option.c:248 ../src/option.c:291 -#: ../src/option.c:324 ../src/option.c:436 ../src/option.c:575 -#: ../src/option.c:647 ../src/option.c:731 ../src/option.c:764 -msgid "Set the dialog text" -msgstr "Afitar el testu del diálogu" - -#: ../src/option.c:189 ../src/option.c:249 ../src/option.c:258 -#: ../src/option.c:292 ../src/option.c:325 ../src/option.c:437 -#: ../src/option.c:543 ../src/option.c:576 ../src/option.c:648 -#: ../src/option.c:657 ../src/option.c:666 ../src/option.c:732 -#: ../src/option.c:765 -msgid "TEXT" -msgstr "TESTU" - -#: ../src/option.c:197 -msgid "Set the calendar day" -msgstr "Afitar el día del calendariu" - -#: ../src/option.c:198 -msgid "DAY" -msgstr "DÍA" - -#: ../src/option.c:206 -msgid "Set the calendar month" -msgstr "Afitar el mes del calendariu" - -#: ../src/option.c:207 -msgid "MONTH" -msgstr "MES" - -#: ../src/option.c:215 -msgid "Set the calendar year" -msgstr "Afitar l'añu del calendariu" - -#: ../src/option.c:216 -msgid "YEAR" -msgstr "AÑU" - -#: ../src/option.c:224 -msgid "Set the format for the returned date" -msgstr "Afitar el formatu pa la data retornada" - -#: ../src/option.c:225 -msgid "PATTERN" -msgstr "PATRÓN" - -#: ../src/option.c:239 -msgid "Display text entry dialog" -msgstr "Amosar el diálogu d'entrada de testu" - -#: ../src/option.c:257 -msgid "Set the entry text" -msgstr "Afitar el testu d'entrada" - -#: ../src/option.c:266 -msgid "Hide the entry text" -msgstr "Anubrir el testu d'entrada" - -#: ../src/option.c:282 -msgid "Display error dialog" -msgstr "Amosar el diálogu de fallu" - -#: ../src/option.c:300 ../src/option.c:333 ../src/option.c:674 -#: ../src/option.c:740 -msgid "Do not enable text wrapping" -msgstr "Nun activar l'axuste de testu" - -#: ../src/option.c:315 -msgid "Display info dialog" -msgstr "Amosar el diálogu d'información" - -#: ../src/option.c:348 -msgid "Display file selection dialog" -msgstr "Amosar el diálogu d'Escoyeta de ficheru" - -#: ../src/option.c:357 -msgid "Set the filename" -msgstr "Afitar el nome del ficheru" - -#: ../src/option.c:358 ../src/option.c:699 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:366 -msgid "Allow multiple files to be selected" -msgstr "Permitir la Escoyeta de ficheros múltiples" - -#: ../src/option.c:375 -msgid "Activate directory-only selection" -msgstr "Activar Escoyeta de direutorios esclusivamente" - -#: ../src/option.c:384 -msgid "Activate save mode" -msgstr "Activar mou seguru" - -#: ../src/option.c:393 ../src/option.c:472 -msgid "Set output separator character" -msgstr "Afitar el caráuter separtador de la salida" - -#: ../src/option.c:394 ../src/option.c:473 -msgid "SEPARATOR" -msgstr "SEPARTADOR" - -#: ../src/option.c:402 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmar Escoyeta de ficheros si'l nome yá esiste" - -#: ../src/option.c:411 -msgid "Sets a filename filter" -msgstr "Afita un peñera pol nome de ficheru" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:413 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOME | PATRÓN1 PATRÓN2 …" - -#: ../src/option.c:427 -msgid "Display list dialog" -msgstr "Amosar el diálogu de llista" - -#: ../src/option.c:445 -msgid "Set the column header" -msgstr "Afitar la cabecera de la columna" - -#: ../src/option.c:446 -msgid "COLUMN" -msgstr "COLUMNA" - -#: ../src/option.c:454 -msgid "Use check boxes for first column" -msgstr "Usar caxelles de verificación pa la primer columna" - -#: ../src/option.c:463 -msgid "Use radio buttons for first column" -msgstr "Usar botones de radio pa la primer columna" - -#: ../src/option.c:481 -msgid "Allow multiple rows to be selected" -msgstr "Permitir la Escoyeta de fileres múltiples" - -#: ../src/option.c:490 ../src/option.c:707 -msgid "Allow changes to text" -msgstr "Permitir cambeos nel testu" - -#: ../src/option.c:499 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprentar una columna específica (predetermináu ye 1, «ALL» puede usase pa " -"imprentar toles columnes)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:501 ../src/option.c:510 -msgid "NUMBER" -msgstr "NÚMBERU" - -#: ../src/option.c:509 -msgid "Hide a specific column" -msgstr "Anubrir una columna específica" - -#: ../src/option.c:518 -msgid "Hides the column headers" -msgstr "Anubrir les cabeceres de columna" - -#: ../src/option.c:533 -msgid "Display notification" -msgstr "Amosar notificación" - -#: ../src/option.c:542 -msgid "Set the notification text" -msgstr "Afitar el testu de notificación" - -#: ../src/option.c:551 -msgid "Listen for commands on stdin" -msgstr "Escuchar comandos en stdin" - -#: ../src/option.c:566 -msgid "Display progress indication dialog" -msgstr "Amosar el diálogu d'indicación de progresu" - -#: ../src/option.c:584 -msgid "Set initial percentage" -msgstr "Afitar el porcentaxe inicial" - -#: ../src/option.c:585 -msgid "PERCENTAGE" -msgstr "PORCENTAXE" - -#: ../src/option.c:593 -msgid "Pulsate progress bar" -msgstr "Barra de progresu parpaguiante" - -#: ../src/option.c:603 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Refugar el diálogu s'algame'l 100%" - -#: ../src/option.c:613 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "Matar al procesu padre si se calca el botón encaboxar" - -#: ../src/option.c:623 -#, no-c-format -msgid "Hide cancel button" -msgstr "Anubrir botón encaboxar" - -#: ../src/option.c:638 -msgid "Display question dialog" -msgstr "Amosar el diálogu d'entruga" - -#: ../src/option.c:656 -msgid "Sets the label of the Ok button" -msgstr "Afita la etiqueta del botón Aceutar" - -#: ../src/option.c:665 -msgid "Sets the label of the Cancel button" -msgstr "Afita la etiqueta del botón Encaboxar" - -#: ../src/option.c:689 -msgid "Display text information dialog" -msgstr "Amosar el diálogu de testu d'información" - -#: ../src/option.c:698 -msgid "Open file" -msgstr "Abrir ficheru" - -#: ../src/option.c:722 -msgid "Display warning dialog" -msgstr "Amosar el diálogu d'avisu" - -#: ../src/option.c:755 -msgid "Display scale dialog" -msgstr "Amosar el diálogu d'escala" - -#: ../src/option.c:773 -msgid "Set initial value" -msgstr "Afitar el valor inicial" - -#: ../src/option.c:774 ../src/option.c:783 ../src/option.c:792 -#: ../src/option.c:801 ../src/option.c:843 -msgid "VALUE" -msgstr "VALOR" - -#: ../src/option.c:782 -msgid "Set minimum value" -msgstr "Afitar el valor mínimu" - -#: ../src/option.c:791 -msgid "Set maximum value" -msgstr "Afitar el valor máximu" - -#: ../src/option.c:800 -msgid "Set step size" -msgstr "Afitar el tamañu del pasu" - -#: ../src/option.c:809 -msgid "Print partial values" -msgstr "Imprentar valores parciales" - -#: ../src/option.c:818 -msgid "Hide value" -msgstr "Anubrir valor" - -#: ../src/option.c:833 -msgid "Display color selection dialog" -msgstr "Amosar el diálogu d'escoyeta de color" - -#: ../src/option.c:842 -msgid "Set the color" -msgstr "Afitar el color" - -#: ../src/option.c:851 -msgid "Show the palette" -msgstr "Amosar la paleta" - -#: ../src/option.c:866 -msgid "About zenity" -msgstr "Tocante a zenity" - -#: ../src/option.c:875 -msgid "Print version" -msgstr "Imprentar versión" - -#: ../src/option.c:1584 -msgid "General options" -msgstr "Opciones xenerales" - -#: ../src/option.c:1585 -msgid "Show general options" -msgstr "Amosar opciones xenerales" - -#: ../src/option.c:1595 -msgid "Calendar options" -msgstr "Opciones del calendariu" - -#: ../src/option.c:1596 -msgid "Show calendar options" -msgstr "Amosar opciones del calendariu" - -#: ../src/option.c:1606 -msgid "Text entry options" -msgstr "Opciones de la entrada de testu" - -#: ../src/option.c:1607 -msgid "Show text entry options" -msgstr "Amosar opciones de la entrada de testu" - -#: ../src/option.c:1617 -msgid "Error options" -msgstr "Opciones de fallu" - -#: ../src/option.c:1618 -msgid "Show error options" -msgstr "Amosar opciones de fallu" - -#: ../src/option.c:1628 -msgid "Info options" -msgstr "Opciones d'información" - -#: ../src/option.c:1629 -msgid "Show info options" -msgstr "Amosar opciones d'información" - -#: ../src/option.c:1639 -msgid "File selection options" -msgstr "Opciones de Escoyeta de ficheru" - -#: ../src/option.c:1640 -msgid "Show file selection options" -msgstr "Amosar opciones d'Escoyeta de ficheru" - -#: ../src/option.c:1650 -msgid "List options" -msgstr "Opciones de la llista" - -#: ../src/option.c:1651 -msgid "Show list options" -msgstr "Amosar opciones de la llista" - -#: ../src/option.c:1661 -msgid "Notification icon options" -msgstr "Opciones del iconu de notificación" - -#: ../src/option.c:1662 -msgid "Show notification icon options" -msgstr "Amosar opciones del iconu de notificación" - -#: ../src/option.c:1672 -msgid "Progress options" -msgstr "Opciones de progresu" - -#: ../src/option.c:1673 -msgid "Show progress options" -msgstr "Amosar opciones de progresu" - -#: ../src/option.c:1683 -msgid "Question options" -msgstr "Opciones d'entruga" - -#: ../src/option.c:1684 -msgid "Show question options" -msgstr "Amosar opciones d'entruga" - -#: ../src/option.c:1694 -msgid "Warning options" -msgstr "Opciones d'avisu" - -#: ../src/option.c:1695 -msgid "Show warning options" -msgstr "Amosar opciones de avisu" - -#: ../src/option.c:1705 -msgid "Scale options" -msgstr "Opciones d'escala" - -#: ../src/option.c:1706 -msgid "Show scale options" -msgstr "Amuesa les opciones d'escala" - -#: ../src/option.c:1716 -msgid "Text information options" -msgstr "Opciones del testu d'información" - -#: ../src/option.c:1717 -msgid "Show text information options" -msgstr "Amosar opciones del testu d'información" - -#: ../src/option.c:1727 -msgid "Color selection options" -msgstr "Opciones de seleición de color" - -#: ../src/option.c:1728 -msgid "Show color selection options" -msgstr "Amosar opciones de seleición de color" - -#: ../src/option.c:1738 -msgid "Miscellaneous options" -msgstr "Opciones miscelánees" - -#: ../src/option.c:1739 -msgid "Show miscellaneous options" -msgstr "Amosar opciones miscelánees" - -#: ../src/option.c:1764 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "Esta opción nun ta disponible. Por favor llee --help pa tolos usos posibles.\n" - -#: ../src/option.c:1768 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nun ta sofitáu pa esti diálogu\n" - -#: ../src/option.c:1772 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Especificáronse opciones pa dos o más diálogos\n" diff --git a/po/az.po b/po/az.po deleted file mode 100644 index 60c5e74..0000000 --- a/po/az.po +++ /dev/null @@ -1,509 +0,0 @@ -# translation of zenity.HEAD.az.po to Azerbaijani -# translation of zenity.HEAD.az.po to Azerbaijani Turkish -# Copyright (C) 2003 Mətin Əmirov -# This file is distributed under the same license as the zenity package. -# Mətin Əmirov , 2003, 2004. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD.az\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2004-08-17 22:14+0300\n" -"Last-Translator: Mətin Əmirov \n" -"Language-Team: Azerbaijani \n" -"Language: az\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -msgid "translator-credits" -msgstr "" -"Mətin Əmirov \n" -"\n" -"Tərcümə işləri üzrə yazışma siyahısı ünvanımız:\n" -"" - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "Qabıq skriptlərindən dialoq qutularını göstər" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "(C) 2003 Sun Microsystems" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "Müəlliflər" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "İnkişafçılar" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "Tərcüməçilər" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Dialoq növü bildirməlisiniz. Təfərruatlar üçün 'zenity --help' əmrini " -"istifadə edin\n" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -#, fuzzy -msgid "Zenity notification" -msgstr "Mə'lumat dialoqunu göstər" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Siyahı dialoqu üçün sütun başlıqı seçilməyib.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "Zenity Haqqında" - -#: ../src/zenity.glade.h:3 -msgid "Add a new entry" -msgstr "Yeni giriş əlavə et" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Bütün yeniləmələr başa çatdı." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Xəta yarandı." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Davam etmək istəyirsiniz?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "Tə_qvim:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Təqvim seçimi" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Xəta" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Mə'lumat" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Gedişat" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Sual" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "İşləyir..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Aşağıdan bir tarix seçın." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Fayl seç" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Siyahıdan üzvləri seçin" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Aşağıdakı siyahıdan üzvləri seçin." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Mətn Görünüşü" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Xəbərdarlıq" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "_Müəlliflər" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "_Yeni mətn daxil edin:" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "Dialoqun başlığını seç" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "BAŞLIQ" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "Pəncərənin timsalını seç" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "TİMSALCIĞIRI" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "Eni seç" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "EN" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "Hündürlüyü seç" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "HÜNDÜRLÜK" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "Təqvim dialoqunu göstər" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "Dialoq mətnini seç" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "Cədvəl gününü seç" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "Cədvəl ayını seç" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "Cədvəl ilini seç" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "Geri bildirilən tarixin formatını seç" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "Mətn girişi dialoqunu göstər" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "Giriş mətnini seç" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "Giriş mətnini gizlət" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "Xəta dialoqunu göstər" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "Mə'lumat dialoqunu göstər" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "Fayl seçmə dialoqunu göstər" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "Fayl adını seç" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "FAYLADI" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "Birdən çox faylın seçilməsinə icazə ver" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "Çıxış ayırıcı hərfi seç" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "AYIRICI" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "Siyahı dialoqunu göstər" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "Sütun başlığını seç" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "Birinci sütun üçün işarətləmə qutusunu istifadə et" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "Birinci sütun üçün qərar düyməsini istifadə et" - -#: ../src/option.c:430 -#, fuzzy -msgid "Allow multiple rows to be selected" -msgstr "Birdən çox faylın seçilməsinə icazə ver" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "Mətndə dəyişikliklərə icazə ver" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Xüsusi sütunu göstər (Ön qurğulusu 1-dir. 'ALL' ilə bütün sütunları göstərə " -"bilərsiniz)" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -#, fuzzy -msgid "Display notification" -msgstr "Mə'lumat dialoqunu göstər" - -#: ../src/option.c:481 -#, fuzzy -msgid "Set the notification text" -msgstr "Dialoq mətnini seç" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "İrəliləmə dialoqunu göstər" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "Başlanğıc faizini seç" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "İrəliləmə çubuğunu oynat" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100%-ə çatanda dialoqu diqqətə alma" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "Sual dialoqunu göstər" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "Mətn mə'lumatı dialoqunu göstər" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "Fayl aç" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "Xəbərdarlıq dialoqunu göstər" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "Zenity Haqqında" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "Çap buraxılışı" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "Ümumi seçimlər" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "Ümumi seçimlər" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "Təqvim seçimləri" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "Təqvim seçimləri" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "Mətn girişi seçimləri" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "Mətn girişi seçimləri" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "Xəta seçimləri" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "Xəta seçimləri" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "Mə'lumat seçimləri" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "Mə'lumat seçimləri" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "Fayl seçkisi qurğuları" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "Fayl seçkisi qurğuları" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "Siyahı seçimləri" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "Siyahı seçimləri" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "İrəliləmə seçimləri" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "İrəliləmə seçimləri" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "Xəbərdarlıq seçimləri" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "Xəbərdarlıq seçimləri" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "Sual seçimləri" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "Müxtəlif seçimlər" - -#: ../src/option.c:1392 -#, fuzzy -msgid "Show miscellaneous options" -msgstr "Müxtəlif seçimlər" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, fuzzy, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "%s bu dialoq tərəfindən dəstəklənmir\n" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "İki ya da daha çox seçim verilib\n" diff --git a/po/be.po b/po/be.po deleted file mode 100644 index fd90fe9..0000000 --- a/po/be.po +++ /dev/null @@ -1,888 +0,0 @@ -# Ales Nyakhaychyk , 2003. -# Ihar Hrachyshka , 2011, 2013. -# Yuras Shumovich , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-06-10 18:57+0000\n" -"PO-Revision-Date: 2018-09-07 14:04+0300\n" -"Last-Translator: Yuras Shumovich \n" -"Language-Team: Belarusian \n" -"Language: be\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.1.1\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Гэта праграма з'яўляецца свабодным апраграмаваннем. Вы можаце распаўсюджваць " -"яе згодна з умовамі Абмежаванай Агульнай Грамадскай Ліцэнзіі GNU (LGPL), " -"апублікаванай Фондам свабоднага апраграмавання, версіі 2 ці любой " -"пазнейшай.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Гэта праграма распаўсюджваецца з надзеяй, што яна будзе карыснай, але без " -"ніякіх гарантый, у тым ліку камерцыйнай вартасці праграмы і наогул яе " -"карысці. Падрабязней глядзіце ў тэксце Абмежаванай Агульнай Грамадскай " -"Ліцэнзіі GNU (LGPL).\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Вы павінны былі атрымаць копію Абмежаванай Агульнай Грамадскай Ліцэнзіі GNU " -"(LGPL) разам з гэтай праграмай. Калі вы не атрымалі яе, паведаміце пра гэта " -"Фонду свабоднага апраграмавання на адрас: the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Аляксандр Няхайчык \n" -"Ihar Hrachyshka \n" -"Юрась Шумовіч " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Паказ дыялогавых акенцаў для сцэнарыяў праграмнай абалонкі" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Добра" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Скасаваць" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Трэба вызначыць тып дыялогавага акенца. Падрабязней глядзіце, выканаўшы " -"\"zenity --help\"\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Не" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Так" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Не ўдалося разабраць паведамленне\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Хібнае значэнне булевай падказкі.\n" -"Магчымыя значэнні: \"true\" і \"false\".\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Падказва без падтрымкі. Прапускаем.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Невядомая назва падказкі. Прапускаем.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Не ўдалося разабраць загад на стандартным уваходзе\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Апавяшчэнне Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Настроіць загаловак дыялогавага акенца" - -#: src/option.c:165 -msgid "TITLE" -msgstr "ЗАГАЛОВАК" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Настроіць значок акна" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "СЦЕЖКА_ЗНАЧКА" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Настроіць шырыню" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ШЫРЫНЯ" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Настроіць вышыню" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ВЫШЫНЯ" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Настроіць тэрмін чакання ў секундах" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ТЭРМІН" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Наставіць тэкст для кнопкі \"Добра\"" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "ТЭКСТ" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Наставіць тэкст для кнопкі \"Скасаваць\"" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Дадаць яшчэ кнопку" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Прызначыць назву для мадальнага акенца" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Прызначыць бацькоўскае акно, да якога трэба прычапіцца" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "АКНО" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Паказаць каляндар" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Настроіць тэкст дыялогавага акенца" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Настроіць дзень календара" - -#: src/option.c:252 -msgid "DAY" -msgstr "ДЗЕНЬ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Настроіць месяц календара" - -#: src/option.c:259 -msgid "MONTH" -msgstr "МЕСЯЦ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Настроіць год календара" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ГОД" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Настроіць фармат вяртання даты" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ШАБЛОН" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Паказаць дыялогавае акенца для ўводу тэксту" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Настроіць тэкст у графе ўводу" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Схаваць тэкст графы ўводу" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Паказаць дыялогавае акенца памылкі" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Настроіць значок дыялогавага акенца" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "НАЗВА-ЗНАЧКА" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Не ўжываць пераносы ў тэксце" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Не ўжываць разметку Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Скарачаць тэкст у дыялогах. Гэта выправіць вышыню акна пры наяўнасці доўгіх " -"тэкстаў" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Паказаць інфармацыйнае дыялогавае акенца" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Паказаць дыялогавае акенца выбару файлаў" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Настроіць назву файла" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "НАЗВА_ФАЙЛА" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Дазволіць выбар некалькіх файлаў" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Дазволіць выбар толькі каталогаў" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Уключыць бяспечны рэжым" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Настроіць знак-падзяляльнік вываду" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ПАДЗЯЛЯЛЬНІК" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Пацвярджаць выбар файла, калі ён ужо існуе" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Наставіць фільтр для назваў файлаў" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "НАЗВА | ШАБЛОН1 ШАБЛОН2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Паказаць дыялогавае акенца са спісам" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Прызначыць загаловак слупка" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "СЛУПОК" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Змясціць пераключальнікі ў першым слупку" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Змясціць кнопкі выбару ў першым слупку" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Змясціць выяву ў першым слупку" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Дазволіць вылучэнне некалькіх радкоў" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Дазволіць змяненне тэксту" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Вывесці змест пэўнага слупка (прадвызначана: 1; \"ALL\": вывесці змест усіх " -"слупкоў)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "НУМАР" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Схаваць пэўны слупок" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Схаваць загалоўкі слупкоў" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Змяніць прадвызначаную функцыю пошуку, каб шукаць тэкст у сярэдзіне, я не ў " -"пачатку" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Паказаць апявяшчэнне" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Настроіць тэкст апавяшчэння" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Прымаць загады на стандартным уваходзе" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Прызначыць падказкі для апавяшчэнняў" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Паказаць дыялогавае акенца выяўлення цячэння працэсу" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Настроіць пачатковае значэнне працэнтаў" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ПРАЦЭНТЫ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Пульсаваць паласой цячэння працэсу" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Закрыць дыялогавае акенца па дасягненні 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Забіць бацькоўскі працэс пры націску кнопкі \"Скасаваць\"" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Схаваць кнопку \"Скасаваць\"" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Прыблізна ацаніць калі прагрэс дасягне 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Паказаць дыялогавае акенца з пытаннем" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Прадвызначана надаць фокус кнопцы \"Скасаваць\"" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Хаваць кнопкі \"Добра\" і \"Скасаваць\"" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Паказаць інфармацыйнае дыялогавае акенца з тэкстам" - -#: src/option.c:715 -msgid "Open file" -msgstr "Адкрыць файл" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Настроіць шрыфт тэксту" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Уключыць пераключальнік \"Я прачытаў гэты тэкст і згодны з ім\"" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Уключыць падтрымку HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Не ўжываць WebView у інтэрфейсе. Гэта працуе толькі разам з опцыяй --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Прызначыць URL-спасылку замест файла. Гэта працуе толькі разам з опцыяй --" -"html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Аўтаматычна пракручваць тэкст да канца. Толькі калі тэкст узяты з " -"стандартнага ўваходу" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Паказаць перасцерагальнае дыялогавае акенца" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Паказаць дыялогавае акенца падстройкі маштабавання" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Прызначыць пачатковае значэнне" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ЗНАЧЭННЕ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Прызначыць мінімальнае значэнне" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Прызначыць максімальнае значэнне" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Прызначыць памер кроку" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Выводзіць няпоўныя значэнні" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Схаваць значэнне" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Паказаць дыялогавае акенца форм" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Дадаць новую графу ўводу ў дыялог форм" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Назва графы" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Дадаць новую графу пароля ў дыялог форм" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Дадаць новы каляндар у дыялог форм" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Назва каляндарнай графы" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Дадаць новы спіс у дыялог форм" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Назва графы і загалоўка спіса" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Спіс значэнняў для спіса" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Спіс значэнняў, падзеленых знакам \"|\"" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Спіс значэнняў для слупкоў" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Дадаць новую графу з выплыўным спісам у дыялог форм" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Назва графы з выплыўным спісам" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Спіс значэнняў для графы з выплыўным спісам" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Паказваць загаловак слупкоў" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Паказаць дыялогавае акенца для ўводу пароля" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Паказаць выбар імені карыстальніка" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Паказаць дыялогавае акенца выбару колеру" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Настроіць колер" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Паказаць палітру" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Аб Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Вывесці нумар версіі" - -#: src/option.c:1913 -msgid "General options" -msgstr "Агульныя опцыі" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Паказаць агульныя опцыі" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Опцыі календара" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Паказаць опцыі календара" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Опцыі ўводу тэксту" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Паказаць опцыі ўводу тэксту" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Опцыі дыялогу памылак" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Паказаць опцыі дыялогу памылак" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Опцыі інфармацыйнага дыялогу" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Паказаць опцыі інфармацыйнага дыялогу" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Опцыі выбару файла" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Паказаць опцыі выбару файла" - -#: src/option.c:1985 -msgid "List options" -msgstr "Опцыі спіса" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Паказаць опцыі спіса" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Опцыі значка апавяшчэння" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Паказаць опцыі значка апавяшчэння" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Опцыі цячэння працэсу" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Паказаць опцыі дыялогу цячэння працэсу" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Опцыі дыялогу-пытання" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Паказаць опцыі дыялогу-пытання" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Опцыі дыялогу-перасцярогі" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Паказаць опцыі дыялогу-перасцярогі" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Опцыі маштабавання" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Паказаць опцыі маштабавання" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Опцыі інфармацыйнага дыялогу з тэкстам" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Паказаць опцыі інфармацыйнага дыялогу з тэкстам" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Опцыі выбару колеру" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Паказаць опцыі выбару колеру" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Опцыі ўводу пароля" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Паказаць опцыі ўводу пароля" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Опцыі дыялогу форм" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Паказаць опцыі дыялогу форм" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Разнастайныя опцыі" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Паказаць разнастайныя опцыі" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Гэта опцыя адсутнічае. Каб убачыць спіс усіх магчымых опцый, ужыйце опцыю --" -"help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "гэты дыялог не падтрымлівае опцыі --%s\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Вызначана некалькі опцый дыялогу\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Упішыце ваш пароль" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Упішыце ваш імя карыстальніка і пароль" - -#: src/password.c:100 -msgid "Username:" -msgstr "Імя карыстальніка:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Пароль:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Засталася: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максімальнае значэнне мусіць быць большым за мінімальнае.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Значэнне па-за дыяпазонам.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Для дыялогавага акенца са спісам не вызначаны назвы слупкоў.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Можна ўжыць толькі адзін тып дыялогавага акенца са спісам.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Падстройка маштабавання" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Скасаваць" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Добра" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Прагляд тэксту" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Выбар даты" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Выберыце дату." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Каляндар:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Даданне новага запісу" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Упішыце новы тэкст:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Памылка" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Узнікла памылка." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Дыялог форм" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Інфармацыя" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Усе абнаўленні скончаны." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Цячэнне працэсу" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Выкананне..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Пытанне" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Ці вы насамрэч хочаце працягнуць?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Выбар элементаў са спіса" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Выберыце элементы са спіса." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Перасцярога" diff --git a/po/be@latin.po b/po/be@latin.po deleted file mode 100644 index 8f0f538..0000000 --- a/po/be@latin.po +++ /dev/null @@ -1,604 +0,0 @@ -# Biełaruski pierakład zenity -# Copyright (C) 2003 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Ales Nyakhaychyk , 2003. -# Ihar Hrachyshka , 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-10-11 13:21+0300\n" -"PO-Revision-Date: 2008-02-23 19:54+0200\n" -"Last-Translator: Ihar Hrachyshka \n" -"Language-Team: Belarusian Latin \n" -"Language: be@latin\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 0.9.6\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"Heta svabodnaja prahrama; ty možaš raspaŭsiudžvać jaje i/albo madyfikavać " -"zhodna z umovami Ahulnaj hramadzkaj licenzii GNU (GNU GPL), apublikavanaj " -"Fundacyjaj svabodnych prahramaŭ (Free Software Foundation), u versii 2 albo " -"(pry žadańni) luboj paźniejšaj.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"Hetaja prahrama raspaŭsiudžvajecca sa spadziavańniami, što jana budzie " -"karysnaj, ale BIEŹ NIJAKICH HARANTYJAŬ; navat biez harantavańnia PRYDATNAŚCI " -"DA KANKRETNAHA VYKARYSTAŃNIA. Padrabiaznaści možna pračytać u Ahulnaj " -"hramadzkaj licenzii GNU (GNU GPL).\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Ty musiŭ atrymać kopiju Ahulnaj hramadzkaj licenzii GNU (GNU GPL) razam z " -"Totemam; kali ty nie atrymaŭ jaje, napišy pra heta (pa-anhielsku) pa " -"adrasie: Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, " -"Boston, MA 02110-1301, USA." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "" -"Alaksandar Niachajčyk\n" -"Ihar Hračyška " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "Pakazvaje dyjalohavyja vokny sa skryptoŭ abałonki" - -#: ../src/main.c:94 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Ty pavinny akreślić typ dyjalohu. Hladzi vyjście \"zenity --help\" dla \n" -"padrabiaźniejšych źviestak\n" - -#: ../src/notification.c:139 -msgid "could not parse command from stdin\n" -msgstr "niemahčyma razabrać zahad sa standartnaha ŭvachodu\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Nahadvańnie Zenity" - -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksymalnaja vartaść pavinna być bolšaj za minimalnuju.\n" - -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "Vartaść vyjšła za dazvolenyja miežy.\n" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Nie akreślena nazvaŭ słupkoŭ dla akna śpisu.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "Ty pavinny vykarystoŭvać tolki adzin typ akna śpisu.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Dadaj novy element" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Uzhadniaj maštabavańnie" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "Usie aktualizacyi skončanyja." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "Uźnikła pamyłka." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "Ty nasamreč chočaš praciahvać?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "K_alandar:" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "Vybar kalendara" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "Pamyłka" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "Źviestki" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "Prahres" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "Pytańnie" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "Vykonvajecca..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "Abiary nižej datu." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "Abiary fajł" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "Abiary elementy sa śpisu" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "Abiary elementy sa śpisu, prapanavanaha nižej." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "Pakaz tekstu" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "Papiaredžańnie" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "U_viadzi novy tekst:" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "Akreśl zahałovak akna" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "ZAHAŁOVAK" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "Akreśl ikonu akna" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "ŚCIEŽKA_IKONY" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "Akreśl šyryniu" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "ŠYRYNIA" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "Akreśl vyšyniu" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "VYŠYNIA" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "Akreśl čas tryvańnia akna ŭ sekundach" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "TERMIN" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "Pakažy akno kalendara" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:428 ../src/option.c:558 -#: ../src/option.c:620 ../src/option.c:704 ../src/option.c:737 -msgid "Set the dialog text" -msgstr "Akreśl tekst akna" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:429 ../src/option.c:526 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:630 ../src/option.c:639 -#: ../src/option.c:705 ../src/option.c:738 -msgid "TEXT" -msgstr "TEKST" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "Akreśl dzień kalendara" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "DZIEŃ" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "Akreśl miesiac kalendara" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "MIESIAC" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "Akreśl hod kalendara" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "HOD" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "Akreśl farmat daty dla viartańnia" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "UZOR" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "Pakažy akno dla ŭvodu tekstu" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "Akreśl tekst dla pola ŭvodu" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "Schavaj tekst pola ŭvodu" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "Pakažy akno pamyłki" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:647 -#: ../src/option.c:713 -msgid "Do not enable text wrapping" -msgstr "Nie ŭklučaj pieranosu radkoŭ u tekście" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "Pakažy akno źviestak" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "Pakažy akno vybaru fajłu" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "Akreśl nazvu fajłu" - -#: ../src/option.c:351 ../src/option.c:672 -msgid "FILENAME" -msgstr "NAZVA_FAJŁU" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "Dazvol vybar niekalkich fajłaŭ" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "Uklučy vybar tolki dla katalohaŭ" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "Uklučy biaśpiečny režym" - -#: ../src/option.c:386 ../src/option.c:464 -msgid "Set output separator character" -msgstr "Akreśl znak-separatar vyjścia" - -#: ../src/option.c:387 ../src/option.c:465 -msgid "SEPARATOR" -msgstr "SEPARATAR" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "Paćvierdź vybar fajłu, kali jon užo isnuje" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "Akreślaje filter fajłaŭ" - -#: ../src/option.c:405 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAZVA | ŠABLON1 ŠABLON2 ..." - -#: ../src/option.c:419 -msgid "Display list dialog" -msgstr "Pakažy akno śpisu" - -#: ../src/option.c:437 -msgid "Set the column header" -msgstr "Akreśl zahałovak kalony" - -#: ../src/option.c:438 -msgid "COLUMN" -msgstr "KALONA" - -#: ../src/option.c:446 -msgid "Use check boxes for first column" -msgstr "Užyj paznačalniki dla pieršaj kalony" - -#: ../src/option.c:455 -msgid "Use radio buttons for first column" -msgstr "Užyj pieraklučalniki dla pieršaj kalony" - -#: ../src/option.c:473 -msgid "Allow multiple rows to be selected" -msgstr "Dazvol vybar niekalkich radkoŭ" - -#: ../src/option.c:482 ../src/option.c:680 -msgid "Allow changes to text" -msgstr "Dazvol źmianiać tekst" - -#: ../src/option.c:491 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "Drukuj peŭnuju kalonu (zmoŭčana 1, \"ALL\" dla druku ŭsich kalonaŭ)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:493 ../src/option.c:502 -msgid "NUMBER" -msgstr "NUMAR" - -#: ../src/option.c:501 -msgid "Hide a specific column" -msgstr "Schavaj peŭnuju kalonu" - -#: ../src/option.c:516 -msgid "Display notification" -msgstr "Pakažy nahadvańnie" - -#: ../src/option.c:525 -msgid "Set the notification text" -msgstr "Akreśl tekst nahadvańnia" - -#: ../src/option.c:534 -msgid "Listen for commands on stdin" -msgstr "Słuchaj zahady na standartnym uvachodzie" - -#: ../src/option.c:549 -msgid "Display progress indication dialog" -msgstr "Pakažy akno indykacyi prahresu" - -#: ../src/option.c:567 -msgid "Set initial percentage" -msgstr "Akreśl pačatkovuju pracentavuju vartaść" - -#: ../src/option.c:568 -msgid "PERCENTAGE" -msgstr "PRACENT" - -#: ../src/option.c:576 -msgid "Pulsate progress bar" -msgstr "Mirhaj pałasoju prahresu" - -#: ../src/option.c:586 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Začyni akno, kali budzie dasiahnuta vartaść u 100%" - -#: ../src/option.c:596 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "Zabivaj baćkoŭski praces, kali naciskajecca Anuluj" - -#: ../src/option.c:611 -msgid "Display question dialog" -msgstr "Pakažy akno z pytańniem" - -#: ../src/option.c:629 -msgid "Sets the label of the Ok button" -msgstr "Akreślaje podpis dla knopki „OK”" - -#: ../src/option.c:638 -msgid "Sets the label of the Cancel button" -msgstr "Akreślaje podpis dla knopki „Anuluj”" - -#: ../src/option.c:662 -msgid "Display text information dialog" -msgstr "Pakažy akno z tekstavymi źviestkami" - -#: ../src/option.c:671 -msgid "Open file" -msgstr "Adčyni fajł" - -#: ../src/option.c:695 -msgid "Display warning dialog" -msgstr "Pakažy akno z papiaredžańniem" - -#: ../src/option.c:728 -msgid "Display scale dialog" -msgstr "Pakažy akno maštabavańnia" - -#: ../src/option.c:746 -msgid "Set initial value" -msgstr "Akreśl pačatkovuju vartaść" - -#: ../src/option.c:747 ../src/option.c:756 ../src/option.c:765 -#: ../src/option.c:774 -msgid "VALUE" -msgstr "VARTAŚĆ" - -#: ../src/option.c:755 -msgid "Set minimum value" -msgstr "Akreśl minimalnuju vartaść" - -#: ../src/option.c:764 -msgid "Set maximum value" -msgstr "Akreśl maksymalnuju vartaść" - -#: ../src/option.c:773 -msgid "Set step size" -msgstr "Akreśl pamier kroku" - -#: ../src/option.c:782 -msgid "Print partial values" -msgstr "Drukuj častkovyja vartaści" - -#: ../src/option.c:791 -msgid "Hide value" -msgstr "Schavaj vartaść" - -#: ../src/option.c:806 -msgid "About zenity" -msgstr "Pra Zenity" - -#: ../src/option.c:815 -msgid "Print version" -msgstr "Vyviedzi versiju" - -#: ../src/option.c:1470 -msgid "General options" -msgstr "Ahulnyja opcyi" - -#: ../src/option.c:1471 -msgid "Show general options" -msgstr "Pakažy ahulnyja opcyi" - -#: ../src/option.c:1481 -msgid "Calendar options" -msgstr "Opcyi kalendara" - -#: ../src/option.c:1482 -msgid "Show calendar options" -msgstr "Pakažy opcyi kalendara" - -#: ../src/option.c:1492 -msgid "Text entry options" -msgstr "Opcyi pola ŭvodu" - -#: ../src/option.c:1493 -msgid "Show text entry options" -msgstr "Pakažy opcyi pola ŭvodu tekstu" - -#: ../src/option.c:1503 -msgid "Error options" -msgstr "Opcyi pamyłki" - -#: ../src/option.c:1504 -msgid "Show error options" -msgstr "Pakažy opcyi akna pamyłki" - -#: ../src/option.c:1514 -msgid "Info options" -msgstr "Opcyi źviestak" - -#: ../src/option.c:1515 -msgid "Show info options" -msgstr "Pakažy opcyi akna źviestak" - -#: ../src/option.c:1525 -msgid "File selection options" -msgstr "Opcyi vybaru fajłu" - -#: ../src/option.c:1526 -msgid "Show file selection options" -msgstr "Pakažy opcyi akna vybaru fajłu" - -#: ../src/option.c:1536 -msgid "List options" -msgstr "Opcyi śpisu" - -#: ../src/option.c:1537 -msgid "Show list options" -msgstr "Pakažy opcyi śpisu elementaŭ" - -#: ../src/option.c:1547 -msgid "Notification icon options" -msgstr "Opcyi ikony nahadvańnia" - -#: ../src/option.c:1548 -msgid "Show notification icon options" -msgstr "Pakažy opcyi ikony nahadvańnia" - -#: ../src/option.c:1558 -msgid "Progress options" -msgstr "Opcyi prahresu" - -#: ../src/option.c:1559 -msgid "Show progress options" -msgstr "Pakažy opcyi pałasy prahresu" - -#: ../src/option.c:1569 -msgid "Question options" -msgstr "Opcyi pytańnia" - -#: ../src/option.c:1570 -msgid "Show question options" -msgstr "Pakažy opcyi akna pytańnia" - -#: ../src/option.c:1580 -msgid "Warning options" -msgstr "Opcyi papiaredžańnia" - -#: ../src/option.c:1581 -msgid "Show warning options" -msgstr "Pakažy opcyi akna papiaredžańnia" - -#: ../src/option.c:1591 -msgid "Scale options" -msgstr "Opcyi maštabavańnia" - -#: ../src/option.c:1592 -msgid "Show scale options" -msgstr "Pakažy opcyi maštabavańnia" - -#: ../src/option.c:1602 -msgid "Text information options" -msgstr "Opcyi tekstavych źviestak" - -#: ../src/option.c:1603 -msgid "Show text information options" -msgstr "Pakažy opcyi tekstavych źviestak" - -#: ../src/option.c:1613 -msgid "Miscellaneous options" -msgstr "Raznastajnyja opcyi" - -#: ../src/option.c:1614 -msgid "Show miscellaneous options" -msgstr "Pakažy raznastajnyja opcyi" - -#: ../src/option.c:1639 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Hetaja opcyja niedastupnaja. Hladzi --help dla mahčymych varyjantaŭ " -"vykarystańnia.\n" - -#: ../src/option.c:1643 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nie padtrymlivajecca dla hetaha akna\n" - -#: ../src/option.c:1647 -msgid "Two or more dialog options specified\n" -msgstr "Akreślena niekalki opcyjaŭ akna\n" diff --git a/po/bg.po b/po/bg.po deleted file mode 100644 index c6ad6cb..0000000 --- a/po/bg.po +++ /dev/null @@ -1,797 +0,0 @@ -# Bulgarian translation of zenity po-file. -# Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# Copyright (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Rostislav Raykov , 2004, 2005, 2006. -# Vladimir Petkov , 2005. -# Alexander Shopov , 2007, 2008, 2010, 2011, 2012, 2013. -# -# -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 06:59+0200\n" -"PO-Revision-Date: 2013-01-09 06:58+0200\n" -"Last-Translator: Alexander Shopov \n" -"Language-Team: Bulgarian \n" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Тази програма (zenity) е свободен софтуер. Можете да я разпространявате и/" -"или променяте под условията на Общия публичен лиценз на GNU (GNU GPL), както " -"е публикуван от Фондацията за свободен софтуер — версия 2 на лиценза или (по " -"ваше решение) по-късна версия.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Тази програма се разпространява с надеждата, че ще бъде полезна, но БЕЗ " -"НИКАКВИ ГАРАНЦИИ, дори и косвените за ПРОДАЖБА или СЪОТВЕТСТВИЕ С КАКВАТО И " -"ДА Е УПОТРЕБА. За подробности погледнете Общия публичен лиценз на GNU.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Трябва да сте получили копие от Общия публичен лиценз на GNU (GNU GPL) " -"заедно с тази програма. Ако не сте, пишете до Free Software Foundation, " -"Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"Ростислав Райков \n" -"Владимир Петков \n" -"Александър Шопов \n" -"\n" -"Проектът за превод на GNOME има нужда от подкрепа.\n" -"Научете повече за нас на http://gnome.cult." -"bg\n" -"Докладвайте за грешки на http://gnome." -"cult.bg/bugs" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Показва диалогови прозорци от конзолни скриптове" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Трябва да изберете вид на прозореца. Вижте „zenity --help“ за повече " -"информация\n" - -#: ../src/notification.c:95 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "командата от стандартния вход не може да се анализира\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "Въведеното на стандартния вход не може да се анализира\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "Уведомяване на Zenity" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "Въведете паролата си" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "Потребителско име:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "Парола:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максималната стойност трябва да е по-голяма от минималната.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "Стойността е извън допустимите.\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Няма посочени заглавия на колоните във прозореца със списък\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Трябва да използвате само един вид на прозорец със списък.\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "Избор на календар" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "Избор на дата по-долу" - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "К_алендар:" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "Добавяне на нов запис" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "Въвеждан_е на нов текст:" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "Грешка" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "Появи се грешка." - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "Прозорец за формуляр" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "Информация" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "Всички обновявания са завършени." - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "Прогрес" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "Изпълнява се…" - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "Въпрос" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "Сигурни ли сте, че желаете да продължите?" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "Нагласяне на стойността на скалата" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "Текстов изглед" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "Избор на записи от списъка" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "Избор на записи от списъка долу" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "Внимание" - -#: ../src/option.c:157 -msgid "Set the dialog title" -msgstr "Задаване на заглавието на прозореца" - -#: ../src/option.c:158 -msgid "TITLE" -msgstr "ЗАГЛАВИЕ" - -#: ../src/option.c:166 -msgid "Set the window icon" -msgstr "Задаване на иконката на прозореца" - -#: ../src/option.c:167 -msgid "ICONPATH" -msgstr "ПЪТ_ДО_ИКОНКАТА" - -#: ../src/option.c:175 -msgid "Set the width" -msgstr "Задаване на широчината" - -#: ../src/option.c:176 -msgid "WIDTH" -msgstr "ШИРОЧИНА" - -#: ../src/option.c:184 -msgid "Set the height" -msgstr "Задаване на височината" - -#: ../src/option.c:185 -msgid "HEIGHT" -msgstr "ВИСОЧИНА" - -#: ../src/option.c:193 -msgid "Set dialog timeout in seconds" -msgstr "Задаване на времето за прозореца в секунди" - -#. Timeout for closing the dialog -#: ../src/option.c:195 -msgid "TIMEOUT" -msgstr "ВРЕМЕ_ЗА_ИЗТИЧАНЕ" - -#: ../src/option.c:203 -msgid "Sets the label of the Ok button" -msgstr "Задаване на текста на бутона за потвърждение" - -#: ../src/option.c:204 ../src/option.c:213 ../src/option.c:246 -#: ../src/option.c:306 ../src/option.c:315 ../src/option.c:349 -#: ../src/option.c:399 ../src/option.c:528 ../src/option.c:644 -#: ../src/option.c:679 ../src/option.c:751 ../src/option.c:819 -#: ../src/option.c:828 ../src/option.c:872 ../src/option.c:922 -#: ../src/option.c:1073 -msgid "TEXT" -msgstr "ТЕКСТ" - -#: ../src/option.c:212 -msgid "Sets the label of the Cancel button" -msgstr "Задаване на текста на бутона за отказ" - -#: ../src/option.c:221 -msgid "Set the modal hint" -msgstr "Задаване на подсказката на модалния прозорец" - -#: ../src/option.c:236 -msgid "Display calendar dialog" -msgstr "Показване на прозорец с календар" - -#: ../src/option.c:245 ../src/option.c:305 ../src/option.c:348 -#: ../src/option.c:398 ../src/option.c:527 ../src/option.c:678 -#: ../src/option.c:750 ../src/option.c:871 ../src/option.c:921 -#: ../src/option.c:1072 -msgid "Set the dialog text" -msgstr "Задаване на текста на прозореца" - -#: ../src/option.c:254 -msgid "Set the calendar day" -msgstr "Задаване на деня на календара" - -#: ../src/option.c:255 -msgid "DAY" -msgstr "ДЕН" - -#: ../src/option.c:263 -msgid "Set the calendar month" -msgstr "Задаване на месеца на календара" - -#: ../src/option.c:264 -msgid "MONTH" -msgstr "МЕСЕЦ" - -#: ../src/option.c:272 -msgid "Set the calendar year" -msgstr "Задаване на годината на календара" - -#: ../src/option.c:273 -msgid "YEAR" -msgstr "ГОДИНА" - -#: ../src/option.c:281 ../src/option.c:1090 -msgid "Set the format for the returned date" -msgstr "Задаване на формата на връщаната дата" - -#: ../src/option.c:282 ../src/option.c:1091 -msgid "PATTERN" -msgstr "ШАБЛОН" - -#: ../src/option.c:296 -msgid "Display text entry dialog" -msgstr "Показване на прозорец за въвеждане на текст" - -#: ../src/option.c:314 -msgid "Set the entry text" -msgstr "Задаване на текста на записа" - -#: ../src/option.c:323 -msgid "Hide the entry text" -msgstr "Скриване на текста на записа" - -#: ../src/option.c:339 -msgid "Display error dialog" -msgstr "Показване на прозорец за грешка" - -#: ../src/option.c:357 ../src/option.c:407 ../src/option.c:759 -#: ../src/option.c:880 -msgid "Set the dialog icon" -msgstr "Задаване на иконата на прозореца" - -#: ../src/option.c:358 ../src/option.c:408 ../src/option.c:760 -#: ../src/option.c:881 -msgid "ICON-NAME" -msgstr "ИМЕ_НА_ИКОНАТА" - -#: ../src/option.c:366 ../src/option.c:416 ../src/option.c:768 -#: ../src/option.c:889 -msgid "Do not enable text wrapping" -msgstr "Текстът да не обгражда обектите" - -#: ../src/option.c:375 ../src/option.c:425 ../src/option.c:777 -#: ../src/option.c:898 -msgid "Do not enable pango markup" -msgstr "Без маркиране на текста чрез Pango" - -#: ../src/option.c:389 -msgid "Display info dialog" -msgstr "Показване на прозорец с информация" - -#: ../src/option.c:439 -msgid "Display file selection dialog" -msgstr "Показване на прозорец за избор на файл" - -#: ../src/option.c:448 -msgid "Set the filename" -msgstr "Задаване на файловото име" - -#: ../src/option.c:449 ../src/option.c:801 -msgid "FILENAME" -msgstr "ИМЕ_НА_ФАЙЛА" - -#: ../src/option.c:457 -msgid "Allow multiple files to be selected" -msgstr "Позволяване на избор на множество файлове" - -#: ../src/option.c:466 -msgid "Activate directory-only selection" -msgstr "Включване на избора само на папки" - -#: ../src/option.c:475 -msgid "Activate save mode" -msgstr "Активиране на режим на запазване" - -#: ../src/option.c:484 ../src/option.c:572 ../src/option.c:1081 -msgid "Set output separator character" -msgstr "Задаване на изходния знак-разделител" - -#: ../src/option.c:485 ../src/option.c:573 ../src/option.c:1082 -msgid "SEPARATOR" -msgstr "РАЗДЕЛИТЕЛ" - -#: ../src/option.c:493 -msgid "Confirm file selection if filename already exists" -msgstr "" -"Потвърждаване на избора на файл, ако вече\n" -" съществува файл с такова име" - -#: ../src/option.c:502 -msgid "Sets a filename filter" -msgstr "Задаване на филтър по файлово име" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:504 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "ИМЕ | ШАБЛОН1 ШАБЛОН2 …" - -#: ../src/option.c:518 -msgid "Display list dialog" -msgstr "Показване на прозорец със списък" - -#: ../src/option.c:536 -msgid "Set the column header" -msgstr "Задаване на заглавието на колоната" - -#: ../src/option.c:537 -msgid "COLUMN" -msgstr "КОЛОНА" - -#: ../src/option.c:545 -msgid "Use check boxes for first column" -msgstr "Ползване на поле за избор за първата колона" - -#: ../src/option.c:554 -msgid "Use radio buttons for first column" -msgstr "Ползване на радио бутони за първата колона" - -#: ../src/option.c:563 -msgid "Use an image for first column" -msgstr "Ползване на изображение за първата колона" - -#: ../src/option.c:581 -msgid "Allow multiple rows to be selected" -msgstr "Позволяване на избор на множество редове" - -#: ../src/option.c:590 ../src/option.c:809 -msgid "Allow changes to text" -msgstr "Позволяване на промени по текста" - -#: ../src/option.c:599 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Печат на определена колона (по подразбиране \n" -" е 1-та. „ALL“ може да се използва за " -"печат\n" -" на всички колони)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:601 ../src/option.c:610 -msgid "NUMBER" -msgstr "НОМЕР" - -#: ../src/option.c:609 -msgid "Hide a specific column" -msgstr "Скриване на специфична колона" - -#: ../src/option.c:618 -msgid "Hides the column headers" -msgstr "Скрива заглавията на колоните" - -#: ../src/option.c:634 -msgid "Display notification" -msgstr "Показване на уведомяване" - -#: ../src/option.c:643 -msgid "Set the notification text" -msgstr "Задаване на текста за уведомяване" - -#: ../src/option.c:652 -msgid "Listen for commands on stdin" -msgstr "Очакване на команди от стандартния вход" - -#: ../src/option.c:669 -msgid "Display progress indication dialog" -msgstr "Показване на прозорец с индикация за прогрес" - -#: ../src/option.c:687 -msgid "Set initial percentage" -msgstr "Задаване на началния прогрес" - -#: ../src/option.c:688 -msgid "PERCENTAGE" -msgstr "ПРОЦЕНТ" - -#: ../src/option.c:696 -msgid "Pulsate progress bar" -msgstr "Пулсираща индикация за прогреса" - -#: ../src/option.c:706 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Затваряне на прозореца след стигане на 100%" - -#: ../src/option.c:716 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "" -"Убиване на родителския процес при натискане \n" -" на бутона за отказ" - -#: ../src/option.c:726 -#, no-c-format -msgid "Hide Cancel button" -msgstr "Скриване на бутона за отказ" - -#: ../src/option.c:741 -msgid "Display question dialog" -msgstr "Показване на прозорец с въпрос" - -#: ../src/option.c:791 -msgid "Display text information dialog" -msgstr "Показване на прозорец с текстова информация" - -#: ../src/option.c:800 -msgid "Open file" -msgstr "Отваряне на файл" - -#: ../src/option.c:818 -msgid "Set the text font" -msgstr "Задаване на шрифта текста" - -#: ../src/option.c:827 -msgid "Enable an I read and agree checkbox" -msgstr "Поле за избор на „Прочетох и се съгласявам“" - -#: ../src/option.c:837 -msgid "Enable html support" -msgstr "Поддръжка на HTML" - -#: ../src/option.c:846 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "Задава адрес вместо файл. Работи само заедно с опцията „--html“" - -#: ../src/option.c:847 -msgid "URL" -msgstr "Адрес" - -#: ../src/option.c:862 -msgid "Display warning dialog" -msgstr "Показване на прозорец с предупреждение" - -#: ../src/option.c:912 -msgid "Display scale dialog" -msgstr "Показване на прозорец със скала" - -#: ../src/option.c:930 -msgid "Set initial value" -msgstr "Задаване на начална стойност" - -#: ../src/option.c:931 ../src/option.c:940 ../src/option.c:949 -#: ../src/option.c:958 ../src/option.c:1139 -msgid "VALUE" -msgstr "СТОЙНОСТ" - -#: ../src/option.c:939 -msgid "Set minimum value" -msgstr "Задаване на минимална стойност" - -#: ../src/option.c:948 -msgid "Set maximum value" -msgstr "Задаване на максимална стойност" - -#: ../src/option.c:957 -msgid "Set step size" -msgstr "Задаване на стъпка" - -#: ../src/option.c:966 -msgid "Print partial values" -msgstr "Отпечатване на частични стойности" - -#: ../src/option.c:975 -msgid "Hide value" -msgstr "Скриване на стойност" - -#: ../src/option.c:990 -msgid "Display forms dialog" -msgstr "Показване на прозорец за формуляр" - -#: ../src/option.c:999 -msgid "Add a new Entry in forms dialog" -msgstr "Добавяне на ново поле във формуляра" - -#: ../src/option.c:1000 ../src/option.c:1009 -msgid "Field name" -msgstr "Име на поле" - -#: ../src/option.c:1008 -msgid "Add a new Password Entry in forms dialog" -msgstr "Добавяне на поле за парола във формуляра" - -#: ../src/option.c:1017 -msgid "Add a new Calendar in forms dialog" -msgstr "Добавяне на поле за календар във формуляра" - -#: ../src/option.c:1018 -msgid "Calendar field name" -msgstr "Име на поле за календар" - -#: ../src/option.c:1026 -msgid "Add a new List in forms dialog" -msgstr "Добавяне на нов списък във формуляра" - -#: ../src/option.c:1027 -msgid "List field and header name" -msgstr "Списък с полетата и заглавията" - -#: ../src/option.c:1035 -msgid "List of values for List" -msgstr "Списък със стойностите" - -#: ../src/option.c:1036 ../src/option.c:1045 -msgid "List of values separated by |" -msgstr "Списък със стойностите разделени с „|“" - -#: ../src/option.c:1044 -msgid "List of values for columns" -msgstr "Списък със стойностите за колоните" - -#: ../src/option.c:1063 -msgid "Show the columns header" -msgstr "Показване на заглавията на колоните" - -#: ../src/option.c:1105 -msgid "Display password dialog" -msgstr "Показване на прозорец за парола" - -#: ../src/option.c:1114 -msgid "Display the username option" -msgstr "Показване на опцията за потребителско име" - -#: ../src/option.c:1129 -msgid "Display color selection dialog" -msgstr "Показване на прозорец за избор на цвят" - -#: ../src/option.c:1138 -msgid "Set the color" -msgstr "Задаване на цвета" - -#: ../src/option.c:1147 -msgid "Show the palette" -msgstr "Показване на палитрата" - -#: ../src/option.c:1162 -msgid "About zenity" -msgstr "Относно Zenity" - -#: ../src/option.c:1171 -msgid "Print version" -msgstr "Отпечатване на версията" - -#: ../src/option.c:2059 -msgid "General options" -msgstr "Общи опции" - -#: ../src/option.c:2060 -msgid "Show general options" -msgstr "Показване на общите опции" - -#: ../src/option.c:2070 -msgid "Calendar options" -msgstr "Опции на календара" - -#: ../src/option.c:2071 -msgid "Show calendar options" -msgstr "Показване на опциите на календара" - -#: ../src/option.c:2081 -msgid "Text entry options" -msgstr "Опции на въвеждането на текст" - -#: ../src/option.c:2082 -msgid "Show text entry options" -msgstr "Показване на опциите за въвеждането на текст" - -#: ../src/option.c:2092 -msgid "Error options" -msgstr "Опции за грешките" - -#: ../src/option.c:2093 -msgid "Show error options" -msgstr "Показване на опциите за грешки" - -#: ../src/option.c:2103 -msgid "Info options" -msgstr "Опции на информацията" - -#: ../src/option.c:2104 -msgid "Show info options" -msgstr "Показване на опциите за информация" - -#: ../src/option.c:2114 -msgid "File selection options" -msgstr "Опции на избирането на файл" - -#: ../src/option.c:2115 -msgid "Show file selection options" -msgstr "Показване на опциите за избор на файлове" - -#: ../src/option.c:2125 -msgid "List options" -msgstr "Опции на списъците" - -#: ../src/option.c:2126 -msgid "Show list options" -msgstr "Показване на опциите за списъци" - -#: ../src/option.c:2137 -msgid "Notification icon options" -msgstr "Опции на иконата за уведомяване" - -#: ../src/option.c:2138 -msgid "Show notification icon options" -msgstr "" -"Показване на опциите на иконата за\n" -" уведомяване" - -#: ../src/option.c:2149 -msgid "Progress options" -msgstr "Опции за отчитането на прогреса" - -#: ../src/option.c:2150 -msgid "Show progress options" -msgstr "Показване на опциите за прогреса" - -#: ../src/option.c:2160 -msgid "Question options" -msgstr "Опции на въпросите" - -#: ../src/option.c:2161 -msgid "Show question options" -msgstr "Показване на опциите за въпросите" - -#: ../src/option.c:2171 -msgid "Warning options" -msgstr "Опции на предупрежденията" - -#: ../src/option.c:2172 -msgid "Show warning options" -msgstr "Показване на опциите за предупреждения" - -#: ../src/option.c:2182 -msgid "Scale options" -msgstr "Опции на скалата" - -#: ../src/option.c:2183 -msgid "Show scale options" -msgstr "Показване на опциите на скалата" - -#: ../src/option.c:2193 -msgid "Text information options" -msgstr "Опции на текста за уведомяване" - -#: ../src/option.c:2194 -msgid "Show text information options" -msgstr "" -"Показване на опциите на текста за \n" -" уведомяване" - -#: ../src/option.c:2204 -msgid "Color selection options" -msgstr "Опции на избирането на цвят" - -#: ../src/option.c:2205 -msgid "Show color selection options" -msgstr "Показване на опциите за избор на цвят" - -#: ../src/option.c:2215 -msgid "Password dialog options" -msgstr "Опции на прозореца за паролата" - -#: ../src/option.c:2216 -msgid "Show password dialog options" -msgstr "Показване на опциите на прозореца за паролата" - -#: ../src/option.c:2226 -msgid "Forms dialog options" -msgstr "Опции на прозореца за формуляра" - -#: ../src/option.c:2227 -msgid "Show forms dialog options" -msgstr "Показване на опциите на прозореца за формуляра" - -#: ../src/option.c:2237 -msgid "Miscellaneous options" -msgstr "Други опции" - -#: ../src/option.c:2238 -msgid "Show miscellaneous options" -msgstr "Показване на другите опции" - -#: ../src/option.c:2263 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Тази опция не е налична. Погледнете „--help“ за всички възможни начини на " -"употреба.\n" - -#: ../src/option.c:2267 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "опцията „--%s“ не се поддържа от този прозорец\n" - -#: ../src/option.c:2271 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Указани са две или повече диалогови опции\n" diff --git a/po/bn.po b/po/bn.po deleted file mode 100644 index 7b41ef7..0000000 --- a/po/bn.po +++ /dev/null @@ -1,723 +0,0 @@ -# Bengali translation of Zenity. -# Copyright (C) 2003 THE Zenity'S COPYRIGHT HOLDER -# This file is distributed under the same license as the Zenity package. -# Sayamindu Dasgupta , 2003. -# Mahay Alam Khan , 2005. -# Samia Niamatullah , 2005. -# Khandakar Mujahidul Islam , 2007. -# Israt Jahan , 2010. -# Sadia Afroz , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: bn\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&component=general\n" -"POT-Creation-Date: 2010-02-23 19:54+0000\n" -"PO-Revision-Date: 2010-03-23 17:27+0600\n" -"Last-Translator: Sadia Afroz \n" -"Language-Team: Bengali \n" -"Language: bn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; মুক্ত সফটওয়্যার ফাউন্ডেশন দ্বারা " -"প্রকাশিত GNU লেজার সাধারণ পাবলিক লাইসেন্সের শর্তানুযায়ী আপনি এটাকে পুনঃবিতরণ " -"এবং/অথবা পরিবর্তন করতে পারেন; লাইসেন্সের সংস্করণ ২ অথবা (আপনার " -"সুবিধানুযায়ী) ঊর্ধ্বতন যেকোনো সংস্করণ।\n" - -#: ../src/about.c:68 -#| msgid "" -#| "This program is distributed in the hope that it will be useful, but " -#| "WITHOUT ANY WARRANTY; without even the implied warranty of " -#| "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General " -#| "Public License for more details.\n" -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত হবেন, " -"কিন্তু কোনো সুস্পষ্ট ওয়ারেন্টি ছাড়া; এমনকি বাণিজ্যিক বা কোনো সুনির্দিষ্ট " -"কাজের জন্য অন্তর্নিহিত ওয়ারেন্টিও অনুপস্থিত। আরও বিস্তারিত জানতে GNU লেজার " -"সাধারণ পাবলিক লাইসেন্স দেখুন।\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"আপনি হয়ত এই প্রোগ্রামের সাথে GNU লেজার সাধারণ পাবলিক লাইসেন্সের একটি অনুলিপি " -"পেয়ে থাকবেন; যদি না পান তবে Free Software Foundation, Inc., 51 Franklin " -"Street, Fifth Floor, Boston, MA 02110-1301, USA ঠিকানায় লিখুন।" - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"অঙ্কুর প্রকল্পের পক্ষ থেকে সায়মিন্দু দাশগুপ্ত \n" -"মাহে আলম খান \n" -"সামিয়া নিয়ামতুল্লাহ \n" -"খন্দকার মুজাহিদুল ইসলাম সুজন \n" -"ইসরাত জাহান \n" -"সাদিয়া আফরোজ " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "শেল স্ক্রিপ্ট থেকে ডায়ালগ বাক্স প্রদর্শন" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"আপনাকে কোন একটি ডায়ালগের ধরন নির্বাচন করতে হবে। বিস্তারিত তথ্যের জন্য " -"'zenity --সহায়তা' দেখুন\n" - -#: ../src/notification.c:138 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin থেকে কমান্ড পার্স করা যায়নি\n" - -#: ../src/notification.c:177 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin থেকে বার্তা পার্স করা যায়নি\n" - -#: ../src/notification.c:262 ../src/notification.c:279 -msgid "Zenity notification" -msgstr "Zenity ঘোষনা" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "সর্বনিম্ন মানের তুলনায় সর্বোচ্চ মান অবশ্যই অধিক হবে।\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "উল্লিখিত মান সীমাবহির্ভূত।\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "তালিকা ডায়ালগের জন্য কোন কলাম শিরোনাম উল্লেখ করা হয়নি।\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "আপনি শুধু এক ধরনের ডায়ালগ তালিকা ব্যবহার করতে পারবেন।\n" - -#: ../src/zenity.ui.h:1 -msgid "Add a new entry" -msgstr "নতুন এন্ট্রি যোগ করুন" - -#: ../src/zenity.ui.h:2 -msgid "Adjust the scale value" -msgstr "আকার পরিবর্তনের মান নির্ধারণ করুন" - -#: ../src/zenity.ui.h:3 -msgid "All updates are complete." -msgstr "সকল হালনাগাদকরণ সম্পন্ন।" - -#: ../src/zenity.ui.h:4 -msgid "An error has occurred." -msgstr "একটি ত্রুটি দেখা দিয়েছে।" - -#: ../src/zenity.ui.h:5 -msgid "Are you sure you want to proceed?" -msgstr "আপনি কি নিশ্চিত যে আপনি অগ্রসর হতে চান?" - -#: ../src/zenity.ui.h:6 -msgid "C_alendar:" -msgstr "ক্যালেন্ডার: (_a)" - -#: ../src/zenity.ui.h:7 -msgid "Calendar selection" -msgstr "ক্যালেন্ডার নির্বাচন" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "ত্রুটি" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "তথ্য" - -#: ../src/zenity.ui.h:10 -msgid "Progress" -msgstr "অগ্রগতি" - -#: ../src/zenity.ui.h:11 -msgid "Question" -msgstr "প্রশ্ন" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "সচল..." - -#: ../src/zenity.ui.h:13 -msgid "Select a date from below." -msgstr "নীচ থেকে একটি তারিখ নির্বাচন করুন।" - -#: ../src/zenity.ui.h:14 -msgid "Select items from the list" -msgstr "তালিকা থেকে আইটেম নির্বাচন করুন" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list below." -msgstr "নিম্নের তালিকা থেকে আইটেম নির্বাচন করুন।" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "টেক্সট প্রদর্শন" - -#: ../src/zenity.ui.h:17 -msgid "Warning" -msgstr "সতর্কীকরণ" - -#: ../src/zenity.ui.h:18 -msgid "_Enter new text:" -msgstr "নতুন টেক্সট লিখুন: (_E)" - -#: ../src/option.c:121 -msgid "Set the dialog title" -msgstr "ডায়ালগের শিরোনাম নির্ধারণ করুন" - -#: ../src/option.c:122 -msgid "TITLE" -msgstr "TITLE" - -#: ../src/option.c:130 -msgid "Set the window icon" -msgstr "উইন্ডোর আইকন নির্ধারণ করুন" - -#: ../src/option.c:131 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:139 -msgid "Set the width" -msgstr "প্রস্থ নির্ধারণ করুন" - -#: ../src/option.c:140 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:148 -msgid "Set the height" -msgstr "উচ্চতা নির্ধারণ করুন" - -#: ../src/option.c:149 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:157 -msgid "Set dialog timeout in seconds" -msgstr "ডায়ালগের সময় উত্তীর্ণ সেকেন্ডে নির্ধারণ করুন" - -#. Timeout for closing the dialog -#: ../src/option.c:159 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:173 -msgid "Display calendar dialog" -msgstr "ক্যালেন্ডার ডায়ালগ প্রদর্শন" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:285 -#: ../src/option.c:318 ../src/option.c:430 ../src/option.c:569 -#: ../src/option.c:631 ../src/option.c:715 ../src/option.c:748 -msgid "Set the dialog text" -msgstr "ডায়ালগ টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:183 ../src/option.c:243 ../src/option.c:252 -#: ../src/option.c:286 ../src/option.c:319 ../src/option.c:431 -#: ../src/option.c:537 ../src/option.c:570 ../src/option.c:632 -#: ../src/option.c:641 ../src/option.c:650 ../src/option.c:716 -#: ../src/option.c:749 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:191 -msgid "Set the calendar day" -msgstr "ক্যালেন্ডারের দিন নির্ধারণ করুন" - -#: ../src/option.c:192 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:200 -msgid "Set the calendar month" -msgstr "ক্যালেন্ডারের মাস নির্ধারণ করুন" - -#: ../src/option.c:201 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:209 -msgid "Set the calendar year" -msgstr "ক্যালেন্ডারের বছর নির্ধারণ করুন" - -#: ../src/option.c:210 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:218 -msgid "Set the format for the returned date" -msgstr "ফেরত পাওয়ার তারিখের বিন্যাস নির্ধারণ করুন" - -#: ../src/option.c:219 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:233 -msgid "Display text entry dialog" -msgstr "টেক্সট এন্ট্রি ডায়ালগ প্রদর্শন" - -#: ../src/option.c:251 -msgid "Set the entry text" -msgstr "এন্ট্রি টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:260 -msgid "Hide the entry text" -msgstr "এন্ট্রি টেক্সট আড়াল করুন" - -#: ../src/option.c:276 -msgid "Display error dialog" -msgstr "ত্রুটি সম্পর্কিত ডায়ালগ প্রদর্শন" - -#: ../src/option.c:294 ../src/option.c:327 ../src/option.c:658 -#: ../src/option.c:724 -msgid "Do not enable text wrapping" -msgstr "পাঠ্য মোড়ানো সক্রিয় করা হবে না" - -#: ../src/option.c:309 -msgid "Display info dialog" -msgstr "তথ্য সম্পর্কিত ডায়ালগ প্রদর্শন" - -#: ../src/option.c:342 -msgid "Display file selection dialog" -msgstr "ফাইল নির্বাচনকারী ডায়ালগ প্রদর্শন" - -#: ../src/option.c:351 -msgid "Set the filename" -msgstr "ফাইলের নাম নির্ধারণ করুন" - -#: ../src/option.c:352 ../src/option.c:683 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:360 -msgid "Allow multiple files to be selected" -msgstr "একাধিক ফাইল নির্বাচন অনুমোদন করা হবে" - -#: ../src/option.c:369 -msgid "Activate directory-only selection" -msgstr "শুধুমাত্র-ডিরেক্টরি নির্বাচন সক্রিয় করা হবে" - -#: ../src/option.c:378 -msgid "Activate save mode" -msgstr "সংরক্ষণ মোড সক্রিয় করা হবে" - -#: ../src/option.c:387 ../src/option.c:466 -msgid "Set output separator character" -msgstr "আউটপুট পৃথককারী অক্ষর নির্ধারণ করুন" - -#: ../src/option.c:388 ../src/option.c:467 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:396 -msgid "Confirm file selection if filename already exists" -msgstr "ফাইলের নাম ইতিমধ্যেই বিদ্যমান থাকলে ফাইল নির্বাচন নিশ্চিত করা হবে" - -#: ../src/option.c:405 -msgid "Sets a filename filter" -msgstr "ফাইলেরনামের পরিশোধক নির্ধারণ করা হয়" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:407 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:421 -msgid "Display list dialog" -msgstr "তালিকার ডায়ালগ প্রদর্শন" - -#: ../src/option.c:439 -msgid "Set the column header" -msgstr "কলামের শীর্ষচরণ নির্ধারণ করুন" - -#: ../src/option.c:440 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:448 -msgid "Use check boxes for first column" -msgstr "প্রথম কলামের জন্য চেক বাক্স ব্যবহার করা হবে" - -#: ../src/option.c:457 -msgid "Use radio buttons for first column" -msgstr "প্রথম কলামের জন্য রেডিও বোতাম ব্যবহার করা হবে" - -#: ../src/option.c:475 -msgid "Allow multiple rows to be selected" -msgstr "একাধিক সারি নির্বাচন অনুমোদন করা হবে" - -#: ../src/option.c:484 ../src/option.c:691 -msgid "Allow changes to text" -msgstr "টেক্সটে পরিবর্তন অনুমোদন করা হবে" - -#: ../src/option.c:493 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"একটি নির্দিষ্ট কলাম মুদ্রণ করা হবে (পূর্বনির্ধারিত মান ১। সবগুলো কলাম মুদ্রণ " -"করতে 'ALL' ব্যবহার করা যেতে পারে)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:495 ../src/option.c:504 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:503 -msgid "Hide a specific column" -msgstr "একটি নির্দিষ্ট কলাম লুকানো হবে" - -#: ../src/option.c:512 -msgid "Hides the column headers" -msgstr "কলামের শীর্ষচরণ আড়াল করা হয়" - -#: ../src/option.c:527 -msgid "Display notification" -msgstr "ঘোষনা প্রদর্শন" - -#: ../src/option.c:536 -msgid "Set the notification text" -msgstr "ঘোষনাসূচক টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:545 -msgid "Listen for commands on stdin" -msgstr "কমান্ডের জন্য stdin শোনা হবে" - -#: ../src/option.c:560 -msgid "Display progress indication dialog" -msgstr "অগ্রগতি সূচক ডায়ালগ প্রদর্শন" - -#: ../src/option.c:578 -msgid "Set initial percentage" -msgstr "প্রারম্ভিক শতাংশ নির্ধারণ করুন" - -#: ../src/option.c:579 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:587 -msgid "Pulsate progress bar" -msgstr "অগ্রগতি বার কম্পিত করা হবে" - -#: ../src/option.c:597 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "১০০%-এ পৌঁছালে ডায়ালগ বন্ধ করে দেয়া হবে" - -#: ../src/option.c:607 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "বাতিল বোতামে ক্লিক করলে প্যারেন্ট প্রসেস বন্ধ করা হবে" - -#: ../src/option.c:622 -msgid "Display question dialog" -msgstr "প্রশ্নের ডায়ালগ প্রদর্শন" - -#: ../src/option.c:640 -msgid "Sets the label of the Ok button" -msgstr "\"ঠিক আছে\" বোতামের লেবেল নির্ধারণ করা হবে" - -#: ../src/option.c:649 -msgid "Sets the label of the Cancel button" -msgstr "\"বাতিল\" বোতামের লেবেল নির্ধারণ করা হবে" - -#: ../src/option.c:673 -msgid "Display text information dialog" -msgstr "টেক্সট তথ্যের ডায়ালগ প্রদর্শন" - -#: ../src/option.c:682 -msgid "Open file" -msgstr "ফাইল খুলুন" - -#: ../src/option.c:706 -msgid "Display warning dialog" -msgstr "সতর্কীকরণ ডায়ালগ প্রদর্শন" - -#: ../src/option.c:739 -msgid "Display scale dialog" -msgstr "আকার পরিবর্তনকারী ডায়ালগ প্রদর্শন" - -#: ../src/option.c:757 -msgid "Set initial value" -msgstr "প্রারম্ভিক মান নির্ধারণ করুন" - -#: ../src/option.c:758 ../src/option.c:767 ../src/option.c:776 -#: ../src/option.c:785 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:766 -msgid "Set minimum value" -msgstr "সর্বনিম্ন মান নির্ধারণ করুন" - -#: ../src/option.c:775 -msgid "Set maximum value" -msgstr "সর্বোচ্চ মান নির্ধারণ করুন" - -#: ../src/option.c:784 -msgid "Set step size" -msgstr "ধাপের আকার নির্ধারণ করুন" - -#: ../src/option.c:793 -msgid "Print partial values" -msgstr "আংশিক মান মুদ্রণ করা হবে" - -#: ../src/option.c:802 -msgid "Hide value" -msgstr "মান আড়াল করা হবে" - -#: ../src/option.c:817 -msgid "About zenity" -msgstr "জেনিটি পরিচিতি" - -#: ../src/option.c:826 -msgid "Print version" -msgstr "মুদ্রণ সংস্করণ" - -#: ../src/option.c:1490 -msgid "General options" -msgstr "সাধারণ অপশন" - -#: ../src/option.c:1491 -msgid "Show general options" -msgstr "সাধারণ অপশন প্রদর্শন" - -#: ../src/option.c:1501 -msgid "Calendar options" -msgstr "ক্যালেন্ডার অপশনসমূহ" - -#: ../src/option.c:1502 -msgid "Show calendar options" -msgstr "ক্যালেন্ডার অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1512 -msgid "Text entry options" -msgstr "টেক্সট এন্ট্রির অপশনসমূহ" - -#: ../src/option.c:1513 -msgid "Show text entry options" -msgstr "টেক্সট এন্ট্রির অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1523 -msgid "Error options" -msgstr "ত্রুটি সম্পর্কিত অপশনসমূহ" - -#: ../src/option.c:1524 -msgid "Show error options" -msgstr "ত্রুটি সম্পর্কিত অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1534 -msgid "Info options" -msgstr "তথ্য সম্পর্কিত অপশনসমূহ" - -#: ../src/option.c:1535 -msgid "Show info options" -msgstr "তথ্য সম্পর্কিত অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1545 -msgid "File selection options" -msgstr "ফাইল নির্বাচন অপশনসমূহ" - -#: ../src/option.c:1546 -msgid "Show file selection options" -msgstr "ফাইল নির্বাচন অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1556 -msgid "List options" -msgstr "তালিকা সম্পর্কিত অপশন" - -#: ../src/option.c:1557 -msgid "Show list options" -msgstr "তালিকা সম্পর্কিত অপশন প্রদর্শন" - -#: ../src/option.c:1567 -msgid "Notification icon options" -msgstr "ঘোষনাসূচক আইকন অপশন" - -#: ../src/option.c:1568 -msgid "Show notification icon options" -msgstr "ঘোষনাসূচক আইকন অপশন প্রদর্শন" - -#: ../src/option.c:1578 -msgid "Progress options" -msgstr "অগ্রগতি সম্পর্কিত অপশনসমূহ" - -#: ../src/option.c:1579 -msgid "Show progress options" -msgstr "অগ্রগতি সম্পর্কিত অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1589 -msgid "Question options" -msgstr "প্রশ্ন সম্পর্কিত অপশনসমূহ" - -#: ../src/option.c:1590 -msgid "Show question options" -msgstr "প্রশ্ন সম্পর্কিত অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1600 -msgid "Warning options" -msgstr "সতর্কীকরণ অপশনসমূহ" - -#: ../src/option.c:1601 -msgid "Show warning options" -msgstr "সতর্কীকরণ অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1611 -msgid "Scale options" -msgstr "আকার পরিবর্তনের অপশনসমূহ" - -#: ../src/option.c:1612 -msgid "Show scale options" -msgstr "আকার পরিবর্তনের অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1622 -msgid "Text information options" -msgstr "টেক্সটের তথ্য সম্পর্কিত অপশনসমূহ" - -#: ../src/option.c:1623 -msgid "Show text information options" -msgstr "টেক্সটের তথ্য সম্পর্কিত অপশনসমূহ প্রদর্শন" - -#: ../src/option.c:1633 -msgid "Miscellaneous options" -msgstr "বিবিধ অপশন" - -#: ../src/option.c:1634 -msgid "Show miscellaneous options" -msgstr "বিবিধ অপশন প্রদর্শন" - -#: ../src/option.c:1659 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"এই অপশনটি পাওয়া যাচ্ছে না। সম্ভাব্য সকল ব্যবহারের জন্য অনুগ্রহ করে --সহায়তা " -"দেখুন।\n" - -#: ../src/option.c:1663 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s এই ডায়ালগের জন্য সমর্থিত নয়\n" - -#: ../src/option.c:1667 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "দুই বা ততোধিক ডায়ালগ অপশন উল্লেখ করা হয়েছে\n" - -#~ msgid "Select a file" -#~ msgstr "একটি ফাইল নির্বাচন করুন" - -#~ msgid "Adjust the scale value." -#~ msgstr "পরিবর্ধন মাপ পরিবর্তন করুন।" - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "(C) ২০০৩ সান মাইক্রোসিস্টেমস" - -#~ msgid "Credits" -#~ msgstr "স্বীকৃতি" - -#~ msgid "Written by" -#~ msgstr "লিখেছেন" - -#~ msgid "Translated by" -#~ msgstr "অনুবাদ করেছেন" - -#~ msgid "Orientation" -#~ msgstr "পারিপার্শ্বিক অবস্থান" - -#~ msgid "The orientation of the tray." -#~ msgstr "ট্রে এর পারিপার্শ্বিক অবস্থান" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "জেনিটি সম্বন্ধে" - -#~ msgid "_Credits" -#~ msgstr "স্বীকৃতি (_স):" - -#~ msgid "Text options" -#~ msgstr "টেক্সট সম্বন্ধীয় অপশন" - -#, fuzzy -#~ msgid "Show text options" -#~ msgstr "টেক্সট সম্বন্ধীয় অপশন" - -#~ msgid "Set output separator character." -#~ msgstr "আউটপুট সেপারেটর ক্যারাক্টার নির্ধারণ করুন" - -#~ msgid "Gdk debugging flags to set" -#~ msgstr "যে জি-ডি-কে ডিবাগিনংগ ফ্ল্যাগ নির্ধারন করা হবে" - -#~ msgid "FLAGS" -#~ msgstr "ফ্ল্যাগ" - -#~ msgid "Gdk debugging flags to unset" -#~ msgstr "যে জি-ডি-কে ডিবাগিনংগ ফ্ল্যাগ আনসেট করা হবে" - -#~ msgid "X display to use" -#~ msgstr "যে এক্স ডিসপ্লে ব্যবহৃত হবে।" - -#~ msgid "DISPLAY" -#~ msgstr "ডিসপ্লে" - -#~ msgid "X screen to use" -#~ msgstr "যে এক্স স্ক্রিন ব্যবহৃত হবে" - -#~ msgid "SCREEN" -#~ msgstr "স্ক্রিন" - -#~ msgid "Program name as used by the window manager" -#~ msgstr "উইন্ডো ম্যানেজার প্রোগ্রাম-এর যা নাম ব্যবহার করবে" - -#~ msgid "NAME" -#~ msgstr "নাম" - -#~ msgid "HOST" -#~ msgstr "হোস্ট" - -#~ msgid "PORT" -#~ msgstr "পোর্ট" - -#~ msgid "Dialog options" -#~ msgstr "ডায়ালগ সম্বন্ধীয় অপশন" - -#~ msgid "GTK+ options" -#~ msgstr "জিটিকে+ সম্বন্ধীয় অপশন" - -#~ msgid "Help options" -#~ msgstr "সাহায্য সম্বন্ধীয় অপশন" - -#~ msgid "%s is an invalid option. See 'zenity --help' for more details\n" -#~ msgstr "%s বেঠিক অপশন। বিস্তারিত তথ্যের জন্য 'zenity --help' দেখুন\n" - -#~ msgid "%s given twice for the same dialog\n" -#~ msgstr "%s-কে একই ডায়ালগের জন্য দুইবার দেওয়া হয়েছে\n" diff --git a/po/bn_IN.po b/po/bn_IN.po deleted file mode 100644 index 442e72d..0000000 --- a/po/bn_IN.po +++ /dev/null @@ -1,729 +0,0 @@ -# translation of bn_IN.po to Bengali INDIA -# Bengali India translation of Zenity. -# Copyright (C) 2003 THE Zenity'S COPYRIGHT HOLDER -# This file is distributed under the same license as the Zenity package. -# -# Sayamindu Dasgupta , 2003. -# Mahay Alam Khan , 2005. -# Samia Niamatullah , 2005. -# Runa Bhattacharjee , 2007, 2008, 2010, 2011. -msgid "" -msgstr "" -"Project-Id-Version: bn_IN\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." -"cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2011-03-03 03:00+0000\n" -"PO-Revision-Date: 2011-03-24 20:41+0530\n" -"Last-Translator: Runa Bhattacharjee \n" -"Language-Team: Bengali (India) \n" -"Language: bn_IN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.1\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"\n" -"\n" -"\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"এই প্রোগ্রামটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা প্রকাশিত GNU " -"Lesser General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা যাবে; " -"লাইনসেন্সের সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের অধীন।\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত হবেন, কিন্তু এটির " -"জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো সুনির্দিষ্ট কর্ম সাধনের জন্য " -"অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে GNU Lesser General Public License " -"পড়ুন।\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"এই প্রোগ্রামের সাথে GNU Lesser General Public License-র একটি প্রতিলিপি উপলব্ধ " -"হওয়া উচিত; না থাকলে নিম্নলিখিত ঠিকানায় লিখে তা সংগ্রহ করুন Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"সায়মিন্দু দাশগুপ্ত \n" -"মাহে আলম খান \n" -"রুণা ভট্টাচার্য \n" -" (অঙ্কুর বাংলা প্রকল্পের তরফ থেকে)" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "শেল স্ক্রিপ্ট থেকে প্রাপ্ত ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"ডায়লগ বক্সের ধরন উল্লেখ করা আবশ্যক। বিস্তারিত জানতে 'zenity --help' কমান্ডের " -"ফলাফল পড়ুন\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin থেকে কমান্ড পার্স করা যায়নি\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin থেকে বার্তা পার্স করা যায়নি\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "Zenity'র বিজ্ঞপ্তি" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "পাসওয়ার্ড লিখুন" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "ব্যবহারকারীর নাম:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "পাসওয়ার্ড:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "সর্বনিম্ন মানের তূলনায় সর্বোচ্চ মান অধিক হওয়া আবশ্যক।\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "উল্লিখিত মান সীমাবহির্ভূত।\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "তালিকা প্রদর্শনকারী ডায়লগ বক্সের ক্ষেত্রে কলামের শিরোনাম ধার্য করা হয়নি।\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "তালিকা প্রদর্শনকারী ডায়লগের ক্ষেত্রে শুধুমাত্র একটি ধরন ব্যবহার করা আবশ্যক।\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "ফর্ম সংক্রান্ত ডায়লগ" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "নতুন এন্ট্রি যোগ করুন" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "পরিবর্ধন মাপ পরিবর্তন করুন" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "সমস্ত পরিবর্তন সম্পন্ন।" - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "ত্রুটি দেখা দিয়েছে।" - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "আপনি নি নিশ্চিতরূপে এগিয়ে চলতে ইচ্ছুক?" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "বর্ষপঞ্জি:(_a)" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "বর্ষপঞ্জি নির্বাচন" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "ত্রুটি" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "তথ্য" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "প্রগতি" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "প্রশ্ন" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "চলমান..." - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "নীচে একটি তারিখ নির্বাচন করুন।" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "তালিকা থেকে বস্তু নির্বাচন করুন" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "নীচের তালিকা থেকে বস্তু নির্বাচন করুন।" - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "টেক্সট অনযায়ী প্রদর্শন" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "সতর্কবার্তা" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "নতুন টেক্সট লিখুন:(_E)" - -#: ../src/option.c:144 -msgid "Set the dialog title" -msgstr "ডায়ালগ বক্সের শিরোনাম নির্ধারণ করুন" - -#: ../src/option.c:145 -msgid "TITLE" -msgstr "TITLE" - -#: ../src/option.c:153 -msgid "Set the window icon" -msgstr "উইন্ডোর আইকন নির্ধারণ করুন" - -#: ../src/option.c:154 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:162 -msgid "Set the width" -msgstr "প্রস্থের মাপ নির্ধারণ করুন" - -#: ../src/option.c:163 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:171 -msgid "Set the height" -msgstr "উচ্চতার পরিমাণ নির্ধারণ করুন" - -#: ../src/option.c:172 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:180 -msgid "Set dialog timeout in seconds" -msgstr "ডায়ালগের মেয়াদ সেকেন্ড অনুযায়ী নির্ধারণ করুন" - -#. Timeout for closing the dialog -#: ../src/option.c:182 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:196 -msgid "Display calendar dialog" -msgstr "বর্ষপঞ্জির ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:205 ../src/option.c:265 ../src/option.c:308 -#: ../src/option.c:341 ../src/option.c:453 ../src/option.c:595 -#: ../src/option.c:667 ../src/option.c:760 ../src/option.c:793 -#: ../src/option.c:898 -msgid "Set the dialog text" -msgstr "ডায়লগ বক্সের টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:206 ../src/option.c:266 ../src/option.c:275 -#: ../src/option.c:309 ../src/option.c:342 ../src/option.c:454 -#: ../src/option.c:561 ../src/option.c:596 ../src/option.c:668 -#: ../src/option.c:677 ../src/option.c:686 ../src/option.c:737 -#: ../src/option.c:761 ../src/option.c:794 ../src/option.c:899 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:214 -msgid "Set the calendar day" -msgstr "বর্ষপঞ্জিতে দিন নির্ধারণ করুন" - -#: ../src/option.c:215 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:223 -msgid "Set the calendar month" -msgstr "বর্ষপঞ্জিতে মাস নির্ধারণ করুন" - -#: ../src/option.c:224 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:232 -msgid "Set the calendar year" -msgstr "বর্ষপঞ্জিতে বৎসর নির্ধারণ করুন" - -#: ../src/option.c:233 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:241 ../src/option.c:916 -msgid "Set the format for the returned date" -msgstr "প্রাপ্ত তারিখ প্রদর্শনের বিন্যাস নির্ধারণ করুন" - -#: ../src/option.c:242 ../src/option.c:917 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:256 -msgid "Display text entry dialog" -msgstr "টেক্সেট লেখার ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:274 -msgid "Set the entry text" -msgstr "এন্ট্রি টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:283 -msgid "Hide the entry text" -msgstr "এন্ট্রি টেক্সট আড়াল করুন" - -#: ../src/option.c:299 -msgid "Display error dialog" -msgstr "ত্রুটিসূচক ডায়ালগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:317 ../src/option.c:350 ../src/option.c:694 -#: ../src/option.c:769 -msgid "Do not enable text wrapping" -msgstr "পংক্তি বিভাজন বৈশিষ্ট্য সক্রিয় করা হবে না" - -#: ../src/option.c:332 -msgid "Display info dialog" -msgstr "তথ্য সংক্রান্ত ডায়লগ প্রদর্শন করা হবে" - -#: ../src/option.c:365 -msgid "Display file selection dialog" -msgstr "ফাইল নির্বাচনের ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:374 -msgid "Set the filename" -msgstr "ফাইলের নাম নির্ধারণ" - -#: ../src/option.c:375 ../src/option.c:719 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:383 -msgid "Allow multiple files to be selected" -msgstr "একাধিক ফাইল নির্বাচনের অনুমতি প্রদান করা হবে" - -#: ../src/option.c:392 -msgid "Activate directory-only selection" -msgstr "শুধুমাত্র-ডিরেক্টরি নির্বাচনের বৈশিষ্ট্য সক্রিয় করা হবে" - -#: ../src/option.c:401 -msgid "Activate save mode" -msgstr "সংরক্ষণের মোড সক্রিয় করা হবে" - -#: ../src/option.c:410 ../src/option.c:489 ../src/option.c:907 -msgid "Set output separator character" -msgstr "ফলাফলে প্রদর্শনে বিভাজনকারী অক্ষর নির্ধারণ করুন" - -#: ../src/option.c:411 ../src/option.c:490 ../src/option.c:908 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:419 -msgid "Confirm file selection if filename already exists" -msgstr "ফাইলের নাম পূর্বে উপস্থিত থাকলে ফাইল নির্বাচন নিশ্চিত করা হবে" - -#: ../src/option.c:428 -msgid "Sets a filename filter" -msgstr "ফাইলের নামের ফিল্টার নির্ধারণ করা হয়" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:430 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:444 -msgid "Display list dialog" -msgstr "তালিকাসহ ডায়লগ প্রদর্শন করা হবে" - -#: ../src/option.c:462 -msgid "Set the column header" -msgstr "কলামের হেডার নির্ধারণ করুন" - -#: ../src/option.c:463 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:471 -msgid "Use check boxes for first column" -msgstr "প্রথম কলামের জন্য চেক বক্স ব্যবহৃত হবে" - -#: ../src/option.c:480 -msgid "Use radio buttons for first column" -msgstr "প্রথম কলামের জন্য রেডিও-বাটন ব্যবহৃত হবে" - -#: ../src/option.c:498 -msgid "Allow multiple rows to be selected" -msgstr "একাধিক সারি নির্বাচনের অনুমতি প্রদান করুন" - -#: ../src/option.c:507 ../src/option.c:727 -msgid "Allow changes to text" -msgstr "টেক্সট পরিবর্তনের অনুমতি প্রদান করুন" - -#: ../src/option.c:516 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"একটি সুনির্দিষ্ট কলাম প্রিন্ট করুন। (ডিফল্ট মান 1 (১)। সব কলাম প্রিন্ট করার জন্য 'ALL' " -"মান প্রয়োগ করুন)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:518 ../src/option.c:527 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:526 -msgid "Hide a specific column" -msgstr "একটি নির্দিষ্ট কলাম আড়াল করুন" - -#: ../src/option.c:535 -msgid "Hides the column headers" -msgstr "কলামের হেডার আড়াল করতে ব্যবহৃত" - -#: ../src/option.c:551 -msgid "Display notification" -msgstr "সূচনাবার্তা প্রদর্শন করা হবে" - -#: ../src/option.c:560 -msgid "Set the notification text" -msgstr "সূচনাবার্তার টেক্সট নির্ধারণ করুন" - -#: ../src/option.c:569 -msgid "Listen for commands on stdin" -msgstr "stdin থেকে কমান্ডপ্রাপ্তির অপেক্ষা করা হবে" - -#: ../src/option.c:586 -msgid "Display progress indication dialog" -msgstr "কর্মের প্রগতি চিহ্নকারী ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:604 -msgid "Set initial percentage" -msgstr "প্রারম্ভিক শতাংশ নির্ধারণ করুন" - -#: ../src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:613 -msgid "Pulsate progress bar" -msgstr "প্রগতিসূচক বার কাঁপানো হবে" - -#: ../src/option.c:623 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "১০০% সম্পূর্ণ হলে ডায়লগ বক্স বন্ধ করা হবে" - -#: ../src/option.c:633 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "বাতিল শীর্ষক বাটন টেপা হলে প্যারেন্ট প্রসেস kill করা হবে" - -#: ../src/option.c:643 -#, no-c-format -msgid "Hide Cancel button" -msgstr "বাতিল শীর্ষক বাটন আড়াল করা হবে" - -#: ../src/option.c:658 -msgid "Display question dialog" -msgstr "প্রশ্নসূচক ডায়লগ প্রদর্শন করা হবে" - -#: ../src/option.c:676 -msgid "Sets the label of the Ok button" -msgstr "Ok (ঠিক আছে) বাটনের লেবেল নির্ধারণ করতে ব্যবহৃত" - -#: ../src/option.c:685 -msgid "Sets the label of the Cancel button" -msgstr "Cancel (বাতিল) বাটনের লেবেল নির্ধারণ করতে ব্যবহৃত" - -#: ../src/option.c:709 -msgid "Display text information dialog" -msgstr "টেক্সট সম্পর্কিত তথ্যের ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:718 -msgid "Open file" -msgstr "ফাইল খুলুন" - -#: ../src/option.c:736 -#| msgid "Set the entry text" -msgid "Set the text font" -msgstr "টেক্সট ফন্ট নির্ধারণ করুন" - -#: ../src/option.c:751 -msgid "Display warning dialog" -msgstr "সতর্কতাসূচক ডায়ালগ প্রদর্শন করা হবে" - -#: ../src/option.c:784 -msgid "Display scale dialog" -msgstr "পরিবর্ধন মাপের ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:802 -msgid "Set initial value" -msgstr "প্রারম্ভিক মান নির্ধারণ করুন" - -#: ../src/option.c:803 ../src/option.c:812 ../src/option.c:821 -#: ../src/option.c:830 ../src/option.c:965 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:811 -msgid "Set minimum value" -msgstr "সর্বনিম্ন মান নির্ধারণ করুন" - -#: ../src/option.c:820 -msgid "Set maximum value" -msgstr "সর্বোচ্চ মান নির্ধারণ করুন" - -#: ../src/option.c:829 -msgid "Set step size" -msgstr "আংশিক বৃদ্ধির পরিমাণ নির্ধারণ করুন" - -#: ../src/option.c:838 -msgid "Print partial values" -msgstr "আংশিক মান প্রিন্ট করুন" - -#: ../src/option.c:847 -msgid "Hide value" -msgstr "মান আড়াল করুন" - -#: ../src/option.c:862 -#| msgid "Display info dialog" -msgid "Display forms dialog" -msgstr "ফর্ম সংক্রান্ত ডায়লগ প্রদর্শন করা হবে" - -#: ../src/option.c:871 -#| msgid "Add a new entry" -msgid "Add a new Entry in forms dialog" -msgstr "ফর্ম সংক্রান্ত ডায়লগের মধ্যে একটি নতুন এন্ট্রি যোগ করুন" - -#: ../src/option.c:872 ../src/option.c:881 -msgid "Field name" -msgstr "ক্ষেত্রের নাম" - -#: ../src/option.c:880 -msgid "Add a new Password Entry in forms dialog" -msgstr "ফর্ম সংক্রান্ত ডায়লগের মধ্যে একটি নতুন পাসওয়ার্ড এনট্রি যোগ করুন" - -#: ../src/option.c:889 -msgid "Add a new Calendar in forms dialog" -msgstr "ফর্ম সংক্রান্ত ডায়লগের মধ্যে একটি নতুন বর্ষপঞ্জি যোগ করুন" - -#: ../src/option.c:890 -#| msgid "Calendar selection" -msgid "Calendar field name" -msgstr "বর্ষপঞ্জি ক্ষেত্রের নাম" - -#: ../src/option.c:931 -msgid "Display password dialog" -msgstr "পাসওয়ার্ড ডায়লগ প্রদর্শন করা হবেহবে" - -#: ../src/option.c:940 -msgid "Display the username option" -msgstr "ব্যবহারকারীর নাম লেখার বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:955 -msgid "Display color selection dialog" -msgstr "রং নির্বাচনের ডায়লগ বক্স প্রদর্শন করা হবে" - -#: ../src/option.c:964 -msgid "Set the color" -msgstr "রং নির্ধারণ করুন" - -#: ../src/option.c:973 -msgid "Show the palette" -msgstr "প্যালেট প্রদর্শন করা হবে" - -#: ../src/option.c:988 -msgid "About zenity" -msgstr "Zenity পরিচিতি" - -#: ../src/option.c:997 -msgid "Print version" -msgstr "প্রিন্ট করার যোগ্য সংস্করণ" - -#: ../src/option.c:1813 -msgid "General options" -msgstr "সাধারণ বিকল্প" - -#: ../src/option.c:1814 -msgid "Show general options" -msgstr "সাধারণ বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1824 -msgid "Calendar options" -msgstr "বর্ষপঞ্জি সংক্রান্ত বিকল্প" - -#: ../src/option.c:1825 -msgid "Show calendar options" -msgstr "বর্ষপঞ্জি সংক্রান্ত বিকল্প" - -#: ../src/option.c:1835 -msgid "Text entry options" -msgstr "টেক্সট এন্ট্রি সংক্রান্ত বিকল্প" - -#: ../src/option.c:1836 -msgid "Show text entry options" -msgstr "টেক্সট এন্ট্রি সংক্রান্ত বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1846 -msgid "Error options" -msgstr "ত্রুটি সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1847 -msgid "Show error options" -msgstr "ত্রুটি সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1857 -msgid "Info options" -msgstr "তথ্য সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1858 -msgid "Show info options" -msgstr "তথ্য সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1868 -msgid "File selection options" -msgstr "ফাইল নির্বাচন সংক্রান্ত বিকল্প" - -#: ../src/option.c:1869 -msgid "Show file selection options" -msgstr "ফাইল নির্বাচন সংক্রান্ত বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1879 -msgid "List options" -msgstr "তালিকা সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1880 -msgid "Show list options" -msgstr "তালিকা সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1891 -msgid "Notification icon options" -msgstr "বিজ্ঞপ্তি সম্বন্ধীয় আইকনের বিকল্প" - -#: ../src/option.c:1892 -msgid "Show notification icon options" -msgstr "বিজ্ঞপ্তি সম্বন্ধীয় আইকনের বিকল্প" - -#: ../src/option.c:1903 -msgid "Progress options" -msgstr "কর্ম প্রগতি সংক্রান্ত বিকল্প" - -#: ../src/option.c:1904 -msgid "Show progress options" -msgstr "কর্ম প্রগতি সংক্রান্ত বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1914 -msgid "Question options" -msgstr "প্রশ্ন সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1915 -msgid "Show question options" -msgstr "প্রশ্ন সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1925 -msgid "Warning options" -msgstr "সতর্কবার্তা সম্বন্ধীয় বিকল্প" - -#: ../src/option.c:1926 -msgid "Show warning options" -msgstr "সতর্কবার্তা সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1936 -msgid "Scale options" -msgstr "পরিবর্ধন সংক্রান্ত বিকল্প" - -#: ../src/option.c:1937 -msgid "Show scale options" -msgstr "পরিবর্ধন সংক্রান্ত বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1947 -msgid "Text information options" -msgstr "টেক্সট সম্বন্ধীয় তথ্যের বিকল্প" - -#: ../src/option.c:1948 -msgid "Show text information options" -msgstr "টেক্সট সম্বন্ধীয় তথ্যের বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1958 -msgid "Color selection options" -msgstr "রং নির্বাচন সংক্রান্ত বিকল্প" - -#: ../src/option.c:1959 -msgid "Show color selection options" -msgstr "রং নির্বাচন সংক্রান্ত বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1969 -msgid "Password dialog options" -msgstr "পাসওয়ার্ড ডায়লগ সংক্রান্ত বিকল্প" - -#: ../src/option.c:1970 -msgid "Show password dialog options" -msgstr "পাসওয়ার্ড ডায়লগ সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1980 -#| msgid "Password dialog options" -msgid "Forms dialog options" -msgstr "ফর্ম ডায়লগ সংক্রান্ত বিকল্প" - -#: ../src/option.c:1981 -#| msgid "Show password dialog options" -msgid "Show forms dialog options" -msgstr "ফর্ম ডায়লগ সম্বন্ধীয় বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:1991 -msgid "Miscellaneous options" -msgstr "বিবিধ বিকল্প" - -#: ../src/option.c:1992 -msgid "Show miscellaneous options" -msgstr "বিবিধ বিকল্প প্রদর্শন করা হবে" - -#: ../src/option.c:2017 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"এই বিকল্পটি উপলব্ধ নয়। সর্বধরনের ব্যবহার প্রণালী জানতে অনুগ্রহ করে --help বিকল্পের " -"ফলাফল পড়ুন।\n" - -#: ../src/option.c:2021 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s বর্তমান ডায়লগ বক্সের জন্য সমর্থিত হবে না\n" - -#: ../src/option.c:2025 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "ডায়লগ বক্সের ক্ষেত্রে দুই অথবা অধিক বিকল্প উল্লিখিত হয়েছে\n" - diff --git a/po/bs.po b/po/bs.po deleted file mode 100644 index 85fb21e..0000000 --- a/po/bs.po +++ /dev/null @@ -1,861 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-02-27 00:32+0000\n" -"PO-Revision-Date: 2015-03-02 16:07+0100\n" -"Last-Translator: Samir Ribić \n" -"Language-Team: Bosnian <+>\n" -"Language: bs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.7.4\n" -"X-Launchpad-Export-Date: 2015-02-15 06:11+0000\n" - -#: ../src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ovaj program je slobodan softver; možete ga raspodjeljivati i/ili ga " -"mijenjati pod uslovima Gnuove Manje Opšte Javne Licence (GNU LGPL) kako je " -"objavljuje Zadužbina za Slobodan Softver (FSF); bilo verzije 2 te Licence, " -"bilo (po vašem nahođenju) bilo koje novije verzije.\n" - -#: ../src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ovaj program se raspodjeljuje u nadi da će biti od koristi, ali BEZ IKAKVIH " -"GARANCIJA; čak i bez podrazumijevane garancije KORISNOSTI ili PRILAGOĐENOSTI " -"ODREĐENOJ NAMENI. Vidite Gnuovu Manje Opštu Javnu Licencu za više detalja.\n" - -#: ../src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Trebalo je da primite primjerak Gnuove Manje Opšte Javne Licence uz ovaj " -"program; ako niste, pišite Zadužbini za Slobodni Softver (Free Software " -"Foundation, Inc.), 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: ../src/about.c:263 -msgid "translator-credits" -msgstr "" -"Aleksandar Urošević, Danilo Šegan, http://prevod.org — prijevod na srpski " -"jezik.\n" -"Prilagođenje za bosanski jezik Samir Ribić" - -#: ../src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "Prikaži dijalog kutije iz shell skripti" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Morate izabrati tip dijaloga. Pogledajte 'zenity --help' za više detalja\n" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neispravna vrijednost za savjet upisan kao logička vrijednost.\n" -"Podržane vrijednosti su „true“ ili „false“.\n" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodržan savjet. Preeksačem.\n" - -#. unknown hints -#: ../src/notification.c:154 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "Nepoznat naziv savjeta. Preskačem.\n" - -#: ../src/notification.c:213 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "Ne mogu da obradim naredbu sa standardnog ulaza\n" - -#: ../src/notification.c:245 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "Ne mogu da obradim poruku sa standardnog ulaza\n" - -#: ../src/notification.c:325 -msgid "Zenity notification" -msgstr "Zenit obavještenje" - -#. Checks if username has been passed as a parameter -#: ../src/password.c:66 -msgid "Type your password" -msgstr "Unesite lozinku" - -#: ../src/password.c:69 -msgid "Type your username and password" -msgstr "Upišite vaše korisničko ime i lozinku" - -#: ../src/password.c:107 -msgid "Username:" -msgstr "Korisničko ime:" - -#: ../src/password.c:123 -msgid "Password:" -msgstr "Lozinka:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Najveća vrijednost mora biti veća od najmanje vrijednosti.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "Vrijednost izlazi iz opsega.\n" - -#: ../src/tree.c:375 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Nema izabranog imena kolone za List dijalog.\n" - -#: ../src/tree.c:381 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Trebalo bi da koristite samo jednu vrstu prozorčića sa spiskom.\n" - -#: ../src/zenity.ui.h:1 -msgid "Adjust the scale value" -msgstr "Odabir vrijednosti na skali" - -#: ../src/zenity.ui.h:2 -msgid "Text View" -msgstr "Teks Pogled" - -#: ../src/zenity.ui.h:3 -msgid "Calendar selection" -msgstr "Kalendar izbor" - -#: ../src/zenity.ui.h:4 -msgid "Select a date from below." -msgstr "Izaberite datum ispod." - -#: ../src/zenity.ui.h:5 -msgid "C_alendar:" -msgstr "K_alendar:" - -#: ../src/zenity.ui.h:6 -msgid "Add a new entry" -msgstr "Dodaj novi unos" - -#: ../src/zenity.ui.h:7 -msgid "_Enter new text:" -msgstr "_Unesite novi tekst:" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "Greška" - -#: ../src/zenity.ui.h:9 -msgid "An error has occurred." -msgstr "Pojavila se greška." - -#: ../src/zenity.ui.h:10 -msgid "Forms dialog" -msgstr "Dijalog formulara" - -#: ../src/zenity.ui.h:11 -msgid "Information" -msgstr "Informacija" - -#: ../src/zenity.ui.h:12 -msgid "All updates are complete." -msgstr "Sve nadogradnje su završene." - -#: ../src/zenity.ui.h:13 -msgid "Progress" -msgstr "Napredak" - -#: ../src/zenity.ui.h:14 -msgid "Running..." -msgstr "Pokrećem..." - -#: ../src/zenity.ui.h:15 -msgid "Question" -msgstr "Pitanje" - -#: ../src/zenity.ui.h:16 -msgid "Are you sure you want to proceed?" -msgstr "Da li ste sigurni da želite nastaviti?" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "Izaberite detalje sa liste" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "Odaberite detalj sa liste ispod." - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "Upozorenje" - -#: ../src/option.c:167 -msgid "Set the dialog title" -msgstr "Postavi dijalog naslova" - -#: ../src/option.c:168 -msgid "TITLE" -msgstr "NASLOV" - -#: ../src/option.c:176 -msgid "Set the window icon" -msgstr "Postavi sličicu prozora" - -#: ../src/option.c:177 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:185 -msgid "Set the width" -msgstr "Postavi dužinu" - -#: ../src/option.c:186 -msgid "WIDTH" -msgstr "DUŽINA" - -#: ../src/option.c:194 -msgid "Set the height" -msgstr "Postavi širinu" - -#: ../src/option.c:195 -msgid "HEIGHT" -msgstr "ŠIRINA" - -#: ../src/option.c:203 -msgid "Set dialog timeout in seconds" -msgstr "Postavi rok prozorčeta u sekundama" - -#. Timeout for closing the dialog -#: ../src/option.c:205 -msgid "TIMEOUT" -msgstr "VRIJEME" - -#: ../src/option.c:213 -msgid "Sets the label of the Ok button" -msgstr "Postavlja natpis dugmeta „U redu“" - -#: ../src/option.c:214 ../src/option.c:223 ../src/option.c:265 -#: ../src/option.c:325 ../src/option.c:334 ../src/option.c:368 -#: ../src/option.c:426 ../src/option.c:563 ../src/option.c:688 -#: ../src/option.c:706 ../src/option.c:732 ../src/option.c:813 -#: ../src/option.c:898 ../src/option.c:907 ../src/option.c:969 -#: ../src/option.c:1027 ../src/option.c:1196 -msgid "TEXT" -msgstr "TEKST" - -#: ../src/option.c:222 -msgid "Sets the label of the Cancel button" -msgstr "Postavlja naptis digmeta „Otkaži“" - -#: ../src/option.c:231 -msgid "Set the modal hint" -msgstr "Postavlja uslovljeni savjet" - -#: ../src/option.c:240 -msgid "Set the parent window to attach to" -msgstr "Postavi roditeljski prozor za kačenje na njega" - -#: ../src/option.c:241 -msgid "WINDOW" -msgstr "WINDOW" - -#: ../src/option.c:255 -msgid "Display calendar dialog" -msgstr "Prikaži kalendar dijalog" - -#: ../src/option.c:264 ../src/option.c:324 ../src/option.c:367 -#: ../src/option.c:425 ../src/option.c:562 ../src/option.c:731 -#: ../src/option.c:812 ../src/option.c:968 ../src/option.c:1026 -#: ../src/option.c:1195 -msgid "Set the dialog text" -msgstr "Postavi dijalog teksta" - -#: ../src/option.c:273 -msgid "Set the calendar day" -msgstr "Postavi kalendarski dan" - -#: ../src/option.c:274 -msgid "DAY" -msgstr "DAN" - -#: ../src/option.c:282 -msgid "Set the calendar month" -msgstr "Postavi kalendarski mjesec" - -#: ../src/option.c:283 -msgid "MONTH" -msgstr "MESEC" - -#: ../src/option.c:291 -msgid "Set the calendar year" -msgstr "Postavi kalendrasku godinu" - -#: ../src/option.c:292 -msgid "YEAR" -msgstr "GODINA" - -#: ../src/option.c:300 ../src/option.c:1213 -msgid "Set the format for the returned date" -msgstr "Postavi format vraćenog datuma" - -#: ../src/option.c:301 ../src/option.c:1214 -msgid "PATTERN" -msgstr "OBRAZAC" - -#: ../src/option.c:315 -msgid "Display text entry dialog" -msgstr "Prikaži tekst unos dijalog" - -#: ../src/option.c:333 -msgid "Set the entry text" -msgstr "Postavi tekst unosa" - -#: ../src/option.c:342 -msgid "Hide the entry text" -msgstr "Sakrij unos teksta" - -#: ../src/option.c:358 -msgid "Display error dialog" -msgstr "Prikaži dijalog grešaka" - -#: ../src/option.c:376 ../src/option.c:434 ../src/option.c:821 -#: ../src/option.c:977 -msgid "Set the dialog icon" -msgstr "Postavi ikonu dijaloga" - -#: ../src/option.c:377 ../src/option.c:435 ../src/option.c:822 -#: ../src/option.c:978 -msgid "ICON-NAME" -msgstr "IME-IKONE" - -#: ../src/option.c:385 ../src/option.c:443 ../src/option.c:830 -#: ../src/option.c:986 -msgid "Do not enable text wrapping" -msgstr "Onemogući prelom teksta" - -#: ../src/option.c:394 ../src/option.c:452 ../src/option.c:839 -#: ../src/option.c:995 -msgid "Do not enable pango markup" -msgstr "Ne onemogućuj pango marker" - -#: ../src/option.c:402 ../src/option.c:460 ../src/option.c:856 -#: ../src/option.c:1003 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Uključuje skraćivanje u tekstu prozorčeta. Ovo popravlja visinu prozora kod " -"dugih tekstova" - -#: ../src/option.c:416 -msgid "Display info dialog" -msgstr "Prikaži info dijalog" - -#: ../src/option.c:474 -msgid "Display file selection dialog" -msgstr "Prikaži dijalog izbora datoteka" - -#: ../src/option.c:483 -msgid "Set the filename" -msgstr "Postavi ime datoteke" - -#: ../src/option.c:484 ../src/option.c:880 -msgid "FILENAME" -msgstr "IME DATOTEKE" - -#: ../src/option.c:492 -msgid "Allow multiple files to be selected" -msgstr "Dozvoli da mnogostruke datoteke mogu biti izabrane" - -#: ../src/option.c:501 -msgid "Activate directory-only selection" -msgstr "Pokreni izbor samo direktorijuma" - -#: ../src/option.c:510 -msgid "Activate save mode" -msgstr "Pokreni režim za snimanje" - -#: ../src/option.c:519 ../src/option.c:607 ../src/option.c:1204 -msgid "Set output separator character" -msgstr "Postavi znak za razdvajanje na izlazu" - -#: ../src/option.c:520 ../src/option.c:608 ../src/option.c:1205 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:528 -msgid "Confirm file selection if filename already exists" -msgstr "Potvrdi izbor datoteke ako ista već postoji" - -#: ../src/option.c:537 -msgid "Sets a filename filter" -msgstr "Postavlja filter naziva datoteka" - -#. Help for file-filter argument (nami and patterns for file selection) -#: ../src/option.c:539 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAZIV | ŠABLON1 ŠABLON2 ..." - -#: ../src/option.c:553 -msgid "Display list dialog" -msgstr "Prikaži list dijalog" - -#: ../src/option.c:571 -msgid "Set the column header" -msgstr "Postavi vrh kolone" - -#: ../src/option.c:572 -msgid "COLUMN" -msgstr "KOLONA" - -#: ../src/option.c:580 -msgid "Use check boxes for first column" -msgstr "Koristi kutije provjere za prvu kolonu" - -#: ../src/option.c:589 -msgid "Use radio buttons for first column" -msgstr "Koristi radio dugmad za prvu kolonu" - -#: ../src/option.c:598 -msgid "Use an image for first column" -msgstr "Koristi kao sliku za prvu kolonu" - -#: ../src/option.c:616 -msgid "Allow multiple rows to be selected" -msgstr "Dozvoli istovremeni izbor više vrsta" - -#: ../src/option.c:625 ../src/option.c:888 -msgid "Allow changes to text" -msgstr "Dozvoli promjene u tekstu" - -#: ../src/option.c:634 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Ispiši specifičnu kolonu (Uobičajno je1. SVE se može koristiti za ispis svih " -"kolona)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:636 ../src/option.c:645 -msgid "NUMBER" -msgstr "BROJ" - -#: ../src/option.c:644 -msgid "Hide a specific column" -msgstr "Sakrij određenu kolonu" - -#: ../src/option.c:653 -msgid "Hides the column headers" -msgstr "Sakriva zaglavlje kolone" - -#: ../src/option.c:662 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Promijeni listu podrazumijevanih funkcija za traženje teksta u sredini, a ne " -"na početku" - -#: ../src/option.c:678 -msgid "Display notification" -msgstr "Prikaži obavještenje" - -#: ../src/option.c:687 -msgid "Set the notification text" -msgstr "Postavi tekst obavještenja" - -#: ../src/option.c:696 -msgid "Listen for commands on stdin" -msgstr "Prati naredbe na standardnom ulazu" - -#: ../src/option.c:705 -msgid "Set the notification hints" -msgstr "Postavlja savjete obavještenja" - -#: ../src/option.c:722 -msgid "Display progress indication dialog" -msgstr "Prikaži dijalog koji pokazuje napredak" - -#: ../src/option.c:740 -msgid "Set initial percentage" -msgstr "Postavi početni postotak" - -#: ../src/option.c:741 -msgid "PERCENTAGE" -msgstr "POSTOTAK" - -#: ../src/option.c:749 -msgid "Pulsate progress bar" -msgstr "Pulsiraj traku napretka" - -#: ../src/option.c:759 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Otpusti dijalog kada 100% bude dostignuto" - -#: ../src/option.c:769 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "Ubija nadproces kada se pritisne dugme „Otkaži“" - -#: ../src/option.c:779 -#, no-c-format -msgid "Hide Cancel button" -msgstr "Sakrij dugme „Otkaži“" - -#: ../src/option.c:788 -msgid "Estimate when progress will reach 100%" -msgstr "Procijeni kada će napredak dostići 100%" - -#: ../src/option.c:803 -msgid "Display question dialog" -msgstr "Prikaži dijalog pitanja" - -#: ../src/option.c:847 -msgid "Give cancel button focus by default" -msgstr "Daje dugmetu otkazivanja prvi plan po osnovi" - -#: ../src/option.c:870 -msgid "Display text information dialog" -msgstr "Prikaži dijalog tekst informacija" - -#: ../src/option.c:879 -msgid "Open file" -msgstr "Otvori datoteku" - -#: ../src/option.c:897 -msgid "Set the text font" -msgstr "Odredi tekst za unos" - -#: ../src/option.c:906 -msgid "Enable an I read and agree checkbox" -msgstr "Omogući kućicu za čitanje i slaganje" - -#: ../src/option.c:916 -msgid "Enable html support" -msgstr "Omogući HTML podršku" - -#: ../src/option.c:925 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne uključuj korisničku interakciju s WebView. Radi samo uz --html opciju" - -#: ../src/option.c:934 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "Postavlja url umjesto datoteke. Radi samo uz --html opciju" - -#: ../src/option.c:935 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:944 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Samostalno primiče tekst na kraj. Samo kada je tekst snimljen sa standardnog " -"ulaza" - -#: ../src/option.c:959 -msgid "Display warning dialog" -msgstr "Prikaži dijalog upozorenja" - -#: ../src/option.c:1017 -msgid "Display scale dialog" -msgstr "Prikaži prozorče sa skalom" - -#: ../src/option.c:1035 -msgid "Set initial value" -msgstr "Odredi početnu vrijednost" - -#: ../src/option.c:1036 ../src/option.c:1045 ../src/option.c:1054 -#: ../src/option.c:1063 ../src/option.c:1262 -msgid "VALUE" -msgstr "VREDNOST" - -#: ../src/option.c:1044 -msgid "Set minimum value" -msgstr "Postavi najmanju moguću vrijednost" - -#: ../src/option.c:1053 -msgid "Set maximum value" -msgstr "Postavi najveću moguću vrijednost" - -#: ../src/option.c:1062 -msgid "Set step size" -msgstr "Postavi vrijednost koraka" - -#: ../src/option.c:1071 -msgid "Print partial values" -msgstr "Štampaj delimične vrijednosti" - -#: ../src/option.c:1080 -msgid "Hide value" -msgstr "Sakrij vrijednost" - -#: ../src/option.c:1095 -msgid "Display forms dialog" -msgstr "Prikaži dijalog obrazaca" - -#: ../src/option.c:1104 -msgid "Add a new Entry in forms dialog" -msgstr "Dodaj novu stavku u dijalog formulara" - -#: ../src/option.c:1105 ../src/option.c:1114 -msgid "Field name" -msgstr "Naziv polja" - -#: ../src/option.c:1113 -msgid "Add a new Password Entry in forms dialog" -msgstr "Dodaj novu stavku lozinke u dijaloški prozor formulara" - -#: ../src/option.c:1122 -msgid "Add a new Calendar in forms dialog" -msgstr "Dodaj novi Kalendar u dijaloški prozor formulara" - -#: ../src/option.c:1123 -msgid "Calendar field name" -msgstr "Ime polja kalendara" - -#: ../src/option.c:1131 -msgid "Add a new List in forms dialog" -msgstr "Dodaj novu listu u dijaloški prozor formi" - -#: ../src/option.c:1132 -msgid "List field and header name" -msgstr "Polje liste i ime zaglavlja" - -#: ../src/option.c:1140 -msgid "List of values for List" -msgstr "Vrijednosti liste" - -#: ../src/option.c:1141 ../src/option.c:1150 ../src/option.c:1168 -msgid "List of values separated by |" -msgstr "Lista vrijednosti razdvojenih s |" - -#: ../src/option.c:1149 -msgid "List of values for columns" -msgstr "Lista vrijednosti za kolone" - -#: ../src/option.c:1158 -msgid "Add a new combo box in forms dialog" -msgstr "Daj novu padajuću listu u dijalogu formulara" - -#: ../src/option.c:1159 -msgid "Combo box field name" -msgstr "Ime polja padajuće liste" - -#: ../src/option.c:1167 -msgid "List of values for combo box" -msgstr "Lista vrijednosti padajuće liste" - -#: ../src/option.c:1186 -msgid "Show the columns header" -msgstr "Prikaži zaglavlje kolona" - -#: ../src/option.c:1228 -msgid "Display password dialog" -msgstr "Prikaži prozorčić za lozinku" - -#: ../src/option.c:1237 -msgid "Display the username option" -msgstr "Prikaži prozorčić za korisničko ime" - -#: ../src/option.c:1252 -msgid "Display color selection dialog" -msgstr "Prikaži prozorčić za izbor boje" - -#: ../src/option.c:1261 -msgid "Set the color" -msgstr "Postavi boju" - -#: ../src/option.c:1270 -msgid "Show the palette" -msgstr "Prikaži paletu" - -#: ../src/option.c:1285 -msgid "About zenity" -msgstr "O zenity-u" - -#: ../src/option.c:1294 -msgid "Print version" -msgstr "Ispiši verziju" - -#: ../src/option.c:2228 -msgid "General options" -msgstr "Generalne opcije" - -#: ../src/option.c:2229 -msgid "Show general options" -msgstr "Prikaži opšte postavke" - -#: ../src/option.c:2239 -msgid "Calendar options" -msgstr "Opcije kalendara" - -#: ../src/option.c:2240 -msgid "Show calendar options" -msgstr "Prikaži postavke kalendara" - -#: ../src/option.c:2250 -msgid "Text entry options" -msgstr "Opcije unosa teksta" - -#: ../src/option.c:2251 -msgid "Show text entry options" -msgstr "Prikaži postavke tekstualnog unosa" - -#: ../src/option.c:2261 -msgid "Error options" -msgstr "Opcije grešaka" - -#: ../src/option.c:2262 -msgid "Show error options" -msgstr "Prikaži postavke greške" - -#: ../src/option.c:2272 -msgid "Info options" -msgstr "Info opcije" - -#: ../src/option.c:2273 -msgid "Show info options" -msgstr "Prikaži postavke informacija" - -#: ../src/option.c:2283 -msgid "File selection options" -msgstr "Opcije izobara datoteka" - -#: ../src/option.c:2284 -msgid "Show file selection options" -msgstr "Prikaži postavke izbornike datoteke" - -#: ../src/option.c:2294 -msgid "List options" -msgstr "List opcije" - -#: ../src/option.c:2295 -msgid "Show list options" -msgstr "Prikaži postavke spiska" - -#: ../src/option.c:2306 -msgid "Notification icon options" -msgstr "Postavke obavještajne ikone" - -#: ../src/option.c:2307 -msgid "Show notification icon options" -msgstr "Prikaži postavke obavještajne ikone" - -#: ../src/option.c:2318 -msgid "Progress options" -msgstr "Opcije napretka" - -#: ../src/option.c:2319 -msgid "Show progress options" -msgstr "Prikaži postavke indikatora napretka" - -#: ../src/option.c:2329 -msgid "Question options" -msgstr "Opcije pitanja" - -#: ../src/option.c:2330 -msgid "Show question options" -msgstr "Prikaži postavke upita" - -#: ../src/option.c:2340 -msgid "Warning options" -msgstr "Opcije upozorenja" - -#: ../src/option.c:2341 -msgid "Show warning options" -msgstr "Prikaži postavke upozorenja" - -#: ../src/option.c:2351 -msgid "Scale options" -msgstr "Postavke skale" - -#: ../src/option.c:2352 -msgid "Show scale options" -msgstr "Prikaži postavke skale" - -#: ../src/option.c:2362 -msgid "Text information options" -msgstr "Postavke tekstualnog obavještenja" - -#: ../src/option.c:2363 -msgid "Show text information options" -msgstr "Prikaži postavke tekstualnog obavještenja" - -#: ../src/option.c:2373 -msgid "Color selection options" -msgstr "Opcije za izbor boje" - -#: ../src/option.c:2374 -msgid "Show color selection options" -msgstr "Prikazuje podešavanja za izbor boje" - -#: ../src/option.c:2384 -msgid "Password dialog options" -msgstr "Opcije prozorčić za lozinku" - -#: ../src/option.c:2385 -msgid "Show password dialog options" -msgstr "Prikazuje podešavanja prozorčić za izbor lozinke" - -#: ../src/option.c:2395 -msgid "Forms dialog options" -msgstr "Opcije dijaloškog prozora formulara" - -#: ../src/option.c:2396 -msgid "Show forms dialog options" -msgstr "Prikazuje podešavanja dijaloškog prozora formulara" - -#: ../src/option.c:2406 -msgid "Miscellaneous options" -msgstr "Razne opcije" - -#: ../src/option.c:2407 -msgid "Show miscellaneous options" -msgstr "Prikaži ostale postavke" - -#: ../src/option.c:2432 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ova mogućnost nije dostupna. Molim proslijedite --help za potpuni pregled " -"upotrebe.\n" - -#: ../src/option.c:2436 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Opcija --%s nije podržana za ovo prozorče\n" - -#: ../src/option.c:2440 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Dvije ili više dijalog opcija je izabrano\n" diff --git a/po/ca.po b/po/ca.po deleted file mode 100644 index d9bde30..0000000 --- a/po/ca.po +++ /dev/null @@ -1,893 +0,0 @@ -# Catalan translation of Zenity. -# Copyright © 2003-20012 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Jordi Mallach , 2003, 2004, 2005, 2006, 2007. -# Joan Duran , 2010-2013. -# Jordi Serratosa , 2012. -# Gil Forcada , 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: Catalan translation of zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-09-07 11:06+0000\n" -"PO-Revision-Date: 2017-09-01 20:02+0200\n" -"Last-Translator: Gil Forcada \n" -"Language-Team: Catalan \n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.8.11\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Aquest programa és programari lliure; podeu redistribuir-lo i/o modificar-lo " -"sota els termes de la Llicència Pública General Menor GNU tal com ha estat " -"publicada per la Free Software Foundation; ja sigui la versió 2 de la " -"Llicència o bé (si ho preferiu) qualsevol altra versió posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Aquest programa es distribueix amb l'expectativa que serà útil, però SENSE " -"CAP GARANTIA; ni tan sols la garantia implícita de COMERCIABILITAT o " -"ADEQUACIÓ PER UN PROPÒSIT PARTICULAR. Vegeu la Llicència Pública General " -"Menor GNU per a obtenir-ne més detalls.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Hauríeu d'haver rebut una còpia de la Llicència Pública General Menor GNU " -"juntament amb aquest programa; en cas contrari, escriviu a la Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Jordi Mallach \n" -"Joan Duran " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostra caixes de diàleg de scripts de l'intèrpret d'ordres" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_D'acord" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancel·la" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Heu d'especificar un tipus de diàleg. Vegeu «zenity --help» per a més " -"detalls\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_No" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sí" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "No s'ha pogut analitzar el missatge\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"El valor no és vàlid per una indicació de tipus booleà.\n" -"Els valors admesos són «true» (cert) o «false» (fals).\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "No s'admet aquest tipus d'indicació. S'omet.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Es desconeix el tipus d'indicació. S'omet.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "No s'ha pogut analitzar l'ordre de l'entrada estàndard\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificació del Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Estableix el títol del diàleg" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTOL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Estableix la icona de la finestra" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMÍ D'ICONA" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Estableix l'amplada" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "AMPLADA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Estableix l'alçada" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALÇADA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Estableix el temps d'espera del diàleg (en segons)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPS D'ESPERA" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Estableix l'etiqueta del botó D'acord" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Estableix l'etiqueta del botó Cancel·la" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Afegeix un botó extra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Estableix la indicació com a modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Estableix la finestra pare a la que adjuntar-se" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FINESTRA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostra el diàleg de calendari" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Estableix el text del diàleg" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Estableix el dia del calendari" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Estableix el mes del calendari" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MES" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Estableix l'any del calendari" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANY" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Estableix el format de la data de tornada" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATRÓ" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostra el diàleg d'entrada de text" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Estableix el text de l'entrada" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Amaga el text de l'entrada" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostra el diàleg d'error" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Estableix la icona del diàleg" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOM-ICONA" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "No habilitis l'ajustament del text" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "No habilitis el marcatge de la Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Habilita posar punts suspensius en el text del diàleg. Això permet arreglar " -"el problema de la mida de la finestra en texts molt llargs" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostra el diàleg d'informació" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostra el diàleg de selecció de fitxers" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Estableix el nom del fitxer" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOM DE FITXER" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permet la selecció de múltiples fitxers" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activa la selecció de només directoris" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activa el mode d'estalvi" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Estableix el caràcter de separació de la sortida" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmeu la selecció del fitxer si el nom del fitxer ja existeix" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Estableix un filtre per al nom de fitxer" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOM | PATRÓ1 PATRÓ2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostra el diàleg de llista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Estableix la capçalera de la columna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utilitza caselles de selecció per a la primera columna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utilitza botons de grup per a la primera columna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utilitza una imatge per a la primera columna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permet la selecció de múltiples files" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permet canvis al text" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprimeix una columna específica (el valor per defecte és 1. Es pot usar " -"«ALL» per a imprimir totes les columnes)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NOMBRE" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Amaga una columna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Oculta les capçaleres de la columna" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Canvia la funció de cerca per defecte a la llista cercant text al mig, no al " -"principi" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostra una notificació" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Estableix el text de la notificació" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Espera ordres de l'entrada estàndard" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Estableix les indicacions de la notificació" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostra el diàleg d'indicació de progrés" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Estableix el percentatge inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTATGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Barra de progrés parpellejant" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Tanca el diàleg quan s'arribi al 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Mata el procés pare si es prem el botó de cancel·lar" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Oculta el botó de cancel·lar" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estima quan el progrés arribarà al 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostra el diàleg de pregunta" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Per defecte, posa el focus al botó Cancel·la" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suprimeix els botons D'acord i Cancel·la" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostra el diàleg de text informatiu" - -#: src/option.c:715 -msgid "Open file" -msgstr "Obre un fitxer" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Estableix el tipus de lletra del text" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Habilita una casella de selecció tipus «Ho he llegit i accepto»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Habilita la compatibilitat amb l'HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"No habilitis la interacció de l'usuari amb WebView. Només funciona si " -"utilitzeu l'opció «--html»" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Estableix un URL en lloc d'un fitxer. Només funciona si utilitzeu l'opció «--" -"html»" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Desplaça automàticament el text al final. Només en capturar el text des de " -"l'entrada estàndard" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostra el diàleg d'avís" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostra el diàleg d'escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Estableix un valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Estableix el valor mínim" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Estableix el valor màxim" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Estableix el valor dels augments" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprimeix valors parcials" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Amaga el valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostra el diàleg de formularis" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Afegeix una entrada nova en el diàleg de formularis" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nom del camp" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Afegeix una contrasenya nova en el diàleg de formularis" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Afegeix un calendari nou en el diàleg de formularis" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nom del camp del calendari" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Afegeix una llista nova en el diàleg de formularis" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Camp de la llista i el nom de la capçalera" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Llista de valors per a la llista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Llista de valors separats per |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Llista de valors per les columnes" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Afegeix un quadre combinat nou al diàleg de formularis" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nom del camp de quadre combinat" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Llista de valors pel quadre combinat" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostra la capçalera de les columnes" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostra el diàleg de contrasenya" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostra l'opció de nom d'usuari" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostra el diàleg de selecció de colors" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Estableix el color" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostra la paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Quant al Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprimeix la versió" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opcions generals" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostra les opcions generals" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcions del calendari" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostra les opcions del calendari" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcions de l'entrada de text" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostra les opcions de l'entrada de text" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcions d'error" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostra les opcions d'error" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcions d'informació" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostra les opcions d'informació" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcions del selector de fitxers" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostra les opcions del selector de fitxers" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcions de llistes" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostra les opcions de llistes" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcions de la icona de notificació" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostra les opcions de la icona de notificació" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcions del progrés" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostra les opcions del progrés" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcions de preguntes" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostra les opcions de preguntes" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcions d'avisos" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostra les opcions d'avisos" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcions d'escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostra les opcions de l'escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Mostra les opcions de text informatiu" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostra les opcions de text informatiu" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcions de selecció del color" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostra les opcions de selecció del color" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcions del diàleg de contrasenya" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostra les opcions del diàleg de contrasenya" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcions del diàleg de formularis" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostra les opcions del diàleg de formularis" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opcions diverses" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostra les opcions diverses" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Aquesta opció no és disponible. Vegeu «--help» per a una llista de tots els " -"usos possibles.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s no està implementat per a aquest diàleg\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "S'han especificat dues o més opcions de diàleg\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Teclegeu la contrasenya" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Teclegeu l'usuari i la contrasenya" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nom d'usuari:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Contrasenya:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Temps restant: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "El valor màxim ha de ser major que el valor mínim.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "El valor està fora de l'abast.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" -"No s'han especificat els títols de les columnes per al diàleg de llista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Només hauríeu d'usar un tipus de diàleg de llista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajusta el valor de l'escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancel·la" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "D'acord" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vista de text" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selecció del calendari" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Seleccioneu una data d'aquí sota." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendari:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Afegeix una entrada nova" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Introduïu text nou:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Error" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "S'ha produït un error." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diàleg de formularis" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informació" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Totes les actualitzacions estan completes." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progrés" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "S'està executant..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pregunta" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Esteu segur que voleu continuar?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Seleccioneu elements de la llista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Seleccioneu elements de la llista d'aquí sota." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avís" diff --git a/po/ca@valencia.po b/po/ca@valencia.po deleted file mode 100644 index b3a5e6d..0000000 --- a/po/ca@valencia.po +++ /dev/null @@ -1,881 +0,0 @@ -# Catalan translation of Zenity. -# Copyright © 2003-20012 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Jordi Mallach , 2003, 2004, 2005, 2006, 2007. -# Joan Duran , 2010-2013. -# Jordi Serratosa , 2012. -# Gil Forcada , 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: Catalan translation of zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-09-14 21:45+0000\n" -"PO-Revision-Date: 2017-09-01 20:02+0200\n" -"Last-Translator: Xavi Ivars \n" -"Language-Team: Catalan \n" -"Language: ca-valencia\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 1.8.11\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Este programa és programari lliure; podeu redistribuir-lo i/o modificar-lo " -"sota els termes de la Llicència Pública General Menor GNU tal com ha estat " -"publicada per la Free Software Foundation; ja siga la versió 2 de la " -"Llicència o bé (si ho preferiu) qualsevol altra versió posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Este programa es distribueix amb l'expectativa que serà útil, però SENSE " -"CAP GARANTIA; ni tan sols la garantia implícita de COMERCIABILITAT o " -"ADEQUACIÓ PER UN PROPÒSIT PARTICULAR. Vegeu la Llicència Pública General " -"Menor GNU per obtindre'n més detalls.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Hauríeu d'haver rebut una còpia de la Llicència Pública General Menor GNU " -"juntament amb este programa; en cas contrari, escriviu a la Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Jordi Mallach \n" -"Joan Duran " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostra caixes de diàleg de scripts de l'intèrpret d'ordes" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Heu d'especificar un tipus de diàleg. Vegeu «zenity --help» per a més " -"detalls\n" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "No s'ha pogut analitzar el missatge\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"El valor no és vàlid per una indicació de tipus booleà.\n" -"Els valors admesos són «true» (cert) o «false» (fals).\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "No s'admet este tipus d'indicació. S'omet.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Es desconeix el tipus d'indicació. S'omet.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "No s'ha pogut analitzar l'orde de l'entrada estàndard\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificació del Zenity" - -#: src/password.c:57 -msgid "_Cancel" -msgstr "_Cancel·la" - -#: src/password.c:60 -msgid "_OK" -msgstr "_D'acord" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Teclegeu la contrasenya" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Teclegeu l'usuari i la contrasenya" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nom d'usuari:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Contrasenya:" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "El valor màxim ha de ser major que el valor mínim.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "El valor està fora de l'abast.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" -"No s'han especificat els títols de les columnes per al diàleg de llista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Només hauríeu d'usar un tipus de diàleg de llista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajusta el valor de l'escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancel·la" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "D'acord" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vista de text" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selecció del calendari" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Seleccioneu una data d'ací sota." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendari:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Afig una entrada nova" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Introduïu text nou:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Error" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "S'ha produït un error." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diàleg de formularis" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informació" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Totes les actualitzacions estan completes." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progrés" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "S'està executant..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pregunta" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Esteu segur que voleu continuar?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Seleccioneu elements de la llista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Seleccioneu elements de la llista d'ací sota." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avís" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Estableix el títol del diàleg" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTOL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Estableix la icona de la finestra" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMÍ D'ICONA" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Estableix l'amplària" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "AMPLADA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Estableix l'alçària" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALÇADA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Estableix el temps d'espera del diàleg (en segons)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPS D'ESPERA" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Estableix l'etiqueta del botó D'acord" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Estableix l'etiqueta del botó Cancel·la" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Afig un botó extra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Estableix la indicació com a modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Estableix la finestra pare a la que adjuntar-se" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FINESTRA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostra el diàleg de calendari" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Estableix el text del diàleg" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Estableix el dia del calendari" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Estableix el mes del calendari" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MES" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Estableix l'any del calendari" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANY" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Estableix el format de la data de tornada" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATRÓ" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostra el diàleg d'entrada de text" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Estableix el text de l'entrada" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Amaga el text de l'entrada" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostra el diàleg d'error" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Estableix la icona del diàleg" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOM-ICONA" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "No habilitis l'ajustament del text" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "No habilitis el marcatge de la Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Habilita posar punts suspensius en el text del diàleg. Això permet arreglar " -"el problema de la mida de la finestra en texts molt llargs." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostra el diàleg d'informació" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostra el diàleg de selecció de fitxers" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Estableix el nom del fitxer" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOM DE FITXER" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permet la selecció de múltiples fitxers" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activa la selecció de només directoris" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activa el mode d'estalvi" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Estableix el caràcter de separació de l'eixida" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmeu la selecció del fitxer si el nom del fitxer ja existeix" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Estableix un filtre per al nom de fitxer" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOM | PATRÓ1 PATRÓ2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostra el diàleg de llista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Estableix la capçalera de la columna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utilitza caselles de selecció per a la primera columna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utilitza botons de grup per a la primera columna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utilitza una imatge per a la primera columna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permet la selecció de múltiples files" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permet canvis al text" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprimeix una columna específica (el valor per defecte és 1. Es pot usar " -"«ALL» per imprimir totes les columnes)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NOMBRE" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Amaga una columna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Oculta les capçaleres de la columna" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Canvia la funció de busca per defecte a la llista cercant text al mig, no al " -"principi" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostra una notificació" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Estableix el text de la notificació" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Espera ordes de l'entrada estàndard" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Estableix les indicacions de la notificació" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostra el diàleg d'indicació de progrés" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Estableix el percentatge inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTATGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Barra de progrés parpellejant" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Tanca el diàleg quan s'arribe al 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Mata el procés pare si es prem el botó de cancel·lar" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Oculta el botó de cancel·lar" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estima quan el progrés arribarà al 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostra el diàleg de pregunta" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Per defecte, posa el focus al botó Cancel·la" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suprimeix els botons D'acord i Cancel·la" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostra el diàleg de text informatiu" - -#: src/option.c:715 -msgid "Open file" -msgstr "Obri un fitxer" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Estableix el tipus de lletra del text" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Habilita una casella de selecció tipus «Ho he llegit i accepte»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Habilita la compatibilitat amb l'HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"No habilitis la interacció de l'usuari amb WebView. Només funciona si " -"utilitzeu l'opció «--html»" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Estableix un URL en lloc d'un fitxer. Només funciona si utilitzeu l'opció «--" -"html»" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Desplaça automàticament el text al final. Només en capturar el text des de " -"l'entrada estàndard." - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostra el diàleg d'avís" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostra el diàleg d'escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Estableix un valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Estableix el valor mínim" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Estableix el valor màxim" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Estableix el valor dels augments" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprimeix valors parcials" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Amaga el valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostra el diàleg de formularis" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Afig una entrada nova en el diàleg de formularis" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nom del camp" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Afig una contrasenya nova en el diàleg de formularis" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Afig un calendari nou en el diàleg de formularis" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nom del camp del calendari" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Afig una llista nova en el diàleg de formularis" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Camp de la llista i el nom de la capçalera" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Llista de valors per a la llista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Llista de valors separats per |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Llista de valors per les columnes" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Afig un quadre combinat nou al diàleg de formularis" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nom del camp de quadre combinat" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Llista de valors pel quadre combinat" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostra la capçalera de les columnes" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostra el diàleg de contrasenya" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostra l'opció de nom d'usuari" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostra el diàleg de selecció de colors" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Estableix el color" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostra la paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Quant al Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprimeix la versió" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opcions generals" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostra les opcions generals" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcions del calendari" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostra les opcions del calendari" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcions de l'entrada de text" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostra les opcions de l'entrada de text" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcions d'error" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostra les opcions d'error" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcions d'informació" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostra les opcions d'informació" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcions del selector de fitxers" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostra les opcions del selector de fitxers" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcions de llistes" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostra les opcions de llistes" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcions de la icona de notificació" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostra les opcions de la icona de notificació" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcions del progrés" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostra les opcions del progrés" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcions de preguntes" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostra les opcions de preguntes" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcions d'avisos" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostra les opcions d'avisos" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcions d'escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostra les opcions de l'escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Mostra les opcions de text informatiu" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostra les opcions de text informatiu" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcions de selecció del color" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostra les opcions de selecció del color" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcions del diàleg de contrasenya" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostra les opcions del diàleg de contrasenya" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcions del diàleg de formularis" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostra les opcions del diàleg de formularis" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opcions diverses" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostra les opcions diverses" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Esta opció no és disponible. Vegeu «--help» per a una llista de tots els " -"usos possibles.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s no està implementat per a este diàleg\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "S'han especificat dues o més opcions de diàleg\n" diff --git a/po/cs.po b/po/cs.po deleted file mode 100644 index d7a2e30..0000000 --- a/po/cs.po +++ /dev/null @@ -1,895 +0,0 @@ -# Czech translation of zenity. -# Copyright (C) 2008 the author(s) of zenity. -# This file is distributed under the same license as the zenity. -# -# Miloslav Trmac , 2003, 2005, 2006. -# Jakub Friedl , 2007. -# Pavel Šefránek , 2008. -# Petr Kovar , 2008. -# Lucas Lommer , 2010. (merge 2.30 -> master + fuzzy). -# Marek Černocký , 2010, 2011, 2012, 2013, 2014, 2015, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-18 17:05+0100\n" -"Last-Translator: Marek Černocký \n" -"Language-Team: čeština \n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Tento program je svobodný software; můžete jej šířit a modifikovat podle " -"ustanovení GNU Lesser General Public License, vydávané Free Software " -"Foundation; a to buď verze 2 této licence anebo (podle vlastního uvážení) " -"kterékoliv pozdější verze.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Tento program je rozšiřován v naději, že bude užitečný, avšak BEZ JAKÉKOLIV " -"ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO " -"URČITÝ ÚČEL. Další podrobnosti hledejte v GNU Lesser General Public " -"License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Kopii GNU Lesser General Public License jste měl(a) obdržet spolu s tímto " -"programem; pokud se tak nestalo, napište o ni Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Miloslav Trmač \n" -"Pavel Šefránek \n" -"Petr Kovář \n" -"Marek Černocký " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Zobrazuje dialogová okna ze skriptů shellu" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Budiž" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Zrušit" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Musíte zadat typ dialogu. Více informací viz zenity --help\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ano" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nepodařilo se zpracovat zprávu\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neplatná hodnota pro pravděpodobnostní typ rady.\n" -"Podporované hodnoty jsou „true“ nebo „false“.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodporovaná rada. Přeskakuje se.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Neznámý název rady. Přeskakuje se.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nelze zpracovat příkaz ze standardního vstupu\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Upozornění Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Nastavit nadpis dialogu" - -#: src/option.c:165 -msgid "TITLE" -msgstr "NADPIS" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Nastavit ikonu okna" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CESTAKIKONĚ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Nastavit šířku" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ŠÍŘKA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Nastavit výšku" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "VÝŠKA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Nastavit časový limit dialogu v sekundách" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ČASOVÝLIMIT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Nastavit text tlačítka Budiž" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Nastavit text tlačítka Zrušit" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Přidat další tlačítko" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Nastavit radu k modálnímu dialogovému oknu" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Nastavit rodičovské okno, ke kterému se má navázat" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "OKNO" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Zobrazit dialogové okno kalendáře" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Nastavit text dialogu" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Nastavit den kalendáře" - -#: src/option.c:252 -msgid "DAY" -msgstr "DEN" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Nastavit měsíc kalendáře" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MĚSÍC" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Nastavit rok kalendáře" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ROK" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Nastavit formát vráceného data" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "VZOREK" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Zobrazit dialogové okno pro vstup textu" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Nastavit text vstupu" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Skrýt text vstupu" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Zobrazit dialogové okno s chybou" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Nastavit ikonu dialogového okna" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NÁZEV-IKONY" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Nepovolit lámání textu" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Nepovolit značky Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Povolit zkracování textu v textovém dialogovém okně. Tím se řeší příliš " -"velké rozměry okna s dlouhým textem" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Zobrazit dialogové okno s informací" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Zobrazit dialogové okno výběru souborů" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Nastavit název souboru" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NÁZEVSOUBORU" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Dovolit výběr více souborů" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivovat výběr jen adresářů" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivovat režim ukládání" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Nastavit znak oddělovače výstupu" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ODDĚLOVAČ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potvrdit výběr souboru, pokud již název existuje" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Nastavit filtr pro názvy souborů" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NÁZEV | VÝRAZ1 VÝRAZ2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Zobrazit dialogové okno se seznamem" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Nastavit nadpis sloupců" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "SLOUPEC" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "V prvním sloupci použít zaškrtávací políčka" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "V prvním sloupci použít skupinové přepínače" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "V prvním sloupci použít obrázek" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Dovolit výběr více řádků" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Povolit změny textu" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Vypsat konkrétní sloupec (výchozí je 1; „ALL“ lze použít pro výpis všech " -"sloupců)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ČÍSLO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Skrýt konkrétní sloupec" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Skrýt záhlaví sloupců" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Změnit výchozí vyhledávací funkci seznamu, aby hledala text uprostřed a ne " -"na začátku" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Zobrazit upozornění" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Nastavit text upozornění" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Číst příkazy ze stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Nastavit upozorňovací rady" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Zobrazit dialogové okno s ukazatelem průběhu" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Nastavit počáteční procenta" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTO" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulzovat indikátorem průběhu" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Zavřít dialog, když je dosaženo 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Zabít rodičovský proces při stisku tlačítka Zrušit" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Skrýt tlačítko zrušení" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Odhadovat, kdy průběh dosáhne 100 %" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Zobrazit dialogové okno s otázkou" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Jako výchozí zaměřit tlačítko Zrušit" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Potlačit tlačítka Budiž a Zrušit" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Zobrazit dialogové okno s textovými informacemi" - -#: src/option.c:715 -msgid "Open file" -msgstr "Otevřít soubor" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Nastavit písmo textu" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Povolit zaškrtávací políčko „Přečetl jsem a souhlasím“" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Povolit podporu HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Nepovolovat uživateli interakci se zobrazením webu. Funguje jen spolu s " -"přepínačem --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Nastavit adresu URL namísto souboru. Funguje jen spolu s přepínačem --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automaticky posouvat text na konec. Jen v případě, že text je získáván ze " -"standardního vstupu" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Zobrazit dialogové okno s varováním" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Zobrazit dialogové okno měřítka" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Nastavit počáteční hodnotu" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "HODNOTA" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Nastavit minimální hodnotu" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Nastavit maximální hodnotu" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Nastavit velikost kroku" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Vypsat částečné hodnoty" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Skrýt hodnotu" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Zobrazit formulářové dialogové okno" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Přidat novou položku do formulářového dialogového okna" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Název pole" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Přidal novou položku s heslem do formulářového dialogového okna" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Přidat nový kalendář do formulářového dialogového okna" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Název kalendářového pole" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Přidat nový seznam do formulářového dialogového okna" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Pole a názvy záhlaví seznamu" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Seznam hodnot pro seznam" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Seznam hodnot oddělených znakem |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Seznam hodnot pro sloupce" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Přidat nový rozbalovací seznam do formulářového dialogového okna" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Název pole s rozbalovacím seznamem" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Seznam hodnot pro rozbalovací seznam" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Zobrazit záhlaví sloupců" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Zobrazit dialogové okno s heslem" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Zobrazit volbu jména uživatele" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Zobrazit dialogové okno výběru barev" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Nastavit barvu" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Zobrazit paletu" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "O zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Vypsat verzi" - -#: src/option.c:1913 -msgid "General options" -msgstr "Obecné přepínače" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Zobrazit obecné přepínače" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Přepínače kalendáře" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Zobrazit přepínače kalendáře" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Přepínače vstupu textu" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Zobrazit přepínače vstupu textu" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Přepínače chyby" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Zobrazit přepínače chyby" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Přepínače informací" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Zobrazit přepínače informací" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Přepínače výběru souborů" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Zobrazit přepínače výběru souborů" - -#: src/option.c:1985 -msgid "List options" -msgstr "Přepínače seznamu" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Zobrazit přepínače seznamu" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Možnosti ikony upozornění" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Zobrazit možnosti ikony upozornění" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Přepínače průběhu" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Zobrazit přepínače průběhu" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Přepínače otázky" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Zobrazit přepínače otázky" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Přepínače varování" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Zobrazit přepínače varování" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Přepínače měřítka" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Zobrazit přepínače měřítka" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Možnosti textové informace" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Zobrazit možnosti textové informace" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Přepínače výběru barev" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Zobrazit přepínače výběru barev" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Přepínače dialogového okna s heslem" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Zobrazit přepínače dialogového okna s heslem" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Přepínače formulářového dialogového okna" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Zobrazit přepínače formulářového dialogového okna" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Různé přepínače" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Zobrazit různé přepínače" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Tento přepínač není k dispozici. Pro všechna možná použití se podívejte na --" -"help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s není tímto dialogem podporováno\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Zadány dva nebo více dialogů\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Zadejte své heslo" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Zadejte své uživatelské jméno a heslo" - -#: src/password.c:100 -msgid "Username:" -msgstr "Jméno:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Heslo:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Zbývající čas: %lu∶%02lu∶%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximální hodnota musí být větší než minimální hodnota.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Hodnota mimo rozsah.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Pro dialogové okno se seznamem nebyly zadány záhlaví sloupců.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Měli byste používat jen jeden typ dialogového okna se seznamem.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Úprava hodnoty na stupnici" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Zrušit" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Budiž" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Textové zobrazení" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Výběr v kalendáři" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "V kalendáři níže vyberte datum." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendář:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Přidání nové položky" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Zad_ejte nový text:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Chyba" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Vyskytla se chyba." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formulářové dialogové okno" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informace" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Všechny aktualizace jsou dokončeny." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Průběh" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Běží…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Dotaz" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Opravdu chcete pokračovat?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Výběr položek ze seznamu" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "V seznamu níže vyberte položky." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Varování" diff --git a/po/cy.po b/po/cy.po deleted file mode 100644 index 36cb3fb..0000000 --- a/po/cy.po +++ /dev/null @@ -1,531 +0,0 @@ -# translation of zenity.HEAD.cy.po to Cymraeg -# zenity yn Gymraeg. -# Copyright (C) 2003, The Free Software Foundation -# This file is distributed under the same license as the zenity package. -# Dafydd Harries , 2003 2004. -# Dafydd Tomos , 2004. -# Rhys Jones , 2005-6. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-25 14:34+0000\n" -"PO-Revision-Date: 2006-02-23 20:23-0000\n" -"Last-Translator: Rhys Jones \n" -"Language-Team: Cymraeg \n" -"Language: cy\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/about.c:248 -msgid "translator-credits" -msgstr "" -"Dafydd Harries \n" -"Dafydd Tomos \n" -"Rhys Jones \n" -"Telsa Gwynne \n" -"Chris Jackson \n" -"Bryn Salisbury " - -#: ../src/about.c:257 -msgid "Display dialog boxes from shell scripts" -msgstr "Dangos blychau deialog o sgriptiau cragen" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "Gogwydd" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "Gogwydd y cynhwysydd." - -#: ../src/main.c:93 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Rhaid i chi benodi math deialog. Gweler 'zenity --help' ar gyfer mwy o " -"fanylion\n" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "methu â gramadegu'r gorchymyn o'r prif fewnbwn (stdin)\n" - -#: ../src/notification.c:230 ../src/notification.c:259 -msgid "Zenity notification" -msgstr "Hysbysiad Zenity" - -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Rhaid i'r uchafrif fod yn fwy na'r isafrif.\n" - -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "Gwerth y tu allan i'r ystod.\n" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Dim teitlau colofnau wedi eu penodi ar gyfer deialog Rhestr.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "Dylech ond defnyddio un fath o ddeialog Rhestr.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Ychwanegu maes newydd" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Newid gwerth y raddfa" - -#: ../src/zenity.glade.h:3 -msgid "Adjust the scale value." -msgstr "Newid gwerth y raddfa." - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Mae pob diweddariad yn gyflawn." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Mae gwall wedi digwydd." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Ydych chi'n sicr eich bod chi eisiau parhau?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "_Calendr:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Dewis calendr" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Gwall" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Gwybodaeth" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Cynnydd" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Cwestiwn" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "Gweithredu..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Dewiswch ddyddiad islaw." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Dewiswch ffeil" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Dewiswch eitemau o'r rhestr" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Dewiswch eitemau o'r rhestr islaw." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Golwg Testun" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Rhybudd" - -#: ../src/zenity.glade.h:20 -msgid "_Enter new text:" -msgstr "_Gosod testun newydd:" - -#: ../src/option.c:114 -msgid "Set the dialog title" -msgstr "Gosod teitl y deialog" - -#: ../src/option.c:115 -msgid "TITLE" -msgstr "TEITL" - -#: ../src/option.c:123 -msgid "Set the window icon" -msgstr "Gosod eicon y ffenest" - -#: ../src/option.c:124 -msgid "ICONPATH" -msgstr "LLWYBR_EICON" - -#: ../src/option.c:132 -msgid "Set the width" -msgstr "Gosod y lled" - -#: ../src/option.c:133 -msgid "WIDTH" -msgstr "LLED" - -#: ../src/option.c:141 -msgid "Set the height" -msgstr "Gosod yr uchder" - -#: ../src/option.c:142 -msgid "HEIGHT" -msgstr "UCHDER" - -#: ../src/option.c:156 -msgid "Display calendar dialog" -msgstr "Dangos deialog dyddiad" - -#: ../src/option.c:165 ../src/option.c:225 ../src/option.c:268 -#: ../src/option.c:301 ../src/option.c:394 ../src/option.c:523 -#: ../src/option.c:575 ../src/option.c:641 ../src/option.c:674 -msgid "Set the dialog text" -msgstr "Gosod testun y deialog" - -#: ../src/option.c:174 -msgid "Set the calendar day" -msgstr "Gosod dydd y calendr" - -#: ../src/option.c:183 -msgid "Set the calendar month" -msgstr "Gosod mis y calendr" - -#: ../src/option.c:192 -msgid "Set the calendar year" -msgstr "Gosod blwyddyn y calendr" - -#: ../src/option.c:201 -msgid "Set the format for the returned date" -msgstr "Gosod fformat y dyddiad a ddychwelir" - -#: ../src/option.c:216 -msgid "Display text entry dialog" -msgstr "Dangos deialog maes testun" - -#: ../src/option.c:234 -msgid "Set the entry text" -msgstr "Gosod testun y maes" - -#: ../src/option.c:243 -msgid "Hide the entry text" -msgstr "Cuddio testun y maes" - -#: ../src/option.c:259 -msgid "Display error dialog" -msgstr "Dangos deialog gwall" - -#: ../src/option.c:277 ../src/option.c:310 ../src/option.c:584 -#: ../src/option.c:650 -msgid "Do not enable text wrapping" -msgstr "Peidio galluogi lapio testun" - -#: ../src/option.c:292 -msgid "Display info dialog" -msgstr "Dangos deialog gwybodaeth" - -#: ../src/option.c:325 -msgid "Display file selection dialog" -msgstr "Dangos deialog dewis ffeil" - -#: ../src/option.c:334 -msgid "Set the filename" -msgstr "Gosod yr enw ffeil" - -#: ../src/option.c:335 ../src/option.c:609 -msgid "FILENAME" -msgstr "ENW_FFEIL" - -#: ../src/option.c:343 -msgid "Allow multiple files to be selected" -msgstr "Caniatáu dewis mwy nag un ffeil" - -#: ../src/option.c:352 -msgid "Activate directory-only selection" -msgstr "Gosod dewis cyfeiriadur-yn-unig ar waith" - -#: ../src/option.c:361 -msgid "Activate save mode" -msgstr "Gweithredoli modd cadw" - -#: ../src/option.c:370 ../src/option.c:430 -msgid "Set output separator character" -msgstr "Gosod y nod gwahanu allbwn" - -#: ../src/option.c:371 ../src/option.c:431 -msgid "SEPARATOR" -msgstr "GWAHANWR" - -#: ../src/option.c:385 -msgid "Display list dialog" -msgstr "Dangos deialog rhestr" - -#: ../src/option.c:403 -msgid "Set the column header" -msgstr "Gosod y pennawd colofn" - -#: ../src/option.c:412 -msgid "Use check boxes for first column" -msgstr "Defnyddio blychau gwirio ar gyfer y golofn gyntaf" - -#: ../src/option.c:421 -msgid "Use radio buttons for first column" -msgstr "Defnyddio botymau radio ar gyfer y golofn gyntaf" - -#: ../src/option.c:439 -msgid "Allow multiple rows to be selected" -msgstr "Caniatáu dewis mwy nag un rhes" - -#: ../src/option.c:448 ../src/option.c:617 -msgid "Allow changes to text" -msgstr "Caniatáu newidiadau i'r testun" - -#: ../src/option.c:457 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Argraffu colofn benodol (1 yw'r rhagosodiad. Gellir defnyddio 'ALL' er mwyn " -"argraffu pob colofn)" - -#: ../src/option.c:466 -msgid "Hide a specific column" -msgstr "Cuddio colofn benodol" - -#: ../src/option.c:481 -msgid "Display notification" -msgstr "Dangos hysbysiad" - -#: ../src/option.c:490 -msgid "Set the notification text" -msgstr "Gosod testun yr hysbysiad" - -#: ../src/option.c:499 -msgid "Listen for commands on stdin" -msgstr "Gwrando am orchmynion ar y prif fewnbwn (stdin)" - -#: ../src/option.c:514 -msgid "Display progress indication dialog" -msgstr "Dangos deialog cynnydd" - -#: ../src/option.c:532 -msgid "Set initial percentage" -msgstr "Gosod y canran cychwynnol" - -#: ../src/option.c:541 -msgid "Pulsate progress bar" -msgstr "Pylsadu'r bar cynnydd" - -#: ../src/option.c:551 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Cau'r deialog pan gyrhaeddir 100%" - -#: ../src/option.c:566 -msgid "Display question dialog" -msgstr "Dangos deialog cwestiwn" - -#: ../src/option.c:599 -msgid "Display text information dialog" -msgstr "Dangos deialog gwybodaeth testun" - -#: ../src/option.c:608 -msgid "Open file" -msgstr "Agor ffeil" - -#: ../src/option.c:632 -msgid "Display warning dialog" -msgstr "Dangos deialog rhybudd" - -#: ../src/option.c:665 -msgid "Display scale dialog" -msgstr "Dangos deialog graddfa" - -#: ../src/option.c:683 -msgid "Set initial value" -msgstr "Gosod y gwerth gwreiddiol" - -#: ../src/option.c:692 -msgid "Set minimum value" -msgstr "Gosod yr isafrif" - -#: ../src/option.c:701 -msgid "Set maximum value" -msgstr "Gosod yr uchafrif" - -#: ../src/option.c:710 -msgid "Set step size" -msgstr "Gosod maint y camau" - -#: ../src/option.c:719 -msgid "Print partial values" -msgstr "Dangos gwerthoedd rhannol" - -#: ../src/option.c:728 -msgid "Hide value" -msgstr "Cuddio gwerth" - -#: ../src/option.c:743 -msgid "About zenity" -msgstr "Ynghylch zenity" - -#: ../src/option.c:752 -msgid "Print version" -msgstr "Argraffu'r fersiwn" - -#: ../src/option.c:1385 -msgid "General options" -msgstr "Opsiynau cyffredinol" - -#: ../src/option.c:1386 -msgid "Show general options" -msgstr "Dangos opsiynau cyffredinol" - -#: ../src/option.c:1396 -msgid "Calendar options" -msgstr "Opsiynau calendr" - -#: ../src/option.c:1397 -msgid "Show calendar options" -msgstr "Dangos opsiynau calendr" - -#: ../src/option.c:1407 -msgid "Text entry options" -msgstr "Opsiynau maes testun" - -#: ../src/option.c:1408 -msgid "Show text entry options" -msgstr "Dangos opsiynau maes testun" - -#: ../src/option.c:1418 -msgid "Error options" -msgstr "Opsiynau gwall" - -#: ../src/option.c:1419 -msgid "Show error options" -msgstr "Dangos opsiynau gwall" - -#: ../src/option.c:1429 -msgid "Info options" -msgstr "Opsiynau gwybodaeth" - -#: ../src/option.c:1430 -msgid "Show info options" -msgstr "Dangos opsiynau gwybodaeth" - -#: ../src/option.c:1440 -msgid "File selection options" -msgstr "Opsiynau dewis ffeiliau" - -#: ../src/option.c:1441 -msgid "Show file selection options" -msgstr "Dangos opsiynau dewis ffeiliau" - -#: ../src/option.c:1451 -msgid "List options" -msgstr "Opsiynau rhestr" - -#: ../src/option.c:1452 -msgid "Show list options" -msgstr "Dangos opsiynau rhestr" - -#: ../src/option.c:1462 -msgid "Notification icon options" -msgstr "Opsiynau eicon hysbysiad" - -#: ../src/option.c:1463 -msgid "Show notification icon options" -msgstr "Dangos opsiynau eicon hysbysiad" - -#: ../src/option.c:1473 -msgid "Progress options" -msgstr "Opsiynau cynnydd" - -#: ../src/option.c:1474 -msgid "Show progress options" -msgstr "Dangos opsiynau cynnydd" - -#: ../src/option.c:1484 -msgid "Question options" -msgstr "Opsiynau cwestiwn" - -#: ../src/option.c:1485 -msgid "Show question options" -msgstr "Dangos opsiynau cwestiwn" - -#: ../src/option.c:1495 -msgid "Warning options" -msgstr "Opsiynau rhybudd" - -#: ../src/option.c:1496 -msgid "Show warning options" -msgstr "Dangos opsiynau rhybudd" - -#: ../src/option.c:1506 -msgid "Scale options" -msgstr "Opsiynau graddfa" - -#: ../src/option.c:1507 -msgid "Show scale options" -msgstr "Dangos opsiynau graddfa" - -#: ../src/option.c:1517 -msgid "Text information options" -msgstr "Opsiynau testun gwybodaeth" - -#: ../src/option.c:1518 -msgid "Show text information options" -msgstr "Dangos opsiynau testun gwybodaeth" - -#: ../src/option.c:1528 -msgid "Miscellaneous options" -msgstr "Opsiynau eraill" - -#: ../src/option.c:1529 -msgid "Show miscellaneous options" -msgstr "Dangos opsiynau eraill" - -#: ../src/option.c:1554 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "Nid yw'r opsiwn yma ar gael. Gweler --help am restr opsiynau.\n" - -#: ../src/option.c:1558 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Ni chefnogir --%s ar gyfer y deialog hwn\n" - -#: ../src/option.c:1562 -msgid "Two or more dialog options specified\n" -msgstr "Dau neu fwy o opsiynau deialog wedi eu darparu\n" - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "(C) 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "Diolchiadau" - -#~ msgid "Written by" -#~ msgstr "Ysgrifennwyd gan" - -#~ msgid "Translated by" -#~ msgstr "Cyfieithwyd gan" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "Ynghylch Zenity" - -#~ msgid "_Credits" -#~ msgstr "_Clodau" diff --git a/po/da.po b/po/da.po deleted file mode 100644 index 2753365..0000000 --- a/po/da.po +++ /dev/null @@ -1,915 +0,0 @@ -# Danish translation of zenity. -# Copyright (C) 2013, 2015 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Ole Laursen , 2003, 2005. -# Martin Willemoes Hansen , 2004-2005. -# Lasse Bang Mikkelsen , 2006. -# Peter Bach , 2007. -# Joe Hansen , 2007, 2011, 2013. -# Ask Hjorth Larsen , 2008-10, 2013, 2015. -# Husk at tilføje dig i credit-listen (besked id "translator-credits") -# scootergrisen, 2015. -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-09-07 11:06+0000\n" -"PO-Revision-Date: 2018-02-28 11:51+0100\n" -"Last-Translator: scootergrisen\n" -"Language-Team: Danish \n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.6\n" -"X-Language: da_DK\n" -"X-Source-Language: C\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Dette program er fri software; det kan distribueres og/eller modificeres som " -"betinget af GNU Lesser General Public License, udarbejdet af Free Software " -"Foundation; enten version 2 af licensen eller, efter eget valg, enhver nyere " -"version.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Dette program distribueres i håb om at det viser sig nyttigt, men UDEN NOGEN " -"GARANTI; selv uden de underforståede garantier SALGBARHED eller EGNETHED TIL " -"ET BESTEMT FORMÅL, idet der henvises til GNU Lesser General Public License " -"for detaljer.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Du bør have modtaget en kopi af GNU Lesser General Public License sammen med " -"dette program; er dette ikke tilfældet, så skriv til Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Ole Laursen\n" -"Martin Willemoes Hansen\n" -"Lasse Bang Mikkelsen\n" -"Peter Bach\n" -"Joe Hansen\n" -"\n" -"Dansk-gruppen\n" -"Websted http://dansk-gruppen.dk\n" -"E-mail " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Vis meddelelsesvinduer fra kommandoskalprogrammer" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Annullér" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Du skal angive en vinduestype. Se “zenity --help” for flere detaljer\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nej" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ja" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Kunne ikke fortolke meddelelse\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Ugyldig værdi for et fif af typen boolesk.\n" -"Understøttede værdier er “true” eller “false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Ej understøttet fif. Udelader.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Ukendt fifnavn. Udelader.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Kunne ikke fortolke kommando fra standardinddata\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-påmindelse" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Angiv vinduestitlen" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITEL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Angiv vinduesikonet" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "IKONSTI" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Angiv bredden" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "BREDDE" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Angiv højden" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HØJDE" - -# Oversættelsesovervejelser -# Joe 29. aug 2007 De øvrige oversættelser over dialog bruger i -# høj grand vindue som oversættelse, men det kan jeg ikke få til -# at passe på "set dialog timeout in seconds" -# -# Kenneth 29. august 2007. Oftest bliver det unødvendigt at skrive -# at noget er en dialog og strengen kan derfor tit blot oversættes -# til noget med vindue, men her synes jeg et der ok at inkludere. -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Angiv udløbstid i sekunder for dialogvinduet" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "UDLØBSTID" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Angiv etiketten på OK-knappen" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Angiv etiketten på Annulllér-knappen" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Tilføj en ekstra knap" - -# modal hint er om dialogen blokerer aktivitet i det bagvedliggende vindue. Jeg vil foreslå at beholde det uoversat pga. dets tekniske betydning, med mindre vi kan finde en god oversættelse. Her er ikke så meget kontekst -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Angiv “modal” dialog" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Angiv ophavsvinduet, der skal hæftes til" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "VINDUE" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Vis kalendervindue" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Angiv vinduesteksten" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Angiv kalenderdagen" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAG" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Angiv kalendermåneden" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MÅNED" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Angiv kalenderåret" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ÅR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Angiv formatet for den returnerede dato" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MØNSTER" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Vis tekstindtastningsvindue" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Angiv indtastningsteksten" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Skjul indtastningsteksten" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Vis fejlvindue" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Angiv dialogvinduesikonet" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "IKON-NAVN" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Aktivér ikke tekstombrydning" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Aktivér ikke Pango-opmærkning" - -# Yikes, men jeg tror at meningen er der -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Tillad udeladelse med ellipse for dialogtekst. Dette fikserer " -"vinduesstørrelsen ved lange tekster" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Vis infovindue" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Vis filvælgervindue" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Angiv filnavnet" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILNAVN" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Tillad flere filer at blive valgt" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivér markering kun af mapper" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivér gem-tilstand" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Angiv adskillelsestegnet til uddata" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ADSKILLER" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Bekræft filmarkering hvis filnavn allerede eksisterer" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Angiv et filnavnsfilter" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAVN | MØNSTER1 MØNSTER2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Vis listevindue" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Angiv kolonneoverskriften" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLONNE" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Brug afkrydsningsbokse til den første kolonne" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Brug radioknapper til den første kolonne" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Brug et billede til den første kolonne" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Tillad at flere rækker kan vælges" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Tillad ændringer i tekst" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Vis en specifik kolonne (1 er forvalgt. Benyt “ALL” til at vise alle " -"kolonner)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMMER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Skjul en bestemt kolonne" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Skjul kolonneoverskrifterne" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Ændr standardopførslen for listesøgning, så der søges efter tekst i midten " -"frem for i begyndelsen" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Vis påmindelse" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Angiv påmindelsesteksten" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Lyt efter kommandoer fra standardinddata" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Angiv påmindelsesfiffene" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Vis fremgangsmålervindue" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Angiv startprocentdel" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTDEL" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Lad fremgangsmåleren pulsere" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Fjern vinduet når 100% er nået" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Dræb ophavsproces hvis Annullér-knappen trykkes" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Skjul Annullér-knap" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Anslå hvornår der nås 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Vis spørgsmålsvindue" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Giv fokus til Annullér-knappen, som standard" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Undertryk OK- og Annullér-knapper" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Vis tekstinformationsvindue" - -#: src/option.c:715 -msgid "Open file" -msgstr "Åbn fil" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Angiv skrifttypen for tekst" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Aktivér et afkrydsningsfelt med Jeg har læst og accepteret" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Aktivér HTML-understøttelse" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use " -"--html option" -msgstr "" -"Slå ikke brugerinteraktion til i webvisningen. Virker kun hvis du bruger " -"tilvalget --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Angiver en URL i stedet for en fil. Virker kun hvis du bruger tilvalget " -"--html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "Autorul teksten til slutningen. Kun når tekst hentes fra stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Vis advarselsvindue" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Vis skaleringsvindue" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Angiv startværdi" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VÆRDI" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Angiv minimumsværdi" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Angiv maksimumsværdi" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Angiv trinstørrelse" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Udskriv delvise værdier" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Skjul værdi" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Vis formulardialog" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Tilføj et nyt indtastningsfelt i formulardialogen" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Feltnavn" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Tilføj et nyt adgangskodefelt i formulardialogen" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Tilføj en ny kalender i formulardialogen" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalenderfeltnavn" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Tilføj en ny liste i formulardialogen" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Vis felt- og overskriftsnavn" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Værdier til liste" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Liste af værdier adskilt af |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Liste af værdier for kolonner" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Tilføj en ny kombinationsboks i formulardialogen" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Feltnavn for kombinationsboks" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Liste af værdier for kombinationsboks" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Vis kolonneoverskriften" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Vis adgangskodevindue" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Vis brugernavnsindstillingen" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Vis farvevælgervindue" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Angiv farven" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Vis paletten" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Om Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Vis version" - -#: src/option.c:1913 -msgid "General options" -msgstr "Generelle tilvalg" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Vis generelle tilvalg" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalendertilvalg" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Vis kalendertilvalg" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Tekstindtastningstilvalg" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Vis tekstindtastningstilvalg" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Fejltilvalg" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Vis fejltilvalg" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Infotilvalg" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Vis infotilvalg" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Filvælgertilvalg" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Vis filvælgertilvalg" - -#: src/option.c:1985 -msgid "List options" -msgstr "Listetilvalg" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Vis listetilvalg" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Påmindelsesikon-tilvalg" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Vis påmindelsesikon-tilvalg" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Fremgangsmålertilvalg" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Vis fremgangsmålertilvalg" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Spørgsmålstilvalg" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Vis spørgsmålstilvalg" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Advarselstilvalg" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Vis advarselstilvalg" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Skaleringstilvalg" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Vis skaleringstilvalg" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Tekstinformations-tilvalg" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Vis tekstinformations-tilvalg" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Farvevælgertilvalg" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Vis farvevælgertilvalg" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Tilvalg for adgangskodevindue" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Vis tilvalg for adgangskodevindue" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Tilvalg for formulardialog" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Vis tilvalg for formulardialog" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Diverse tilvalg" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Vis diverse tilvalg" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Dette flag er ikke tilgængeligt. Brug venligst --help for at se mulige " -"flag.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s understøttes ikke for dette vindue\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "To eller flere vinduestilvalg angivet\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Indtast din adgangskode" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Skriv dit brugernavn og adgangskode" - -#: src/password.c:100 -msgid "Username:" -msgstr "Brugernavn:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Adgangskode:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Resterende tid: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimal værdi skal være højere end minimal værdi.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Værdi uden for område.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Ingen kolonneoverskrifter angivet til listevindue.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Du kan kun bruge én listevinduestype.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Justér skaleringsværdien" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Annullér" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstvisning" - -# zenity --calendar viser en kalender hvor man vælger en dato. Calendar selection refererer til dette, som altså reelt er en datovælger -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Datovælger" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Vælg en dato herunder." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Tilføj et nyt indtastningsfelt" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Indtast ny tekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Fejl" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Der opstod en fejl." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formulardialog" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Information" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Alle opdateringer er fuldført." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Fremgang" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Kører …" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Spørgsmål" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Er du sikker på, at du vil fortsætte?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Vælg punkter fra listen" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Vælg punkter fra listen herunder." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Advarsel" - diff --git a/po/de.po b/po/de.po deleted file mode 100644 index 1b4ffaa..0000000 --- a/po/de.po +++ /dev/null @@ -1,905 +0,0 @@ -# German Zenity translation. -# Copyright (C) 2003, 2004 Sun Microsystems, Inc. -# This file is distributed under the same license as the zenity package. -# Christian Neumair , 2003, 2004. -# Hendrik Richter , 2004-2007. -# Mario Blättermann , 2008, 2010-2013, 2017. -# Tobias Endrigkeit , 2012. -# Wolfgang Stöggl , 2012, 2015. -# Christian Kirbach , 2010, 2013. -# Benjamin Steinwender , 2014. -# Paul Seyfert , 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-11-29 20:35+0100\n" -"Last-Translator: Mario Blättermann \n" -"Language-Team: Deutsch \n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Dieses Programm ist freie Software. Sie können es unter den Bedingungen der " -"GNU Lesser General Public License, wie von der Free Software Foundation " -"veröffentlicht, weitergeben und/oder modifizieren, entweder gemäß Version 2 " -"der Lizenz oder (nach Ihrer Option) jeder späteren Version.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, dass es Ihnen " -"von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die " -"implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN " -"BESTIMMTEN ZWECK. Details finden Sie in der GNU Lesser General Public " -"License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Sie sollten ein Exemplar der GNU Lesser General Public License zusammen mit " -"diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free " -"Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Christian Neumair \n" -"Hendrik Richter \n" -"Mario Blättermann \n" -"Christian Kirbach \n" -"Tobias Endrigkeit \n" -"Benjamin Steinwender \n" -"Paul Seyfert " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Dialogfenster aus Shell-Skripten heraus aufrufen" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Abbrechen" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Sie müssen einen Dialogtypen angeben. Siehe »zenity --help« für weitere " -"Details.\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nein" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ja" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nachricht konnte nicht interpretiert werden\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Ungültiger Wert für einen booleschen Hinweis.\n" -"Unterstützte Werte sind »true« oder »false«.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Unbekannter Hinweis. Wird übersprungen.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Unbekannter Hinweisname. Wird übersprungen.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Befehl von Standardeingabe konnte nicht interpretiert werden\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-Benachrichtigung" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Den Dialogtitel festlegen" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITEL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Das Fenstersymbol festlegen" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "SYMBOLPFAD" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Die Breite festlegen" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "BREITE" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Die Höhe festlegen" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HÖHE" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Die Wartezeit des Dialogs in Sekunden festlegen" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "WARTEZEIT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Legt die Beschriftung des OK-Knopfes fest" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Die Beschriftung des Abbrechen-Knopfes festlegen" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Einen zusätzlichen Knopf hinzufügen" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Den modalen Hinweis festlegen" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Das übergeordnete Fenster zum Anhängen festlegen" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FENSTER" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Kalenderdialog anzeigen" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Den Dialogtext festlegen" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Den Kalendertag festlegen" - -#: src/option.c:252 -msgid "DAY" -msgstr "TAG" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Den Kalendermonat festlegen" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONAT" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Das Kalenderjahr festlegen" - -#: src/option.c:266 -msgid "YEAR" -msgstr "JAHR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Das Format für das zurückgegebene Datum festlegen" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MUSTER" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Texteingabe-Dialog anzeigen" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Den Eingabetext festlegen" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Den Eingabetext verbergen" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Fehlerdialog anzeigen" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Das Dialogsymbol festlegen" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "SYMBOL-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Zeilenumbrüche nicht aktivieren" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Pango-Markup nicht aktivieren" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Aktiviert Auslassungen im Dialogtext. Dadurch wird die Fenstergröße bei " -"langen Texten korrigiert." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Info-Dialog anzeigen" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Dateiwähler-Dialog anzeigen" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Den Dateinamen festlegen" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "DATEINAME" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Auswahl mehrerer Dateien zulassen" - -# CHECK -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Nur Verzeichnisse auswählen" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Speichermodus aktivieren" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Das Trennzeichen für die Ausgabe festlegen" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "TRENNZEICHEN" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Dateiauswahl bestätigen, falls ein Dateiname bereits existiert" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Einen Filter für den Dateinamen festlegen" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Listendialog anzeigen" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Den Spaltentitel festlegen" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "SPALTE" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Ankreuzfelder für die erste Spalte verwenden" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Auswahlknöpfe für die erste Spalte verwenden" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Ein Bild für die erste Spalte verwenden" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Auswahl mehrerer Reihen zulassen" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Änderungen am Text zulassen" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Drucke eine bestimmte Spalte (Standard ist 1. »ALL« kann benutzt werden, um " -"alle Spalten zu drucken)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMMER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Eine bestimmte Spalte verbergen." - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Die Spaltentitel verbergen" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Ändern der Standardsuchfunktion für Listen auf Suche nach Text in der Mitte, " -"nicht am Anfang" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Benachrichtigung anzeigen" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Den Benachrichtigungstext festlegen" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Auf der Standardeingabe nach Befehlen horchen" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Den Benachrichtigungshinweis festlegen" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Fortschrittsanzeige-Dialog anzeigen" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Den anfänglichen Prozentsatz festlegen" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROZENT" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsierende Fortschrittsleiste" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Den Dialog beenden, wenn 100% erreicht sind" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Elternprozess beenden, wenn der Abbrechen-Knopf angeklickt wird" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Abbrechen-Knopf verbergen" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Fortschritt zum Erreichen von 100% schätzen" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Fragedialog anzeigen" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Vorgabe fokussiert den Abbrechen-Knopf" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "OK- und Abbrechen-Knöpfe unterdrücken" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Text-Informationsdialog anzeigen" - -#: src/option.c:715 -msgid "Open file" -msgstr "Datei öffnen" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Schriftart für Text festlegen" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ankreuzfeld zum »Lesen und Bestätigen« aktivieren" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML-Unterstützung aktivieren" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Benutzerinteraktion mit WebView nicht einschalten. Funktioniert nur zusammen " -"mit der Option »--html«" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Legt eine Adresse anstelle einer Datei fest. Funktioniert nur zusammen mit " -"der Option --html." - -#: src/option.c:761 -msgid "URL" -msgstr "Adresse" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automatisch an das Textende springen. Nur wenn Text von Standardeingabe " -"aufgenommen wird" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Warndialog anzeigen" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Schieberegler-Dialog anzeigen" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Den anfänglichen Wert festlegen" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "WERT" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Den minimalen Wert festlegen" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Den maximalen Wert festlegen" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Die Schrittgröße festlegen" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Zwischenwerte anzeigen" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Den Wert ausblenden" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Formulardialog anzeigen" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Einen neuen Eintrag im Formulardialog hinzufügen" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Feldname" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Neues Passworteingabefeld im Formulardialog hinzufügen" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Neuen Kalender im Formulardialog hinzufügen" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalenderfeldname" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Eine neue Liste im Formulardialog hinzufügen" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Listenfeld und Kopfzeilenname" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Liste der Werte für die Liste" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Liste der Werte, mit | getrennt" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Liste der Werte für Spalten" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Eine neues Auswahlfeld im Formulardialog hinzufügen" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Feldname des Auswahlfelds" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Liste der Werte für das Auswahlfeld" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Den Spaltentitel anzeigen" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Passwortdialog anzeigen" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Benutzername-Option anzeigen" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Farbwahldialog anzeigen" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Die Farbe festlegen" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Die Palette anzeigen" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Info zu zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Druckversion" - -#: src/option.c:1913 -msgid "General options" -msgstr "Allgemeine Einstellungen" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Allgemeine Einstellungen anzeigen" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalendereinstellungen" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Kalendereinstellungen anzeigen" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Einstellungen der Texteingabe" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Einstellungen der Texteingabe anzeigen" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Fehlereinstellungen" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Fehlereinstellungen" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Info-Einstellungen" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Info-Einstellungen anzeigen" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Einstellungen des Dateiwählers" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Einstellungen des Dateiwählers anzeigen" - -#: src/option.c:1985 -msgid "List options" -msgstr "Listeneinstellungen" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Listeneinstellungen anzeigen" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Benachrichtigungssymbol-Einstellungen" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Benachrichtigungssymbol-Einstellungen anzeigen" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Fortschrittseinstellungen" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Fortschrittseinstellungen anzeigen" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Frageeinstellungen" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Frageeinstellungen anzeigen" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Warneinstellungen" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Warneinstellungen anzeigen" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Schiebereglereinstellungen" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Schiebereglereinstellungen anzeigen" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Textinformationseinstellungen" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Textinformationseinstellungen anzeigen" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Einstellungen des Farbwählers" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Einstellungen des Farbwählers anzeigen" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Optionen für Passwortdialog" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Optionen für Passwortdialog anzeigen" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Optionen für Formulardialog" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Optionen für Formulardialog anzeigen" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Verschiedene Einstellungen" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Verschiedene Einstellungen anzeigen" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Diese Option steht nicht zur Verfügung. Bitte verwenden Sie »--help« für " -"alle Anwendungsmöglichkeiten.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s wird von diesem Dialog nicht unterstützt\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Dialog-Option mehrfach übergeben\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Geben Sie Ihr Passwort ein" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Geben Sie Ihren Benutzernamen und Ihr Passwort ein" - -#: src/password.c:100 -msgid "Username:" -msgstr "Benutzername:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Passwort:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Verbleibende Zeit: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Der maximale Wert muss größer als der minimale sein.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Wert außerhalb des gültigen Bereichs.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Keine Spaltentitel für Listendialog angegeben\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Sie können nur einen Listendialogtyp verwenden.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Wert des Schiebereglers anpassen" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Abbrechen" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Ok" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Textansicht" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Wählen Sie ein Datum" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Wählen Sie ein Datum." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Kalender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Einen neuen Eintrag hinzufügen" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Geben Sie den neuen Text ein:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Fehler" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Ein Fehler ist aufgetreten." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formulardialog" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informationen" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Alle Aktualisierungen wurden fertiggestellt." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Fortschritt" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Läuft …" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Frage" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Wollen Sie fortfahren?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Wählen Sie Objekte aus der Liste" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Wählen Sie Objekte aus der Liste." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Warnung" diff --git a/po/dz.po b/po/dz.po deleted file mode 100644 index d1ecd87..0000000 --- a/po/dz.po +++ /dev/null @@ -1,598 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD.dz\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-02 04:42+0000\n" -"PO-Revision-Date: 2007-01-17 00:18+0530\n" -"Last-Translator: dorji tashi \n" -"Language-Team: DZONGKHA \n" -"Language: dz\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2;plural=(n!=1);\n" -"X-Poedit-Language: Dzongkha\n" -"X-Poedit-Country: BHUTAN\n" -"X-Poedit-SourceCharset: utf-8\n" - -#: ../src/about.c:65 -msgid "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" -msgstr "ལས་རིམ་འདི་སྟོང་མར་ཐོབ་པའི་མཉེན་ཆས་ཅིག་ཨིནམ་ལས་ ཁྱོད་ཀྱིས་ རང་དབང་མཉེན་ཆས་གཞི་ཚོགས་ཀྱིས་ དཔེ་བསྐྲུན་འབད་མི་ ཇི་ཨེན་ཡུ་ ཡོངས་ཁྱབ་མི་མང་ཆོག་ཐམ་གྱི་ ཐོན་རིམ་ ༢ ཡང་ན་ ཁྱོད་རའི་བློ་འདོད་བཞིན་དུ་ ཤུལ་ལས་ཀྱི་ཐོན་རིམ་གང་རུང་གི་ ཁ་ཚིག་དང་འཁྲིལ་ཏེ་ བསྐྱར་འགྲེམ་འབད་བ་/ ཡང་ན་ ལེགས་བཅོས་འབད་ཆོག\n" - -#: ../src/about.c:69 -msgid "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n" -msgstr "ལས་རིམ་འདི་ ཀུན་ལུ་ཕན་པའི་རེ་བ་བསྐྱེད་དེ་འགྲེམ་སྤེལ་འབདཝ་ཨིན། དེ་འབདཝ་དང་ ཉེན་ལེན་ག་ནི་ཡང་མེད་པའི་ནང་ལས་ ཐ་ན་སྐྱེལ་འདྲེན་ ཡང་ན་ དམིགས་བསལ་དགོས་དོན་ཅིག་གི་དོན་ལུ་ ཚུད་སྒྲིག་ཡོད་མེད་ཀྱི་ཉེན་ལེན་ཙམ་ཡང་མེད། རྒྱས་བཤད་ཀྱི་དོན་ལུ་ ཇི་ཨེན་ཡུ་ ཡོངས་ཁྱབ་མི་མང་ཆོག་ཐམ་ལུ་བལྟ།\n" - -#: ../src/about.c:73 -msgid "You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "ཁྱོད་ཀྱིས་ཇི་ཨེན་ཡུ་ ཡོངས་ཁྱབ་མི་མང་ཆོག་ཐམ་འདྲ་ཅིག་ ལས་རིམ་འདི་དང་གཅིག་ཁར་ཐོབ་ཐོབ་འོང་། གལ་སྲིད་མ་ཐོབ་ཅིན་ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ལུ་ ཡི་གུ་གཏང་།" - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "ཨའི་ཌི་ཨར་སི་གི་མ་དངུལ་རྒྱབ་སྐྱོར་ཐོག་ལས་ བརྡ་དོན་འཕྲུལ་རིག་ལས་ཁུངས་ནང་ སྐད་བསྒྱུར་འབད་ཡི། ཁ་གསལ་གྱི་དོན་ལུ་ འབྲེལ་བ་འཐབ་ས་: /" - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "ཤལ་ཡིག་ཚུགས་ཚུ་ནང་ལས་ ཌའི་ལོག་སྒྲོམ་ཚུ་ བཀྲམ་སྟོན་འབད།" - -#: ../src/main.c:94 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "ཁྱོད་ཀྱིས་ཌའི་ལོག་དབྱེ་བ་ཅིག་ གསལ་བཀོད་འབད་དགོ རྒྱས་བཤད་ཀྱི་དོན་ལུ་ 'ཛེ་ནི་ཊི་--གྲོགས་རམ་'ལུ་བལྟ། \n" - -#: ../src/notification.c:138 -msgid "could not parse command from stdin\n" -msgstr "ཨེསི་ཊི་ཌི་ཨའི་ཨེན་ནང་ལས་ བརྡ་བཀོད་མིང་དཔྱད་འབད་མ་ཚུགས། \n" - -#: ../src/notification.c:251 -#: ../src/notification.c:268 -msgid "Zenity notification" -msgstr "ཛེ་ནི་ཊི་ བརྡ་དོན།" - -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "མང་མཐའི་བེ་ལུ་འདི་ ཉུང་མཐའི་བེ་ལུ་ལས་སྦོམ་ཨིན་དགོ།\n" - -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "བེ་ལུ་དེ་ཁྱབ་ཀྱི་ཕྱི་ཁར་ཨིན་པས།\n" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "ཐོ་ཡིག་ཌའི་ལོག་གི་དོན་ལུ་ ཀེར་ཐིག་མགོ་མིང་ཚུ་ གསལ་བཀོད་མ་འབད་བས།\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "ཁྱོད་ཀྱིས་ཌའི་ལོག་དབྱེ་བའི་ཐོ་ཡིག་ གཅིག་རྐྱངམ་ལག་ལེན་འཐབ་དགོ\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "ཐོ་བཀོད་གསརཔ་ཅིག་ ཁ་སྐོང་རྐྱབས།" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "ཚད་འཇལ་བེ་ལུ་བདེ་སྒྲིག་འབད།" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "དུས་མཐུན་བཟོ་དགོཔ་ཆ་མཉམ་ཚར་ཡོད།" - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "འཛོལ་བ་ཅིག་བྱུང་ཡི།" - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "ཁྱོད་ཀྱིས་འཕྲོ་མཐུད་ནི་ ངེས་ཏིག་ཨིན་ན?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "ཟླ་ཐོ:(_a)" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "ཟླ་ཐོའི་སེལ་འཐུ།" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "འཛོལ་བ།" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "བརྡ་དོན།" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "ཡར་འཕེལ" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "དྲི་བ།" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "གཡོག་བཀོལ་དོ།" - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "འོག་ལས་ཚེས་གྲངས་ཅིག་ སེལ་འཐུ་འབད།" - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "ཡིག་སྣོད་ཅིག་ སེལ་འཐུ་འབད།" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "ཐོ་ཡིག་ནང་ལས་ རྣམ་གྲངས་ཚུ་སེལ་འཐུ་འབད།" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "འོག་གི་ཐོ་ཡིག་ནང་ལས་ རྣམ་གྲངས་ཚུ་སེལ་འཐུ་འབད།" - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "ཚིག་དོན་གྱི་མཐོང་སྣང་།" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "ཉེན་བརྡ།" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "ཚིག་ཡིག་གསརཔ་བཙུགས།(_E)" - -#: ../src/option.c:116 -msgid "Set the dialog title" -msgstr "ཌའི་ལོག་གི་མགོ་མིང་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:117 -msgid "TITLE" -msgstr "མགོ་མིང་།" - -#: ../src/option.c:125 -msgid "Set the window icon" -msgstr "སྒོ་སྒྲིག་གི་ངོས་དཔར་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:126 -msgid "ICONPATH" -msgstr "ངོས་དཔར་འབྲེལ་ལམ" - -#: ../src/option.c:134 -msgid "Set the width" -msgstr "རྒྱ་ཚད་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:135 -msgid "WIDTH" -msgstr "རྒྱ་ཚད།" - -#: ../src/option.c:143 -msgid "Set the height" -msgstr "མཐོ་ཚད་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:144 -msgid "HEIGHT" -msgstr "མཐོ་ཚད།" - -#: ../src/option.c:158 -msgid "Display calendar dialog" -msgstr "ཟླ་ཐོའི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:167 -#: ../src/option.c:227 -#: ../src/option.c:270 -#: ../src/option.c:303 -#: ../src/option.c:405 -#: ../src/option.c:534 -#: ../src/option.c:596 -#: ../src/option.c:662 -#: ../src/option.c:695 -msgid "Set the dialog text" -msgstr "ཌའི་ལོག་གི་ཚིག་ཡིག་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:168 -#: ../src/option.c:228 -#: ../src/option.c:237 -#: ../src/option.c:246 -#: ../src/option.c:271 -#: ../src/option.c:304 -#: ../src/option.c:406 -#: ../src/option.c:502 -#: ../src/option.c:535 -#: ../src/option.c:597 -#: ../src/option.c:663 -#: ../src/option.c:696 -msgid "TEXT" -msgstr "ཚིག་ཡིག་" - -#: ../src/option.c:176 -msgid "Set the calendar day" -msgstr "ཟླ་ཐོའི་ཉིནམ་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:177 -msgid "DAY" -msgstr "ཉིནམ་" - -#: ../src/option.c:185 -msgid "Set the calendar month" -msgstr "ཟླ་ཐོའི་ཟླཝ་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:186 -msgid "MONTH" -msgstr "ཟླཝ་" - -#: ../src/option.c:194 -msgid "Set the calendar year" -msgstr "ཟླ་ཐོའི་ལོ་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:195 -msgid "YEAR" -msgstr "ལོ་" - -#: ../src/option.c:203 -msgid "Set the format for the returned date" -msgstr "སླར་ལོག་ཚེས་གྲངས་ཀྱི་དོན་ལུ་ རྩ་སྒྲིག་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:204 -msgid "PATTERN" -msgstr "དཔེ་གཞི་" - -#: ../src/option.c:218 -msgid "Display text entry dialog" -msgstr "ཚིག་ཡིག་ཐོ་བཀོད་ཀྱི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:236 -msgid "Set the entry text" -msgstr "ཐོ་བཀོད་ཚིག་ཡིག་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:245 -msgid "Hide the entry text" -msgstr "ཐོ་བཀོད་ཚིག་ཡིག་ སྦ་སྟེ་བཞ" - -#: ../src/option.c:261 -msgid "Display error dialog" -msgstr "འཛོལ་བའི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:279 -#: ../src/option.c:312 -#: ../src/option.c:605 -#: ../src/option.c:671 -msgid "Do not enable text wrapping" -msgstr "ཚིག་ཡིག་ལོག་མཚམས་ ལྕོགས་ཅན་མ་བཟོ།" - -#: ../src/option.c:294 -msgid "Display info dialog" -msgstr "བརྡ་དོན་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:327 -msgid "Display file selection dialog" -msgstr "ཡིག་སྣོད་སེལ་འཐུ་འི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:336 -msgid "Set the filename" -msgstr "ཡིག་སྣོད་མིང་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:337 -#: ../src/option.c:630 -msgid "FILENAME" -msgstr "ཡིག་སྣོད་མིང་།" - -#: ../src/option.c:345 -msgid "Allow multiple files to be selected" -msgstr "སྣ་མང་ཡིག་སྣོད་ སེལ་འཐུ་འབད་བཅུ" - -#: ../src/option.c:354 -msgid "Activate directory-only selection" -msgstr "སྣོད་ཐོ་རྐྱངམ་གཅིག་ སེལ་འཐུ་འབད་ནི་ ཤུགས་ལྡན་བཟོ།" - -#: ../src/option.c:363 -msgid "Activate save mode" -msgstr "བསྲུང་ནིའི་ཐབས་ལམ་ ཤུགས་ལྡན་བཟོ།" - -#: ../src/option.c:372 -#: ../src/option.c:441 -msgid "Set output separator character" -msgstr "ཨའུཊི་པུཊི་ དབྱེ་བྱེད་ཀྱི་ཡིག་འབྲུ་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:373 -#: ../src/option.c:442 -msgid "SEPARATOR" -msgstr "དབྱེ་བྱེད།" - -#: ../src/option.c:381 -msgid "Confirm file selection if filename already exists" -msgstr "ཡིག་སྣོད་མིང་ ཧེ་མ་ལས་ཡོད་པ་ཅིན་ ཡིག་སྣོད་སེལ་འཐུ་འབད་ནི་ ངེས་དཔྱད་འབད།" - -#: ../src/option.c:396 -msgid "Display list dialog" -msgstr "ཐོ་ཡིག་གི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:414 -msgid "Set the column header" -msgstr "ཀེར་ཐིག་གི་མགོ་ཡིག་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:415 -msgid "COLUMN" -msgstr "ཀེར་ཐིག་" - -#: ../src/option.c:423 -msgid "Use check boxes for first column" -msgstr "ཀེར་ཐིག་དང་པའི་དོན་ལུ་ ཐིག་ཁྲ་ཅན་གྱི་སྒྲོམ་ཚུ་ ལག་ལེན་འཐབ།" - -#: ../src/option.c:432 -msgid "Use radio buttons for first column" -msgstr "ཀེར་ཐིག་དང་པའི་དོན་ལུ་ རེ་ཌིའོ་ཨེབ་རྟ་ཚུ་ ལག་ལེན་འཐབ།" - -#: ../src/option.c:450 -msgid "Allow multiple rows to be selected" -msgstr "སྣ་མང་གྲལ་ཐིག་སེལ་འཐུ་འབད་བཅུག" - -#: ../src/option.c:459 -#: ../src/option.c:638 -msgid "Allow changes to text" -msgstr "ཚིག་ཡིག་ལུ་ བསྒྱུར་བཅོས་འབད་བཅུ" - -#: ../src/option.c:468 -msgid "Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "གསལ་བཀོད་ཅན་གྱི་ ཀེར་ཐིག་ཅིག་ དཔར་བསྐྲུན་འབད། (སྔོན་སྒྲིག་དེ་༡ཨིན། ཀེར་ཐིག་ཆ་མཉམ དཔར་བསྐྲུན་འབད་ནི་ལུ་ 'ཆ་མཉམ' ལག་ལེན་འཐབ་བཏུབ།" - -#: ../src/option.c:469 -#: ../src/option.c:478 -msgid "NUMBER" -msgstr "ཨང་" - -#: ../src/option.c:477 -msgid "Hide a specific column" -msgstr "དམིགས་བསལ་ཀེར་ཐིག་ཅིག་སྦ་བཞག" - -#: ../src/option.c:492 -msgid "Display notification" -msgstr "བརྡ་བསྐུལ་བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:501 -msgid "Set the notification text" -msgstr "བརྡ་བསྐུལ་གྱི་ཚིག་ཡིག་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:510 -msgid "Listen for commands on stdin" -msgstr "བརྡ་བཀོད་ཀྱི་དོན་ལུ་ ཨེསི་ཊི་ཌི་ཨའི་ཨེན་གུ་ཉན།" - -#: ../src/option.c:525 -msgid "Display progress indication dialog" -msgstr "ཡར་འཕེལ་བརྡ་སྟོན་གྱི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:543 -msgid "Set initial percentage" -msgstr "འགོ་ཐོག་གི་བརྒྱ་ཆ་ གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:544 -msgid "PERCENTAGE" -msgstr "བརྒྱ་ཆ་" - -#: ../src/option.c:552 -msgid "Pulsate progress bar" -msgstr "པཱལ་སེཊི་ ཡར་འཕེལ་ཕྲ་རིང་།" - -#: ../src/option.c:562 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "བརྒྱ་ཆ་ ༡༠༠ ལུ་ལྷོདཔ་དང་ ཌའི་ལོག་ཐར་གྲོལ་གཏང་།" - -#: ../src/option.c:572 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "ཆ་མེད་ཨེབ་རྟ་དེ་ཨེབ་བཞག་སྟེ་ཡོད་པ་ཅིན་ རྩ་ལག་ལས་སྦྱོར་གསད་" - -#: ../src/option.c:587 -msgid "Display question dialog" -msgstr "དྲི་བའི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:620 -msgid "Display text information dialog" -msgstr "ཚིག་ཡིག་བརྡ་དོན་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:629 -msgid "Open file" -msgstr "ཡིག་སྣོད་ཁ་ཕྱེ།" - -#: ../src/option.c:653 -msgid "Display warning dialog" -msgstr "ཉེན་བརྡའི་ཌའི་ལོག་ བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:686 -msgid "Display scale dialog" -msgstr "ཆ་ཚད་ཌའི་ལོག་བཀྲམ་སྟོན་འབད།" - -#: ../src/option.c:704 -msgid "Set initial value" -msgstr "འགོ་ཐོག་གི་བེ་ལུ་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:705 -#: ../src/option.c:714 -#: ../src/option.c:723 -#: ../src/option.c:732 -msgid "VALUE" -msgstr "གནས་གོང་" - -#: ../src/option.c:713 -msgid "Set minimum value" -msgstr "ཉུང་མཐའི་བེ་ལུ་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:722 -msgid "Set maximum value" -msgstr "མང་མཐའི་བེ་ལུ་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:731 -msgid "Set step size" -msgstr "གོམ་པའི་ཚད་གཞི་སྒྲིག་འབད།" - -#: ../src/option.c:740 -msgid "Print partial values" -msgstr "ཆ་ཤས་བེ་ལུ་དཔར་བསྐྲུན་འབད།" - -#: ../src/option.c:749 -msgid "Hide value" -msgstr "བེ་ལུ་སྦ།" - -#: ../src/option.c:764 -msgid "About zenity" -msgstr "ཛེ་ནི་ཊི་གི་སྐོར་ལས།" - -#: ../src/option.c:773 -msgid "Print version" -msgstr "དཔར་བསྐྲུན་ཐོན་རིམ།" - -#: ../src/option.c:1414 -msgid "General options" -msgstr "ཡོངས་ཁྱབ་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1415 -msgid "Show general options" -msgstr "ཡོངས་ཁྱབ་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1425 -msgid "Calendar options" -msgstr "ཟླ་ཐོའི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1426 -msgid "Show calendar options" -msgstr "ཟླ་ཐོའི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1436 -msgid "Text entry options" -msgstr "ཚིག་ཡིག་ཐོ་བཀོད་ཀྱི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1437 -msgid "Show text entry options" -msgstr "ཚིག་ཡིག་ཐོ་བཀོད་ཀྱི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1447 -msgid "Error options" -msgstr "འཛོལ་བའི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1448 -msgid "Show error options" -msgstr "འཛོལ་བའི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1458 -msgid "Info options" -msgstr "བརྡ་དོན་གྱི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1459 -msgid "Show info options" -msgstr "བརྡ་དོན་གྱི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1469 -msgid "File selection options" -msgstr "ཡིག་སྣོད་སེལ་འཐུའི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1470 -msgid "Show file selection options" -msgstr "ཡིག་སྣོད་སེལ་འཐུའི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1480 -msgid "List options" -msgstr "ཐོ་ཡིག་གི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1481 -msgid "Show list options" -msgstr "ཐོ་ཡིག་གི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1491 -msgid "Notification icon options" -msgstr "བརྡ་བསྐུལ་ངོས་དཔར་གྱི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1492 -msgid "Show notification icon options" -msgstr "བརྡ་བསྐུལ་ངོས་དཔར་གྱི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1502 -msgid "Progress options" -msgstr "ཡར་འཕེལ་གྱི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1503 -msgid "Show progress options" -msgstr "ཡར་འཕེལ་གྱི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1513 -msgid "Question options" -msgstr "དྲི་བའི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1514 -msgid "Show question options" -msgstr "དྲི་བའི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1524 -msgid "Warning options" -msgstr "ཉེན་བརྡའི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1525 -msgid "Show warning options" -msgstr "ཉེན་བརྡའི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1535 -msgid "Scale options" -msgstr "ཆ་ཚད་ཀྱི་གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1536 -msgid "Show scale options" -msgstr "ཆ་ཚད་ཀྱི་གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1546 -msgid "Text information options" -msgstr "ཚིག་ཡིག་བརྡ་དོན་གྱི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1547 -msgid "Show text information options" -msgstr "ཚིག་ཡིག་བརྡ་དོན་གྱི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1557 -msgid "Miscellaneous options" -msgstr "སྣ་ཚོགས་ཀྱི་ གདམ་ཁ་ཚུ།" - -#: ../src/option.c:1558 -msgid "Show miscellaneous options" -msgstr "སྣ་ཚོགས་ཀྱི་ གདམ་ཁ་ཚུ་སྟོན།" - -#: ../src/option.c:1583 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "གདམ་ཁ་འདི་མི་འཐོབ་པས། སྲིད་པའི་ལག་ལེན་ཆ་མཉམ་གྱི་དོན་ལུ་ --གྲོགས་རམ་ལུ་གཟིགས།\n" - -#: ../src/option.c:1587 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "ཌའི་ལོག་འདི་གི་དོན་ལུ་ --%s ལུ་ རྒྱབ་སྐྱོར་མིན་འདུ \n" - -#: ../src/option.c:1591 -msgid "Two or more dialog options specified\n" -msgstr "ཌའི་ལོག་གི་ གདམ་ཁ་གཉིས་སམ་ དེ་ལས་ལྷག་སྟེ་ གསལ་བཀོད་འབད་ནུ \n" - -#~ msgid "Orientation" -#~ msgstr "ཕྱོགས།" -#~ msgid "The orientation of the tray." -#~ msgstr "ཤོག་སྣོད་ཀྱི་ཕྱོགས།" -#~ msgid "Adjust the scale value." -#~ msgstr "ཚད་འཇལ་བེ་ལུ་བདེ་སྒྲིག་འབད།" -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "འདྲ་བཤུས་དབང་ཆ་ ༢༠༠༣ སཱན་ མའི་ཀོརོ་སིསི་ཊམསི།" -#~ msgid "Credits" -#~ msgstr "ངོ་བསྟོད་ཚུ།" -#~ msgid "Written by" -#~ msgstr "འབྲི་མི།" -#~ msgid "Translated by" -#~ msgstr "སྐད་བསྒྱུར་རྐྱབ་མི།" -#~ msgid "*" -#~ msgstr "*" -#~ msgid "About Zenity" -#~ msgstr "ཛེ་ནི་ཊི་གི་སྐོར་ལས།" -#~ msgid "_Credits" -#~ msgstr "" -#~ "\"ཨའི་ཌི་ཨར་སི་གི་མ་དངུལ་རྒྱབ་སྐྱོར་ཐོག་ལས་ བརྡ་དོན་འཕྲུལ་རིག་ལས་ཁུངས་ནང་ སྐད་བསྒྱུར་འབད་ཡི། ཁ་" -#~ "གསལ་གྱི་དོན་ལུ་ འབྲེལ་བ་འཐབ་ས་: /" -#~ "(_C)" -#~ msgid "Syntax error\n" -#~ msgstr "ཚིག་སྦྱོར་གྱི་འཛོལ་བ། \n" - diff --git a/po/el.po b/po/el.po deleted file mode 100644 index 8242182..0000000 --- a/po/el.po +++ /dev/null @@ -1,908 +0,0 @@ -# Greek translation of zenity. -# Copyright (C) Free Software Foundation, 2003~2011. -# This file is distributed under the same license as the PACKAGE package. -# kostas, 05Mar2003, 102 messages initial translation. -# simos, 27Nov2004, 114 messages, updated + verified translation. -# Kostas Papadimas , 2003. -# Kostas Papadimas , 2004, 2006. -# Simos Xenitellis , 2005. -# Marios Zindilis , 2011. -# Ioannis Zampoukas , 2011, 2012. -# Dimitris Spingos (Δημήτρης Σπίγγος) , 2012, 2013, 2014, 2015. -# Efstathios Iosifidis , 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: el\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-08-21 01:33+0300\n" -"Last-Translator: Efstathios Iosifidis \n" -"Language-Team: Ελληνικά <>\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Αυτό το πρόγραμμα είναι ελεύθερο λογισμικό. Επιτρέπεται η αναδιανομή ή/και " -"τροποποίησή του υπό τους όρους της Γενικής Άδειας Δημόσιας Χρήσης GNU (GNU " -"General Public License) όπως αυτή δημοσιεύεται από το Ίδρυμα Ελεύθερου " -"Λογισμικού (Free Software Foundation) - είτε της έκδοσης 2 της άδειας, είτε " -"(κατ' επιλογήν) οποιασδήποτε μεταγενέστερης έκδοσης.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Αυτό το πρόγραμμα διανέμεται με την ελπίδα οτι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ " -"ΚΑΜΜΙΑ ΑΠΟΛΥΤΩΣ ΕΓΓΥΗΣΗ, χωρίς ακόμη και την έμμεση εγγύηση ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ " -"ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε την Γενική Άδεια Δημόσιας " -"Χρήσης GNU (GNU General Public License) για περισσότερες λεπτομέρειες.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Θα πρέπει να έχετε λάβει ένα αντίγραφο της Γενικής Άδειας Δημόσιας Χρήσης " -"GNU (GNU General Public License) μαζί με αυτό το πρόγραμμα. Αν όχι, " -"επικοινωνήστε γραπτώς με το Ίδρυμα Ελεύθερου Λογισμικού (Free Software " -"Foundation, Inc.), 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Ελληνική μεταφραστική ομάδα GNOME\n" -" Δημήτρης Σπίγγος \n" -" Νίκος Αγιαννιώτης \n" -" Κώστας Παπαδήμας \n" -" Σίμος Ξενιτέλλης \n" -" Μαρία Μαυρίδου \n" -"\n" -"Για περισσότερες πληροφορίες, επισκεφθείτε τη σελίδα\n" -"http://gnome.gr/" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Εμφάνιση κουτιών διαλόγου από δέσμες ενεργειών κελύφους" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "Ε_ντάξει" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_κύρωση" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Θα πρέπει να καθορίσετε ένα τύπο διαλόγου. Δείτε zenity --help για " -"λεπτομέρειες\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "Ό_χι" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ναί" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Αδύνατη η ανάλυση του μηνύματος\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Άκυρη τιμή για μια υπόδειξη πληκτρολογημένης λογικής τιμής.\n" -"Οι υποστηριζόμενες τιμές είναι 'true' ή 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Ανυποστήρικτη υπόδειξη. Παραβλέπεται.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Άγνωστο όνομα υπόδειξης. Παραβλέπεται.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Αδυναμία ανάλυσης εντολής από την τυπική είσοδο\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Ειδοποίηση Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Ορισμός τίτλου διαλόγου" - -#: src/option.c:165 -msgid "TITLE" -msgstr "ΤΙΤΛΟΣ" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Ορισμός εικονιδίου παραθύρου" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ΔΙΑΔΡΟΜΗΕΙΚΟΝΙΔΙΩΝ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Ορισμός του πλάτους" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ΠΛΑΤΟΣ" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Ορισμός του ύψους" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ΥΨΟΣ" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Ορισμός του χρόνου εμφάνισης του διαλόγου σε δευτερόλεπτα" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ΟΡΙΟ ΧΡΟΝΟΥ" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Ορισμός της ετικέτας του κουμπιού Εντάξει" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "ΚΕΙΜΕΝΟ" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Ορισμός της ετικέτας του κουμπιού ακύρωσης" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Προσθήκη πρόσθετου πλήκτρου" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Ορισμός υπόδειξης του σχηματικού παραθύρου" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Ορισμός του γονικού παραθύρου για προσάρτηση" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ΠΑΡΑΘΥΡΟ" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Εμφάνιση διαλόγου ημερολογίου" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Ορισμός του κειμένου του διαλόγου" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Ορισμός της ημέρας ημερολογίου" - -#: src/option.c:252 -msgid "DAY" -msgstr "ΗΜΕΡΑ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Ορισμός του μήνα ημερολογίου" - -#: src/option.c:259 -msgid "MONTH" -msgstr "ΜΗΝΑΣ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Ορισμός του έτους ημερολογίου" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ΕΤΟΣ" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Ορισμός της μορφής ημερομηνίας" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ΜΟΤΙΒΟ" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Εμφάνιση διαλόγου καταχώρισης κειμένου" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Ορισμός του κειμένου καταχώρισης" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Απόκρυψη του κειμένου καταχώρισης" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Διάλογος εμφάνισης σφάλματος" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Ορισμός εικονιδίου διαλόγου" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ΟΝΟΜΑ ΕΙΚΟΝΙΔΙΟΥ" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Να μην ενεργοποιηθεί η αναδίπλωση κειμένου" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Να μην ενεργοποιηθεί η επισήμανση Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Ενεργοποίηση προσθήκης αποσιωπητικών στο κείμενο διαλόγου. Αυτό διορθώνει το " -"υψηλό μέγεθος του παραθύρου σε μεγάλα κείμενα" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Εμφάνιση διαλόγου πληροφοριών" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Εμφάνιση διαλόγου επιλογής αρχείου" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Ορισμός του ονόματος αρχείου" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "ΟΝΟΜΑ ΑΡΧΕΙΟΥ" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Να επιτρέπεται η επιλογή πολλαπλών αρχείων" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Ενεργοποίηση επιλογής μόνο καταλόγου" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Ενεργοποίηση κατάστασης αποθήκευσης" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Ορισμός χαρακτήρα διαχωριστικού εξόδου" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ΔΙΑΧΩΡΙΣΤΙΚΟ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Επιβεβαίωση της επιλογής αν το όνομα αρχείου υπάρχει ήδη" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Ορισμός ενός φίλτρου για όνομα αρχείου" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "ΟΝΟΜΑ | ΜΟΤΙΒΟ1 ΜΟΤΙΒΟ2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Εμφάνιση διαλόγου λίστας" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Ορισμός της κεφαλίδας στήλης" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "ΣΤΗΛΗ" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Χρήση πλαισίων ελέγχου για την πρώτη στήλη" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Χρήση ραδιοπλήκτρων για την πρώτη στήλη" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Χρήση εικόνας για την πρώτη στήλη" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Να επιτρέπεται η επιλογή πολλαπλών γραμμών" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Να επιτρέπονται αλλαγές στο κείμενο" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Εκτύπωση μιας συγκεκριμένης στήλης ( Προεπιλογή η 1. 'ALL' μπορεί να " -"χρησιμοποιηθεί για την εκτύπωση όλων των στηλών)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ΑΡΙΘΜΟΣ" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Απόκρυψη μιας συγκεκριμένης στήλης" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Απόκρυψη των κεφαλίδων στήλης" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Αλλάξτε την προεπιλεγμένη λειτουργία αναζήτησης λίστας για το κείμενο στη " -"μέση , και όχι στην αρχή" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Εμφάνιση διαλόγου ειδοποίησης" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Καθορισμός του κειμένου ειδοποίησης" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Παρακολούθηση για εντολές από την τυπική είσοδο" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Καθορισμός των υποδείξεων ειδοποίησης" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Εμφάνιση διαλόγου ένδειξης προόδου" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Ορισμός αρχικού ποσοστού" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ΠΟΣΟΣΤΟ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Παλλόμενη μπάρα προόδου" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Κλείσιμο του διαλόγου όταν ολοκληρωθεί το 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Τερματισμός της γονικής διεργασίας αν πατηθεί το κουμπί Ακύρωση" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Απόκρυψη κουμπιού Ακύρωση" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Υπολόγισε πότε η πρόοδος θα φτάσει στο 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Εμφάνιση διαλόγου ερώτησης" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Δώστε εστίαση στο πλήκτρο ακύρωσης από προεπιλογή" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Απόκρυψη των πλήκτρων Εντάξει και Άκυρο" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Εμφάνιση διαλόγου πληροφοριών κειμένου" - -#: src/option.c:715 -msgid "Open file" -msgstr "Άνοιγμα αρχείου" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Ορισμός της γραμματοσειράς του κειμένου" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ενεργοποίηση ενός πλαισίου ελέγχου εγώ διάβασα και συμφωνώ" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ενεργοποίηση υποστήριξης HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Να μην γίνει ενεργοποίηση της αλληλεπίδρασης χρήστη με το WebView. Δουλεύει " -"μόνο αν χρησιμοποιήσετε επολογή --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Ορίζει ένα URL αντί για ένα αρχείο. Λειτουργεί μόνο αν χρησιμοποιείτε την " -"επιλογή --html" - -#: src/option.c:761 -msgid "URL" -msgstr "Διεύθυνση" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Αυτόματη κύλιση του κειμένου μέχρι το τέλος. Μόνο όταν συλλαμβάνεται κείμενο " -"από τυπική είσοδο" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Εμφάνιση διαλόγου προειδοποίησης" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Εμφάνιση διαλόγου κλιμάκωσης" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Ορισμός αρχικής τιμής" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ΤΙΜΗ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Ορισμός ελάχιστης τιμής" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Ορισμός μέγιστης τιμής" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Ορισμός μεγέθους βήματος" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Εκτύπωση μερικών τιμών" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Απόκρυψη τιμής" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Εμφάνιση διαλόγου φορμών" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Προσθήκη νέας καταχώρισης στο διάλογο φορμών" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Όνομα πεδίου" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Προσθήκη μιας νέας καταχώρησης κωδικού πρόσβασης στο διάλογο φορμών" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Προσθήκη ενός νέου ημερολογίου στο διάλογο φορμών" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Όνομα πεδίου ημερολογίου" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Προσθήκη μιας νέας λίστας στο διαλόγου φορμών" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Καταγραφή πεδίου και ονόματος κεφαλίδας" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Κατάλογος των τιμών του καταλόγου" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Κατάλογος τιμών χωρισμένων με |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Κατάλογος τιμών για τις στήλες" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Προσθήκη ενός νέου σύνθετου πλαισίου σε διάλογο φορμών" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Όνομα πεδίου σύνθετου πλαισίου" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Κατάλογος τιμών για το σύνθετο πλαίσιο" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Εμφάνιση της κεφαλίδας των στηλών" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Εμφάνιση διαλόγου κωδικού πρόσβασης" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Εμφάνιση επιλογής ονόματος χρήστη" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Εμφάνιση διαλόγου επιλογής χρώματος" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Ορισμός χρώματος" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Εμφάνιση παλέτας χρωμάτων" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Περί του zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Έκδοση εκτύπωσης" - -#: src/option.c:1913 -msgid "General options" -msgstr "Γενικές επιλογές" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Εμφάνιση γενικών επιλογών" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Επιλογές ημερολογίου" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Εμφάνιση επιλογών ημερολογίου" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Επιλογές καταχώρισης κειμένου" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Εμφάνιση επιλογών καταχώρισης κειμένου" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Επιλογές σφάλματος" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Εμφάνιση επιλογών σφάλματος" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Επιλογές πληροφ." - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Εμφάνιση επιλογών πληροφ." - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Επιλογές διαλόγου επιλογής αρχείου" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Εμφάνιση επιλογών επιλογής αρχείου" - -#: src/option.c:1985 -msgid "List options" -msgstr "Επιλογές λίστας" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Εμφάνιση επιλογών λίστας" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Επιλογές εικονιδίου ειδοποίησης" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Εμφάνιση επιλογών εικονιδίου ειδοποίησης" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Επιλογές προόδου" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Εμφάνιση επιλογών προόδου" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Επιλογές ερώτησης" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Εμφάνιση επιλογών ερώτησης" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Επιλογές προειδοποίησης" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Εμφάνιση επιλογών προειδοποίησης" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Επιλογές κλιμάκωσης" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Εμφάνιση επιλογών κλιμάκωσης" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Επιλογές πληροφοριών κειμένου" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Εμφάνιση επιλογών πληροφοριών κειμένου" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Επιλογές επιλογής χρώματος" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Εμφάνιση επιλογών επιλογής χρώματος" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Επιλογές διαλόγου κωδικού πρόσβασης" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Εμφάνιση επιλογών διαλόγου κωδικού πρόσβασης" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Επιλογές διαλόγου φορμών" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Εμφάνιση επιλογών διαλόγου φορμών" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Διάφορες επιλογές" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Εμφάνιση διάφορων επιλογών" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Αυτή η επιλογή δεν είναι διαθέσιμη. Δείτε --help για όλες τις πιθανές " -"χρήσεις.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "το --%s δεν υποστηρίζεται για αυτό το διάλογο\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Καθορίστηκαν δύο ή περισσότεροι διάλογοι\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Πληκτρολογήστε τον κωδικό πρόσβασής σας" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Πληκτρολογήστε το όνομα χρήστη και τον κωδικό πρόσβασής σας" - -#: src/password.c:100 -msgid "Username:" -msgstr "Όνομα χρήστη:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Κωδικός πρόσβασης:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Χρόνος που απομένει: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Η μέγιστη τιμή θα πρέπει να είναι μεγαλύτερη από την ελάχιστη.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Η τιμή είναι εκτός εύρους.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Δεν καθορίστηκαν τίτλοι στήλης για το διάλογο λίστας\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Θα πρέπει να χρησιμοποιήσετε μόνο ένα τύπο διαλόγου λίστας.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Προσαρμογή της τιμής κλιμάκωσης" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Aκύρωση" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Εντάξει" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Προβολή κειμένου" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Επιλογή ημερολογίου" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Επιλογή της ημερομηνίας από παρακάτω." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "Η_μερολόγιο:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Προσθήκη νέας καταχώρισης" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Εισάγετε νέο κείμενο:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Σφάλμα" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Παρουσιάστηκε ένα σφάλμα." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Διάλογος φορμών" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Πληροφορίες" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Όλες οι ενημερώσεις ολοκληρώθηκαν." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Πρόοδος" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Εκτελείται..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Ερώτηση" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Είσαστε βέβαιοι ότι θέλετε να προχωρήσετε;" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Επιλογή αντικειμένων από τη λίστα" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Επιλογή αντικειμένων από την παρακάτω λίστα." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Προειδοποίηση" diff --git a/po/en@shaw.po b/po/en@shaw.po deleted file mode 100644 index 44b567b..0000000 --- a/po/en@shaw.po +++ /dev/null @@ -1,633 +0,0 @@ -# Shavian translation for zenity. -# Copyright (C) 2009-2010 The Gnome Foundation. -# Thomas Thurman , 2010. -# Transliterate zenity as ·𐑟𐑧𐑯𐑦𐑑𐑦 -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2010-05-12 22:45+0000\n" -"PO-Revision-Date: 2010-05-18 10:08 -0400\n" -"Last-Translator: Thomas Thurman \n" -"Language-Team: Shavian \n" -"Language: en@shaw\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n!=1;\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it under " -"the terms of the GNU Lesser General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) any " -"later version.\n" -msgstr "" -"𐑞𐑦𐑕 𐑐𐑮𐑴𐑜𐑮𐑨𐑥 𐑦𐑟 𐑓𐑮𐑰 𐑕𐑪𐑓𐑑𐑢𐑺; 𐑿 𐑒𐑨𐑯 𐑮𐑰𐑛𐑦𐑕𐑑𐑮𐑦𐑚𐑿𐑑 𐑦𐑑 𐑯/𐑹 𐑥𐑪𐑛𐑦𐑓𐑲 𐑦𐑑 𐑳𐑯𐑛𐑼 𐑞 𐑑𐑻𐑥𐑟 𐑝 𐑞 " -"·𐑜𐑯𐑿 𐑤𐑧𐑕𐑼 𐑡𐑧𐑯𐑼𐑩𐑤 𐑐𐑳𐑚𐑤𐑦𐑒 𐑤𐑲𐑕𐑩𐑯𐑕 𐑨𐑟 𐑐𐑳𐑚𐑤𐑦𐑖𐑑 𐑚𐑲 𐑞 𐑓𐑮𐑰 𐑕𐑪𐑓𐑑𐑢𐑺 𐑓𐑬𐑯𐑛𐑱𐑖𐑩𐑯; 𐑲𐑞𐑼 𐑝𐑻𐑠𐑩𐑯 " -"2 𐑝 𐑞 𐑤𐑲𐑕𐑩𐑯𐑕, 𐑹 (𐑨𐑑 𐑿𐑼 𐑪𐑐𐑖𐑩𐑯) 𐑧𐑯𐑦 𐑤𐑱𐑑𐑼 𐑝𐑻𐑠𐑩𐑯.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS " -"FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more " -"details.\n" -msgstr "" -"𐑞𐑦𐑕 𐑐𐑮𐑴𐑜𐑮𐑨𐑥 𐑦𐑟 𐑛𐑦𐑕𐑑𐑮𐑦𐑚𐑿𐑑𐑩𐑛 𐑦𐑯 𐑞 𐑣𐑴𐑐 𐑞𐑨𐑑 𐑦𐑑 𐑢𐑦𐑤 𐑚𐑰 𐑿𐑕𐑓𐑩𐑤, 𐑚𐑳𐑑 𐑢𐑦𐑞𐑬𐑑 𐑧𐑯𐑦 " -"𐑢𐑪𐑮𐑩𐑯𐑑𐑰; 𐑢𐑦𐑞𐑬𐑑 𐑰𐑝𐑩𐑯 𐑞 𐑦𐑥𐑐𐑤𐑲𐑛 𐑢𐑪𐑮𐑩𐑯𐑑𐑰 𐑝 𐑥𐑧𐑗𐑩𐑯𐑑𐑩𐑚𐑦𐑤𐑦𐑑𐑦 𐑹 𐑓𐑦𐑑𐑯𐑩𐑕 𐑓𐑹 𐑩 𐑐𐑼𐑑𐑦𐑒𐑿𐑤𐑼 " -"𐑐𐑻𐑐𐑩𐑕. 𐑕𐑰 𐑞 ·𐑜𐑯𐑿 𐑤𐑧𐑕𐑼 𐑡𐑧𐑯𐑼𐑩𐑤 𐑐𐑳𐑚𐑤𐑦𐑒 𐑤𐑲𐑕𐑩𐑯𐑕 𐑓𐑹 𐑥𐑹 𐑛𐑰𐑑𐑱𐑤𐑟.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, Inc., " -"51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"𐑿 𐑖𐑫𐑛 𐑣𐑨𐑝 𐑮𐑦𐑕𐑰𐑝𐑛 𐑩 𐑒𐑪𐑐𐑦 𐑝 𐑞 ·𐑜𐑯𐑿 𐑤𐑧𐑕𐑼 𐑡𐑧𐑯𐑼𐑩𐑤 𐑐𐑳𐑚𐑤𐑦𐑒 𐑤𐑲𐑕𐑩𐑯𐑕 𐑩𐑤𐑪𐑙 𐑢𐑦𐑞 𐑞𐑦𐑕 " -"𐑐𐑮𐑴𐑜𐑮𐑨𐑥; 𐑦𐑓 𐑯𐑪𐑑, 𐑮𐑲𐑑 𐑑 𐑞 𐑓𐑮𐑰 𐑕𐑪𐑓𐑑𐑢𐑺 𐑓𐑬𐑯𐑛𐑱𐑖𐑩𐑯, 𐑦𐑙𐑒., 51 ·𐑓𐑮𐑨𐑙𐑒𐑤𐑦𐑯 𐑕𐑑𐑮𐑰𐑑, 𐑓𐑦𐑓𐑔 " -"𐑓𐑤𐑹, ·𐑚𐑪𐑕𐑑𐑩𐑯, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "·𐑑𐑪𐑥𐑩𐑕 ·𐑔𐑻𐑥𐑩𐑯" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑛𐑲𐑩𐑤𐑪𐑜 𐑚𐑪𐑒𐑕𐑩𐑟 𐑓𐑮𐑪𐑥 𐑖𐑧𐑤 𐑕𐑒𐑮𐑦𐑐𐑑𐑕" - -#, c-format -#: ../src/main.c:97 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "𐑿 𐑥𐑳𐑕𐑑 𐑕𐑐𐑧𐑕𐑦𐑓𐑲 𐑩 𐑛𐑲𐑩𐑤𐑪𐑜 𐑑𐑲𐑐. 𐑕𐑰 'zenity --help' 𐑓𐑹 𐑛𐑰𐑑𐑱𐑤𐑟\n" - -#, c-format -#: ../src/notification.c:138 -msgid "could not parse command from stdin\n" -msgstr "𐑒𐑫𐑛 𐑯𐑪𐑑 𐑐𐑸𐑕 𐑒𐑩𐑥𐑭𐑯𐑛 𐑓𐑮𐑪𐑥 stdin\n" - -#, c-format -#: ../src/notification.c:177 -msgid "Could not parse message from stdin\n" -msgstr "𐑒𐑫𐑛 𐑯𐑪𐑑 𐑐𐑸𐑕 𐑥𐑧𐑕𐑦𐑡 𐑓𐑮𐑪𐑥 stdin\n" - -#: ../src/notification.c:262 ../src/notification.c:279 -msgid "Zenity notification" -msgstr "·𐑟𐑧𐑯𐑦𐑑𐑦 𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯" - -#, c-format -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "𐑥𐑨𐑒𐑕𐑦𐑥𐑩𐑥 𐑝𐑨𐑤𐑿 𐑥𐑳𐑕𐑑 𐑚𐑰 𐑜𐑮𐑱𐑑𐑼 𐑞𐑨𐑯 𐑥𐑦𐑯𐑩𐑥𐑩𐑥 𐑝𐑨𐑤𐑿.\n" - -#, c-format -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "𐑝𐑨𐑤𐑿 𐑬𐑑 𐑝 𐑮𐑱𐑯𐑡.\n" - -#, c-format -#: ../src/tree.c:321 -msgid "No column titles specified for List dialog.\n" -msgstr "𐑯𐑴 𐑒𐑪𐑤𐑩𐑥 𐑑𐑲𐑑𐑩𐑤𐑟 𐑕𐑐𐑧𐑕𐑦𐑓𐑲𐑛 𐑓𐑹 𐑤𐑦𐑕𐑑 𐑛𐑲𐑩𐑤𐑪𐑜.\n" - -#, c-format -#: ../src/tree.c:327 -msgid "You should use only one List dialog type.\n" -msgstr "𐑿 𐑖𐑫𐑛 𐑿𐑕 𐑴𐑯𐑤𐑦 𐑢𐑳𐑯 𐑤𐑦𐑕𐑑 𐑛𐑲𐑩𐑤𐑪𐑜 𐑑𐑲𐑐.\n" - -#: ../src/zenity.ui.h:1 -msgid "Add a new entry" -msgstr "𐑨𐑛 𐑩 𐑯𐑿 𐑧𐑯𐑑𐑮𐑦" - -#: ../src/zenity.ui.h:2 -msgid "Adjust the scale value" -msgstr "𐑩𐑡𐑳𐑕𐑑 𐑞 𐑕𐑒𐑱𐑤 𐑝𐑨𐑤𐑿" - -#: ../src/zenity.ui.h:3 -msgid "All updates are complete." -msgstr "𐑷𐑤 𐑳𐑐𐑛𐑱𐑑𐑕 𐑸 𐑒𐑩𐑥𐑐𐑤𐑰𐑑." - -#: ../src/zenity.ui.h:4 -msgid "An error has occurred." -msgstr "𐑩𐑯 𐑻𐑼 𐑣𐑨𐑟 𐑪𐑒𐑻𐑛." - -#: ../src/zenity.ui.h:5 -msgid "Are you sure you want to proceed?" -msgstr "𐑸 𐑿 𐑖𐑫𐑼 𐑿 𐑢𐑪𐑯𐑑 𐑑 𐑐𐑮𐑩𐑕𐑰𐑛?" - -#: ../src/zenity.ui.h:6 -msgid "C_alendar:" -msgstr "_𐑒𐑨𐑤𐑩𐑯𐑛𐑼:" - -#: ../src/zenity.ui.h:7 -msgid "Calendar selection" -msgstr "𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "𐑻𐑼" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "𐑦𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯" - -#: ../src/zenity.ui.h:10 -msgid "Progress" -msgstr "𐑐𐑮𐑩𐑜𐑮𐑧𐑕" - -#: ../src/zenity.ui.h:11 -msgid "Question" -msgstr "𐑒𐑢𐑧𐑕𐑑𐑦𐑩𐑯" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "𐑮𐑳𐑯𐑦𐑙..." - -#: ../src/zenity.ui.h:13 -msgid "Select a date from below." -msgstr "𐑕𐑩𐑤𐑧𐑒𐑑 𐑩 𐑛𐑱𐑑 𐑓𐑮𐑪𐑥 𐑚𐑩𐑤𐑴." - -#: ../src/zenity.ui.h:14 -msgid "Select items from the list" -msgstr "𐑕𐑩𐑤𐑧𐑒𐑑 𐑲𐑑𐑩𐑥𐑟 𐑓𐑮𐑪𐑥 𐑞 𐑤𐑦𐑕𐑑" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list below." -msgstr "𐑕𐑩𐑤𐑧𐑒𐑑 𐑲𐑑𐑩𐑥𐑟 𐑓𐑮𐑪𐑥 𐑞 𐑤𐑦𐑕𐑑 𐑚𐑩𐑤𐑴." - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "𐑑𐑧𐑒𐑕𐑑 𐑝𐑿" - -#: ../src/zenity.ui.h:17 -msgid "Warning" -msgstr "𐑢𐑹𐑯𐑦𐑙" - -#: ../src/zenity.ui.h:18 -msgid "_Enter new text:" -msgstr "_𐑧𐑯𐑑𐑼 𐑯𐑿 𐑑𐑧𐑒𐑕𐑑:" - -#: ../src/option.c:127 -msgid "Set the dialog title" -msgstr "𐑕𐑧𐑑 𐑞 𐑛𐑲𐑩𐑤𐑪𐑜 𐑑𐑲𐑑𐑩𐑤" - -#: ../src/option.c:128 -msgid "TITLE" -msgstr "𐑑𐑲𐑑𐑩𐑤" - -#: ../src/option.c:136 -msgid "Set the window icon" -msgstr "𐑕𐑧𐑑 𐑞 𐑢𐑦𐑯𐑛𐑴 𐑲𐑒𐑪𐑯" - -#: ../src/option.c:137 -msgid "ICONPATH" -msgstr "𐑲𐑒𐑪𐑯𐑐𐑭𐑔" - -#: ../src/option.c:145 -msgid "Set the width" -msgstr "𐑕𐑧𐑑 𐑞 𐑢𐑦𐑛𐑔" - -#: ../src/option.c:146 -msgid "WIDTH" -msgstr "𐑢𐑦𐑛𐑔" - -#: ../src/option.c:154 -msgid "Set the height" -msgstr "𐑕𐑧𐑑 𐑞 𐑣𐑲𐑑" - -#: ../src/option.c:155 -msgid "HEIGHT" -msgstr "𐑣𐑲𐑑" - -#: ../src/option.c:163 -msgid "Set dialog timeout in seconds" -msgstr "𐑕𐑧𐑑 𐑛𐑲𐑩𐑤𐑪𐑜 𐑑𐑲𐑥𐑬𐑑 𐑦𐑯 𐑕𐑧𐑒𐑩𐑯𐑛𐑟" - -#. Timeout for closing the dialog -#: ../src/option.c:165 -msgid "TIMEOUT" -msgstr "𐑑𐑲𐑥𐑬𐑑" - -#: ../src/option.c:179 -msgid "Display calendar dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:188 ../src/option.c:248 ../src/option.c:291 -#: ../src/option.c:324 ../src/option.c:436 ../src/option.c:575 -#: ../src/option.c:647 ../src/option.c:731 ../src/option.c:764 -msgid "Set the dialog text" -msgstr "𐑕𐑧𐑑 𐑞 𐑛𐑲𐑩𐑤𐑪𐑜 𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:189 ../src/option.c:249 ../src/option.c:258 -#: ../src/option.c:292 ../src/option.c:325 ../src/option.c:437 -#: ../src/option.c:543 ../src/option.c:576 ../src/option.c:648 -#: ../src/option.c:657 ../src/option.c:666 ../src/option.c:732 -#: ../src/option.c:765 -msgid "TEXT" -msgstr "𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:197 -msgid "Set the calendar day" -msgstr "𐑕𐑧𐑑 𐑞 𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑛𐑱" - -#: ../src/option.c:198 -msgid "DAY" -msgstr "𐑛𐑱" - -#: ../src/option.c:206 -msgid "Set the calendar month" -msgstr "𐑕𐑧𐑑 𐑞 𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑥𐑳𐑯𐑔" - -#: ../src/option.c:207 -msgid "MONTH" -msgstr "𐑥𐑳𐑯𐑔" - -#: ../src/option.c:215 -msgid "Set the calendar year" -msgstr "𐑕𐑧𐑑 𐑞 𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑘𐑽" - -#: ../src/option.c:216 -msgid "YEAR" -msgstr "𐑘𐑽" - -#: ../src/option.c:224 -msgid "Set the format for the returned date" -msgstr "𐑕𐑧𐑑 𐑞 𐑓𐑹𐑥𐑨𐑑 𐑓𐑹 𐑞 𐑮𐑦𐑑𐑻𐑯𐑛 𐑛𐑱𐑑" - -#: ../src/option.c:225 -msgid "PATTERN" -msgstr "𐑐𐑨𐑑𐑼𐑯" - -#: ../src/option.c:239 -msgid "Display text entry dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑑𐑧𐑒𐑕𐑑 𐑧𐑯𐑑𐑮𐑦 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:257 -msgid "Set the entry text" -msgstr "𐑕𐑧𐑑 𐑞 𐑧𐑯𐑑𐑮𐑦 𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:266 -msgid "Hide the entry text" -msgstr "𐑣𐑲𐑛 𐑞 𐑧𐑯𐑑𐑮𐑦 𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:282 -msgid "Display error dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑻𐑼 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:300 ../src/option.c:333 ../src/option.c:674 -#: ../src/option.c:740 -msgid "Do not enable text wrapping" -msgstr "𐑛𐑵 𐑯𐑪𐑑 𐑦𐑯𐑱𐑚𐑩𐑤 𐑑𐑧𐑒𐑕𐑑 𐑮𐑨𐑐𐑦𐑙" - -#: ../src/option.c:315 -msgid "Display info dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑦𐑯𐑓𐑴 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:348 -msgid "Display file selection dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑓𐑲𐑤 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:357 -msgid "Set the filename" -msgstr "𐑕𐑧𐑑 𐑞 𐑓𐑲𐑤𐑯𐑱𐑥" - -#: ../src/option.c:358 ../src/option.c:699 -msgid "FILENAME" -msgstr "𐑓𐑲𐑤𐑯𐑱𐑥" - -#: ../src/option.c:366 -msgid "Allow multiple files to be selected" -msgstr "𐑩𐑤𐑬 𐑥𐑳𐑤𐑑𐑦𐑐𐑩𐑤 𐑓𐑲𐑤𐑟 𐑑 𐑚𐑰 𐑕𐑩𐑤𐑧𐑒𐑑𐑩𐑛" - -#: ../src/option.c:375 -msgid "Activate directory-only selection" -msgstr "𐑨𐑒𐑑𐑦𐑝𐑱𐑑 𐑛𐑲𐑮𐑧𐑒𐑑𐑼𐑦-𐑴𐑯𐑤𐑦 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯" - -#: ../src/option.c:384 -msgid "Activate save mode" -msgstr "𐑨𐑒𐑑𐑦𐑝𐑱𐑑 𐑕𐑱𐑝 𐑥𐑴𐑛" - -#: ../src/option.c:393 ../src/option.c:472 -msgid "Set output separator character" -msgstr "𐑕𐑧𐑑 𐑬𐑑𐑐𐑫𐑑 𐑕𐑧𐑐𐑼𐑱𐑑𐑼 𐑒𐑸𐑩𐑒𐑑𐑼" - -#: ../src/option.c:394 ../src/option.c:473 -msgid "SEPARATOR" -msgstr "𐑕𐑧𐑐𐑼𐑱𐑑𐑼" - -#: ../src/option.c:402 -msgid "Confirm file selection if filename already exists" -msgstr "𐑒𐑪𐑯𐑓𐑻𐑥 𐑓𐑲𐑤 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑦𐑓 𐑓𐑲𐑤𐑯𐑱𐑥 𐑷𐑤𐑮𐑧𐑛𐑦 𐑧𐑒𐑟𐑦𐑕𐑑𐑕" - -#: ../src/option.c:411 -msgid "Sets a filename filter" -msgstr "𐑕𐑧𐑑𐑕 𐑩 𐑓𐑲𐑤𐑯𐑱𐑥 𐑓𐑦𐑤𐑑𐑼" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:413 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "𐑯𐑱𐑥 | 𐑐𐑨𐑑𐑼𐑯1 𐑐𐑨𐑑𐑼𐑯2 ..." - -#: ../src/option.c:427 -msgid "Display list dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑤𐑦𐑕𐑑 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:445 -msgid "Set the column header" -msgstr "𐑕𐑧𐑑 𐑞 𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼" - -#: ../src/option.c:446 -msgid "COLUMN" -msgstr "𐑒𐑪𐑤𐑩𐑥" - -#: ../src/option.c:454 -msgid "Use check boxes for first column" -msgstr "𐑿𐑟 𐑗𐑧𐑒 𐑚𐑪𐑒𐑕𐑩𐑟 𐑓𐑹 𐑓𐑻𐑕𐑑 𐑒𐑪𐑤𐑩𐑥" - -#: ../src/option.c:463 -msgid "Use radio buttons for first column" -msgstr "𐑿𐑟 𐑮𐑱𐑛𐑦𐑴 𐑚𐑳𐑑𐑩𐑯𐑟 𐑓𐑹 𐑓𐑻𐑕𐑑 𐑒𐑪𐑤𐑩𐑥" - -#: ../src/option.c:481 -msgid "Allow multiple rows to be selected" -msgstr "𐑩𐑤𐑬 𐑥𐑳𐑤𐑑𐑦𐑐𐑩𐑤 𐑮𐑴𐑟 𐑑 𐑚𐑰 𐑕𐑩𐑤𐑧𐑒𐑑𐑩𐑛" - -#: ../src/option.c:490 ../src/option.c:707 -msgid "Allow changes to text" -msgstr "𐑩𐑤𐑬 𐑗𐑱𐑯𐑡𐑩𐑟 𐑑 𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:499 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "" -"𐑐𐑮𐑦𐑯𐑑 𐑩 𐑕𐑐𐑩𐑕𐑦𐑓𐑦𐑒 𐑒𐑪𐑤𐑩𐑥 (𐑛𐑦𐑓𐑷𐑤𐑑 𐑦𐑟 1. 'ALL' 𐑒𐑨𐑯 𐑚𐑰 𐑿𐑟𐑛 𐑑 𐑐𐑮𐑦𐑯𐑑 𐑷𐑤 𐑒𐑪𐑤𐑩𐑥𐑟)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:501 ../src/option.c:510 -msgid "NUMBER" -msgstr "𐑯𐑳𐑥𐑚𐑼" - -#: ../src/option.c:509 -msgid "Hide a specific column" -msgstr "𐑣𐑲𐑛 𐑩 𐑕𐑐𐑩𐑕𐑦𐑓𐑦𐑒 𐑒𐑪𐑤𐑩𐑥" - -#: ../src/option.c:518 -msgid "Hides the column headers" -msgstr "𐑣𐑲𐑛𐑟 𐑞 𐑒𐑪𐑤𐑩𐑥 𐑣𐑧𐑛𐑼𐑟" - -#: ../src/option.c:533 -msgid "Display notification" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯" - -#: ../src/option.c:542 -msgid "Set the notification text" -msgstr "𐑕𐑧𐑑 𐑞 𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯 𐑑𐑧𐑒𐑕𐑑" - -#: ../src/option.c:551 -msgid "Listen for commands on stdin" -msgstr "𐑤𐑦𐑕𐑩𐑯 𐑓𐑹 𐑒𐑩𐑥𐑭𐑯𐑛𐑟 𐑪𐑯 stdin" - -#: ../src/option.c:566 -msgid "Display progress indication dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑐𐑮𐑩𐑜𐑮𐑧𐑕 𐑦𐑯𐑛𐑩𐑒𐑱𐑖𐑩𐑯 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:584 -msgid "Set initial percentage" -msgstr "𐑕𐑧𐑑 𐑦𐑯𐑦𐑖𐑩𐑤 𐑐𐑼𐑕𐑧𐑯𐑑𐑦𐑡" - -#: ../src/option.c:585 -msgid "PERCENTAGE" -msgstr "𐑐𐑼𐑕𐑧𐑯𐑑𐑦𐑡" - -#: ../src/option.c:593 -msgid "Pulsate progress bar" -msgstr "𐑐𐑳𐑤𐑕𐑱𐑑 𐑐𐑮𐑩𐑜𐑮𐑧𐑕 𐑚𐑸" - -#, no-c-format -#: ../src/option.c:603 -msgid "Dismiss the dialog when 100% has been reached" -msgstr "𐑛𐑦𐑕𐑥𐑦𐑕 𐑞 𐑛𐑲𐑩𐑤𐑪𐑜 𐑢𐑧𐑯 100% 𐑣𐑨𐑟 𐑚𐑰𐑯 𐑮𐑰𐑗𐑑" - -#, no-c-format -#: ../src/option.c:613 -msgid "Kill parent process if cancel button is pressed" -msgstr "𐑒𐑦𐑤 𐑐𐑺𐑩𐑯𐑑 𐑐𐑮𐑴𐑕𐑧𐑕 𐑦𐑓 𐑒𐑨𐑯𐑕𐑩𐑤 𐑚𐑳𐑑𐑩𐑯 𐑦𐑟 𐑐𐑮𐑧𐑕𐑑" - -#, no-c-format -#: ../src/option.c:623 -msgid "Hide cancel button" -msgstr "𐑣𐑲𐑛 𐑒𐑨𐑯𐑕𐑩𐑤 𐑚𐑳𐑑𐑩𐑯" - -#: ../src/option.c:638 -msgid "Display question dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑒𐑢𐑧𐑕𐑑𐑦𐑩𐑯 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:656 -msgid "Sets the label of the Ok button" -msgstr "𐑕𐑧𐑑𐑕 𐑞 𐑤𐑱𐑚𐑩𐑤 𐑝 𐑞 𐑴𐑒𐑱 𐑚𐑳𐑑𐑩𐑯" - -#: ../src/option.c:665 -msgid "Sets the label of the Cancel button" -msgstr "𐑕𐑧𐑑𐑕 𐑞 𐑤𐑱𐑚𐑩𐑤 𐑝 𐑞 𐑒𐑨𐑯𐑕𐑩𐑤 𐑚𐑳𐑑𐑩𐑯" - -#: ../src/option.c:689 -msgid "Display text information dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑑𐑧𐑒𐑕𐑑 𐑦𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:698 -msgid "Open file" -msgstr "𐑴𐑐𐑩𐑯 𐑓𐑲𐑤" - -#: ../src/option.c:722 -msgid "Display warning dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑢𐑹𐑯𐑦𐑙 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:755 -msgid "Display scale dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑕𐑒𐑱𐑤 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:773 -msgid "Set initial value" -msgstr "𐑕𐑧𐑑 𐑦𐑯𐑦𐑖𐑩𐑤 𐑝𐑨𐑤𐑿" - -#: ../src/option.c:774 ../src/option.c:783 ../src/option.c:792 -#: ../src/option.c:801 ../src/option.c:843 -msgid "VALUE" -msgstr "𐑝𐑨𐑤𐑿" - -#: ../src/option.c:782 -msgid "Set minimum value" -msgstr "𐑕𐑧𐑑 𐑥𐑦𐑯𐑩𐑥𐑩𐑥 𐑝𐑨𐑤𐑿" - -#: ../src/option.c:791 -msgid "Set maximum value" -msgstr "𐑕𐑧𐑑 𐑥𐑨𐑒𐑕𐑦𐑥𐑩𐑥 𐑝𐑨𐑤𐑿" - -#: ../src/option.c:800 -msgid "Set step size" -msgstr "𐑕𐑧𐑑 𐑕𐑑𐑧𐑐 𐑕𐑲𐑟" - -#: ../src/option.c:809 -msgid "Print partial values" -msgstr "𐑐𐑮𐑦𐑯𐑑 𐑐𐑸𐑑𐑦𐑨𐑤 𐑝𐑨𐑤𐑿𐑟" - -#: ../src/option.c:818 -msgid "Hide value" -msgstr "𐑣𐑲𐑛 𐑝𐑨𐑤𐑿" - -#: ../src/option.c:833 -msgid "Display color selection dialog" -msgstr "𐑛𐑩𐑕𐑐𐑤𐑱 𐑒𐑳𐑤𐑼 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑛𐑲𐑩𐑤𐑪𐑜" - -#: ../src/option.c:842 -msgid "Set the color" -msgstr "𐑕𐑧𐑑 𐑞 𐑒𐑳𐑤𐑼" - -#: ../src/option.c:851 -msgid "Show the palette" -msgstr "𐑖𐑴 𐑞 𐑐𐑩𐑤𐑧𐑑" - -#: ../src/option.c:866 -msgid "About zenity" -msgstr "𐑩𐑚𐑬𐑑 ·𐑟𐑧𐑯𐑦𐑑𐑦" - -#: ../src/option.c:875 -msgid "Print version" -msgstr "𐑐𐑮𐑦𐑯𐑑 𐑝𐑻𐑠𐑩𐑯" - -#: ../src/option.c:1584 -msgid "General options" -msgstr "𐑡𐑧𐑯𐑼𐑩𐑤 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1585 -msgid "Show general options" -msgstr "𐑖𐑴 𐑡𐑧𐑯𐑼𐑩𐑤 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1595 -msgid "Calendar options" -msgstr "𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1596 -msgid "Show calendar options" -msgstr "𐑖𐑴 𐑒𐑨𐑤𐑩𐑯𐑛𐑼 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1606 -msgid "Text entry options" -msgstr "𐑑𐑧𐑒𐑕𐑑 𐑧𐑯𐑑𐑮𐑦 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1607 -msgid "Show text entry options" -msgstr "𐑖𐑴 𐑑𐑧𐑒𐑕𐑑 𐑧𐑯𐑑𐑮𐑦 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1617 -msgid "Error options" -msgstr "𐑻𐑼 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1618 -msgid "Show error options" -msgstr "𐑖𐑴 𐑻𐑼 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1628 -msgid "Info options" -msgstr "𐑦𐑯𐑓𐑴 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1629 -msgid "Show info options" -msgstr "𐑖𐑴 𐑦𐑯𐑓𐑴 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1639 -msgid "File selection options" -msgstr "𐑓𐑲𐑤 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1640 -msgid "Show file selection options" -msgstr "𐑖𐑴 𐑓𐑲𐑤 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1650 -msgid "List options" -msgstr "𐑤𐑦𐑕𐑑 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1651 -msgid "Show list options" -msgstr "𐑖𐑴 𐑤𐑦𐑕𐑑 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1661 -msgid "Notification icon options" -msgstr "𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯 𐑲𐑒𐑪𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1662 -msgid "Show notification icon options" -msgstr "𐑖𐑴 𐑯𐑴𐑑𐑦𐑓𐑦𐑒𐑱𐑖𐑩𐑯 𐑲𐑒𐑪𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1672 -msgid "Progress options" -msgstr "𐑐𐑮𐑩𐑜𐑮𐑧𐑕 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1673 -msgid "Show progress options" -msgstr "𐑖𐑴 𐑐𐑮𐑩𐑜𐑮𐑧𐑕 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1683 -msgid "Question options" -msgstr "𐑒𐑢𐑧𐑕𐑑𐑦𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1684 -msgid "Show question options" -msgstr "𐑖𐑴 𐑒𐑢𐑧𐑕𐑑𐑦𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1694 -msgid "Warning options" -msgstr "𐑢𐑹𐑯𐑦𐑙 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1695 -msgid "Show warning options" -msgstr "𐑖𐑴 𐑢𐑹𐑯𐑦𐑙 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1705 -msgid "Scale options" -msgstr "𐑕𐑒𐑱𐑤 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1706 -msgid "Show scale options" -msgstr "𐑖𐑴 𐑕𐑒𐑱𐑤 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1716 -msgid "Text information options" -msgstr "𐑑𐑧𐑒𐑕𐑑 𐑦𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1717 -msgid "Show text information options" -msgstr "𐑖𐑴 𐑑𐑧𐑒𐑕𐑑 𐑦𐑯𐑓𐑼𐑥𐑱𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1727 -msgid "Color selection options" -msgstr "𐑒𐑳𐑤𐑼 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1728 -msgid "Show color selection options" -msgstr "𐑖𐑴 𐑒𐑳𐑤𐑼 𐑕𐑦𐑤𐑧𐑒𐑖𐑩𐑯 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1738 -msgid "Miscellaneous options" -msgstr "𐑥𐑦𐑕𐑩𐑤𐑱𐑯𐑰𐑩𐑕 𐑪𐑐𐑖𐑩𐑯𐑟" - -#: ../src/option.c:1739 -msgid "Show miscellaneous options" -msgstr "𐑖𐑴 𐑥𐑦𐑕𐑩𐑤𐑱𐑯𐑰𐑩𐑕 𐑪𐑐𐑖𐑩𐑯𐑟" - -#, c-format -#: ../src/option.c:1764 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "𐑞𐑦𐑕 𐑪𐑐𐑖𐑩𐑯 𐑦𐑟 𐑯𐑪𐑑 𐑩𐑝𐑱𐑤𐑩𐑚𐑩𐑤. 𐑐𐑤𐑰𐑟 𐑕𐑰 --help 𐑓𐑹 𐑷𐑤 𐑐𐑪𐑕𐑩𐑚𐑩𐑤 𐑿𐑕𐑦𐑡𐑩𐑟.\n" - -#, c-format -#: ../src/option.c:1768 -msgid "--%s is not supported for this dialog\n" -msgstr "--%s 𐑦𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑓𐑹 𐑞𐑦𐑕 𐑛𐑲𐑩𐑤𐑪𐑜\n" - -#, c-format -#: ../src/option.c:1772 -msgid "Two or more dialog options specified\n" -msgstr "𐑑𐑵 𐑹 𐑥𐑹 𐑛𐑲𐑩𐑤𐑪𐑜 𐑪𐑐𐑖𐑩𐑯𐑟 𐑕𐑐𐑧𐑕𐑦𐑓𐑲𐑛\n" - diff --git a/po/en_CA.po b/po/en_CA.po deleted file mode 100644 index 825ade2..0000000 --- a/po/en_CA.po +++ /dev/null @@ -1,586 +0,0 @@ -# English/Canada translation of zenity. -# Copyright (C) 2004-2005 Adam Weinberger and the GNOME Foundation -# This file is distributed under the same licence as the zenity package. -# Adam Weinberger , 2004, 2005. -# -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-15 18:03-0400\n" -"PO-Revision-Date: 2005-07-03 13:39-0400\n" -"Last-Translator: Adam Weinberger \n" -"Language-Team: Canadian English \n" -"Language: en_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public Licence as published by the Free " -"Software Foundation; either version 2 of the Licence, or (at your option) " -"any later version.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for " -"more details.\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU General Public Licence along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "" -"Maintainer: Adam Weinberger \n" -"Alexander Winston " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "Display dialogue boxes from shell scripts" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "You must specify a dialogue type. See 'zenity --help' for details\n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "Could not parse command from stdin\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Zenity notification" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximum value must be greater than minimum value.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Value out of range.\n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "No column titles specified for List dialogue.\n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "You should use only one List dialogue type.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Add a new entry" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Adjust the scale value" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "All updates are complete." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "An error has occurred." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "Are you sure you want to proceed?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "C_alendar:" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "Calendar selection" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "Error" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "Information" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "Progress" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "Question" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "Running..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "Select a date from below." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "Select a file" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "Select items from the list" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "Select items from the list below." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "Text View" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "Warning" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "_Enter new text:" - -#: ../src/option.c:117 -msgid "Set the dialog title" -msgstr "Set the dialogue title" - -#: ../src/option.c:118 -msgid "TITLE" -msgstr "TITLE" - -#: ../src/option.c:126 -msgid "Set the window icon" -msgstr "Set the window icon" - -#: ../src/option.c:127 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:135 -msgid "Set the width" -msgstr "Set the width" - -#: ../src/option.c:136 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:144 -msgid "Set the height" -msgstr "Set the height" - -#: ../src/option.c:145 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:153 -msgid "Set dialog timeout in seconds" -msgstr "Set dialogue timeout in seconds" - -#: ../src/option.c:168 -msgid "Display calendar dialog" -msgstr "Display calendar dialogue" - -#: ../src/option.c:177 ../src/option.c:237 ../src/option.c:280 -#: ../src/option.c:313 ../src/option.c:415 ../src/option.c:544 -#: ../src/option.c:606 ../src/option.c:672 ../src/option.c:705 -msgid "Set the dialog text" -msgstr "Set the dialogue text" - -#: ../src/option.c:178 ../src/option.c:238 ../src/option.c:247 -#: ../src/option.c:256 ../src/option.c:281 ../src/option.c:314 -#: ../src/option.c:416 ../src/option.c:512 ../src/option.c:545 -#: ../src/option.c:607 ../src/option.c:673 ../src/option.c:706 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:186 -msgid "Set the calendar day" -msgstr "Set the calendar day" - -#: ../src/option.c:187 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:195 -msgid "Set the calendar month" -msgstr "Set the calendar month" - -#: ../src/option.c:196 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:204 -msgid "Set the calendar year" -msgstr "Set the calendar year" - -#: ../src/option.c:205 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:213 -msgid "Set the format for the returned date" -msgstr "Set the format for the returned date" - -#: ../src/option.c:214 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:228 -msgid "Display text entry dialog" -msgstr "Display text entry dialogue" - -#: ../src/option.c:246 -msgid "Set the entry text" -msgstr "Set the entry text" - -#: ../src/option.c:255 -msgid "Hide the entry text" -msgstr "Hide the entry text" - -#: ../src/option.c:271 -msgid "Display error dialog" -msgstr "Display error dialogue" - -#: ../src/option.c:289 ../src/option.c:322 ../src/option.c:615 -#: ../src/option.c:681 -msgid "Do not enable text wrapping" -msgstr "Do not enable text wrapping" - -#: ../src/option.c:304 -msgid "Display info dialog" -msgstr "Display info dialogue" - -#: ../src/option.c:337 -msgid "Display file selection dialog" -msgstr "Display file selection dialogue" - -#: ../src/option.c:346 -msgid "Set the filename" -msgstr "Set the filename" - -#: ../src/option.c:347 ../src/option.c:640 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:355 -msgid "Allow multiple files to be selected" -msgstr "Allow multiple files to be selected" - -#: ../src/option.c:364 -msgid "Activate directory-only selection" -msgstr "Activate directory-only selection" - -#: ../src/option.c:373 -msgid "Activate save mode" -msgstr "Activate save mode" - -#: ../src/option.c:382 ../src/option.c:451 -msgid "Set output separator character" -msgstr "Set output separator character" - -#: ../src/option.c:383 ../src/option.c:452 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:391 -msgid "Confirm file selection if filename already exists" -msgstr "Confirm file selection if filename already exists" - -#: ../src/option.c:406 -msgid "Display list dialog" -msgstr "Display list dialogue" - -#: ../src/option.c:424 -msgid "Set the column header" -msgstr "Set the column header" - -#: ../src/option.c:425 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:433 -msgid "Use check boxes for first column" -msgstr "Use check boxes for first column" - -#: ../src/option.c:442 -msgid "Use radio buttons for first column" -msgstr "Use radio buttons for first column" - -#: ../src/option.c:460 -msgid "Allow multiple rows to be selected" -msgstr "Allow multiple rows to be selected" - -#: ../src/option.c:469 ../src/option.c:648 -msgid "Allow changes to text" -msgstr "Allow changes to text" - -#: ../src/option.c:478 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" - -#: ../src/option.c:479 ../src/option.c:488 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:487 -msgid "Hide a specific column" -msgstr "Hide a specific column" - -#: ../src/option.c:502 -msgid "Display notification" -msgstr "Display notification" - -#: ../src/option.c:511 -msgid "Set the notification text" -msgstr "Set the notification text" - -#: ../src/option.c:520 -msgid "Listen for commands on stdin" -msgstr "Listen for commands on stdin" - -#: ../src/option.c:535 -msgid "Display progress indication dialog" -msgstr "Display progress indication dialogue" - -#: ../src/option.c:553 -msgid "Set initial percentage" -msgstr "Set initial percentage" - -#: ../src/option.c:554 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:562 -msgid "Pulsate progress bar" -msgstr "Pulsate progress bar" - -#: ../src/option.c:572 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Dismiss the dialogue when 100% has been reached" - -#: ../src/option.c:582 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "Kill parent process if cancel button is pressed" - -#: ../src/option.c:597 -msgid "Display question dialog" -msgstr "Display question dialogue" - -#: ../src/option.c:630 -msgid "Display text information dialog" -msgstr "Display text information dialogue" - -#: ../src/option.c:639 -msgid "Open file" -msgstr "Open file" - -#: ../src/option.c:663 -msgid "Display warning dialog" -msgstr "Display warning dialogue" - -#: ../src/option.c:696 -msgid "Display scale dialog" -msgstr "Display scale dialogue" - -#: ../src/option.c:714 -msgid "Set initial value" -msgstr "Set initial value" - -#: ../src/option.c:715 ../src/option.c:724 ../src/option.c:733 -#: ../src/option.c:742 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:723 -msgid "Set minimum value" -msgstr "Set minimum value" - -#: ../src/option.c:732 -msgid "Set maximum value" -msgstr "Set maximum value" - -#: ../src/option.c:741 -msgid "Set step size" -msgstr "Set step size" - -#: ../src/option.c:750 -msgid "Print partial values" -msgstr "Print partial values" - -#: ../src/option.c:759 -msgid "Hide value" -msgstr "Hide value" - -#: ../src/option.c:774 -msgid "About zenity" -msgstr "About zenity" - -#: ../src/option.c:783 -msgid "Print version" -msgstr "Print version" - -#: ../src/option.c:1425 -msgid "General options" -msgstr "General options" - -#: ../src/option.c:1426 -msgid "Show general options" -msgstr "Show general options" - -#: ../src/option.c:1436 -msgid "Calendar options" -msgstr "Calendar options" - -#: ../src/option.c:1437 -msgid "Show calendar options" -msgstr "Show calendar options" - -#: ../src/option.c:1447 -msgid "Text entry options" -msgstr "Text entry options" - -#: ../src/option.c:1448 -msgid "Show text entry options" -msgstr "Show text entry options" - -#: ../src/option.c:1458 -msgid "Error options" -msgstr "Error options" - -#: ../src/option.c:1459 -msgid "Show error options" -msgstr "Show error options" - -#: ../src/option.c:1469 -msgid "Info options" -msgstr "Info options" - -#: ../src/option.c:1470 -msgid "Show info options" -msgstr "Show info options" - -#: ../src/option.c:1480 -msgid "File selection options" -msgstr "File selection options" - -#: ../src/option.c:1481 -msgid "Show file selection options" -msgstr "Show file selection options" - -#: ../src/option.c:1491 -msgid "List options" -msgstr "List options" - -#: ../src/option.c:1492 -msgid "Show list options" -msgstr "Show list options" - -#: ../src/option.c:1502 -msgid "Notification icon options" -msgstr "Notification icon options" - -#: ../src/option.c:1503 -msgid "Show notification icon options" -msgstr "Show notification icon options" - -#: ../src/option.c:1513 -msgid "Progress options" -msgstr "Progress options" - -#: ../src/option.c:1514 -msgid "Show progress options" -msgstr "Show progress options" - -#: ../src/option.c:1524 -msgid "Question options" -msgstr "Question options" - -#: ../src/option.c:1525 -msgid "Show question options" -msgstr "Show question options" - -#: ../src/option.c:1535 -msgid "Warning options" -msgstr "Warning options" - -#: ../src/option.c:1536 -msgid "Show warning options" -msgstr "Show warning options" - -#: ../src/option.c:1546 -msgid "Scale options" -msgstr "Scale options" - -#: ../src/option.c:1547 -msgid "Show scale options" -msgstr "Show scale options" - -#: ../src/option.c:1557 -msgid "Text information options" -msgstr "Text information options" - -#: ../src/option.c:1558 -msgid "Show text information options" -msgstr "Show text information options" - -#: ../src/option.c:1568 -msgid "Miscellaneous options" -msgstr "Miscellaneous options" - -#: ../src/option.c:1569 -msgid "Show miscellaneous options" -msgstr "Show miscellaneous options" - -#: ../src/option.c:1594 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"This option is not available. Please see --help for all possible usages.\n" - -#: ../src/option.c:1598 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s is not supported for this dialogue\n" - -#: ../src/option.c:1602 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Two or more dialogue options specified\n" diff --git a/po/en_GB.po b/po/en_GB.po deleted file mode 100644 index 4c50652..0000000 --- a/po/en_GB.po +++ /dev/null @@ -1,926 +0,0 @@ -# British English translation of zenity. -# Copyright (C) 2011 zenity'S COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# Mike Newman , 2003. -# Chris Leonard , 2012. -# Bruce Cowan , 2010-2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2019-04-14 18:16+0000\n" -"PO-Revision-Date: 2019-08-13 22:42+0100\n" -"Last-Translator: Bruce Cowan \n" -"Language-Team: British English \n" -"Language: en_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Gtranslator 3.32.1\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public Licence as published by the " -"Free Software Foundation; either version 2 of the Licence, or (at your " -"option) any later version.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public Licence " -"for more details.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU Lesser General Public Licence " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -# Translators: This is a special message that shouldn't be translated -# literally. It is used in the about box to give credits to -# the translators. -# Thus, you should translate it to your name and email address. -# You can also include other translators who have contributed to -# this translation; in that case, please write them on separate -# lines seperated by newlines (\n -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Mike Newman \n" -"David Lodge \n" -"Philip Withnall \n" -"Bruce Cowan \n" -"Chris Leonard \n" -"David King " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Display dialogue boxes from shell scripts" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancel" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "You must specify a dialogue type. See 'zenity --help' for details\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_No" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Yes" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Could not parse message\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Unsupported hint. Skipping.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Unknown hint name. Skipping.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Could not parse command from stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity notification" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Set the dialogue title" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITLE" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Set the window icon" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Set the width" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "WIDTH" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Set the height" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Set dialogue timeout in seconds" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Set the label of the OK button" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Set the label of the Cancel button" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Add an extra button" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Set the modal hint" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Set the parent window to attach to" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "WINDOW" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Display calendar dialogue" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Set the dialogue text" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Set the calendar day" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Set the calendar month" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Set the calendar year" - -#: src/option.c:266 -msgid "YEAR" -msgstr "YEAR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Set the format for the returned date" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATTERN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Display text entry dialogue" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Set the entry text" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Hide the entry text" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Display error dialogue" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Set the dialogue icon" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Do not enable text wrapping" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Do not enable Pango markup" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Enable ellipsising in the dialogue text. This fixes the high window size " -"with long texts" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Display info dialogue" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Display file selection dialogue" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Set the filename" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILENAME" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Allow multiple files to be selected" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activate directory-only selection" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activate save mode" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Set output separator character" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirm file selection if filename already exists" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Set a filename filter" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Display list dialogue" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Set the column header" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Use tick boxes for the first column" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Use radio buttons for first column" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Use an image for the first column" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Allow multiple rows to be selected" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Allow changes to text" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMBER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Hide a specific column" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Hide the column headers" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Change list default search function searching for text in the middle, not on " -"the beginning" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Display notification" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Set the notification text" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Listen for commands on stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Set the notification hints" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Display progress indication dialogue" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Set initial percentage" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsate progress bar" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Dismiss the dialogue when 100% has been reached" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Kill parent process if Cancel button is pressed" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Hide Cancel button" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimate when progress will reach 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Display question dialogue" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Give Cancel button focus by default" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suppress OK and Cancel buttons" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Display text information dialogue" - -#: src/option.c:715 -msgid "Open file" -msgstr "Open file" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Set the text font" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Enable an I read and agree tickbox" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Enable HTML support" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Set an URL instead of a file. Only works if you use --html option" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "Auto scroll the text to the end. Only when text is captured from stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Display warning dialogue" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Display scale dialogue" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Set initial value" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALUE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Set minimum value" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Set maximum value" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Set step size" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Print partial values" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Hide value" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Display forms dialogue" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Add a new Entry in forms dialogue" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Field name" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Add a new Password Entry in forms dialogue" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Add a new Calendar in forms dialogue" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Calendar field name" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Add a new List in forms dialogue" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "List field and header name" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "List of values for List" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "List of values separated by |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "List of values for columns" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Add a new combo box in forms dialogue" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Combo box field name" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "List of values for combo box" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Show the columns header" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Display password dialogue" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Display the username option" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Display colour selection dialogue" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Set the colour" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Show the palette" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "About zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Print version" - -#: src/option.c:1913 -msgid "General options" -msgstr "General options" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Show general options" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Calendar options" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Show calendar options" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Text entry options" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Show text entry options" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Error options" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Show error options" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Info options" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Show info options" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "File selection options" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Show file selection options" - -#: src/option.c:1985 -msgid "List options" -msgstr "List options" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Show list options" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Notification icon options" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Show notification icon options" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progress options" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Show progress options" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Question options" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Show question options" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Warning options" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Show warning options" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Scale options" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Show scale options" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Text information options" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Show text information options" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Colour selection options" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Show colour selection options" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Password dialogue options" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Show password dialogue options" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Forms dialogue options" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Show forms dialogue options" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Miscellaneous options" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Show miscellaneous options" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"This option is not available. Please see --help for all possible usages.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s is not supported for this dialogue\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Two or more dialogue options specified\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Type your password" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Type your username and password" - -#: src/password.c:100 -msgid "Username:" -msgstr "Username:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Password:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Time remaining: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximum value must be greater than minimum value.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Value out of range.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "No column titles specified for List dialogue.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "You should use only one List dialogue type.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Adjust the scale value" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancel" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Text View" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Calendar selection" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Select a date from below." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Add a new entry" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Enter new text:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Error" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "An error has occurred." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Forms dialogue" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Information" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "All updates are complete." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progress" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Running…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Question" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Are you sure you want to proceed?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Select items from the list" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Select items from the list below." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Warning" - -#~ msgid "Select a file" -#~ msgstr "Select a file" - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "(C) 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "Credits" - -#~ msgid "Written by" -#~ msgstr "Written by" - -#~ msgid "Translated by" -#~ msgstr "Translated by" - -#~ msgid "Orientation" -#~ msgstr "Orientation" - -#~ msgid "The orientation of the tray." -#~ msgstr "The orientation of the tray." - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "About Zenity" - -#~ msgid "_Credits" -#~ msgstr "_Credits" diff --git a/po/eo.po b/po/eo.po deleted file mode 100644 index 695d1cc..0000000 --- a/po/eo.po +++ /dev/null @@ -1,887 +0,0 @@ -# Esperanto translation for zenity. -# Copyright (C) 2010-2012 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Tiffany ANTOPOLSKI , 2011. -# Kristjan SCHMIDT , 2010, 2011, 2012, 2017. -# Carmen Bianca BAKKER , 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-09-07 11:06+0000\n" -"PO-Revision-Date: 2018-10-29 16:50+0100\n" -"Last-Translator: Carmen Bianca Bakker \n" -"Language-Team: Esperanto \n" -"Language: eo\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.1.1\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Tiu programo estas libera programaro; vi povas distribui kaj/aŭ modifi ĝin " -"laŭ la kondiĉoj de la Malsupera Ĝenerala Publika Permesilo de GNU eldonite " -"de Free Software Foundation; aŭ en la 2a versio de la permesilo aŭ (laŭ via " -"volo) en iu sekva versio.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Tiu programo estas distribuite kun la espero ke ĝi estos utila, sed SEN IA " -"AJN GARANTIO; eĉ sen la implica garantio de NEGOCEBLO aŭ ADAPTADO AL IU " -"APARTA CELO. Vidu la Malsuperan Ĝeneralan Publikan Permesilon de GNU por " -"pli da detaloj.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Vi devintus ricevi kopion de la Malsupera Ĝenerala Publika Permesilo de GNU " -"kun tiu ĉi programo; se ne, skribu al la Fondaĵo Libera Programaro: Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, Usono." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Kristjan SCHMIDT\n" -"Tiffany ANTOPOLSKI\n" -"Carmen Bianca BAKKER " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Montri dialogajn skatolojn el ŝelskriptoj" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Bone" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Nuligi" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Vi devas specifi specon de dialogo. Vidu 'zenity --help' por detaloj\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Jes" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Ne eblis analizi mesaĝon\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Nevalida valoro por bulea konsileto.\n" -"Subtenitaj valoroj estas 'true' (vera) aŭ 'false' (malvera).\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nesubtenita konsileto. Preterpasante.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nekonata konsileta nomo. Preterpasante.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Ne eblis analizi komandon de stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-sciigo" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Agordi la dialog-titolon" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITOLO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Agordi la fenestran piktogramon" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PIKTOGRAMVOJO" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Agordi la larĝon" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARĜO" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Agordi la alton" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTO" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Agordi dialogan tempolimon en sekundoj" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPOLIMO" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Agordi la etikedon de la Bone-butonon" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKSTO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Agordi la etikedon de la Nuligi-butonon" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Aldoni kroman butonon" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Agordi la modalan konsileton" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Agordi la gepatran fenestron, al kiu oni alfiksos" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FENESTRO" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Montri kalendardialogon" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Agordi la dialogtekston" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Agordi la kalendartagon" - -#: src/option.c:252 -msgid "DAY" -msgstr "TAGO" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Agordi la kalendarmonaton" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONATO" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Agordi la kalendarjaron" - -#: src/option.c:266 -msgid "YEAR" -msgstr "JARO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Agordi la formon de la liverita dato" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ŜABLONO" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Montri dialogon por tekstenigo" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Agordi la enigan tekston" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Kaŝi la enigan tekston" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Montri erardialogon" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Agordi la dialog-piktogramon" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "BILDSIMBOL-NOMO" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ne ŝalti tekstan ĉirkaŭfluon" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ne ŝalti Pango-markadon" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Ŝalti tripunktigadon en dialoga teksto. Ĉi tiu riparas la altan fenestran " -"gradon kun longaj tekstoj" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Montri informdialogon" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Montri dosierelekt-dialogon" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Agordi la dosiernomon" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "DOSIERNOMO" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permesi elekton de pluraj dosieroj" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivigi nur-dosierujan elektadon" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Enŝalti konserv-reĝimon" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Agordi eligan apartigitan signon" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "APARTIGILO" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Konfirmi dosierselekton se la dosiernomo jam ekzistas" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Agordi filtrilon por dosiernomon" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOMO | PATRONO1 PATRONO2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Montri listdialogon" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Agordi la kolumnotitolon" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLUMNO" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Uzi markobutonojn por la unua kolumno" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Uzi radiobutonojn por la unua kolumno" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Uzi bildon por la unua kolumno" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permesi elekton de pluraj vicoj" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permesi ŝanĝon de teksto" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Presi specifan kolumnon (Implicito estas 1. 'ALL' (ĉiujn) oni povas uzi por " -"presi ĉiujn kolumnojn)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NOMBRO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Kaŝi specifan kolumnon" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Kaŝi la kolumnotitolojn" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Montri sciigon" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Agordi la sciigotekston" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Aŭskulti por komandoj per stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Agordi la sciigo-konsiletojn" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Montri plenumindikilan dialogon" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Agordi komencan elcenton" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ELCENTO" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsada progresbreto" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Rezigni la dialogon kiam oni atingas 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Ĉesigi gepatran procezon se oni premas la Nuligi butonon" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Kaŝi Nuligi-butonon" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Konjekti kiam plenumo atingos 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Montri demand-dialogon" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Doni defaŭlte fokuson al Nuligi-butonon" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Kaŝi Bone- kaj Nuligi-butonojn" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Montri tekstinform-dialogon" - -#: src/option.c:715 -msgid "Open file" -msgstr "Malfermi dosieron" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Agordi la teksttiparon" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ŝalti “mi legis kaj konsentas” markobutonon" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ebligi HTML-subtenon" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne ŝalti uzantan interagon kun la WebView. Nur funkcias se vi uzas --html " -"opcion" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Agordi URL-on anstataŭ dosieron. Nur funkcias se vi uzas --html opcion" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Aŭtomata rulumi la tekston ĝis la subo. Nur kiam teksto estas kaptata el " -"stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Montri avert-dialogon" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Montri skal-dialogon" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Agordi komencan valoron" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALORO" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Agordi minimuman valoron" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Agordi maksimuman valoron" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Agordi paŝ-grandon" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Montri partajn valorojn" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Kaŝi valoron" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Montri formdialogon" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Aldoni novan elementon al la formular-dialogujo" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nomo de kampo" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Aldoni novan pasvort-enigkampon al la faormular-dialogujo" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Aldoni novan kalendaron en formdialogo" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalendara nomo de kampo" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Aldoni novan liston al la formular-dialogujo" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Listkampo kaj paĝokap-nomo" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Listo da valoroj por la listo" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Listo da valoroj apartigitaj per |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Listo da valoroj por kolumnoj" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Aldoni novan falliston al la formular-dialogo" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Fallista kampa nomo" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Listo da valoroj por fallisto" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Montri la kolumnotitolon" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Montri pasvort-dialogon" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Montri la unzantonom-agordon" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Montriu la kolor-elektad-dialogon" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Agordi la koloron" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Montri la paletron" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Pri Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Pres-versio" - -#: src/option.c:1913 -msgid "General options" -msgstr "Ĝeneralaj agordoj" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Montri ĝeneralajn agordojn" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalendar-agordoj" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Montri kalendar-agordojn" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Tekstenig-agordoj" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Montri tekstenig-agordojn" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Erar-agordoj" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Montri erar-agordojn" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Informo-agordoj" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Montri inform-agordojn" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Dosierelekt-agordoj" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Montri dosierelekt-agordojn" - -#: src/option.c:1985 -msgid "List options" -msgstr "List-agordoj" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Montri list-agordojn" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Sciig-bildsimbolaj opcioj" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Montri sciig-bildsimbolajn opciojn" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progresagordoj" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Montri progresagordojn" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Demand-agordoj" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Montri demand-agordojn" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Avert-agordoj" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Montri avert-agordojn" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Skaloagordoj" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Montri skaloagordojn" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Agordoj de tekstinformoj" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Montri agordojn de tekstinformoj" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Kolorelekt-agordoj" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Montri kolorelekt-agordojn" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Pasvortdialog-opcioj" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Montri pasvortdialog-opciojn" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Formdialogaj opcioj" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Montri formdialogajn opciojn" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Diversaj opcioj" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Montri diversajn opciojn" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Tiu agordo ne estas disponebla. Bonvole rigardu --help por eblaj uzadoj.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s estas ne subtenita por tiu dialogo\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Specifis du aŭ pli dialogajn opciojn\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Enigu vian pasvorton" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Enigu viajn uzantonomon kaj pasvorton" - -#: src/password.c:100 -msgid "Username:" -msgstr "Uzantonomo:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Pasvorto:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tempo restanta: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimuma valoro devas esti pli granda ol minimuma valoro.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valoro estas ekster la intervalo.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Neniu kolumna titolo agordita por lista dialogo.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Vi devus uzi nur unu listan dialogan specon.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Agordi la skal-valoron" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Nuligi" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Bone" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekst-vido" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalendaro-elekto" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Elekti daton malsupre." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendaro:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Aldoni novan elementon" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Enigi novan tekston:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Eraro" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Eraro okazis." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formular-dialogujo" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informo" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Ĉiuj ĝisdatigoj estas kompletaj." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progreso" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Rulante..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Demando" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Ĉu vi estas certa ke vi volas procedi?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Elekti elementojn de la listo" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Elektu elementojn de la suba listo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Averto" diff --git a/po/es.po b/po/es.po deleted file mode 100644 index 095305c..0000000 --- a/po/es.po +++ /dev/null @@ -1,904 +0,0 @@ -# translation of zenity.HEAD.po to Español -# Spanish translation for Zenity. -# Copyright © 2003, 2006, 2007, 2008 the Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Pablo Gonzalo del Campo , 2003. -# Francisco Javier F. Serrador , 2004, 2005. -# Francisco Javier F. Serrador , 2006. -# Jorge González , 2007, 2009, 2010, 2011. -# -# Daniel Mustieles , 2011-2015, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-14 12:57+0100\n" -"Last-Translator: Daniel Mustieles \n" -"Language-Team: es \n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.6\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Este programa es software libre; puede redistribuirlo y/o modificarlo bajo " -"los términos de la Licencia Pública General Reducida de GNU tal como se " -"publica por la Free Software Foundation; ya sea la versión 2 de la Licencia, " -"o (a su elección) cualquier versión posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Este programa se distribuye con la esperanza de que le sea útil, pero SIN " -"NINGUNA GARANTÍA; sin incluso la garantía implícita de MERCANTILIDAD o " -"IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Vea la Licencia Pública General " -"Reducida de GNU para más detalles.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Debería haber recibido una copia de la Licencia Pública General Reducida de " -"GNU junto con este programa, si no es así, escriba a la Free Software " -"Foundation, Inc, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 EE. " -"UU." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Daniel Mustieles , 2012 - 2015\n" -"Jorge González , 2007-2010\n" -"Francisco Javier F. Serrador , 2006\n" -"Pablo G. del Campo , 2003" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostrar cajas de diálogos desde los scripts de shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Aceptar" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancelar" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Debe especificar un tipo de diálogo. Vea «zenity --help» para obtener más " -"información\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_No" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sí" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "No se pudo analizar el mensaje\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valor no válido para una opción de tipo booleano.\n" -"Los valores soportados son «true» o «false».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Opción no válida. Omitiendo.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nombre de opción desconocido. Omitiendo.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "No se pudo analizar el comando desde stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificación de Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Establecer el título del diálogo" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTULO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Establecer el icono de la ventana" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "RUTAICONO" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Establecer la anchura" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ANCHURA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Establecer la altura" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTURA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Establecer el tiempo de expiración del diálogo en segundos" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIEMPO DE EXPIRACIÓN" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Establece la etiqueta del botón Aceptar" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXTO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Establece la etiqueta del botón Cancelar" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Añadir un botón adicional" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Establecer la opción modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Establecer la ventana padre a la que acoplarse" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "VENTANA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostrar el diálogo del calendario" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Establecer el texto del diálogo" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Establecer el día del calendario" - -#: src/option.c:252 -msgid "DAY" -msgstr "DÍA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Establecer el mes del calendario" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MES" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Establecer el año del calendario" - -#: src/option.c:266 -msgid "YEAR" -msgstr "AÑO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Establecer el formato para la fecha retornada" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATRÓN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostrar el diálogo de entrada de texto" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Establecer el texto de entrada" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ocultar el texto de entrada" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostrar el diálogo de error" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Establecer el icono del diálogo" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOMBRE-DEL-ICONO" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "No activar el ajuste de texto" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "No activar el marcado de Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Activar la elipsis en el diálogo de texto. Esto corrige el tamaño alto de la " -"ventana con textos largos" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostrar el diálogo de información" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostrar el diálogo de selección de archivo" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Establecer el nombre del archivo" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILENAME" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permitir la selección de archivos múltiples" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activar selección de carpetas exclusivamente" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activar modo seguro" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Establecer el carácter separador de la salida" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmar selección de archivos si el nombre ya existe" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Establece un filtro por el nombre de archivo" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOMBRE | PATRÓN1 PATRÓN2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostrar el diálogo de lista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Establecer la cabecera de la columna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Usar casillas de verificación para la primera columna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Usar botones de radio para la primera columna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Usar una imagen para la primera columna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permitir la selección de filas múltiples" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permitir cambios en el texto" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprimir una columna específica (predeterminado es 1, «ALL» se puede usar " -"para imprimir todas las columnas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NÚMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Ocultar una columna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Ocultar las cabeceras de la columna" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Cambiar la función de búsqueda predeterminada en listas para buscar texto en " -"el medio, no al principio" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostrar notificación" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Establecer el texto de notificación" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Escuchar comandos en stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Establecer las opciones de notificación" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostrar el diálogo de indicación de progreso" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Establecer el porcentaje inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PORCENTAJE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Barra de progreso parpadeante" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Rechazar el diálogo cuando el 100% haya sido alcanzado" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Matar el proceso padre si se pulsa el botón «Cancelar»" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ocultar el botón «Cancelar»" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimar cuando el progreso llega al 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostrar el diálogo de pregunta" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Dar el foco al botón de cancelar de manera predeterminada" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Eliminar los botones «Aceptar» y «Cancelar»" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostrar el diálogo de texto de información" - -#: src/option.c:715 -msgid "Open file" -msgstr "Abrir archivo" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Establecer la tipografía del texto" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Activa una casilla «He leído y acepto»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Activar soporte de HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"No activar la interacción del usuario con la WebView. Sólo funciona si usa " -"la opción «--html»" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Configura un URL en lugar de un archivo. Sólo funciona si usa la opción «--" -"html»" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Desplazar el texto automáticamente hasta el final. Sólo cuando se captura " -"texto de la entrada estándar" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostrar el diálogo de advertencia" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostrar el diálogo de escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Establecer el valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Establecer el valor mínimo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Establecer el valor máximo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Establecer el tamaño del paso" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprimir valores parciales" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ocultar valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostrar el diálogo de formularios" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Añadir una entrada nueva en el diálogo de formularios" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nombre del campo" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Añadir una contraseña nueva en el diálogo de formularios" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Añadir un calendario nuevo en el diálogo de formularios" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nombre del campo del calendario" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Añadir una lista nueva en el diálogo de formularios" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Listar el nombre del campo y de la cabecera" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista de valores por lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista de valores separados por |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista de valores por columnas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Añadir una caja combinada nueva en el diálogo de formularios" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nombre del campo de la caja combinada" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista de valores para la caja combinada" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostrar la cabecera de las columnas" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostrar el diálogo de contraseña" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostrar la opción del nombre de usuario" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostrar el diálogo de selección de color" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Establecer el color" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostrar la paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Acerca de zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprimir versión" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opciones generales" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostrar opciones generales" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opciones del calendario" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostrar opciones del calendario" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opciones de la entrada de texto" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostrar las opciones de la entrada de texto" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opciones de error" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostrar las opciones de error" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opciones de información" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostrar las opciones de información" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opciones de selección de archivo" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostrar las opciones de selección de archivo" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opciones de la lista" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostrar las opciones de la lista" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opciones del icono de notificación" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostrar opciones del icono de notificación" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opciones de progreso" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostrar las opciones de progreso" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opciones de pregunta" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostrar las opciones de pregunta" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opciones de advertencia" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostrar las opciones de advertencia" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opciones de escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Muestra las opciones de escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opciones del texto de información" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostrar opciones del texto de información" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opciones de selección de color" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostrar las opciones de selección de color" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opciones del diálogo de contraseña" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostrar las opciones del diálogo de contraseña" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opciones del diálogo de formularios" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostrar las opciones del diálogo de formularios" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opciones misceláneas" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostrar opciones misceláneas" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Esta opción no está disponible. Por favor vea --help para todos los usos " -"posibles.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s no está soportado para este diálogo\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Se han especificado opciones para dos o más diálogos\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Escriba su contraseña" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Escriba su nombre de usuario y su contraseña" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nombre de usuario:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Contraseña:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tiempo restante: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "El valor máximo debe ser mayor que el valor mínimo.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valor fuera de rango.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" -"No se han especificado los títulos de columnas para el diálogo de la lista\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Debería usar sólo un tipo de diálogo List.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajustar el valor de la escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancelar" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Aceptar" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vista de texto" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selección de calendario" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Seleccione una fecha de abajo." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendario:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Añadir una entrada nueva" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Introduzca un texto nuevo:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Error" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Ha ocurrido un error." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diálogo de formularios" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Información" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Todas las actualizaciones están terminadas." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progreso" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Ejecutándose…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pregunta" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "¿Está seguro de que quiere continuar?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Seleccione elementos de la lista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Seleccione elementos de la lista de abajo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Advertencia" - -#~ msgid "Select a file" -#~ msgstr "Seleccione un archivo" diff --git a/po/et.po b/po/et.po deleted file mode 100644 index 73e8476..0000000 --- a/po/et.po +++ /dev/null @@ -1,627 +0,0 @@ -# Zenity eesti keele tõlge. -# Estonian translation of Zenity. -# -# Copyright (C) 2003–2006 Free Software Foundation, Inc -# Copyright (C) 2007–2011 The GNOME Project. -# This file is distributed under the same license as the Zenity package. -# -# Priit Laes , 2003–2006. -# Ivar Smolin , 2005–2011. -# Mattias Põldaru , 2012, 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity MASTER\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-09-10 18:37+0000\n" -"PO-Revision-Date: 2013-09-11 23:19+0300\n" -"Last-Translator: Mattias Põldaru \n" -"Language-Team: Estonian \n" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"X-Generator: Poedit 1.5.4\n" - -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Käesolev programm on vaba tarkvara; Te võite seda levitada ja/või muuta " -"vastavalt GNU vähem üldise avaliku litsentsi tingimustele, nagu need on " -"sõnastanud Vaba Tarkvara Fond; kas litsentsi versioonis number 2 või " -"(vastavalt Teie valikule) ükskõik millises hilisemas versioonis.\n" - -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Seda programmi levitatakse lootuses, et see on kasulik, kuid ILMA IGASUGUSE " -"GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDI GARANTIITA või SOBIVUSELE " -"TEATUD KINDLAKS EESMÄRGIKS. Üksikasjade suhtes vaata GNU Vähem Üldist " -"Avalikku Litsentsi.\n" - -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Te peaksite olema saanud GNU vähem üldise avaliku litsentsi koopia koos " -"selle programmiga, kui ei, siis võtke ühendust Vaba Tarkvara Fondiga, Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA." - -msgid "translator-credits" -msgstr "" -"Priit Laes , 2003–2006.\n" -"Ivar Smolin , 2005–2011." - -msgid "Display dialog boxes from shell scripts" -msgstr "Dialoogiakende kuvamine terminali skriptidest" - -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Sa pead määrama dialoogiliigi. Lisateavet saad 'zenity --help' käsuga\n" - -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Sobimatu väärtus sisestatud tõeväärtuse jaoks.\n" -"Lubatud väärtused on 'true' ja 'false'.\n" - -#. (iibiiay) -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "Vihje pole toetatud. Jäetakse vahele.\n" - -#. unknown hints -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "Tundmatu vihje nimi. Jäetakse vahele.\n" - -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "standardsisendist tulnud käsku pole võimalik töödelda\n" - -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "Standardsisendist tulnud käsku pole võimalik töödelda\n" - -msgid "Zenity notification" -msgstr "Zenity teavitus" - -msgid "Type your password" -msgstr "Sisesta oma kasutajanimi" - -msgid "Username:" -msgstr "Kasutajanimi:" - -msgid "Password:" -msgstr "Parool:" - -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Suurim väärtus peab olema suurem kui väikseim väärtus.\n" - -#, c-format -msgid "Value out of range.\n" -msgstr "Väärtus on väljaspool lubatud piirkonda.\n" - -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Veergude pealkirjad pole loendidialoogi jaoks määratud.\n" - -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Sa peaks kasutama ainult ühte loendidialoogi liiki\n" - -msgid "Calendar selection" -msgstr "Kalendrivalik" - -msgid "Select a date from below." -msgstr "Vali allolevast kalendrist kuupäev." - -msgid "C_alendar:" -msgstr "_Kalender:" - -msgid "Add a new entry" -msgstr "Uue kirje lisamine" - -msgid "_Enter new text:" -msgstr "_Sisesta uus tekst:" - -msgid "Error" -msgstr "Viga" - -msgid "An error has occurred." -msgstr "Tekkis veaolukord." - -msgid "Forms dialog" -msgstr "Vormidialoog" - -msgid "Information" -msgstr "Teave" - -msgid "All updates are complete." -msgstr "Kõik uuendused on valmis." - -msgid "Progress" -msgstr "Edenemine" - -msgid "Running..." -msgstr "Töötab..." - -msgid "Question" -msgstr "Küsimus" - -msgid "Are you sure you want to proceed?" -msgstr "Oled sa kindel, et soovid jätkata?" - -msgid "Adjust the scale value" -msgstr "Skaala väärtuse kohandamine" - -msgid "Text View" -msgstr "Tekstivaade" - -msgid "Select items from the list" -msgstr "Kirjete valimine loendist" - -msgid "Select items from the list below." -msgstr "Vali allolevast loendist kirjed." - -msgid "Warning" -msgstr "Hoiatus" - -msgid "Set the dialog title" -msgstr "Dialoogi pealkirja määramine" - -msgid "TITLE" -msgstr "PEALKIRI" - -msgid "Set the window icon" -msgstr "Akna ikooni määramine" - -msgid "ICONPATH" -msgstr "IKOONIRADA" - -msgid "Set the width" -msgstr "Laiuse määramine" - -msgid "WIDTH" -msgstr "LAIUS" - -msgid "Set the height" -msgstr "Kõrguse määramine" - -msgid "HEIGHT" -msgstr "KÕRGUS" - -msgid "Set dialog timeout in seconds" -msgstr "Dialoogi ajapiirangu määramine sekundites" - -#. Timeout for closing the dialog -msgid "TIMEOUT" -msgstr "AJAPIIRANG" - -msgid "Sets the label of the Ok button" -msgstr "Olgu-nupule sildi määramine" - -msgid "TEXT" -msgstr "TEKST" - -msgid "Sets the label of the Cancel button" -msgstr "Loobu-nupule sildi määramine" - -msgid "Set the modal hint" -msgstr "Modaalakna vihje määramine" - -msgid "Set the parent window to attach to" -msgstr "Vanemakna määramine, mille külge ühenduda" - -msgid "WINDOW" -msgstr "AKEN" - -msgid "Display calendar dialog" -msgstr "Kalendridialoogi kuvamine" - -msgid "Set the dialog text" -msgstr "Dialoogi teksti määramine" - -msgid "Set the calendar day" -msgstr "Kalendrile päeva määramine" - -msgid "DAY" -msgstr "PÄEV" - -msgid "Set the calendar month" -msgstr "Kalendrile kuu määramine" - -msgid "MONTH" -msgstr "KUU" - -msgid "Set the calendar year" -msgstr "Kalendrile aasta määramine" - -msgid "YEAR" -msgstr "AASTA" - -msgid "Set the format for the returned date" -msgstr "Tagastatava kuupäeva vormingu määramine" - -msgid "PATTERN" -msgstr "MUSTER" - -msgid "Display text entry dialog" -msgstr "Tekstisisestusdialoogi kuvamine" - -msgid "Set the entry text" -msgstr "Tekstivälja väärtuse määramine" - -msgid "Hide the entry text" -msgstr "Tekstivälja väärtuse peitmine" - -msgid "Display error dialog" -msgstr "Veadialoogi kuvamine" - -msgid "Set the dialog icon" -msgstr "Dialoogi ikooni määramine" - -msgid "ICON-NAME" -msgstr "IKOONI-NIMI" - -msgid "Do not enable text wrapping" -msgstr "Tekstimurdmise keelamine" - -msgid "Do not enable pango markup" -msgstr "Pango märkekeel keelatud" - -msgid "Display info dialog" -msgstr "Teabedialoogi kuvamine" - -msgid "Display file selection dialog" -msgstr "Failivaliku dialoogi kuvamine" - -msgid "Set the filename" -msgstr "Failinime määramine" - -msgid "FILENAME" -msgstr "FAILINIMI" - -msgid "Allow multiple files to be selected" -msgstr "Mitme faili samaaegse valimise lubamine" - -msgid "Activate directory-only selection" -msgstr "Ainult kataloogide valimise aktiveerimine" - -msgid "Activate save mode" -msgstr "Salvestusrežiimi aktiveerimine" - -msgid "Set output separator character" -msgstr "Väljundi eraldusmärgi määramine" - -msgid "SEPARATOR" -msgstr "ERALDAJA" - -msgid "Confirm file selection if filename already exists" -msgstr "Juba olemasoleva failinime korral faili valiku kinnituse küsimine" - -msgid "Sets a filename filter" -msgstr "Failinimede filtri määramine" - -#. Help for file-filter argument (name and patterns for file selection) -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NIMI | MUSTER1 MUSTER2 ..." - -msgid "Display list dialog" -msgstr "Nimekirjadialoogi kuvamine" - -msgid "Set the column header" -msgstr "Veeru päise valimine" - -msgid "COLUMN" -msgstr "VEERG" - -msgid "Use check boxes for first column" -msgstr "Märkeruutude kasutamine esimeses veerus" - -msgid "Use radio buttons for first column" -msgstr "Raadionuppude kasutamine esimeses veerus" - -msgid "Use an image for first column" -msgstr "Pildi kasutamine esimeses veerus" - -msgid "Allow multiple rows to be selected" -msgstr "Mitme rea samaaegse valimise lubamine" - -msgid "Allow changes to text" -msgstr "Teksti muutmise lubamine" - -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Määratud tulba printimine (Vaikimisi 1. Parameetri 'ALL' abil saab kõik " -"tulbad korraga väljastada)" - -#. Column index number to print out on a list dialog -msgid "NUMBER" -msgstr "NUMBER" - -msgid "Hide a specific column" -msgstr "Määratud veeru peitmine" - -msgid "Hides the column headers" -msgstr "Veerupäiste peitmine" - -msgid "Display notification" -msgstr "Teavituse kuvamine" - -msgid "Set the notification text" -msgstr "Teavitusteksti määramine" - -msgid "Listen for commands on stdin" -msgstr "Standardsisendist tulevate käskude kuulamine" - -msgid "Set the notification hints" -msgstr "Teavitusvihjete määramine" - -msgid "Display progress indication dialog" -msgstr "Edenemisnäidiku dialoogi kuvamine" - -msgid "Set initial percentage" -msgstr "Lähteprotsendi määramine" - -msgid "PERCENTAGE" -msgstr "PROTSENT" - -msgid "Pulsate progress bar" -msgstr "Pulseeriv olekuriba" - -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Dialoogi sulgemine 100% saavutamisel" - -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "Vanemprotsessi kõrvaldamine tühistusnupu vajutamisel" - -#, no-c-format -msgid "Hide Cancel button" -msgstr "Tühistusnupu peitmine" - -msgid "Display question dialog" -msgstr "Küsimusdialoogi kuvamine" - -msgid "Display text information dialog" -msgstr "Tekstiteabedialoogi kuvamine" - -msgid "Open file" -msgstr "Faili avamine" - -msgid "Set the text font" -msgstr "Kirjatüübi määramine" - -msgid "Enable an I read and agree checkbox" -msgstr "\"Ma olen lugenud ja nõustun\" märkeruudu lubamine" - -msgid "Enable html support" -msgstr "HTML-i toe lubamine" - -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "Faili asemel URLi määramine. Töötab ainult koos --html valikuga" - -msgid "URL" -msgstr "URL" - -msgid "Display warning dialog" -msgstr "Hoiatusdialoogi kuvamine" - -msgid "Display scale dialog" -msgstr "Skaaladialoogi kuvamine" - -msgid "Set initial value" -msgstr "Lähteväärtuse määramine" - -msgid "VALUE" -msgstr "VÄÄRTUS" - -msgid "Set minimum value" -msgstr "Väikseima väärtuse määramine" - -msgid "Set maximum value" -msgstr "Suurima väärtuse määramine" - -msgid "Set step size" -msgstr "Sammu suuruse määramine" - -msgid "Print partial values" -msgstr "Osaliste väärtuste printimine" - -msgid "Hide value" -msgstr "Väärtuse peitmine" - -msgid "Display forms dialog" -msgstr "Vormidialoogi kuvamine" - -msgid "Add a new Entry in forms dialog" -msgstr "Vormidialoogile uue välja lisamine" - -msgid "Field name" -msgstr "Välja nimi" - -msgid "Add a new Password Entry in forms dialog" -msgstr "Vormidialoogile uue paroolivälja lisamine" - -msgid "Add a new Calendar in forms dialog" -msgstr "Vormidialoogile uue kalendri lisamine" - -msgid "Calendar field name" -msgstr "Kalendrivälja nimi" - -msgid "Add a new List in forms dialog" -msgstr "Vormidialoogile uue loendi lisamine" - -msgid "List field and header name" -msgstr "Loendi väli ja päise nimi" - -msgid "List of values for List" -msgstr "Loendis olevate väärtuste loend" - -msgid "List of values separated by |" -msgstr "Väärtuste loend, eraldaja |" - -msgid "List of values for columns" -msgstr "Tulpade väärtuste loend" - -msgid "Show the columns header" -msgstr "Tulba päise kuvamine" - -msgid "Display password dialog" -msgstr "Paroolidialoogi kuvamine" - -msgid "Display the username option" -msgstr "Kasutajanime valiku kuvamine" - -msgid "Display color selection dialog" -msgstr "Värvuse valimise dialoogi kuvamine" - -msgid "Set the color" -msgstr "Värvuse määramine" - -msgid "Show the palette" -msgstr "Paleti näitamine" - -msgid "About zenity" -msgstr "Zenity-st lähemalt" - -msgid "Print version" -msgstr "Versiooni andmete kuvamine" - -msgid "General options" -msgstr "Üldised valikud" - -msgid "Show general options" -msgstr "Üldiste valikute kuvamine" - -msgid "Calendar options" -msgstr "Kalendri valikud" - -msgid "Show calendar options" -msgstr "Kalendri valikute kuvamine" - -msgid "Text entry options" -msgstr "Tekstisisestuse valikud" - -msgid "Show text entry options" -msgstr "Tekstisisestusvalikute kuvamine" - -msgid "Error options" -msgstr "Vea valikud" - -msgid "Show error options" -msgstr "Vea valikute kuvamine" - -msgid "Info options" -msgstr "Teabe valikud" - -msgid "Show info options" -msgstr "Teabe valikute kuvamine" - -msgid "File selection options" -msgstr "Failivalimise valikud" - -msgid "Show file selection options" -msgstr "Failivalimise valikute kuvamine" - -msgid "List options" -msgstr "Nimekirja valikud" - -msgid "Show list options" -msgstr "Nimekirja valikute kuvamine" - -msgid "Notification icon options" -msgstr "Teavitusikooni valikud" - -msgid "Show notification icon options" -msgstr "Teavitusikooni valikute kuvamine" - -msgid "Progress options" -msgstr "Edenemise valikud" - -msgid "Show progress options" -msgstr "Edenemisnäidiku sätete kuvamine" - -msgid "Question options" -msgstr "Küsimuse valikud" - -msgid "Show question options" -msgstr "Küsimuse valikute kuvamine" - -msgid "Warning options" -msgstr "Hoiatuse valikud" - -msgid "Show warning options" -msgstr "Hoiatuse valikute kuvamine" - -msgid "Scale options" -msgstr "Skaala valikud" - -msgid "Show scale options" -msgstr "Skaala valikute näitamine" - -msgid "Text information options" -msgstr "Tekstiteabe valikud" - -msgid "Show text information options" -msgstr "Tekstiteabe valikute kuvamine" - -msgid "Color selection options" -msgstr "Värvusevalimise valikud" - -msgid "Show color selection options" -msgstr "Värvusevalimise valikute kuvamine" - -msgid "Password dialog options" -msgstr "Paroolidialoogi valikud" - -msgid "Show password dialog options" -msgstr "Paroolidialoogi valikute kuvamine" - -msgid "Forms dialog options" -msgstr "Vormidialoogi valikud" - -msgid "Show forms dialog options" -msgstr "Vormidialoogi valikute kuvamine" - -msgid "Miscellaneous options" -msgstr "Mitmesugused valikud" - -msgid "Show miscellaneous options" -msgstr "Mitmesugusete muude valikute kuvamine" - -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"See valik ei ole saadaval. Palun vaata --help võtit võimalike " -"kasutusvõimaluste jaoks.\n" - -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ei ole selle dialoogitüübi poolt toetatud\n" - -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Määratud on kaks või enam dialoogiliiki\n" - -#~ msgid "Kill parent process if cancel button is pressed" -#~ msgstr "Vanemprotsessi kõrvaldamine tühistusnupu vajutamisel" diff --git a/po/eu.po b/po/eu.po deleted file mode 100644 index ce98069..0000000 --- a/po/eu.po +++ /dev/null @@ -1,862 +0,0 @@ -# Basque translation of Zenity. -# Copyright (C) 2003, 2004, 2006, 2007, 2008, 2010, 2011 the Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# -# Alberto Fernández Benito , 2003. -# Iñaki Larrañaga Murgoitio , 2003, 2004, 2005, 2006, 2007, 2008, 2010. -# Iñaki Larrañaga Murgoitio , 2011, 2012, 2013, 2014, 2015, 2016, 2018. -msgid "" -msgstr "Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2018-11-17 17:58+0100\n" -"Last-Translator: Iñaki Larrañaga Murgoitio \n" -"Language-Team: Basque \n" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "Programa hau software librea da; birbana eta/edo alda dezakezu Software Foundation-ek argitaratutako GNU Hedadura Txikiagoko Lizentzia Publiko Orokorraren 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako baldintzak betez gero.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "Programa hau erabilgarria izango delakoan banatzen da, baina, INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO. Argibide gehiago nahi izanez gero, ikus GNU Hedadura Txikiagoko Lizentzia Publiko Orokorra.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "Programa honekin batera GNU Hedadura Txikiagoko Lizentzia Publiko Orokorraren kopia bat jasoko zenuen; hala ez bada, idatzi hona: Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "Alberto Fernández \n" -"Iñaki Larrañaga Murgotio " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Bistaratu elkarrizketa-koadroak shell-eko script-etatik" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Ados" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Utzi" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Elkarrizketa-koadro mota bat zehaztu behar duzu. Ikusi 'zenity --help' xehetasun gehiagorako\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ez" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Bai" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Ezin izan da mezua aztertu\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "Idatzitako argibide boolearraren baliogabeko balioa.\n" -"Onartutako balioak 'true' edo 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Onartu gabeko argibidea. Baztertzen.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Argibidearen izena ezezaguna. Baztertzen.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Ezin izan da stdin-eko komandoa analizatu\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-ren jakinarazpena" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Ezarri elkarrizketa-koadroaren izenburua" - -#: src/option.c:165 -msgid "TITLE" -msgstr "IZENBURUA" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Ezarri leihoaren ikonoa" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "IKONOBIDEA" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Ezarri zabalera" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ZABALERA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Ezarri altuera" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTUERA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Ezarri elkarrizketa-koadroaren denbora-muga (segundotan)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "DENBORA-MUGA" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Ezarri 'Ados' botoiaren etiketa" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TESTUA" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Ezarri 'Utzi' botoiaren etiketa" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Gehitu botoi gehigarri bat" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Ezarri argibidearen modua" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Ezarri leiho gurasoa (honi atxikitzeko)" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "LEIHOA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Bistaratu egutegiaren elkarrizketa-koadroa" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Ezarri elkarrizketa-koadroaren testua" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Ezarri egutegiaren eguna" - -#: src/option.c:252 -msgid "DAY" -msgstr "EGUNA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Ezarri egutegiaren hilabetea" - -#: src/option.c:259 -msgid "MONTH" -msgstr "HILABETEA" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Ezarri egutegiaren urtea" - -#: src/option.c:266 -msgid "YEAR" -msgstr "URTEA" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Ezarri itzulerako dataren formatua" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "EREDUA" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Bistaratu testua sartzeko elkarrizketa-koadroa" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Ezarri sarreraren testua" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ezkutatu sarreraren testua" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Bistaratu errorearen elkarrizketa-koadroa" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Ezarri elkarrizketa-koadroaren ikonoa" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "IKONO-IZENA" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ez gaitu testua egokitzea" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ez gaitu Pango-ren markatzea" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "Gaitu elipsia testuaren elkarrizketa-koadroan. Testu luzeko leihoen altuera zuzentzen du honek." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Bistaratu informazioaren elkarrizketa-koadroa" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Bistaratu fitxategiak hautatzeko elkarrizketa-koadroa" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Ezarri fitxategiaren izena" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FITXATEGI-IZENA" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Baimendu fitxategi anitzen hautapena" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktibatu 'direktorioa soilik' hautapena" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktibatu babes modua" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Ezarri irteerako karaktere bereizlea" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "BEREIZLEA" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Baieztatu fitxategiaren hautapena fitxategia jadanik existitzen bada" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Ezarri fitxategi-izenaren iragazkia" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "IZENA | EREDUA1 EREDUA2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Bistaratu zerrendaren elkarrizketa-koadroa" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Ezarri zutabearen goiburua" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "ZUTABEA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Erabili kontrol-laukiak lehenengo zutabean" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Erabili irrati-botoiak lehenengo zutabean" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Erabili irudi bat lehenengo zutabean" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Baimendu errenkada anitzen hautapena" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Baimendu aldaketak testuan" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "Inprimatu zutabe zehatz bat (lehenetsia 1 da. Erabili 'ALL' zutabe guztiak inprimatzeko)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ZENBAKIA" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Ezkutatu zutabe zehatz bat" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Ezkutatu zutabearen goiburuak" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "Aldatu zerrendaren bilaketa funtzio lehenetsia, testuaren bilaketa erdian (ez hasieran) bilatzeko." - -#: src/option.c:557 -msgid "Display notification" -msgstr "Bistaratu jakinarazpena" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Ezarri jakinarazpenaren testua" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Entzun 'stdin'eko komandoei" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Ezarri jakinarazpenaren argibideak" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Bistaratu progresioaren elkarrizketa-koadroa" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Ezarri hasierako ehunekoa" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "EHUNEKOA" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Progresio-barra keinukaria" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Itxi elkarrizketa-koadroa %100 lortzean" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Hil prozesu-gurasoa 'Utzi' botoia sakatzean" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ezkutatu 'Utzi' botoia" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Aurreikusi aurrerapena noiz iritsiko den %100era" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Bistaratu galderen elkarrizketa-koadroa" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Eman fokua 'Utzi' botoiari lehenetsi gisa" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Kendu 'Ados' eta 'Utzi' botoiak" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Bistaratu testu-informazioaren elkarrizketa-koadroa" - -#: src/option.c:715 -msgid "Open file" -msgstr "Ireki fitxategia" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Ezarri testuaren letra-tipoa" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Gaitu 'Irakurri eta onartzen dut' kontrol-koadroa" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Gaitu HTML euskarria" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "Ez gaitu erabiltzailearen WebView-rekin elkarreragiketa. Soilik --html aukerarekin funtzionatzen du" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Ezarri URL bat fitxategi baten ordez. Soilik --html aukerarekin funtzionatzen du" - -#: src/option.c:761 -msgid "URL" -msgstr "URLa" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "Korritu automatikoki testua amaierara. Soilik testua sarrera estandarretik jasotzen denean" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Bistaratu abisuaren elkarrizketa-koadroa" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Bistaratu eskalaren elkarrizketa-koadroa" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Ezarri hasierako balioa" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "BALIOA" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Ezarri gutxieneko balioa" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Ezarri gehienezko balioa" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Ezarri urratsaren tamaina" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Inprimatu balio partzialak" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ezkutatu balioa" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Bistaratu inprimakien elkarrizketa-koadroa" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Gehitu sarrera berria inprimakien elkarrizketa-koadroari" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Eremuaren izena" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Gehitu pasahitzaren sarrera berri bat inprimakien elkarrizketa-koadroari" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Gehitu egutegi berria inprimakien elkarrizketa-koadroari" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Egutegia eremuaren izena" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Gehitu zerrenda sarrera berria inprimakien elkarrizketa-koadroan" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Zerrendatu eremu eta goiburuaren izena" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Zerrendaren balioak zerrendarentzako" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Zerrendako balioak |-rekin bereiztuta" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Balioen zerrenda zutabeentzako" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Gehitu konbinazio-koadro berria inprimakien elkarrizketa-koadroan" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Konbinazio-koadroaren eremuaren izena" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Balioen zerrenda konbinazio-koadroarentzako" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Erakutsi zutabearen goiburua" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Bistaratu pasahitzaren elkarrizketa-koadroa" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Bistaratu erabiltzaile-izenaren elkarrizketa-koadroa" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Bistaratu kolorea hautatzeko elkarrizketa-koadroa" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Ezarri kolorea" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Erakutsi paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Zenity-ri buruz" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Inprimatu bertsioa" - -#: src/option.c:1913 -msgid "General options" -msgstr "Aukera orokorrak" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Erakutsi aukera orokorrak" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Egutegiaren aukerak" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Erakutsi egutegiaren aukerak" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Testu-sarreraren aukerak" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Erakutsi testu-sarreraren aukerak" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Errore-aukerak" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Erakutsi errore-aukerak" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Informazioaren aukerak" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Erakutsi informazioaren aukerak" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Fitxategiak hautatzeko aukerak" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Erakutsi fitxategiak hautatzeko aukerak" - -#: src/option.c:1985 -msgid "List options" -msgstr "Zerrendaren aukerak" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Erakutsi zerrendaren aukerak" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Jakinarazpen-ikonoaren aukerak" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Erakutsi jakinarazpen-ikonoaren aukerak" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progresioaren aukerak" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Erakutsi progresioaren aukerak" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Galderaren aukerak" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Erakutsi galderaren aukerak" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Abisuaren aukerak" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Erakutsi abisuaren aukerak" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Eskalaren aukerak" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Erakutsi eskalaren aukerak" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Testu-informazioaren aukerak" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Erakutsi testu-informazioaren aukerak" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Kolorea hautatzeko aukerak" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Erakutsi kolorea hautatzeko aukerak" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Pasahitzaren elkarrizketa-koadroaren aukerak" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Erakutsi pasahitzaren elkarrizketa-koadroaren aukerak" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Inprimakien elkarrizketa-koadroaren aukerak" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Erakutsi inprimakien elkarrizketa-koadroaren aukerak" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Hainbat aukera" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Erakutsi hainbat aukera" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "Aukera hau ez dago erabilgarri. Ikusi --help erabilera guztiak ezagutzeko.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ez da onartzen elkarrizketa-koadro honetan\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Elkarrizketa-koadroaren bi aukera edo gehiago zehaztu dira\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Idatzi zure pasahitza" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Idatzi zure erabiltzaile-izena eta pasahitza" - -#: src/password.c:100 -msgid "Username:" -msgstr "Erabiltzaile-izena:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Pasahitza:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Geratzen den denbora: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Gehienezko balioak gutxieneko balioa baino handiagoa izan behar du.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Balioa barrutitik kanpo.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Ez da zutabe izenbururik zehaztu zerrendaren elkarrizketa-koadroan\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "'Zerrenda' motako elkarrizketa-koadroan bakarrik erabili beharko zenuke.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Doitu eskalaren balioa" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Utzi" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Ados" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Testu-ikuspegia" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Egutegiaren hautapena" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Hautatu beheko data bat." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Egutegia:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Gehitu sarrera berria" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Sartu _testu berria:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Errorea" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Errorea gertatu da." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Inprimakien elkarrizketa-koadroa" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informazioa" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Eguneraketa guztiak burutu dira." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Aurrerapena" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Exekutatzen..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Galdera" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Ziur zaude jarraitu nahi duzula?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Hautatu elementuak zerrendatik" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Hautatu elementuak beheko zerrendatik." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Abisua" diff --git a/po/fa.po b/po/fa.po deleted file mode 100644 index afb9e09..0000000 --- a/po/fa.po +++ /dev/null @@ -1,907 +0,0 @@ -# Persian translation of zenity. -# Copyright (C) 2011 Iranian Free Software Users Group (IFSUG.org)translation team. -# Copyright (C) 2004 Sharif FarsiWeb, Inc. -# This file is distributed under the same license as the zenity package. -# Roozbeh Pournader , 2004. -# Meelad Zakaria , 2004. -# Arash Mousavi , 2011, 2012. -# Danial Behzadi , 2013, 2014, 2015, 2016, 2017, 2018, 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity HEAD\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-09-07 11:06+0000\n" -"PO-Revision-Date: 2019-09-23 15:21+0000\n" -"Last-Translator: Danial Behzadi \n" -"Language-Team: Persian\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Generator: Poedit 2.2.1\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it under " -"the terms of the GNU Lesser General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) any " -"later version.\n" -msgstr "" -"زنیتی نرم‌افزار آزاد است؛ می‌توانید آن را تحت شرایط نگارش ۲ یا (بنا به نظرتان) هر " -"نگارش جدیدتری از پروانهٔ کم‌تر جامع همگانی گنو که بنیاد نرم‌افزارهای آزاد منتشر " -"کرده است،‌ تغییر داده یا بازتوزیع کنید.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT ANY " -"WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A " -"PARTICULAR PURPOSE. See the GNU Lesser General Public License for more " -"details.\n" -msgstr "" -"این برنامه به امید مفید بودن، ولی بدون هیچ ضمانتی توزیع شده است. حتا ضمانت ضمنی " -"قابل فروش بودن یا مناسب بودن برای هدفی خاص. برای جزییات بیش‌تر، پروانهٔ کم‌تر جامع " -"همگانی گنو را ببینید.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License along " -"with this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"باید نگارشی از پروانهٔ جامع همگانی گنو را دریافت کرده باشد؛ در غیر این صورت برای " -"شرکت بنیاد نرم افزارهای آزاد به نشانی زیر بنویسید: Inc., 51 Franklin Street, " -"Fifth Floor, Boston, MA 02110-1301 USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"آرش موسوی \n" -"دانیال بهزادی \n" -"روزبه پورنادر ‏\n" -"میلاد زکریا ‏" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "نمایش جعبه‌های محاوره از اسکریپت‌های پوسته" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_تأیید" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_لغو" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "باید یک نوع محاوره را مشخص کنبد. برای جزئیات «zenity --help» را ببینید\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_نه" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_بله" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "نمی‌توان پیام را تجزیه کرد\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"مقدار بولی نامعتبر برای نوع تذکر.\n" -"مقدار پشتیبانی شده شامل «true» یا «false» است.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "تذکر پشتیبانی نشده. درحال رد کردن.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "نام تذکر ناشناس. درحال رد کردن.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "نمی‌توان فرمان را از طریق stdin تجزیه کرد\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "اعلان زنیتی" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "تنظیم عنوان محاوره" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITLE" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "تنظیم نقشک پنجره" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "تنظیم پهنا" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "WIDTH" - -#: src/option.c:185 -msgid "Set the height" -msgstr "تنظیم بلندا" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "تنظیم زمان وقفهٔ محاوره به ثانیه" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "تنظیم برچسب برای دکمهٔ قبول" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "تنظیم برچسب برای دکمهٔ لغو" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "افزودن دکمه‌ای اضافی" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "تنظیم تذکر محاوره" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "تنظیم پنجرهٔ والد برای پیوست به آن" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "WINDOW" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "نمایش محاورهٔ تقویم" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "تنظیم متن محاوره" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "تنظیم روز تقویم" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "تنظیم ماه تقویم" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "تنظیم سال تقویم" - -#: src/option.c:266 -msgid "YEAR" -msgstr "YEAR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "تنظیم قالب زمان بازگشتی" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATTERN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "نمایش محاورهٔ ورودی متن" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "تنظیم متن ورودی" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "پنهان کردن متن ورودی" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "نمایش محاورهٔ خطا" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "تنظیم نقشک محاوره" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "پیچش متن را فعال نکن" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "به کار نینداختن نشانه‌گذاری‌های pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with long " -"texts" -msgstr "" -"به کار انداختن بریدن متن در مجاوره. این کار مشکل پنجره‌های بلند با متن‌‌های طولانی " -"را حل می‌کند" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "نمایش محاورهٔ اطلاعات" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "نمایش محاورهٔ انتخاب پرونده" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "تنظیم نام پرونده" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "نام‌پرونده" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "اجازه برای انتخاب پرونده‌های متعدد" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "فعال‌سازی انتخاب «فقط-شاخه‌ای»" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "فعال‌سازی حالت ذخیره" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "تنظیم نویسهٔ جداساز خروجی" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "جداساز" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "تایید انتخاب پرونده چناچه نام پرونده هم‌اکنون وجود دارد" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "تنظیم یک پالایندهٔ نام پرونده" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "نمایش محاورهٔ فهرست" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "تنظیم سرستون" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMNc" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "استفاده از جعبهٔ نشان‌زنی برای ستون نخست" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "استفاده از دکمهٔ رادیویی برای ستون نخست" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "استفاده از یک تصویر برای ستون نخست" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "اجازه برای انتخاب ردیف‌های متعدد" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "اجازه برای تغییرات متن" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "" -"یک ستون مشخص را چاپ می‌کند (پیش‌فرض ۱ است. 'ALL' می‌تواند برای چاپ همهٔ ستون‌ها به " -"کار گرفته شود.)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMBER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "مخفی کردن یک ستون خاص" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "مخفی کردن سرستون‌ها" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on the " -"beginning" -msgstr "تغییر تابع جست‌وجوی پیش‌گزیدهٔ فهرست برای متن در میانه، نه در ابتدا" - -#: src/option.c:557 -msgid "Display notification" -msgstr "نمایش اعلان" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "تنظیم متن اعلان" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "گوش‌سپردن به stdin برای فرمان‌ها" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "تنظیم تذکر اعلان" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "نمایش محاورهٔ نشانهٔ پیشرفت" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "تنظیم درصد اولیه" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "تپش نوار پیش‌رفت" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "کنار گذاشتن محاوره هنگامی که پیش‌رفت به ۱۰۰٪ رسید" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "کشتن فراروند والد، در صورت فشرده شده دکمهٔ لغو" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "مخفی کردن دکمهٔ لغو" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "تخمین زمان رسیدن پیشرفت به ۱۰۰٪" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "نمایش محاورهٔ سؤال" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "دادن تمرکز به دکمهٔ لغو به صورت پیش‌گزیده" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "خنثا کردن کردن دکمه‌های قبول و لغو" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "نمایش محاورهٔ اطلاعات متن" - -#: src/option.c:715 -msgid "Open file" -msgstr "باز کردن پرونده" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "تنظیم قلم متن" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "فعال ساختن یک مربع تیک برای «من و خواندم و قبول دارم»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "به کار انداختن پشتیبانی HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --html " -"option" -msgstr "" -"به کار نینداختن برهم‌کنش کاربر با نمای وب. تنها زمانی کار می‌کند که از گزینهٔ ‪--" -"html‬ استفاده کنید" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"یک آدرس را به جای پرونده تنظیم می‌کند. تنها زمانی کار می‌کند که از گزینهٔ ‪--html‬ " -"استفاده کنید" - -#: src/option.c:761 -msgid "URL" -msgstr "آدرس" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "لغزش خودکار متن تا پایان. تنها وقتی که متن از ورودی استاندارد گرفته می‌شود" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "نمایش محاورهٔ اخطار" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "نمایش محاورهٔ مقیاس" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "تنظیم مقدار اولیه" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALUE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "تنظیم مقدار کمینه" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "تنظیم مقدار بیشینه" - -#: src/option.c:856 -msgid "Set step size" -msgstr "تنظیم اندازه مرحله" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "چاپ مقادیر نسبی" - -#: src/option.c:870 -msgid "Hide value" -msgstr "مخفی‌سازی مقادیر" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "نمایش محاورهٔ فُرم‌ها" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "افزودن یک ورودی جدید به محاورهٔ فُرم‌ها" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "نام فیلد" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "اضافه‌کردن یک ورودی گذرواژه جدید در محاوره فُرم‌ها" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "اضافه‌کردن یک تقویم جدید به محاوره فُرم‌ها" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "نام فیلد تقویم" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "افزودن یک فهرست جدید در محاوره فرم‌ها" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "فهرست کردن فیلد و نام سرصفحه" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "فهرست مقدارها برای فهرست" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "فهرست مقدارها جدا شده توسط |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "فهرست مقدارها برای ستون‌ها" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "افزودن یک جعبهٔ چندتایی جدید در محاورهٔ فرم‌ها" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "نام فیلد جعبهٔ چندتایی" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "فهرست مقدارها برای جعبهٔ چندتایی" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "نمایش سرصفحه ستون‌ها" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "نمایش محاورهٔ گذرواژه" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "نمایش گزینه نام‌کاربری" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "نمایش محاورهٔ انتخاب رنگ" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "تنظیم رنگ" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "نمایش تخته‌رنگ" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "دربارهٔ زنیتی" - -#: src/option.c:1030 -msgid "Print version" -msgstr "چاپ نگارش" - -#: src/option.c:1913 -msgid "General options" -msgstr "گزینه‌های عمومی" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "نمایش گزینه‌های عمومی" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "گزینه‌های تقویم" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "نمایش گزینه‌های تقویم" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "گزینه‌های ورودی متن" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "نمایش گزینه‌های ورودی متن" - -#: src/option.c:1952 -msgid "Error options" -msgstr "گزینه‌های خطا" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "نمایش گزینه‌های خطا" - -#: src/option.c:1962 -msgid "Info options" -msgstr "گزینه‌های اطلاعات" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "نمایش گزینه‌های اطلاعات" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "گزینه‌های انتخاب پرونده" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "نمایش گزینه‌های انتخاب پرونده" - -#: src/option.c:1985 -msgid "List options" -msgstr "گزینه‌های فهرست" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "نمایش گزینه‌های فهرست" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "گزینه‌های نقشک اعلان" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "نمایش گزینه‌های نقشک اعلان" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "گزینه‌های پیشرفت" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "نمایش گزینه‌های پیشرفت" - -#: src/option.c:2024 -msgid "Question options" -msgstr "گزینه‌های سؤال" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "نمایش گزینه‌های سؤال" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "گزینه‌های اخطار" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "نمایش گزینه‌های اخطار" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "گزینه‌های مقیاس" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "نمایش گزینه‌های مقیاس" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "گزینه‌های اطلاعات متن" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "نمایش گزینه‌های اطلاعات متن" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "گزینه‌های انتخاب رنگ" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "نمایش گزینه‌های انتخاب رنگ" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "گزینه‌های محاوره گذرواژه" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "نمایش گزینه‌های محاوره گذرواژه" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "گزینه‌های محاوره فُرم‌ها" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "نمایش گزینه‌های محاوره فُرم‌ها" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "گزینه‌های متفرقه" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "نمایش گزینه‌های متفرقه" - -#: src/option.c:2139 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "این گزینه موجود نیست. لطفاً برای تمام مقدارهای ممکن، ‪--help‬ را ببینید.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s برای این محاوره پشتیبانی نمی‌شود\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "دو گزینهٔ محاوره یا بیشتر مشخص شده‌اند\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "گذرواژه خود را وارد کنید" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "نام کاربری و گذرواژه‌تان را وارد کنید" - -#: src/password.c:100 -msgid "Username:" -msgstr "نام‌کاربری:" - -#: src/password.c:110 -msgid "Password:" -msgstr "گذرواژه:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "زمان مانده: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "مقدار بیشینه باید بزرگتر از مقدار کمینه باشد.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "مقدار خارج از محدوده است.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "عنوان ستونی برای محاورهٔ فهرست مشخص نشده است.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "شما تنها باید از یک نوع فهرست محاوره استفاده کنید.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "تنظیم مقدار مقیاس" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "لغو" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "قبول" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "نمایش متن" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "انتخاب تقویم" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "تاریخی از پایین انتخاب کنید." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_تقویم:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "افزودن یک ورودی جدید" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "متن جدید را _وارد کنید:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "خطا" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "خطایی پیش آمده است." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "محاورهٔ فرم‌ها" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "اطلاعات" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "همهٔ به‌روز رسانی‌ها تکمیل شده‌اند." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "پیشرفت" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "در حال اجرا..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "سؤال" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "مطمئنید می‌خواهید ادامه دهید؟" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "اقلام را از فهرست انتخاب کنید" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "اقلام را از فهرست پایین انتخاب کنید." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "اخطار" - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "‎(C) 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "اسامی" - -#~ msgid "Written by" -#~ msgstr "نوشته‌ی" - -#~ msgid "Translated by" -#~ msgstr "ترجمه‌ی" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "درباره‌ی زنیتی" - -#~ msgid "Select a file" -#~ msgstr "یک پرونده انتخاب کنید" - -#~ msgid "_Credits" -#~ msgstr "_اسامی" diff --git a/po/fi.po b/po/fi.po deleted file mode 100644 index 1b04192..0000000 --- a/po/fi.po +++ /dev/null @@ -1,939 +0,0 @@ -# Finnish messages for Zenity -# Copyright (C) 2003 Free Software Foundation -# This file is distributed under the same license as the Zenity package. -# -# Gnome 2012-03 Finnish translation sprint participants: -# Timo Jyrinki -# Johanna Makkonen , 2003. -# Jarkko Ranta , 2003-2004. -# Sami Pesonen , 2004. -# Tommi Vainikainen , 2005, 2010-2011. -# Ilkka Tuohela , 2005-2008. -# Lasse Liehu , 2014. -# Jiri Grönroos , 2015, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity HEAD\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2018-03-11 08:56+0000\n" -"PO-Revision-Date: 2018-04-10 16:43+0300\n" -"Last-Translator: Jiri Grönroos \n" -"Language-Team: suomi \n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2012-02-19 15:25:30+0000\n" -"X-Generator: Poedit 2.0.6\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Tämä ohjelma on vapaa ohjelma; voit levittää sitä edelleen ja/tai muokata " -"sitä GNU:n Lesser General Public-lisenssin (LGPL) sallimilla tavoilla siten " -"kuin Free Software Foundation on sen määritellyt; voit halutessasi käyttää " -"lisenssin versiota 2 taikka mitä tahansa tämän jälkeen ilmestynyttä " -"versiota.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Tätä ohjelmaa levitetään siinä toivossa, että siitä on hyötyä, mutta ILMAN " -"MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta MYYNTIKELPOISUUDESTA TAI " -"SOVELTUMISESTA TIETTYYN ERITYISEEN TARKOITUKSEEN. Yksityiskohtien osalta " -"katso GNU:n LGPL-lisenssiä.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Sinun olisi pitänyt saada kopio GNU:n LGPL-lisenssistä tämän ohjelman " -"mukana; jos et sitä saanut, niin lähetä kirje Free Software Foundation, " -"Inc. :lle, 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA" - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Jiri Grönroos, 2015, 2017, 2018\n" -"Tommi Vainikainen, 2005\n" -"Ilkka Tuohela, 2005\n" -"Sami Pesonen, 2004\n" -"Jarkko Ranta, 2003-2004\n" -"Johanna Makkonen, 2003\n" -"\n" -"https://l10n.gnome.org/teams/fi/" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Näytä ikkunoita kuoren komentotiedostojen pohjalta" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Peru" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Ikkunatyyppi täytyy määrittää. Aja ”zenity --help” saadaksesi lisätietoja\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ei" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Kyllä" - -#: src/notification.c:50 -#, fuzzy -#| msgid "Could not parse message from stdin\n" -msgid "Could not parse message\n" -msgstr "vakiosyötteestä tullutta viestiä ei voi jäsentää\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "" - -#: src/notification.c:218 -#, fuzzy -#| msgid "could not parse command from stdin\n" -msgid "Could not parse command from stdin\n" -msgstr "vakiosyötteestä tullutta komentoa ei voi jäsentää\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-ilmoitus" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Aseta ikkunan otsikko" - -#: src/option.c:165 -msgid "TITLE" -msgstr "OTSIKKO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Aseta ikkunan kuvake" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "KUVAKE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Aseta leveys" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LEVEYS" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Aseta korkeus" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "KORKEUS" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Aseta ikkunan aikakatkaisu sekunteina" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "AIKAKATKAISU" - -#: src/option.c:200 -#, fuzzy -#| msgid "Sets the label of the Ok button" -msgid "Set the label of the OK button" -msgstr "Aseta OK-painikkeen tekstin" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKSTI" - -#: src/option.c:207 -#, fuzzy -#| msgid "Sets the label of the Cancel button" -msgid "Set the label of the Cancel button" -msgstr "Asettaa perumispainikkeen tekstin" - -#: src/option.c:214 -#, fuzzy -#| msgid "Hide Cancel button" -msgid "Add an extra button" -msgstr "Piilota perumispainike" - -#: src/option.c:221 -#, fuzzy -#| msgid "Set the dialog title" -msgid "Set the modal hint" -msgstr "Aseta ikkunan otsikko" - -#: src/option.c:228 -#, fuzzy -#| msgid "Set the window icon" -msgid "Set the parent window to attach to" -msgstr "Aseta ikkunan kuvake" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Näytä kalenteri-ikkuna" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Aseta ikkunan teksti" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Aseta kalenterin päivä" - -#: src/option.c:252 -msgid "DAY" -msgstr "PÄIVÄ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Aseta kalenterin kuukausi" - -#: src/option.c:259 -msgid "MONTH" -msgstr "KUUKAUSI" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Aseta kalenterin vuosi" - -#: src/option.c:266 -msgid "YEAR" -msgstr "VUOSI" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Aseta palautettavan päiväyksen muoto" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MALLI" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Näytä teksti-ikkuna" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Aseta tekstikentän teksti" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Piilota tekstikentän teksti" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Näytä virheikkuna" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -#, fuzzy -#| msgid "Set the dialog title" -msgid "Set the dialog icon" -msgstr "Aseta ikkunan otsikko" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Älä rivitä tekstiä" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -#, fuzzy -#| msgid "Do not enable pango markup" -msgid "Do not enable Pango markup" -msgstr "Älä ota käyttöön Pango-merkintöjä" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Näytä tietoikkuna" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Näytä tiedoston valintaikkuna" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Aseta tiedostonimi" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "TIEDOSTONIMI" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Salli valittavan useita tiedostoja" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivoi pelkän hakemiston valinta" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivoi tallennustila" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Aseta tulosteen erotinmerkki" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "EROTIN" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Varmista tiedoston valinta, jos tiedostonimi on jo olemassa" - -#: src/option.c:448 -#, fuzzy -#| msgid "Sets a filename filter" -msgid "Set a filename filter" -msgstr "Asettaa tiedostonimisuotimen" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NIMI | MALLI1 MALLI2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Näytä luetteloikkuna" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Aseta sarakkeen otsikko" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "SARAKE" - -#: src/option.c:481 -#, fuzzy -#| msgid "Use check boxes for first column" -msgid "Use check boxes for the first column" -msgstr "Käytä ensimmäisessä sarakkeessa valintaruutuja" - -#: src/option.c:488 -#, fuzzy -#| msgid "Use radio buttons for first column" -msgid "Use radio buttons for the first column" -msgstr "Käytä ensimmäisessä sarakkeessa radiopainikkeita" - -#: src/option.c:495 -#, fuzzy -#| msgid "Use check boxes for first column" -msgid "Use an image for the first column" -msgstr "Käytä ensimmäisessä sarakkeessa valintaruutuja" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Salli valittavan useita rivejä" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Salli muutokset tekstiin" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Tulosta tietty sarake (oletus on 1. ”ALL” voidaan käyttää kaikkien " -"sarakkeidentulostamiseen)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Piilota tietty sarake" - -#: src/option.c:539 -#, fuzzy -#| msgid "Hides the column headers" -msgid "Hide the column headers" -msgstr "Piilottaa sarakkeiden otsikot" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Näytä ilmoitus" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Aseta ilmoitusteksti" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Kuuntele komentoja vakiosyötteestä" - -#: src/option.c:578 -#, fuzzy -#| msgid "Set the notification text" -msgid "Set the notification hints" -msgstr "Aseta ilmoitusteksti" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Näytä edistymisikkuna" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Aseta aloitusprosentti" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROSENTTI" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Edistymispalkki sykkii" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Sulje ikkuna kun 100 % on saavutettu" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Lopeta äitiprosessi, jos perumispainiketta painetaan" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Piilota perumispainike" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Näytä kysymysikkuna" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Kohdista perumispainikkeeseen oletuksena" - -#: src/option.c:698 -#, fuzzy -#| msgid "Hide Cancel button" -msgid "Suppress OK and Cancel buttons" -msgstr "Piilota perumispainike" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Näytä tekstin tietoikkuna" - -#: src/option.c:715 -msgid "Open file" -msgstr "Avaa tiedosto" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Aseta tekstikentän fontti" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ota käyttöön Olen lukenut ja hyväksyn -valintaruutu" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ota käyttöön HTML-tuki" - -#: src/option.c:751 -#, fuzzy -#| msgid "Sets an url instead of a file. Only works if you use --html option" -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Asettaa URLin tiedoston sijaan. Toimii vain jos käytät --html-valitsinta" - -#: src/option.c:759 -#, fuzzy -#| msgid "Sets an url instead of a file. Only works if you use --html option" -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Asettaa URLin tiedoston sijaan. Toimii vain jos käytät --html-valitsinta" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Näytä varoitusikkuna" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Näytä asteikkoikkuna" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Aseta aloitusarvo" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ARVO" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Aseta minimiarvo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Aseta maksimiarvo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Aseta askelkoko" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Näytä osittaisia arvoja" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Piilota arvo" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Näytä lomakeikkuna" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Lisää uusi kenttä lomakeikkunaan" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Kentän nimi" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Lisää uusi salasanakenttä lomakeikkunaan" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Lisää uusi kalenterikenttä lomakeikkunaan" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalenterin kenttänimi" - -#: src/option.c:907 -#, fuzzy -msgid "Add a new List in forms dialog" -msgstr "Lisää uusi kenttä lomakeikkunaan" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Luettelon kenttä ja otsake" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Luettelo arvoista luettelolle" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Luettelo arvoista, jotka on eroteltu merkillä |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Luettelo arvoista sarakkeille" - -#: src/option.c:928 -#, fuzzy -msgid "Add a new combo box in forms dialog" -msgstr "Lisää uusi kenttä lomakeikkunaan" - -#: src/option.c:929 -#, fuzzy -#| msgid "Calendar field name" -msgid "Combo box field name" -msgstr "Kalenterin kenttänimi" - -#: src/option.c:935 -#, fuzzy -#| msgid "List of values for columns" -msgid "List of values for combo box" -msgstr "Luettelo arvoista sarakkeille" - -#: src/option.c:952 -#, fuzzy -msgid "Show the columns header" -msgstr "Aseta sarakkeen otsikko" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Näytä salasanaikkuna" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Näytä käyttäjätunnusvalinta" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Näytä värinvalintaikkuna" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Aseta väri" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Näytä väripaletti" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Tietoja Zenitystä" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Näytä versiotiedot" - -#: src/option.c:1913 -msgid "General options" -msgstr "Yleiset asetukset" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Näytä yleiset asetukset" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalenteriasetukset" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Näytä kalenteriasetukset" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Tekstikenttäasetukset" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Näytä tekstikenttäasetukset" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Virheasetukset" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Näytä Virheasetukset" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Tietoasetukset" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Näytä tietoasetukset" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Tiedostonvalitsimen asetukset" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Näytä tiedostonvalitsimen asetukset" - -#: src/option.c:1985 -msgid "List options" -msgstr "Luetteloasetukset" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Näytä luetteloasetukset" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Ilmoituskuvakeasetukset" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Näytä ilmoituskuvakeasetukset" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Edistymisasetukset" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Näytä edistymisasetukset" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Kysymysasetukset" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Näytä kysymysasetukset" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Varoitusasetukset" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Näytä varoitusasetukset" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Asteikkoasetukset" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Näytä asteikkoasetukset" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Teksti-ilmoitusasetukset" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Näytä teksti-ilmoitusasetukset" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Värivalitsimen asetukset" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Näytä värivalitsimen asetukset" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Salasanaikkunan asetukset" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Näytä salasanaikkunan asetukset" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Lomakeikkunan asetukset" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Näytä lomakeikkunan asetukset" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Sekalaiset asetukset" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Näytä sekalaiset asetukset" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Tämä valitsin ei ole käytettävissä. Katso lista sallituista valitsimista " -"valitsimella --help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ei tueta tässä ikkunassa\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Kaksi tai useampia ikkunavalitsimia annettu\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Syötä salasanasi" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Syötä käyttäjätunnuksesi ja salasanasi" - -#: src/password.c:100 -msgid "Username:" -msgstr "Käyttäjätunnus:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Salasana:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Aikaa jäljellä: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimiarvon tulee olla suurempi kuin minimiarvon.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Arvo sallitun alueen ulkopuolella.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Luetteloikkunalle ei annettu sarakenimiä.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Sinun tulisi käyttää vain yhtä listaikkunan tyyppiä.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Säädä asteikon arvoa" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Peru" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstinäkymä" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalenterivalinnat" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Valitse päiväys alta." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alenteri:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Lisää kohta" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Anna uusi teksti:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Virhe" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Virhe." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Lomakeikkuna" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Tiedoksi" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Kaikki päivitykset on nyt tehty." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Edistyminen" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Ajetaan…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Kysymys" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Haluatko varmasti jatkaa?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Valitse luettelon kohtia" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Valitse kohtia alla olevasta luettelosta." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Varoitus" diff --git a/po/fr.po b/po/fr.po deleted file mode 100644 index 0071bde..0000000 --- a/po/fr.po +++ /dev/null @@ -1,908 +0,0 @@ -# French Translation of Zenity. -# Copyright (C) 2003-2015 Free Software Foundation, Inc. -# This file is distributed under the same license as the Zenity package. -# -# Baptiste Mille-Mathias , 2003-2004. -# Christophe Merlet , 2003-2006. -# Benoît Dejean , 2005-2006. -# Jonathan Ernst , 2006. -# Damien Durand , 2006. -# Robert-André Mauchin , 2006. -# Stéphane Raimbault , 2007. -# Fievez Yoann , 2013. -# Charles Monzat , 2017-2020. -# -msgid "" -msgstr "" -"Project-Id-Version: Zenity master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2020-09-18 11:59+0200\n" -"Last-Translator: Charles Monzat \n" -"Language-Team: français \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Gtranslator 3.36.0\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le " -"modifier selon les termes de la Licence Publique Générale Limitée GNU " -"publiée par la Free Software Foundation ; soit la version 2 ou (à votre " -"discrétion) toute autre version ultérieure.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ce programme est distribué dans l’espoir qu’il puisse vous être utile, mais " -"SANS AUCUNE GARANTIE ; sans même une garantie implicite de VALEUR MARCHANDE " -"ou d’ADÉQUATION À UN BESOIN PARTICULIER. Consultez la Licence publique " -"générale limitée GNU pour plus de détails.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Vous devez avoir reçu une copie de la Licence Publique Générale Limitée GNU " -"en même temps que ce programme ; si ce n’est pas le cas, écrivez à la Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, États-Unis." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Baptiste Mille-Mathias \n" -"Christophe Merlet \n" -"Benoît Dejean \n" -"Jonathan Ernst \n" -"Damien Durand \n" -"Robert-André Mauchin \n" -"Stéphane Raimbault " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Affiche des boîtes de dialogue à partir de scripts shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Valider" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_nnuler" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Vous devez indiquer un type de boîte de dialogue. Lancer « zenity --help » " -"pour plus de détails.\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Non" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Oui" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Impossible d’analyser le message\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valeur non valide pour une indication de type booléen.\n" -"Les valeurs prises en charge sont « true » ou « false ».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Indication non prise en charge. Ignorée.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nom d’indication inconnu. Ignorée.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Impossible d’analyser la commande issue de stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notification Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Définit le titre de la boîte de dialogue" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITRE" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Définit l’icône de la fenêtre" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CHEMIN_DES_ICÔNES" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Définit la largeur" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGEUR" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Définit la hauteur" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HAUTEUR" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Définit le délai d’expiration de la boîte de dialogue en secondes" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "EXPIRATION" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Définit l’étiquette du bouton Valider" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXTE" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Définit l’étiquette du bouton Annuler" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Ajoute un bouton supplémentaire" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Définit l’indication modale" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Définit la fenêtre parente à laquelle s’attacher" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FENÊTRE" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Affiche une boîte de dialogue calendrier" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Définit le texte de la boîte de dialogue" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Définit le jour du calendrier" - -#: src/option.c:252 -msgid "DAY" -msgstr "JOUR" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Définit le mois du calendrier" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MOIS" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Définit l’année du calendrier" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANNÉE" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Définit le format de la date retournée" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODÈLE" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Affiche une boîte de dialogue de saisie de texte" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Définit le texte de saisie" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Masque le texte de saisie" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Affiche une boîte de dialogue d’erreur" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Définit l’icône de la boîte de dialogue" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOM-DE-L-ICÔNE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Désactive le retour à la ligne" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Désactive le balisage Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Autorise la troncature de texte dans la boîte de dialogue. Ceci évite les " -"trop grandes tailles de fenêtres avec les longs textes" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Affiche une boîte de dialogue d’information" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Affiche une boîte de dialogue de sélection de fichiers" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Définit le nom du fichier" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOM_DU_FICHIER" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Autorise la sélection de plusieurs fichiers" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Active uniquement la sélection des répertoires" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Active le mode de sauvegarde" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Définit le caractère séparateur de sortie" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SÉPARATEUR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirme la sélection du fichier si le nom du fichier existe déjà" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Définit un filtre de nom de fichiers" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOM | MODÈLE1 MODÈLE2…" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Affiche une boîte de dialogue de liste" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Définit l’en-tête de la colonne" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLONNE" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utilise des cases à cocher pour la première colonne" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utilise des boutons radio pour la première colonne" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utilise une image pour la première colonne" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Autorise la sélection de plusieurs lignes" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Autorise le changement du texte" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprime une colonne spécifique (par défaut la première, « ALL » peut être " -"utilisé pour imprimer toutes les colonnes)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NOMBRE" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Masque une colonne précise" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Masque les en-têtes de colonnes" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Modifie la fonction de recherche de liste par défaut afin de rechercher du " -"texte au milieu, pas au début" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Affiche une notification" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Définit le texte de notification" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Écoute les commandes issues de stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Définit les indications de notification" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Affiche une boîte de dialogue de barre de progression" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Définit le pourcentage initial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "POURCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Barre de progression discontinue" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Faire disparaître la fenêtre quand 100 % a été atteint" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Tue le processus parent si le bouton Annuler est cliqué" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Masque le bouton Annuler" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estime quand la progression va atteindre 100 %" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Affiche une boîte de dialogue de question" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Place par défaut le focus sur le bouton Annuler" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Retirer les boutons Valider et Annuler" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Affiche une boîte de dialogue de texte d’information" - -#: src/option.c:715 -msgid "Open file" -msgstr "Ouvre un fichier" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Définit la police du texte" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Active une case à cocher « J’ai lu et j’accepte »" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Active la prise en charge du HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne pas permettre les interactions utilisateurs avec la vue WebView. " -"Fonctionne uniquement avec l’option --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Définit une URL au lieu d’un fichier. Fonctionne uniquement avec l’option --" -"html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Fait automatiquement défiler le texte jusqu’à la fin. Seulement lorsque le " -"texte est capturé à partir de stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Affiche une boîte de dialogue d’avertissement" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Affiche une boîte de dialogue de glissière" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Définit la valeur initiale" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALEUR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Définit la valeur minimale" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Définit la valeur maximale" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Définit le pas" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Affiche les valeurs intermédiaires" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Masque la valeur" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Affiche une boîte de dialogue de formulaire" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "" -"Ajoute une nouvelle zone de saisie dans la boîte de dialogue de formulaire" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nom du champ" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "" -"Ajoute une nouvelle zone de saisie de mot de passe dans la boîte de dialogue " -"de formulaire" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Ajoute un nouveau calendrier dans la boîte de dialogue de formulaire" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nom du champ calendrier" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Ajoute une nouvelle liste dans la boîte de dialogue de formulaire" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Champ de liste et nom d’en-tête" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Liste des valeurs de la liste" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Liste des valeurs séparées par |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Liste des valeurs pour les colonnes" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "" -"Ajoute une nouvelle boîte combinée dans la boîte de dialogue de formulaire" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nom du champ de la boîte combinée" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Liste de valeurs pour la boîte combinée" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Affiche les en-têtes des colonnes" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Affiche une boîte de dialogue de mot de passe" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Affiche l’option du nom d’utilisateur" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Affiche une boîte de dialogue de sélection de couleur" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Définit la couleur" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Affiche la palette" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "À propos de Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Affiche la version" - -#: src/option.c:1913 -msgid "General options" -msgstr "Options générales" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Affiche les options générales" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Options de calendrier" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Affiche les options du calendrier" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Options de saisie de texte" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Affiche les options de saisie de texte" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Options d’erreurs" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Affiche les options d’erreurs" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Options d’information" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Affiche les options d’information" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Options de sélection de fichiers" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Affiche les options de sélection de fichiers" - -#: src/option.c:1985 -msgid "List options" -msgstr "Options de liste" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Affiche les options de liste" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Options de l’icône de notification" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Affiche les options de l’icône de notification" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Options de barre de progression" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Affiche les options de barre de progression" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Options de question" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Affiche les options de question" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Options d’avertissement" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Affiche les options d’avertissement" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Options de la glissière" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Affiche les options de la glissière" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Options du texte d’information" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Affiche les options du texte d’information" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Options de sélection de couleur" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Affiche les options de sélection de couleur" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Options de la boîte de dialogue de mot de passe" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Affiche les options de la boîte de dialogue de mot de passe" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Options de la boîte de dialogue de formulaire" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Affiche les options de la boîte de dialogue de formulaire" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Options diverses" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Affiche les options diverses" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Cette option n’est pas disponible. Veuillez consulter --help pour toutes les " -"utilisations possibles.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s n’est pas pris en charge pour cette boîte de dialogue\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Deux options de boîte de dialogue ou plus sont indiquées\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Saisissez votre mot de passe" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Saisissez votre nom d’utilisateur et votre mot de passe" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nom d’utilisateur :" - -#: src/password.c:110 -msgid "Password:" -msgstr "Mot de passe :" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Temps restant : %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "La valeur maximale doit être supérieure à la valeur minimale.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valeur hors plage.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Aucun titre de colonne indiqué pour la boîte de dialogue Liste.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Vous ne devriez utiliser qu’un seul type de boîte de dialogue Liste.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajustez la valeur de la glissière" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Annuler" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Valider" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vue texte" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Sélectionnez dans le calendrier" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Choisissez une date ci-dessous." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Calendrier :" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Ajoutez une nouvelle zone de saisie" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Saisissez un nouveau texte :" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Erreur" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Une erreur est survenue." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Boîte de dialogue de formulaire" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Information" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Toutes les mises à jour sont complètes." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progression" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "En cours d’exécution…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Question" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Voulez-vous vraiment continuer ?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Choisir des objets dans la liste" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Choisir des objets dans la liste ci-dessous." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avertissement" diff --git a/po/fur.po b/po/fur.po deleted file mode 100644 index 322cb19..0000000 --- a/po/fur.po +++ /dev/null @@ -1,889 +0,0 @@ -# Friulian translation for zenity. -# Copyright (C) 2016 zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# Fabio Tomat , 2016, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2018-02-06 22:32+0100\n" -"Last-Translator: Fabio Tomat \n" -"Language-Team: Friulian \n" -"Language: fur\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.3\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Chest program al è software libar; si pues tornâ a distribuîlu e/o " -"modificâlu secont i tiermins de licence GNU Lesser General Public License, " -"come publicade de Free Software Foundation; sedi la version 2 de licence o " -"(a tô sielte) o une plui resinte.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Chest program al è distribuît inte sperance che al sedi util, ma CENCE " -"NISSUNE GARANZIE, cence nancje la implicite garanzie di CUMIERÇABILITÂT o " -"IDONEITÂT A UNE FINALITÂT PARTICOLÂR. Consultâ la licence GNU General Public " -"License par vê plui detais.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Cun chest program ti varessin di vê dât ancje une copie de licence GNU " -"Lesser General Public License; in câs diviers, scrîf a: Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "Fabio Tomat " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostre i dialics di script di shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_nule" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Tu scugnis specificâ un gjenar di dialic. Consultâ 'zenity --help' par vê " -"plui detais\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_No" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sì" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Impussibil analizâ il messaç\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valôr no valit par un sugjeriment di gjenar boolean.\n" -"I valôrs supuartâts a son 'true' o 'false':\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Sugjeriment no supuartât. Ometût,\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Non dal sugjeriment no cognossût. Ometût.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Impussibil analizâ il comant di stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notifiche di zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Stabilìs il titul dal dialic" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITUL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Stabilìs la icone dal barcon" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PERCORS_ICONE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Stabilìs la largjece" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGJECE" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Stabilìs la altece" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTECE" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Stabilìs il timp massim dal dialic in seconts" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMP_MASSIM" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Stabilìs la etichete dal boton OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Stabilìs la etichete dal boton Anule" - -# disoreplui == extra -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Zonte un boton disoreplui" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Stabilìs il sugjeriment modâl" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Stabilìs il barcon gjenitôr dulà tacâsi" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "BARCON" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostre un dialic cul calendari" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Stabilìs il test dal dialic" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Stabilìs il dì dal calendari" - -#: src/option.c:252 -msgid "DAY" -msgstr "DÌ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Stabilìs il mês dal calendari" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MÊS" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Stabilìs l'an dal calendari" - -#: src/option.c:266 -msgid "YEAR" -msgstr "AN" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Stabilìs il formât de date tornade" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODEL" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostre un dialic di inseriment test" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Stabilìs il test de casele di inseriment" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Plate il test de casele di inseriment" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostre il dialic di erôr" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Stabilìs la icone dal dialic" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NON_ICONE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "No sta abilitâ il justament dal test" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "No sta abilitâ il markup Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Abilite elision tal dialic di test. Chest al risolf la dimension dal barcon " -"alte cui tescj luncs" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostre un dialic di informazions" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostre un dialic di selezion file" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Stabilìs il non dal file" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NON_FILE" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permet selezion multiple di file" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Ative la selezion di nome lis cartelis" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Ative modalitât sigure" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Stabilìs il caratar separadôr pe jessude" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADÔR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Domande di confermâ la selezion se il non dal file al esist za" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Stabilìs un filtri sul non dal file" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NON | MODEL1 MODEL2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostre un dialic cuntune liste" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Stabilìs il titul de colone" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLONE" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Dopre caselis di selezion pe prime colone" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Dopre botons radio pe prime colone" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Dopre un imagjin pe prime colone" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permet di selezionâ plui di une rie" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permet la modifiche dal test" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Stampe une colone specifiche (Il valôr predefinît al è 1. 'ALL' al pues " -"jessi doprât par stampâ dutis lis colonis)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMAR" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Plate une specifiche colone" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Plate lis intestazions des colonis" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Modifiche la funzion di ricercje in liste cirint il test tal mieç e no tal " -"inizi" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostre une icone te aree di notifiche" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Stabilìs il test de notifiche" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Scolte i comants di stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Stabilìs i sugjeriments di notifiche" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostre un dialic par indicâ l'avanzament" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Stabilìs la percentuâl iniziâl" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTUÂL" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Fâs lampâ la sbare di avanzament" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Siere il dialic cuant che si rive al 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Termine il procès gjenitôr se al ven fracât il boton \"Anule\"" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Plate il boton \"Anule\"" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Stimâ cuant che l'avanzament al rivarà al 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostre un dialic di domande" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Dâ il focus al boton \"Anule\" in maniere predefinide" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Elimine i botons \"OK\" e \"Anule\"" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostre un dialic di informazion testuâl" - -#: src/option.c:715 -msgid "Open file" -msgstr "Vierç file" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Stabilìs il caratar dal test" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Abilite la casele \"O ai let e o aceti\"" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Abilite il supuart HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"No sta abilitâ la interazion dal utent cun WebView. Al funzione nome se e " -"ven doprade la opzion --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Stabilìs un URL al puest di un file. Al funzione nome se e ven doprade la " -"opzion --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Scori in automatic il test fin da pît. Nome cuant che il test al ven cjapât " -"di stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostre un dialic di avertiment" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostre un dialic de scjale" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Stabilìs il valôr iniziâl" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALÔR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Stabilìs il valôr minim" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Stabilìs il valôr massim" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Stabilìs la dimension dal spostament" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Stampe i valôrs parziâi" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Plate il valôr" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostre un dialic formularis" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Zonte une gnove vôs tal dialic formularis" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Non dal cjamp" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Zonte une gnove Vôs Password tal dialic formularis" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Zonte un gnûf Calendari tal dialic formularis" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Non cjamp Calendari" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Zonte une gnove Liste tal dialic formularis" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Non titul e cjamp de liste" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Liste di valôrs pe Liste" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Liste di valôrs separade di |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Liste di valôrs pes colonis" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Zonte une gnove casele cumbinade tal dialic formularis" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Non cjamp casele cumbinade" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Liste di valôrs pe casele cumbinade" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostre i titui des colonis" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostre un dialic de password" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostre la opzion dal non utent" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostre un dialic di selezion dal colôr" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Stabilìs il colôr" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostre la palete di colôrs" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Informazions su Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Stampe version" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opzions gjenerichis" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostre lis opzions gjenerichis" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opzions dal calendari" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostre lis opzions dal calendari" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opzions de casele di inseriment dal test" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostre lis opzions de casele di inseriment dal test" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opzions dal dialic di erôr" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostre lis opzions dal dialic di erôr" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opzions dal dialic di informazion" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostre lis opzions dal dialic di informazion" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opzions dal dialic di selezion file" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostre lis opzions dal dialic di selezion file" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opzions dal dialic liste" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostre lis opzions dal dialic liste" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opzions de icone di notifiche" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostre lis opzions de icone di notifiche" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opzions de sbare di avanzament" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostre lis opzions de sbare di avanzament" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opzions di domande" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostre lis opzions di domande" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opzions di avertiment" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostre lis opzions di avertiment" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opzions de scjale" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostre lis opzions de scjale" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opzions di test informatîf" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostre lis opzions dal test informatîf" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opzions di selezion dal colôr" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostre lis opzion de selezion dal colôr" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opzions dal dialic password" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostre lis opzions dal dialic password" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opzions dal dialic formularis" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostre lis opzions dal dialic dai formularis" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opzions variis" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostre lis opzions variis" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Cheste opzion no je disponibile. Consultâ --help par ogni pussibil ûs.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "La opzion --%s no je supuartade di chest dialic\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Specificadis doi o plui opzions pal dialic\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Scrîf la tô password" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Scrîf il to non utent e password" - -#: src/password.c:100 -msgid "Username:" -msgstr "Non utent:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Password:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Timp restant: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Il valôr massim al à di jessi plui grant dal valôr minim.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valôr fûr dai limits.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nissun titul di colone specificât pal dialic Liste.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Si varès di doprâ nome un gjenar di dialic Liste.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Justâ il valôr de scjale" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Anule" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Test visualizât" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selezion di calendari" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Selezione une date di chi sot." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendari:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Zonte une gnove vôs" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Inserî gnûf test:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Erôr" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Al è vignût fûr un erôr." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialic formularis" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informazions" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Ducj i inzornaments a son stâts completâts." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Avanzament" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "In esecuzion..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Domande" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Sigûrs di continuâ?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Selezionâ elements de liste" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Selezione elements de liste chi sot." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avertiment" diff --git a/po/ga.po b/po/ga.po deleted file mode 100644 index b6681c4..0000000 --- a/po/ga.po +++ /dev/null @@ -1,613 +0,0 @@ -# Irish translations for zenity package. -# Copyright (C) 2003-2009 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Paul Duffy , 2003. -# Seán de Búrca , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.master\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-17 12:15-0600\n" -"PO-Revision-Date: 2009-08-17 12:30-0600\n" -"Last-Translator: Seán de Búrca \n" -"Language-Team: Irish \n" -"Language: ga\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=n==1 ? 0 : (n%10==1 || n%10==2) ? 1 : (n%" -"10>=3 && n%10<= 6) ? 2 : ((n%10>=7 && n%10<=9) || n==10) ? 3 : 4;\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"Is bogearraí saor é an clár seo; is féidir leat é a athdháileadh nó a athrú " -"faoi théarmaí an GNU General Public License mar foilsíodh é ag an Free " -"Software Foundation; leagan 2 an License, nó (de do rogha) aon leagan níos " -"déanaí.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"Dáileadh an clár seo le súil go mbeidh sé úsáideach, ach GAN AON BHARÁNTA; " -"gan an baránta intuigthe INDÍOLTÓIREACHTA nó OIRIÚNACHTA D'FHEIDHM ÁIRITHE " -"fiú. Féach an GNU General Public License le haghaidh tuilleadh mionsonraí.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Ba chóir go bhfuair tú cóip an GNU General Public License in éineacht leis " -"an gclár seo; mura bhfuair tú é, scríobh chuig an Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"Paul Duffy \n" -"Seán de Búrca " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:138 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:177 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "" - -#: ../src/notification.c:262 ../src/notification.c:279 -msgid "Zenity notification" -msgstr "Fógra Zenity" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.ui.h:1 -msgid "Add a new entry" -msgstr "Cuir iontráil nua leis" - -#: ../src/zenity.ui.h:2 -msgid "Adjust the scale value" -msgstr "" - -#: ../src/zenity.ui.h:3 -msgid "All updates are complete." -msgstr "" - -#: ../src/zenity.ui.h:4 -msgid "An error has occurred." -msgstr "Tharla earráid." - -#: ../src/zenity.ui.h:5 -msgid "Are you sure you want to proceed?" -msgstr "" - -#: ../src/zenity.ui.h:6 -msgid "C_alendar:" -msgstr "Fé_ilire:" - -#: ../src/zenity.ui.h:7 -msgid "Calendar selection" -msgstr "Roghnú féilire" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "Earráid" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "Eolas" - -#: ../src/zenity.ui.h:10 -msgid "Progress" -msgstr "Cur Chun Cinn" - -#: ../src/zenity.ui.h:11 -msgid "Question" -msgstr "Ceist" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "Á Rith..." - -#: ../src/zenity.ui.h:13 -msgid "Select a date from below." -msgstr "Roghnaigh dáta ó thíos." - -#: ../src/zenity.ui.h:14 -msgid "Select items from the list" -msgstr "Roghnaigh míreanna ón liosta" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list below." -msgstr "Roghnaigh míreanna ón liosta thíos." - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "Amharc Téacs" - -#: ../src/zenity.ui.h:17 -msgid "Warning" -msgstr "Rabhadh" - -#: ../src/zenity.ui.h:18 -msgid "_Enter new text:" -msgstr "_Iontráil téacs nua:" - -#: ../src/option.c:121 -msgid "Set the dialog title" -msgstr "Socraigh teideal na dialóige" - -#: ../src/option.c:122 -msgid "TITLE" -msgstr "TEIDEAL" - -#: ../src/option.c:130 -msgid "Set the window icon" -msgstr "Socraigh deilbhín na fuinneoige" - -#: ../src/option.c:131 -msgid "ICONPATH" -msgstr "CONAIR-DHEILBHÍN" - -#: ../src/option.c:139 -msgid "Set the width" -msgstr "Socraigh an leithead" - -#: ../src/option.c:140 -msgid "WIDTH" -msgstr "LEITHEAD" - -#: ../src/option.c:148 -msgid "Set the height" -msgstr "Socraigh an airde" - -#: ../src/option.c:149 -msgid "HEIGHT" -msgstr "AIRDE" - -#: ../src/option.c:157 -msgid "Set dialog timeout in seconds" -msgstr "" - -#. Timeout for closing the dialog -#: ../src/option.c:159 -msgid "TIMEOUT" -msgstr "TEORAINN-AMA" - -#: ../src/option.c:173 -msgid "Display calendar dialog" -msgstr "Taispeáin dialóg fhéilire" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:285 -#: ../src/option.c:318 ../src/option.c:430 ../src/option.c:569 -#: ../src/option.c:631 ../src/option.c:715 ../src/option.c:748 -msgid "Set the dialog text" -msgstr "Socraigh téacs na dialóige" - -#: ../src/option.c:183 ../src/option.c:243 ../src/option.c:252 -#: ../src/option.c:286 ../src/option.c:319 ../src/option.c:431 -#: ../src/option.c:537 ../src/option.c:570 ../src/option.c:632 -#: ../src/option.c:641 ../src/option.c:650 ../src/option.c:716 -#: ../src/option.c:749 -msgid "TEXT" -msgstr "TÉACS" - -#: ../src/option.c:191 -msgid "Set the calendar day" -msgstr "Socraigh lá an fhéilire" - -#: ../src/option.c:192 -msgid "DAY" -msgstr "LÁ" - -#: ../src/option.c:200 -msgid "Set the calendar month" -msgstr "Socraigh mí an fhéilire" - -#: ../src/option.c:201 -msgid "MONTH" -msgstr "MÍ" - -#: ../src/option.c:209 -msgid "Set the calendar year" -msgstr "Socraigh bliain an fhéilire" - -#: ../src/option.c:210 -msgid "YEAR" -msgstr "BLIAIN" - -#: ../src/option.c:218 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:219 -msgid "PATTERN" -msgstr "PATRÚN" - -#: ../src/option.c:233 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:251 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:260 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:276 -msgid "Display error dialog" -msgstr "Taispeáin dialóg earráide" - -#: ../src/option.c:294 ../src/option.c:327 ../src/option.c:658 -#: ../src/option.c:724 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:309 -msgid "Display info dialog" -msgstr "Taispeáin dialóg eolais" - -#: ../src/option.c:342 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:351 -msgid "Set the filename" -msgstr "Socraigh ainm an chomhaid" - -#: ../src/option.c:352 ../src/option.c:683 -msgid "FILENAME" -msgstr "AINM-COMHAID" - -#: ../src/option.c:360 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:369 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:378 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:387 ../src/option.c:466 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:388 ../src/option.c:467 -msgid "SEPARATOR" -msgstr "DEIGHILTEOIR" - -#: ../src/option.c:396 -msgid "Confirm file selection if filename already exists" -msgstr "" - -#: ../src/option.c:405 -msgid "Sets a filename filter" -msgstr "Socraíonn sé seo scagaire ainmneacha comhaid" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:407 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "AINM | PATRÚN1 PATRÚN2 ..." - -#: ../src/option.c:421 -msgid "Display list dialog" -msgstr "Taispeáin dialóg liosta" - -#: ../src/option.c:439 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:440 -msgid "COLUMN" -msgstr "COLÚN" - -#: ../src/option.c:448 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:457 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:475 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:484 ../src/option.c:691 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:493 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#. Column index number to print out on a list dialog -#: ../src/option.c:495 ../src/option.c:504 -msgid "NUMBER" -msgstr "UIMHIR" - -#: ../src/option.c:503 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:512 -msgid "Hides the column headers" -msgstr "" - -#: ../src/option.c:527 -msgid "Display notification" -msgstr "Taispeáin fógra" - -#: ../src/option.c:536 -msgid "Set the notification text" -msgstr "Socraigh téacs an fhógra" - -#: ../src/option.c:545 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:560 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:578 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:579 -msgid "PERCENTAGE" -msgstr "CÉATADÁN" - -#: ../src/option.c:587 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:597 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:607 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "" - -#: ../src/option.c:622 -msgid "Display question dialog" -msgstr "Taispeáin dialóg cheiste" - -#: ../src/option.c:640 -msgid "Sets the label of the Ok button" -msgstr "" - -#: ../src/option.c:649 -msgid "Sets the label of the Cancel button" -msgstr "" - -#: ../src/option.c:673 -msgid "Display text information dialog" -msgstr "Taispeáin dialóg eolas téacs" - -#: ../src/option.c:682 -msgid "Open file" -msgstr "Oscail comhad" - -#: ../src/option.c:706 -msgid "Display warning dialog" -msgstr "Taispeáin dialóg rabhaidh" - -#: ../src/option.c:739 -msgid "Display scale dialog" -msgstr "Taispeáin dialóg scálaithe" - -#: ../src/option.c:757 -msgid "Set initial value" -msgstr "" - -#: ../src/option.c:758 ../src/option.c:767 ../src/option.c:776 -#: ../src/option.c:785 -msgid "VALUE" -msgstr "LUACH" - -#: ../src/option.c:766 -msgid "Set minimum value" -msgstr "" - -#: ../src/option.c:775 -msgid "Set maximum value" -msgstr "" - -#: ../src/option.c:784 -msgid "Set step size" -msgstr "Socraigh méid chéime" - -#: ../src/option.c:793 -msgid "Print partial values" -msgstr "" - -#: ../src/option.c:802 -msgid "Hide value" -msgstr "" - -#: ../src/option.c:817 -msgid "About zenity" -msgstr "Maidir le zenity" - -#: ../src/option.c:826 -msgid "Print version" -msgstr "Priontáil leagan" - -#: ../src/option.c:1490 -msgid "General options" -msgstr "Roghanna ginearálta" - -#: ../src/option.c:1491 -msgid "Show general options" -msgstr "Taispeáin roghanna ginearálta" - -#: ../src/option.c:1501 -msgid "Calendar options" -msgstr "Roghanna féilire" - -#: ../src/option.c:1502 -msgid "Show calendar options" -msgstr "Taispeáin roghanna féilire" - -#: ../src/option.c:1512 -msgid "Text entry options" -msgstr "Roghanna iontráil téacs" - -#: ../src/option.c:1513 -msgid "Show text entry options" -msgstr "Taispeáin roghanna iontráil téacs" - -#: ../src/option.c:1523 -msgid "Error options" -msgstr "Roghanna earráide" - -#: ../src/option.c:1524 -msgid "Show error options" -msgstr "Taispeáin roghanna earráide" - -#: ../src/option.c:1534 -msgid "Info options" -msgstr "Roghanna eolais" - -#: ../src/option.c:1535 -msgid "Show info options" -msgstr "Taispeáin roghanna eolais" - -#: ../src/option.c:1545 -msgid "File selection options" -msgstr "Roghanna roghnú comhad" - -#: ../src/option.c:1546 -msgid "Show file selection options" -msgstr "Taispeáin roghanna roghnú comhad" - -#: ../src/option.c:1556 -msgid "List options" -msgstr "Roghanna liosta" - -#: ../src/option.c:1557 -msgid "Show list options" -msgstr "Taispeáin roghanna liosta" - -#: ../src/option.c:1567 -msgid "Notification icon options" -msgstr "Roghanna dheilbhín fógartha" - -#: ../src/option.c:1568 -msgid "Show notification icon options" -msgstr "Taispeáin roghanna dheilbhín fógartha" - -#: ../src/option.c:1578 -msgid "Progress options" -msgstr "Roghanna chur chun cinn" - -#: ../src/option.c:1579 -msgid "Show progress options" -msgstr "Taispeáin roghanna chur chun cinn" - -#: ../src/option.c:1589 -msgid "Question options" -msgstr "Roghanna ceiste" - -#: ../src/option.c:1590 -msgid "Show question options" -msgstr "Taispeáin roghanna ceiste" - -#: ../src/option.c:1600 -msgid "Warning options" -msgstr "Roghanna rabhaidh" - -#: ../src/option.c:1601 -msgid "Show warning options" -msgstr "Taispeáin roghanna rabhaidh" - -#: ../src/option.c:1611 -msgid "Scale options" -msgstr "Roghanna scálaithe" - -#: ../src/option.c:1612 -msgid "Show scale options" -msgstr "Taispeáin roghanna scálaithe" - -#: ../src/option.c:1622 -msgid "Text information options" -msgstr "Roghanna eolas téacs" - -#: ../src/option.c:1623 -msgid "Show text information options" -msgstr "Taispeáin roghanna eolas téacs" - -#: ../src/option.c:1633 -msgid "Miscellaneous options" -msgstr "Roghanna éagsúla" - -#: ../src/option.c:1634 -msgid "Show miscellaneous options" -msgstr "Taispeáin roghanna éagsúla" - -#: ../src/option.c:1659 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1663 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1667 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/gl.po b/po/gl.po deleted file mode 100644 index a9c9334..0000000 --- a/po/gl.po +++ /dev/null @@ -1,899 +0,0 @@ -# translation of zenity-master-po-gl-76235.po to Galego -# This file is distributed under the same license as the zenity package. -# Copyright (C) 2010 Fran Diéguez -# Ignacio Casal Quinteiro , 2005, 2006. -# Ignacio Casal Quinteiro , 2007. -# Ignacio Casal Quinteiro , 2008. -# Mancomún - Centro de Referencia e Servizos de Software Libre , 2009. -# Antón Méixome , 2009. -# Francisco Diéguez , 2009. -# Antón Méixome , 2010. -# Fran Diéguez , 2010, 2011. -# Fran Dieguez , 2011, 2012, 2013, 2014, 2015, 2018. -msgid "" -msgstr "" -"Project-Id-Version: zenity-master-po-gl-76235\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2018-02-17 01:21+0200\n" -"Last-Translator: Fran Dieguez \n" -"Language-Team: Proxecto Trasno \n" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.7.1\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Este programa é software libre; pode redistribuílo ou modificalo baixo as " -"condicións da Licenza pública xeral GNU tal como a publica a Free Software " -"Foundation; tanto na versión 2 da Licenza como (segundo o seu criterio) en " -"calquera versión posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Este programa distribúese esperando que sexa útil, mais SEN NINGUNHA " -"GARANTÍA; mesmo sen a garantía implícita de VALOR COMERCIAL ou ADECUACIÓN " -"PARA UN PROPÓSITO PARTICULAR. Para obter máis información vexa a Licenza " -"pública xeral GNU.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Debeu recibir unha copia da Licenza pública xeral GNU xunto con este " -"programa; en caso contrario, escriba á Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Fran Diéguez , 2009-2018.\n" -"Mancomún - Centro de Referencia e Servizos de Software Libre , 2009.\n" -"Antón Méixome , 2009, 2010.\n" -"Ignacio Casal Quinteiro , 2005, 2006, 2007, 2008." - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostrar as caixas de diálogo desde os scripts do intérprete de ordes" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Aceptar" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancelar" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Debe especificar un tipo de diálogo. Para obter máis información consulte " -"«zenity --help»\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Non" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sí" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Non é posíbel analizar a mensaxe\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valor non válido para o tipado booleano.\n" -"Os valores admitidos son «true» ou «false».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Tipado non admitido. Omitindo.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nome de tipado non coñecido. Omitindo.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Non é posíbel analizar a orde desde stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificación de Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Configurar o diálogo de título" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTULO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Estabelecer a icona da xanela" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMIÑO DA ICONA" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Estabelecer a largura" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGURA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Configurar a altura" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTURA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Estabelecer o tempo de expiración do diálogo en segundos" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPO DE ESPERA" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Estabelece a etiqueta do botón Aceptar" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXTO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Estabelece a etiqueta do botón Cancelar" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Engadir un botón adicional" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Estabelece a suxestión do diálogo modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Estabelecer a xanela pai para anexar a" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "XANELA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostrar o diálogo do calendario" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Configurar o diálogo do texto" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Configurar o día do calendario" - -#: src/option.c:252 -msgid "DAY" -msgstr "DÍA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Configurar o mes do calendario" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MES" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Configurar o ano do calendario" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Configurar o formato da data devolta" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATRÓN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostrar o diálogo de entrada de texto" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Configurar a entrada de texto" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ocultar a entrada de texto" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostrar o diálogo de erro" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Estabelecer a icona do diálogo" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOME-ICONA" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Non activar o axuste de texto" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Non activar o marcado Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Activar a elipse no diálogo de texto. Isto corrixe o tamaño alto da xanela " -"con textos longos." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostrar o diálogo de información" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostrar o diálogo de selección de ficheiros" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Configurar o nome do ficheiro" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOME DE FICHEIRO" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permitir que sexan seleccionados múltiples ficheiros" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activar soamente a selección de cartafoles" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activar o modo seguro" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Configurar o carácter separador de saída" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmar a selección de ficheiro se o nome do ficheiro xa existe" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Estabelece un filtro de nome de ficheiro" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOME | PATRÓN1 PATRÓN2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostrar o diálogo de listas" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Configurar a cabeceira da columna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Usar as caixas de verificación para a primeira columna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Usar os botóns de opción para a primeira columna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Usar unha imaxe para a primeira columna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permitir que sexan seleccionadas múltiples filas" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permitir cambios no texto" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprimir unha columna específica (o valor por omisión é 1. «ALL» pode usarse " -"para imprimir todas as columnas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NÚMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Oculta unha columna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Ocultar a columna de cabeceiras" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Cambiar a función de busca predeterminada en listas para buscar texto no " -"medio, non ao principio." - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostrar a notificación" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Estabelecer o texto de notificación" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Escoitar as ordes en stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Estabelecer as notificacións de tipado" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostrar o diálogo de indicación de progreso" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Configurar a porcentaxe inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PORCENTAXE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr " Barra de progreso oscilante" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Rematar o diálogo cando chegue ao 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Matar o proceso pai ao premer o botón «Cancelar»" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ocultar o botón de «Cancelar»" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimar cando o progreso acade o 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostrar o diálogo de pregunta" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Enfocar o botón cancelar por omisión" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suprimir os botóns de Aceptar e Cancelar" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostrar o diálogo de texto de información" - -#: src/option.c:715 -msgid "Open file" -msgstr "Abrir o ficheiro" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Estabelecer o tipo de letra do texto" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Activa una caixa de verificación «Lino e acepto»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Activar compatibilidade de HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Non activar a interacción do usuario coa WebView. Só funciona se usa a " -"opción --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Configura unha URL no lugar dun ficheiro. Só funciona se usa a opción «--" -"html»" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Autodesprazar o texto ao final. Só cando o texto é capturado desde stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostrar o diálogo de aviso" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostrar o diálogo de escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Estabelecer o valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Estabelecer o valor mínimo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Estabelecer o valor máximo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Estabelecer o tamaño de paso" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprimir os valores parciais" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ocultar o valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostrar o diálogo de formularios" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Engadir un novo campo ao diálogo de formularios" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nome do campo" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Engadir un novo campo de contrasinal no diálogo de formularios" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Engadir un novo calendario no diálogo de formularios" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nome do campo de calendario" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Engadir unha lista nova no diálogo de formularios" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Listar o nome do campo e da cabeceira" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista de valores por lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista de valores separados por |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista de valores por columnas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Engadir unha nova lista despregábel no diálogo de formularios" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nome do campo da lista despregábel" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista de valores para a lista despregábel" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostrar a cabeceira das columnas" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostrar o diálogo de contrasinal" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostrar a opción de usuario" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostrar o diálogo de selección de cor" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Estabelecer a cor" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostrar a paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Sobre o Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprimir a versión" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opcións xerais" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostrar as opcións xerais" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcións do calendario" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostrar as opcións do calendario" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcións de entrada de texto" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostrar as opcións de entrada de texto" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcións de erro" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostrar as opcións de erro" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcións de información" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostrar as opcións de información" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcións de selección de ficheiros" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostrar as opcións da selección de ficheiros" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcións da lista" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostrar as opcións da lista" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcións da icona de notificación" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostrar as opcións da icona de notificación" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcións de progreso" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostrar as opcións de progreso" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcións de pregunta" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostrar as opcións de pregunta" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcións de aviso" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostrar as opcións de aviso" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcións de escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostrar as opcións de escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opcións do texto de información" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostrar opcións do texto de información" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcións de selección de cor" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostrar as opcións da selección de cor" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcións do diálogo de contrasinal" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostrar as opcións do diálogo de contrasinal" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcións do diálogo de formularios" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostrar as opcións do diálogo de formularios" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opcións varias" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostrar as opcións varias" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Esta opción non está dispoñíbel. Vexa --help para todos os usos posíbeis.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s non se permite neste diálogo\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Especificáronse dúas ou máis opcións de diálogo\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Escriba o seu contrasinal" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Escriba o seu nome de usuario e contrasinal" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nome de usuario:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Contrasinal:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tempo restante: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "O valor máximo debe ser maior que o valor mínimo.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valor fóra dos límites.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" -"Non se especificaron os títulos das columnas para o diálogo de lista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Debería usar só un tipo de diálogo de lista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Axustar o valor da escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancelar" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Aceptar" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Visualización de texto" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selección do calendario" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Seleccione unha data da lista de abaixo." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendario:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Engadir unha entrada nova" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Introduza un texto novo:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Erro" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Produciuse un erro." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diálogo de formularios" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Información" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Completáronse todas as actualizacións." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progreso" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Executando…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pregunta" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Desexa realmente continuar?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Seleccione elementos da lista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Seleccione elementos da lista de abaixo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Aviso" diff --git a/po/gu.po b/po/gu.po deleted file mode 100644 index 802cf59..0000000 --- a/po/gu.po +++ /dev/null @@ -1,745 +0,0 @@ -# translation of gu.po to Gujarati -# Ankit Patel , 2005, 2006. -# Ankit Patel , 2005, 2007. -# Sweta Kothari , 2008, 2011. -msgid "" -msgstr "" -"Project-Id-Version: gu\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2011-01-17 14:20+0000\n" -"PO-Revision-Date: 2011-02-18 14:30+0530\n" -"Last-Translator: Sweta Kothari \n" -"Language-Team: Gujarati\n" -"Language: gu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"\n" -"\n" -"\n" -"\n" -"\n" -"\n" -"\n" -"\n" - -#: ../src/about.c:64 -#| msgid "" -#| "This program is free software; you can redistribute it and/or modify it " -#| "under the terms of the GNU General Public License as published by the " -#| "Free Software Foundation; either version 2 of the License, or (at your " -#| "option) any later version.\n" -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" - -#: ../src/about.c:68 -#| msgid "" -#| "This program is distributed in the hope that it will be useful, but " -#| "WITHOUT ANY WARRANTY; without even the implied warranty of " -#| "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General " -#| "Public License for more details.\n" -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" - -#: ../src/about.c:72 -#| msgid "" -#| "You should have received a copy of the GNU General Public License along " -#| "with this program; if not, write to the Free Software Foundation, Inc., " -#| "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "અંકિત પટેલ " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "શેલ લીપીઓમાંથી સંવાદપેટીઓ દર્શાવો" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "તમારે સંવાદનો પ્રકાર સ્પષ્ટ કરવો જ પડશે. વિગતો માટે 'zenity --help' જુઓ\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin માંથી આદેશનું પદચ્છેદ કરી શક્યા નહિં\n" - -#: ../src/notification.c:122 -#, c-format -#| msgid "could not parse command from stdin\n" -msgid "Could not parse message from stdin\n" -msgstr "stdin માંથી સંદેશાનું પદચ્છેદન કરી શક્યા નહિં\n" - -#: ../src/notification.c:196 -msgid "Zenity notification" -msgstr "ઝેનીટિ સૂચન" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "તમારા પાસવર્ડને લખો" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "વપરાશકર્તાનામ:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "પાસવર્ડ:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "મહત્તમ કિંમત ન્યૂનતમ કિંમત કરતાં મોટી હોવી જ જોઈએ.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "કિંમત વિસ્તારની બહાર છે.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "યાદી સંવાદ માટે સ્તંભના કોઈ શીર્ષકો સ્પષ્ટ કરાયા નથી\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "તમે માત્ર એક યાદી સંવાદ પ્રકાર વાપરવા જોઈએ.\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "ફોર્મ સંવાદ" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "નવો દાખલો ઉમેરો" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "માપદંડ કિંમત સંતુલિત કરો" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "બધા સુધારાઓ પૂરા થઈ ગયા." - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "કોઈ ભૂલ થઈ છે." - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "શું તમે ખરેખર આગળ વધવા માંગો છો?" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "કેલેન્ડર (_a):" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "કેલેન્ડર પસંદગી" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "ભૂલ" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "જાણકારી" - -# libgnomeui/gnome-app-util.c:685 -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "પ્રગતિ" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "પ્રશ્ન" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "ચાલી રહ્યુ છે..." - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "નીચેથી તારીખ પસંદ કરો." - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "યાદીમાંથી વસ્તુઓ પસંદ કરો" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "નીચેની યાદીમાંથી વસ્તુઓ પસંદ કરો." - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "લખાણનો દેખાવ" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "ચેતવણી" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "નવું લખાણ દાખલ કરો (_E):" - -#: ../src/option.c:144 -msgid "Set the dialog title" -msgstr "સંવાદનું શીર્ષક સુયોજિત કરો" - -#: ../src/option.c:145 -msgid "TITLE" -msgstr "શીર્ષક" - -#: ../src/option.c:153 -msgid "Set the window icon" -msgstr "વિન્ડોનું ચિહ્ન સુયોજિત કરો" - -#: ../src/option.c:154 -msgid "ICONPATH" -msgstr "ચિહ્નનો પથ" - -#: ../src/option.c:162 -msgid "Set the width" -msgstr "પહોળાઈ ગોઠવો" - -#: ../src/option.c:163 -msgid "WIDTH" -msgstr "પહોળાઈ" - -#: ../src/option.c:171 -msgid "Set the height" -msgstr "ઊંચાઈ ગોઠવો" - -#: ../src/option.c:172 -msgid "HEIGHT" -msgstr "ઊંચાઈ" - -#: ../src/option.c:180 -msgid "Set dialog timeout in seconds" -msgstr "સંવાદ સમયસમાપ્તિ સેકન્ડોમાં સુયોજીત કરો" - -#. Timeout for closing the dialog -#: ../src/option.c:182 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:196 -msgid "Display calendar dialog" -msgstr "કેલેન્ડર સંવાદ બતાવો" - -#: ../src/option.c:205 ../src/option.c:265 ../src/option.c:308 -#: ../src/option.c:341 ../src/option.c:453 ../src/option.c:595 -#: ../src/option.c:667 ../src/option.c:760 ../src/option.c:793 -#: ../src/option.c:898 -msgid "Set the dialog text" -msgstr "સંવાદ માટેનું લખાણ ગોઠવો" - -#: ../src/option.c:206 ../src/option.c:266 ../src/option.c:275 -#: ../src/option.c:309 ../src/option.c:342 ../src/option.c:454 -#: ../src/option.c:561 ../src/option.c:596 ../src/option.c:668 -#: ../src/option.c:677 ../src/option.c:686 ../src/option.c:737 -#: ../src/option.c:761 ../src/option.c:794 ../src/option.c:899 -msgid "TEXT" -msgstr "લખાણ" - -#: ../src/option.c:214 -msgid "Set the calendar day" -msgstr "કેલેન્ડરનો દિવસ ગોઠવો" - -#: ../src/option.c:215 -msgid "DAY" -msgstr "દિવસ" - -#: ../src/option.c:223 -msgid "Set the calendar month" -msgstr "કેલેન્ડરનો મહિનો ગોઠવો" - -#: ../src/option.c:224 -msgid "MONTH" -msgstr "મહિનો" - -#: ../src/option.c:232 -msgid "Set the calendar year" -msgstr "કેલેન્ડરનું વર્ષ ગોઠવો" - -#: ../src/option.c:233 -msgid "YEAR" -msgstr "વર્ષ" - -#: ../src/option.c:241 ../src/option.c:916 -msgid "Set the format for the returned date" -msgstr "વળતર તરીકે આવતી તારીખ માટે બંધારણ ગોઠવો" - -#: ../src/option.c:242 ../src/option.c:917 -msgid "PATTERN" -msgstr "ભાત" - -#: ../src/option.c:256 -msgid "Display text entry dialog" -msgstr "લખાણ દાખલ કરવા માટેનો સંવાદ બતાવો" - -#: ../src/option.c:274 -msgid "Set the entry text" -msgstr "દાખલ થતા લખાણને ગોઠવો" - -#: ../src/option.c:283 -msgid "Hide the entry text" -msgstr "દાખલ થતા લખાણને સંતાડો" - -#: ../src/option.c:299 -msgid "Display error dialog" -msgstr "ભૂલનો સંવાદ બતાવો" - -#: ../src/option.c:317 ../src/option.c:350 ../src/option.c:694 -#: ../src/option.c:769 -msgid "Do not enable text wrapping" -msgstr "લખાણ લપેટવાનું સક્રિય કરશો નહિં" - -#: ../src/option.c:332 -msgid "Display info dialog" -msgstr "ફોર્મ સંવાદ બતાવો" - -#: ../src/option.c:365 -msgid "Display file selection dialog" -msgstr "ફાઈલ પસંદ કરવાનો સંવાદ બતાવો" - -#: ../src/option.c:374 -msgid "Set the filename" -msgstr "ફાઈલનું નામ ગોઠવો" - -#: ../src/option.c:375 ../src/option.c:719 -msgid "FILENAME" -msgstr "ફાઈલનું નામ" - -#: ../src/option.c:383 -msgid "Allow multiple files to be selected" -msgstr "એક સાથે ઘણી બધી ફાઈલો પસંદ કરવાની પરવાનગી આપો" - -#: ../src/option.c:392 -msgid "Activate directory-only selection" -msgstr "માત્ર-ડિરેક્ટરી પસંદગી સક્રિય કરો" - -#: ../src/option.c:401 -msgid "Activate save mode" -msgstr "સંગ્રહો સ્થિતિ કાર્યશીલ બનાવો" - -#: ../src/option.c:410 ../src/option.c:489 ../src/option.c:907 -msgid "Set output separator character" -msgstr "આઉટપુટ વિભાજક અક્ષર ગોઠવો" - -#: ../src/option.c:411 ../src/option.c:490 ../src/option.c:908 -msgid "SEPARATOR" -msgstr "વિભાજક" - -#: ../src/option.c:419 -msgid "Confirm file selection if filename already exists" -msgstr "જો ફાઈલનામ પહેલાથી જ હાજર હોય તો પસંદગીની ખાતરી કરો" - -#: ../src/option.c:428 -msgid "Sets a filename filter" -msgstr "ફાઈલનામ ગાળણને ગોઠવો" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:430 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:444 -msgid "Display list dialog" -msgstr "યાદી સંવાદ બતાવો" - -#: ../src/option.c:462 -msgid "Set the column header" -msgstr "સ્તંભનું હેડર ગોઠવો" - -#: ../src/option.c:463 -msgid "COLUMN" -msgstr "સ્તંભ" - -#: ../src/option.c:471 -msgid "Use check boxes for first column" -msgstr "પહેલા સ્તંભ માટે ચેક-બોક્સ વાપરો" - -#: ../src/option.c:480 -msgid "Use radio buttons for first column" -msgstr "પહેલા સ્તંભ માટે રેડિયો બટન વાપરો" - -#: ../src/option.c:498 -msgid "Allow multiple rows to be selected" -msgstr "ઘણીબધી હરોળ એકસાથે પસંદ કરવા માટે પરવાનગી આપો" - -#: ../src/option.c:507 ../src/option.c:727 -msgid "Allow changes to text" -msgstr "લખાણમાં ફેરફાર કરવાની પરવાનગી આપો" - -#: ../src/option.c:516 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "ચોક્કસ સ્તંભ છાપો (૧ મૂળભૂત છે. 'બધા' બધા સ્તંભો છાપવા માટે વાપરી શકાશે)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:518 ../src/option.c:527 -msgid "NUMBER" -msgstr "નંબર" - -#: ../src/option.c:526 -msgid "Hide a specific column" -msgstr "ચોક્કસ સ્તંભ છુપાવો" - -#: ../src/option.c:535 -#| msgid "Set the column header" -msgid "Hides the column headers" -msgstr "સ્તંભ હેડરોને છુપાડે છે" - -#: ../src/option.c:551 -msgid "Display notification" -msgstr "સૂચન પ્રદર્શિત કરો" - -#: ../src/option.c:560 -msgid "Set the notification text" -msgstr "સૂચન લખાણ સુયોજિત કરો" - -#: ../src/option.c:569 -msgid "Listen for commands on stdin" -msgstr "stdin પર આદેશો માટે સાંભળે છે" - -#: ../src/option.c:586 -msgid "Display progress indication dialog" -msgstr "પ્રગતિ દર્શક સંવાદ બતાવો" - -#: ../src/option.c:604 -msgid "Set initial percentage" -msgstr "શરુઆતના ટકા ગોઠવો" - -#: ../src/option.c:605 -msgid "PERCENTAGE" -msgstr "ટકા" - -#: ../src/option.c:613 -msgid "Pulsate progress bar" -msgstr "પ્રગતિદર્શક પટ્ટીનું કંપન કરો" - -#: ../src/option.c:623 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "જ્યારે ૧૦૦% એ પહોંચી ગયા હોય ત્યારે સંવાદ બંધ કરો" - -#: ../src/option.c:633 -#, no-c-format -#| msgid "Kill parent process if cancel button is pressed" -msgid "Kill parent process if Cancel button is pressed" -msgstr "જો રદ કરો બટન દબાયેલ હોય તો પિતૃ પ્રક્રિયા મારી નાંખો" - -#: ../src/option.c:643 -#, no-c-format -msgid "Hide Cancel button" -msgstr "રદ કરો બટનને છુપાડો" - -#: ../src/option.c:658 -msgid "Display question dialog" -msgstr "પ્રશ્ન માટેનો સંવાદ બતાવો" - -#: ../src/option.c:676 -msgid "Sets the label of the Ok button" -msgstr "બરાબર બટનને લેબલ ગોઠવો" - -#: ../src/option.c:685 -msgid "Sets the label of the Cancel button" -msgstr "રદ કરવાના બટનને લેબલ ગોઠવો" - -#: ../src/option.c:709 -msgid "Display text information dialog" -msgstr "લખાણની ફોર્મ માટેનો સંવાદ બતાવો" - -#: ../src/option.c:718 -msgid "Open file" -msgstr "ફાઈલ ખોલો" - -#: ../src/option.c:736 -#| msgid "Set the entry text" -msgid "Set the text font" -msgstr "લખાણ ફોન્ટને સુયોજિત કરો" - -#: ../src/option.c:751 -msgid "Display warning dialog" -msgstr "ચેતવણી માટેનો સંવાદ બતાવો" - -#: ../src/option.c:784 -msgid "Display scale dialog" -msgstr "માપદંડ સંવાદ દર્શાવો" - -#: ../src/option.c:802 -msgid "Set initial value" -msgstr "આરંભિક કિંમત સુયોજિત કરો" - -#: ../src/option.c:803 ../src/option.c:812 ../src/option.c:821 -#: ../src/option.c:830 ../src/option.c:965 -msgid "VALUE" -msgstr "મૂલ્ય" - -#: ../src/option.c:811 -msgid "Set minimum value" -msgstr "ન્યૂનતમ કિંમત સુયોજિત કરો" - -#: ../src/option.c:820 -msgid "Set maximum value" -msgstr "મહત્તમ કિંમત સુયોજિત કરો" - -#: ../src/option.c:829 -msgid "Set step size" -msgstr "પગલાં માપ સુયોજિત કરો" - -#: ../src/option.c:838 -msgid "Print partial values" -msgstr "અડધી કિંમતો છાપો" - -#: ../src/option.c:847 -msgid "Hide value" -msgstr "કિંમત છુપાવો" - -#: ../src/option.c:862 -#| msgid "Display info dialog" -msgid "Display forms dialog" -msgstr "ફોર્મ સંવાદ બતાવો" - -#: ../src/option.c:871 -#| msgid "Add a new entry" -msgid "Add a new Entry in forms dialog" -msgstr "ફોર્મ સંવાદમાં નવી નોંધણીને ઉમેરો" - -#: ../src/option.c:872 ../src/option.c:881 -msgid "Field name" -msgstr "ક્ષેત્ર નામ" - -#: ../src/option.c:880 -msgid "Add a new Password Entry in forms dialog" -msgstr "ફોર્મ સંવાદમાં નવાં પાસવર્ડની નોંધણીને ઉમેરો" - -#: ../src/option.c:889 -msgid "Add a new Calendar in forms dialog" -msgstr "ફોર્મ સંવાદમાં નવાં કૅલેન્ડરને ઉમેરો" - -#: ../src/option.c:890 -#| msgid "Calendar selection" -msgid "Calendar field name" -msgstr "કૅલેન્ડર ક્ષેત્ર નામ" - -#: ../src/option.c:931 -#| msgid "Display error dialog" -msgid "Display password dialog" -msgstr "પાસવર્ડ સંવાદને બતાવો" - -#: ../src/option.c:940 -#| msgid "Display text entry dialog" -msgid "Display the username option" -msgstr "વપરાશકર્તા વિકલ્પને દર્શાવો" - -#: ../src/option.c:955 -#| msgid "Display file selection dialog" -msgid "Display color selection dialog" -msgstr "રંગ પસંદગી સંવાદને દર્શાવો" - -#: ../src/option.c:964 -#| msgid "Set the column header" -msgid "Set the color" -msgstr "રંગ સુયોજિત કરો" - -#: ../src/option.c:973 -#| msgid "Set the dialog title" -msgid "Show the palette" -msgstr "પેલેટને બતાવો" - -#: ../src/option.c:988 -msgid "About zenity" -msgstr "ઝેનિટી વિશે" - -#: ../src/option.c:997 -msgid "Print version" -msgstr "છાપકામની આવૃત્તિ" - -#: ../src/option.c:1813 -msgid "General options" -msgstr "સામાન્ય વિકલ્પો" - -#: ../src/option.c:1814 -msgid "Show general options" -msgstr "સામાન્ય વિકલ્પો બતાવો" - -#: ../src/option.c:1824 -msgid "Calendar options" -msgstr "કેલેન્ડરના વિકલ્પો" - -#: ../src/option.c:1825 -msgid "Show calendar options" -msgstr "કેલેન્ડર વિકલ્પો બતાવો" - -#: ../src/option.c:1835 -msgid "Text entry options" -msgstr "લખાણ પ્રવેશ માટેના વિકલ્પો" - -#: ../src/option.c:1836 -msgid "Show text entry options" -msgstr "લખાણ પ્રવેશ વિકલ્પો બતાવો" - -#: ../src/option.c:1846 -msgid "Error options" -msgstr "ભૂલોના વિકલ્પો" - -#: ../src/option.c:1847 -msgid "Show error options" -msgstr "ભૂલ વિકલ્પો બતાવો" - -#: ../src/option.c:1857 -msgid "Info options" -msgstr "જાણકારીના વિકલ્પો" - -#: ../src/option.c:1858 -msgid "Show info options" -msgstr "જાણકારી વિકલ્પો બતાવો" - -#: ../src/option.c:1868 -msgid "File selection options" -msgstr "ફાઈલની પસંદગી માટેના વિકલ્પો" - -#: ../src/option.c:1869 -msgid "Show file selection options" -msgstr "ફાઈલ પસંદગી વિકલ્પો બતાવો" - -#: ../src/option.c:1879 -msgid "List options" -msgstr "યાદીના વિકલ્પો" - -#: ../src/option.c:1880 -msgid "Show list options" -msgstr "યાદી વિકલ્પો બતાવો" - -#: ../src/option.c:1891 -msgid "Notification icon options" -msgstr "સૂચક ચિહ્ન વિકલ્પો" - -#: ../src/option.c:1892 -msgid "Show notification icon options" -msgstr "સૂચક ચિહ્ન વિકલ્પો બતાવો" - -#: ../src/option.c:1903 -msgid "Progress options" -msgstr "પ્રગતિના વિકલ્પો" - -#: ../src/option.c:1904 -msgid "Show progress options" -msgstr "પ્રગતિ વિકલ્પો બતાવો" - -#: ../src/option.c:1914 -msgid "Question options" -msgstr "પ્રશ્નના વિકલ્પો" - -#: ../src/option.c:1915 -msgid "Show question options" -msgstr "પ્રશ્ન વિકલ્પો બતાવો" - -#: ../src/option.c:1925 -msgid "Warning options" -msgstr "ચેતવણીના વિકલ્પો" - -#: ../src/option.c:1926 -msgid "Show warning options" -msgstr "ચેતવણી વિકલ્પો બતાવો" - -#: ../src/option.c:1936 -msgid "Scale options" -msgstr "માપદંડ વિકલ્પો" - -#: ../src/option.c:1937 -msgid "Show scale options" -msgstr "માપદંડ વિકલ્પો બતાવો" - -#: ../src/option.c:1947 -msgid "Text information options" -msgstr "લખાણ જાણકારી વિકલ્પો" - -#: ../src/option.c:1948 -msgid "Show text information options" -msgstr "લખાણ જાણકારી વિકલ્પો બતાવો" - -#: ../src/option.c:1958 -#| msgid "File selection options" -msgid "Color selection options" -msgstr "રંગ પસંદગી વિકલ્પો" - -#: ../src/option.c:1959 -#| msgid "Show file selection options" -msgid "Show color selection options" -msgstr "રંગ પસંદગી વિકલ્પોને બતાવો" - -#: ../src/option.c:1969 -#| msgid "Warning options" -msgid "Password dialog options" -msgstr "પાસવર્ડ સંવાદ વિકલ્પો" - -#: ../src/option.c:1970 -#| msgid "Show warning options" -msgid "Show password dialog options" -msgstr "પાસવર્ડ સંવાદ વિકલ્પોને બતાવો" - -#: ../src/option.c:1980 -#| msgid "Show info options" -msgid "Forms dialog options" -msgstr "ફોર્મ સંવાદ વિકલ્પો" - -#: ../src/option.c:1981 -#| msgid "Show scale options" -msgid "Show forms dialog options" -msgstr "ફોર્મ સંવાદ વિકલ્પોને બતાવો" - -#: ../src/option.c:1991 -msgid "Miscellaneous options" -msgstr "મિશ્રિત વિકલ્પો" - -#: ../src/option.c:1992 -msgid "Show miscellaneous options" -msgstr "મિશ્રિત વિકલ્પો બતાવો" - -#: ../src/option.c:2017 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "આ વિકલ્પ ઉપલબ્ધ નથી. મહેરબાની કરીને બધા શક્ય વપરાશો માટે --help જુઓ.\n" - -#: ../src/option.c:2021 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s એ આ સંવાદ માટે આધારભૂત નથી\n" - -#: ../src/option.c:2025 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "મૂળભૂતા વધારે સંવાદના વિકલ્પો સ્પષ્ટ કરાયેલા છે\n" - diff --git a/po/he.po b/po/he.po deleted file mode 100644 index d1abe56..0000000 --- a/po/he.po +++ /dev/null @@ -1,916 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Yair Hershkovitz -# Yosef Or Boczko , 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-05-28 23:04+0300\n" -"Last-Translator: Yaron Shahrabani \n" -"Language-Team: עברית <>\n" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.3\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"‏תכנית זו מוגשת במסגרת תכנה חופשית; ניתן להפיצה מחדש ו/או לשנות אותה לפי תנאי " -"הרישיון הציבורי הכללי של GNU כפי שפורסם על ידי קרן התכנה החופשית; בין אם " -"גרסה 2 של הרישיון ובין אם (לבחירתך) כל גרסה מאוחרת יותר.‬\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"תכנית זו מופצת בתקווה שתביא תועלת אך ללא אחריות כלשהי; אפילו לא מרומזת בדבר " -"מסחריותה או התאמתה למטרה מסוימת. לפרטים נוספים ניתן לעיין ברישיון הציבורי " -"הכללי של GNU.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"יאיר הרשקוביץ \n" -"ירון שהרבני \n" -"יוסף אור בוצ׳קו " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "הצגת תיבות דו־שיח בתסריטים" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_אישור" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_ביטול" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "You must specify a dialog type. See 'zenity --help' for details\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_לא" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_כן" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Could not parse message\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Unsupported hint. Skipping.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Unknown hint name. Skipping.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Could not parse command from stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity notification" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Set the dialog title" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITLE" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Set the window icon" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Set the width" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "WIDTH" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Set the height" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Set dialog timeout in seconds" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Set the label of the OK button" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Set the label of the Cancel button" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Add an extra button" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Set the modal hint" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Set the parent window to attach to" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "WINDOW" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Display calendar dialog" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Set the dialog text" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Set the calendar day" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Set the calendar month" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Set the calendar year" - -#: src/option.c:266 -msgid "YEAR" -msgstr "YEAR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Set the format for the returned date" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATTERN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Display text entry dialog" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Set the entry text" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Hide the entry text" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Display error dialog" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Set the dialog icon" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Do not enable text wrapping" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Do not enable Pango markup" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Display info dialog" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Display file selection dialog" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Set the filename" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILENAME" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Allow multiple files to be selected" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activate directory-only selection" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activate save mode" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Set output separator character" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirm file selection if filename already exists" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Set a filename filter" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Display list dialog" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Set the column header" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Use check boxes for the first column" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Use radio buttons for the first column" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Use an image for the first column" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Allow multiple rows to be selected" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Allow changes to text" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMBER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Hide a specific column" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Hide the column headers" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Change list default search function searching for text in the middle, not on " -"the beginning" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Display notification" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Set the notification text" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Listen for commands on stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Set the notification hints" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Display progress indication dialog" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Set initial percentage" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsate progress bar" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Dismiss the dialog when 100% has been reached" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Kill parent process if Cancel button is pressed" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Hide Cancel button" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimate when progress will reach 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Display question dialog" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Give Cancel button focus by default" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suppress OK and Cancel buttons" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Display text information dialog" - -#: src/option.c:715 -msgid "Open file" -msgstr "פתיחת קובץ" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "הגדרת גופן הטקסט" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "הפעלת תיבת סימון קראתי ומוסכם עלי" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "הפעלת תמיכה ב־HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Set an URL instead of a file. Only works if you use --html option" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"יש לגלול את הטקסט אוטומטית לסוף. רק כאשר הטקסט מגיע משורת הפקודה (stdin)" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Display warning dialog" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Display scale dialog" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Set initial value" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALUE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Set minimum value" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Set maximum value" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Set step size" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Print partial values" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Hide value" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Display forms dialog" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Add a new Entry in forms dialog" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "שם שדה" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Add a new Password Entry in forms dialog" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Add a new Calendar in forms dialog" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "שם שדה לוח שנה" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "הוספת רשימה חדשה בדו־שיח של טפסים" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "שדה רשימה ושם הכותרת" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "רשימת הערכים עבור רשימה" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "ערכי הרשימה מופרדים ב־|" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "הצגת ערכים עבור העמודות" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "הוספת רשימה נפתחת חדשה בדו־שיח טפסים" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "שם שדה הרשימה הנפתחת" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "הצגת ערכים עבור הרשימה הנפתחת שלך" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "הצגת כותרת העמודות" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "הצגת דו־שיח למילוי ססמה" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "הצגת אפשרות שם המשתמש" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Display color selection dialog" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "הגדרת הצבע" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Show the palette" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "על zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Print version" - -#: src/option.c:1913 -msgid "General options" -msgstr "General options" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Show general options" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Calendar options" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Show calendar options" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Text entry options" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Show text entry options" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Error options" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Show error options" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Info options" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Show info options" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "File selection options" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Show file selection options" - -#: src/option.c:1985 -msgid "List options" -msgstr "List options" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Show list options" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Notification icon options" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Show notification icon options" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progress options" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Show progress options" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Question options" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Show question options" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Warning options" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Show warning options" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Scale options" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Show scale options" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Text information options" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Show text information options" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Color selection options" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Show color selection options" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Password dialog options" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Show password dialog options" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Forms dialog options" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Show forms dialog options" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Miscellaneous options" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Show miscellaneous options" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"This option is not available. Please see --help for all possible usages.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s is not supported for this dialog\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Two or more dialog options specified\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "נא להזין את ססמתך" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "נא להזין את שם המשתמש והססמה שלך" - -#: src/password.c:100 -msgid "Username:" -msgstr "שם המשתמש:" - -#: src/password.c:110 -msgid "Password:" -msgstr "ססמה:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "הזמן שנותר: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximum value must be greater than minimum value.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Value out of range.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "No column titles specified for List dialog.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "You should use only one List dialog type.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "התאמת ערך הסרגל" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "ביטול" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "אישור" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "תצוגת טקסט" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "בחירת תאריך" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "נא לבחור מהתאריכים שלמטה." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_לוח שנה:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "הוספת טקסט חדש" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "ה_זנת טקסט חדש:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "שגיאה" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "ארעה שגיאה." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "תיבת דו־שיח של טפסים" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "מידע" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "כל העדכונים הסתיימו." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "התקדמות" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "בפעילות..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "שאלה" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "האם ברצונך להמשיך?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "נא לבחור פריטים מהרשימה" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "נא לבחור פריטים מהרשימה למטה." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "אזהרה" - -#~ msgid "Select a file" -#~ msgstr "בחר קובץ" - -#~ msgid "Adjust the scale value." -#~ msgstr "התאם את ערך הסקלה." - -#~ msgid "Orientation" -#~ msgstr "כיווניות" - -#~ msgid "The orientation of the tray." -#~ msgstr "כיווניות המגש." - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "(C) 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "תודות" - -#~ msgid "Written by" -#~ msgstr "נכתב על ידי" - -#~ msgid "Translated by" -#~ msgstr "תורגם על ידי" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "אודות Zenity" - -#~ msgid "_Credits" -#~ msgstr "_תודות" diff --git a/po/hi.po b/po/hi.po deleted file mode 100644 index 65057f2..0000000 --- a/po/hi.po +++ /dev/null @@ -1,784 +0,0 @@ -# translation of zenity.master.po to Hindi -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# Gnome Hindi Team , 2003. -# Ravishankar Shrivastava , 2004. -# Rajesh Ranjan , 2005, 2006. -# Rajesh Ranjan , 2009. -# chandankumar , 2012. -msgid "" -msgstr "" -"Project-Id-Version: zenity.master\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-07-20 23:12+0000\n" -"PO-Revision-Date: 2012-09-21 08:30+0530\n" -"Last-Translator: chandankumar \n" -"Language-Team: Hindi \n" -"Language: hi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.4\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"\n" -"\n" -"\n" -"\n" -"\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"यह फ्री सॉफ्टवेयर है; आप इसे पुनर्वितरित कर सकते हैं और / या इसे GNU जनरल " -"पब्लिक लाइसेंस के " -"शर्त के अधीन रूपांतरित कर सकते हैंजैसा कि फ्री सॉफ्टवेयर फाउंडेशन के द्वारा " -"प्रकाशित किया " -"गया है; या तो लाइसेंस का संस्करण 2 या कोई पश्चातवर्ती संस्करण (आपके विकल्प " -"अनुसार).\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"यह प्रोग्राम को इस आशा से वितरित किया गया है कि यह उपयोगी होगा, लेकिन बिना " -"किसी " -"वारंटी के; यहां तक कि बिना किसी मर्केंटेबिलिटी या खास उद्देश्य के लिए फिटनेस " -"की वारंटी के. " -"GNU जनरल पब्लिक लाइसेंस को अधिक विस्तार के लिए देखें.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"आपको GNU जनरल पब्लिक लाइसेंस की एक कॉपी इस प्रोग्राम के साथ प्राप्त करनी " -"चाहिए; यदि " -"नहीं, Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston," -"MA 02110-1301, USA को लिखें." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)\n" -"जी करुणाकर (karunakar@freedomink.org)\n" -"रविशंकर श्रीवास्तव (raviratlami@yahoo.com)\n" -"चंदन कुमार (chandankumar.093047@gmail.com)" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "संवाद बक्से शैल स्क्रिप्ट्स से दिखाएँ" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"आपको एक संवाद प्रकार निर्दिष्ट करना होगा. विवरण हेतु देखें 'zenity --help' \n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin से समादेश का विश्लेषण नहीं कर सका\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin से संदेश का विश्लेषण नहीं कर सका\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "जेनिटी सूचनाँ" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "अपना कूटशब्द टाइप करें" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "उपयोक्ता नाम:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "कूटशब्द: " - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "अधिकतम मान जरूर न्यूनतम मान से ज्यादा होना चाहिये.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "सीमा के बाहर का मान.\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "सूची संवाद हेतु कोई कॉलम शीर्षक निर्दिष्ट नहीं हैं.\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "आपको सिर्फ एक सूची संवाद प्रकार का प्रयोग करना चाहिये.\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "तिथिपत्री चयन" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "निम्न में से एक तिथि चुनें." - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "तिथिपत्री: (_a)" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "नई प्रविष्टि जोड़ें" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "नया पाठ भरें:" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "त्रुटि" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "एक त्रुटि हुई." - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "प्रपत्र संवाद" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "जानकारी" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "सभी अद्यतन पूर्ण हो चुके हैं." - -# libgnomeui/gnome-app-util.c:685 -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "प्रगति" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "चल रहा है..." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "प्रश्न" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "क्या आप सुनिश्चित हैं कि आप आगे बढ़ना चाहते हैं?" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "स्केल मान को समंजित करें" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "पाठ दृश्य" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "सूची में से वस्तु चुनें" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "निम्न सूची में से वस्तुएँ चुनें." - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "चेतावनी" - -#: ../src/option.c:155 -msgid "Set the dialog title" -msgstr "संवाद शीर्षक नियत करें" - -#: ../src/option.c:156 -msgid "TITLE" -msgstr "शीर्षक" - -#: ../src/option.c:164 -msgid "Set the window icon" -msgstr "विंडो चिह्न नियत करें" - -#: ../src/option.c:165 -msgid "ICONPATH" -msgstr "चिह्न-पथ" - -#: ../src/option.c:173 -msgid "Set the width" -msgstr "चौड़ाई नियत करें" - -#: ../src/option.c:174 -msgid "WIDTH" -msgstr "चौड़ाई" - -#: ../src/option.c:182 -msgid "Set the height" -msgstr "ऊँचाई नियत करें" - -#: ../src/option.c:183 -msgid "HEIGHT" -msgstr "ऊँचाई" - -#: ../src/option.c:191 -msgid "Set dialog timeout in seconds" -msgstr "सेकेंड में संवाद मियाद नियत करें" - -#. Timeout for closing the dialog -#: ../src/option.c:193 -msgid "TIMEOUT" -msgstr "समय समाप्ति" - -#: ../src/option.c:201 -msgid "Sets the label of the Ok button" -msgstr "ठीक बटन का लेबल सेट करता है" - -#: ../src/option.c:202 ../src/option.c:211 ../src/option.c:235 -#: ../src/option.c:295 ../src/option.c:304 ../src/option.c:338 -#: ../src/option.c:379 ../src/option.c:499 ../src/option.c:615 -#: ../src/option.c:650 ../src/option.c:722 ../src/option.c:781 -#: ../src/option.c:790 ../src/option.c:834 ../src/option.c:875 -#: ../src/option.c:1026 -msgid "TEXT" -msgstr "पाठ" - -#: ../src/option.c:210 -msgid "Sets the label of the Cancel button" -msgstr "रद्द करें बटन का लेबल सेट करता है" - -#: ../src/option.c:225 -msgid "Display calendar dialog" -msgstr "तिथिपत्री संवाद दिखाएँ" - -#: ../src/option.c:234 ../src/option.c:294 ../src/option.c:337 -#: ../src/option.c:378 ../src/option.c:498 ../src/option.c:649 -#: ../src/option.c:721 ../src/option.c:833 ../src/option.c:874 -#: ../src/option.c:1025 -msgid "Set the dialog text" -msgstr "संवाद पाठ नियत करें" - -#: ../src/option.c:243 -msgid "Set the calendar day" -msgstr "तिथिपत्री दिन नियत करें" - -#: ../src/option.c:244 -msgid "DAY" -msgstr "दिन" - -#: ../src/option.c:252 -msgid "Set the calendar month" -msgstr "तिथिपत्री माह नियत करें" - -#: ../src/option.c:253 -msgid "MONTH" -msgstr "महीना" - -#: ../src/option.c:261 -msgid "Set the calendar year" -msgstr "तिथिपत्री वर्ष नियत करें" - -#: ../src/option.c:262 -msgid "YEAR" -msgstr "वर्ष" - -#: ../src/option.c:270 ../src/option.c:1043 -msgid "Set the format for the returned date" -msgstr "वापस आई तिथि हेतु फ़ॉर्मेट नियत करें" - -#: ../src/option.c:271 ../src/option.c:1044 -msgid "PATTERN" -msgstr "प्रारूप" - -#: ../src/option.c:285 -msgid "Display text entry dialog" -msgstr "पाठ प्रविष्टि संवाद दिखाएँ" - -#: ../src/option.c:303 -msgid "Set the entry text" -msgstr "प्रविष्टि पाठ नियत करें" - -#: ../src/option.c:312 -msgid "Hide the entry text" -msgstr "प्रविष्टि पाठ छुपाएँ" - -#: ../src/option.c:328 -msgid "Display error dialog" -msgstr "त्रुटि संवाद दिखाएँ" - -#: ../src/option.c:346 ../src/option.c:387 ../src/option.c:730 -#: ../src/option.c:842 -msgid "Do not enable text wrapping" -msgstr "पाठ रैपिंग सक्रिय न करें" - -#: ../src/option.c:355 ../src/option.c:396 ../src/option.c:739 -#: ../src/option.c:851 -msgid "Do not enable pango markup" -msgstr "पैंगो मार्कअप सक्षम नहीं" - -#: ../src/option.c:369 -msgid "Display info dialog" -msgstr "जानकारी संवाद दिखाएँ" - -#: ../src/option.c:410 -msgid "Display file selection dialog" -msgstr "फ़ाइल चयन संवाद दिखाएँ" - -#: ../src/option.c:419 -msgid "Set the filename" -msgstr "फ़ाइलनाम नियत करें" - -#: ../src/option.c:420 ../src/option.c:763 -msgid "FILENAME" -msgstr "फ़ाइलनाम" - -#: ../src/option.c:428 -msgid "Allow multiple files to be selected" -msgstr "बहु फ़ाइलों का चयन स्वीकारें" - -#: ../src/option.c:437 -msgid "Activate directory-only selection" -msgstr "सिर्फ निर्देशिका चयन सक्रिय करें" - -#: ../src/option.c:446 -msgid "Activate save mode" -msgstr "सहेजें मोड सक्रिय करें" - -#: ../src/option.c:455 ../src/option.c:543 ../src/option.c:1034 -msgid "Set output separator character" -msgstr "आउटपुट विभाजक अक्षर नियत करें" - -#: ../src/option.c:456 ../src/option.c:544 ../src/option.c:1035 -msgid "SEPARATOR" -msgstr "विभाजक" - -#: ../src/option.c:464 -msgid "Confirm file selection if filename already exists" -msgstr "फाइल चयन सुनिश्चित करें अगर फाइलनाम पहले से मौजूद है" - -#: ../src/option.c:473 -msgid "Sets a filename filter" -msgstr "फ़ाइलनाम फ़िल्टर नियत करें" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:475 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:489 -msgid "Display list dialog" -msgstr "सूची संवाद दिखाएँ" - -#: ../src/option.c:507 -msgid "Set the column header" -msgstr "कॉलम हैडर नियत करें" - -#: ../src/option.c:508 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:516 -msgid "Use check boxes for first column" -msgstr "प्रथम स्तम्भ हेतु चेक बक्से उपयोग करें" - -#: ../src/option.c:525 -msgid "Use radio buttons for first column" -msgstr "प्रथम स्तम्भ हेतु रेडियो बटन उपयोग करें" - -#: ../src/option.c:534 -#| msgid "Use check boxes for first column" -msgid "Use an image for first column" -msgstr "प्रथम स्तंभ के लिए एक छवि का उपयोग करें" - -#: ../src/option.c:552 -msgid "Allow multiple rows to be selected" -msgstr "बहु पंक्ति के चयन की स्वीकृति दें" - -#: ../src/option.c:561 ../src/option.c:771 -msgid "Allow changes to text" -msgstr "पाठ में परिवर्तन स्वीकारें" - -#: ../src/option.c:570 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"एक निर्दिष्ट कॉलम चुनें (1 मूलभूत है. 'ALL' को सभी कॉलम को मुद्रित करने के " -"लिये प्रयोग " -"किया जा सकता है)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:572 ../src/option.c:581 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:580 -msgid "Hide a specific column" -msgstr "एक निर्दिष्ट कॉलम छुपायें" - -#: ../src/option.c:589 -msgid "Hides the column headers" -msgstr "स्तंभ शीर्ष लेख छुपाता है" - -#: ../src/option.c:605 -msgid "Display notification" -msgstr "सूचना प्रदर्शित करें" - -#: ../src/option.c:614 -msgid "Set the notification text" -msgstr "संवाद पाठ नियत करें" - -#: ../src/option.c:623 -msgid "Listen for commands on stdin" -msgstr "stdin पर समादेश को सुन रहा है" - -#: ../src/option.c:640 -msgid "Display progress indication dialog" -msgstr "प्रगति संकेत संवाद दिखाएँ" - -#: ../src/option.c:658 -msgid "Set initial percentage" -msgstr "प्रारंभिक प्रतिशत नियत करें" - -#: ../src/option.c:659 -msgid "PERCENTAGE" -msgstr "प्रतिशत" - -#: ../src/option.c:667 -msgid "Pulsate progress bar" -msgstr "प्रगति पट्टी स्पन्दित करें" - -#: ../src/option.c:677 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "संवाद खारिज करें जब 100% पर पहुँच जाएँ" - -#: ../src/option.c:687 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "जनक प्रक्रिया समाप्त करें यदि रद्द बटन दबाया जाता है" - -#: ../src/option.c:697 -#, no-c-format -msgid "Hide Cancel button" -msgstr "रद्द करें बटन छुपाएँ" - -#: ../src/option.c:712 -msgid "Display question dialog" -msgstr "प्रश्न संवाद दिखाएँ" - -#: ../src/option.c:753 -msgid "Display text information dialog" -msgstr "पाठ जानकारी संवाद दिखाएँ" - -#: ../src/option.c:762 -msgid "Open file" -msgstr "फ़ाइल खोलें" - -#: ../src/option.c:780 -msgid "Set the text font" -msgstr "पाठ फ़ॉन्ट सेट करें" - -#: ../src/option.c:789 -msgid "Enable an I read and agree checkbox" -msgstr "मेरे द्वारा पढ़ा और सहमत हैं चेकबॉक्स सक्षम करें" - -#: ../src/option.c:799 -msgid "Enable html support" -msgstr "HTML समर्थन सक्रिय करें" - -#: ../src/option.c:808 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" -"फ़ाइल के बजाय यूआरएल सेट करता है. अगर आप का उपयोग करें तब काम करता है -- " -"एचटीएमएल " -"विकल्प" - -#: ../src/option.c:809 -msgid "URL" -msgstr "यूआरएल" - -#: ../src/option.c:824 -msgid "Display warning dialog" -msgstr "चेतावनी संवाद दिखाएँ" - -#: ../src/option.c:865 -msgid "Display scale dialog" -msgstr "स्केल संवाद दिखाएँ" - -#: ../src/option.c:883 -msgid "Set initial value" -msgstr "प्रारंभिक मान नियत करें" - -#: ../src/option.c:884 ../src/option.c:893 ../src/option.c:902 -#: ../src/option.c:911 ../src/option.c:1092 -msgid "VALUE" -msgstr "मान" - -#: ../src/option.c:892 -msgid "Set minimum value" -msgstr "न्यूनतम मान सेट करें" - -#: ../src/option.c:901 -msgid "Set maximum value" -msgstr "अधिकतम मान सेट करें" - -#: ../src/option.c:910 -msgid "Set step size" -msgstr "चरण आकार करें" - -#: ../src/option.c:919 -msgid "Print partial values" -msgstr "आंशिक मान मुद्रित करें" - -#: ../src/option.c:928 -msgid "Hide value" -msgstr "मान छिपायें" - -#: ../src/option.c:943 -msgid "Display forms dialog" -msgstr "प्रपत्रों संवाद दिखाएँ" - -#: ../src/option.c:952 -msgid "Add a new Entry in forms dialog" -msgstr "प्रपत्रों संवाद में एक नई प्रविष्टि जोड़ें" - -#: ../src/option.c:953 ../src/option.c:962 -msgid "Field name" -msgstr "क्षेत्र नाम" - -#: ../src/option.c:961 -msgid "Add a new Password Entry in forms dialog" -msgstr "प्रपत्रों संवाद में एक नया कूटशब्द प्रविष्टि जोड़ें" - -#: ../src/option.c:970 -msgid "Add a new Calendar in forms dialog" -msgstr "प्रपत्रों संवाद में एक नया पंचांग जोड़ें" - -#: ../src/option.c:971 -msgid "Calendar field name" -msgstr "पंचांग क्षेत्र का नाम" - -#: ../src/option.c:979 -msgid "Add a new List in forms dialog" -msgstr "प्रपत्रों संवाद में एक नई सूची जोड़ें" - -#: ../src/option.c:980 -msgid "List field and header name" -msgstr "सूची क्षेत्र और शीर्षक के नाम" - -#: ../src/option.c:988 -msgid "List of values for List" -msgstr "सूची के लिए मानों की सूची" - -#: ../src/option.c:989 ../src/option.c:998 -msgid "List of values separated by |" -msgstr "मानों की सूची | से अलग " - -#: ../src/option.c:997 -msgid "List of values for columns" -msgstr "स्तंभों के लिए मानों की सूची" - -#: ../src/option.c:1016 -msgid "Show the columns header" -msgstr "कॉलम हैडर दिखाएँ" - -#: ../src/option.c:1058 -msgid "Display password dialog" -msgstr "कूटशब्द संवाद प्रदर्शित करें" - -#: ../src/option.c:1067 -msgid "Display the username option" -msgstr "उपयोक्तानाम प्रविष्टि संवाद दिखाएँ" - -#: ../src/option.c:1082 -msgid "Display color selection dialog" -msgstr "रंग चयन संवाद प्रदर्शित करें" - -#: ../src/option.c:1091 -msgid "Set the color" -msgstr "रंग सेट करें" - -#: ../src/option.c:1100 -msgid "Show the palette" -msgstr "पैलेट दिखाएँ" - -#: ../src/option.c:1115 -msgid "About zenity" -msgstr "ज़ेनिटी के बारे में" - -#: ../src/option.c:1124 -msgid "Print version" -msgstr "मुद्रण संस्करण" - -#: ../src/option.c:2006 -msgid "General options" -msgstr "सामान्य विकल्प" - -#: ../src/option.c:2007 -msgid "Show general options" -msgstr "सामान्य विकल्प दिखायें" - -#: ../src/option.c:2017 -msgid "Calendar options" -msgstr "तिथिपत्री विकल्प" - -#: ../src/option.c:2018 -msgid "Show calendar options" -msgstr "तिथिपत्री विकल्प दिखायें" - -#: ../src/option.c:2028 -msgid "Text entry options" -msgstr "पाठ प्रविष्टि विकल्प" - -#: ../src/option.c:2029 -msgid "Show text entry options" -msgstr "पाठ प्रविष्टि विकल्प दिखायें" - -#: ../src/option.c:2039 -msgid "Error options" -msgstr "त्रुटि विकल्प" - -#: ../src/option.c:2040 -msgid "Show error options" -msgstr "त्रुटि विकल्प दिखायें" - -#: ../src/option.c:2050 -msgid "Info options" -msgstr "जानकारी विकल्प" - -#: ../src/option.c:2051 -msgid "Show info options" -msgstr "जानकारी विकल्प दिखायें" - -#: ../src/option.c:2061 -msgid "File selection options" -msgstr "फ़ाइल चयन विकल्प" - -#: ../src/option.c:2062 -msgid "Show file selection options" -msgstr "फ़ाइल चयन विकल्प दिखायें" - -#: ../src/option.c:2072 -msgid "List options" -msgstr "सूची विकल्प" - -#: ../src/option.c:2073 -msgid "Show list options" -msgstr "सूची विकल्प दिखायें" - -#: ../src/option.c:2084 -msgid "Notification icon options" -msgstr "सूचना आइकन विकल्प" - -#: ../src/option.c:2085 -msgid "Show notification icon options" -msgstr "सूचना आइकन विकल्प दिखायें" - -#: ../src/option.c:2096 -msgid "Progress options" -msgstr "प्रगति विकल्प" - -#: ../src/option.c:2097 -msgid "Show progress options" -msgstr "प्रगति विकल्प दिखायें" - -#: ../src/option.c:2107 -msgid "Question options" -msgstr "प्रश्न विकल्प" - -#: ../src/option.c:2108 -msgid "Show question options" -msgstr "प्रश्न विकल्प दिखायें" - -#: ../src/option.c:2118 -msgid "Warning options" -msgstr "चेतावनी विकल्प" - -#: ../src/option.c:2119 -msgid "Show warning options" -msgstr "चेतावनी विकल्प दिखायें" - -#: ../src/option.c:2129 -msgid "Scale options" -msgstr "विकल्प स्केल करें" - -#: ../src/option.c:2130 -msgid "Show scale options" -msgstr "स्केल विकल्प दिखायें" - -#: ../src/option.c:2140 -msgid "Text information options" -msgstr "पाठ सूचना विकल्प" - -#: ../src/option.c:2141 -msgid "Show text information options" -msgstr "पाठ सूचना विकल्प दिखायें" - -#: ../src/option.c:2151 -msgid "Color selection options" -msgstr "रंग चयन विकल्प" - -#: ../src/option.c:2152 -msgid "Show color selection options" -msgstr "रंग चयन विकल्प दिखायें" - -#: ../src/option.c:2162 -msgid "Password dialog options" -msgstr "कूटशब्द संवाद विकल्प" - -#: ../src/option.c:2163 -msgid "Show password dialog options" -msgstr "कूटशब्द संवाद विकल्प दिखायें" - -#: ../src/option.c:2173 -msgid "Forms dialog options" -msgstr "प्रपत्र संवाद विकल्प" - -#: ../src/option.c:2174 -msgid "Show forms dialog options" -msgstr "प्रपत्र संवाद विकल्प दिखायें" - -#: ../src/option.c:2184 -msgid "Miscellaneous options" -msgstr "विविध विकल्प" - -#: ../src/option.c:2185 -msgid "Show miscellaneous options" -msgstr "विविध विकल्प दिखायें" - -#: ../src/option.c:2210 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"विकल्प उपलब्ध नहीं है. कृपया सभी संभावित प्रयोगों के लिये सहायता देखें.\n" - -#: ../src/option.c:2214 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "इस संवाद हेतु %s समर्थित नहीं है \n" - -#: ../src/option.c:2218 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "दो या अधिक संवाद विकल्प निर्दिष्ट\n" - diff --git a/po/hr.po b/po/hr.po deleted file mode 100644 index cbc76d4..0000000 --- a/po/hr.po +++ /dev/null @@ -1,886 +0,0 @@ -# Translation of zenity to Croatiann -# Copyright (C) Croatiann team -# Translators: Automatski Prijevod <>,Robert Sedak , -msgid "" -msgstr "" -"Project-Id-Version: zenity 0\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-09-11 13:58+0200\n" -"Last-Translator: gogo \n" -"Language-Team: Croatian \n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2018-03-16 20:16+0000\n" -"X-Generator: Poedit 2.3\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ovaj program je slobodni softver; možete ga redistribuirati i/ili mijenjati " -"pod uvjetima GNU Lesser opće javne licence kako ju je objavila Zaklada za " -"slobodni softver; bilo inačica 2 licence ili (kako vi želite) neka kasnija " -"inačica.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ovaj program se distribuira u nadi da će biti koristan, ali BEZ IKAKVOG " -"JAMSTVA; čak i bez impliciranog jamstva UTRŽIVOSTI ili PRIKLADNOSTI ZA " -"ODREĐENU SVRHU. Pogledajte GNU Lesser opću javnu licencu za više " -"pojedinosti.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Trebali ste dobiti kopiju GNU Lesser opće javne licence s ovim programom; " -"ako niste pišite Zakladi za slobodan softver na adresu Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"lokalizacija@linux.hr\n" -" Robert Sedak \n" -"\n" -"Launchpad Contributions:\n" -" Ante Karamatić https://launchpad.net/~ivoks\n" -" antisa https://launchpad.net/~antisa\n" -" gogo https://launchpad.net/~trebelnik-stefina" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Prikaši dijaloški prozor iz skripti ljuske" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_U redu" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Odustani" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Morate odrediti vrstu dijaloga. Za pojedinosti pogledajte 'zenity --help'\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Da" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nemoguća obrada poruke\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neispravna vrijednost za booleanovu napomenu.\n" -"Podržane vrijednosti su 'true' ili 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodržana napomena. Preskačem.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nepodržan naziv napomene. Preskačem.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nemoguća obrada naredbe iz stdina\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity obavijesti" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Postavite naslov dijaloga" - -#: src/option.c:165 -msgid "TITLE" -msgstr "NASLOV" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Postavite ikonu prozora" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PUTANJA-IKONE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Postavite širinu" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ŠIRINA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Postavite veličinu" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "VISINA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Postavi istek vremena za dijalog u sekundama" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ISTEK-VREMENA" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Postavite naslov 'U redu' tipke" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Postavite naslov 'Odustani' tipke" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Dodaj dodatnu tipku" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Postavi modalnu napomenu" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Postavi sadržajni orizir za prilčršćivanje" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "PROZOR" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Prikaži dijalog kalendara" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Postavi tekst dijaloga" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Postavi dan kalendara" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Postavi mjesec kalendara" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MJESEC" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Postavi godinu kalendara" - -#: src/option.c:266 -msgid "YEAR" -msgstr "GODINA" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Postavi format vraćenog datuma" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "UZORAK" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Prikaži dijalog upisa teksta" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Postavi upisivanje teksta" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Sakrij upisani tekst" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Prikaži dijalog greške" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Postavi ikonu dijaloga" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NAZIV-IKONE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ne omogućuj prijelom teksta" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ne omogućuju Panogo označavanje" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Omogući elipsaciju u dijalogu tekstu. Ovo popravlja visoku veličinu prozora " -"s dugim tekstom." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Prikaži dijalog s informacijama" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Prikaži dijalog odabira datoteka" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Postavi naziv datoteke" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NAZIV DATOTEKE" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Omogući odabir više datoteka" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktiviraj samo-direktorij odabir" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktiviraj način spremanja" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Postavi izlazni znak razdjeljivanja" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "RAZDJELNIK" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potvrdi odabir datoteke ako ime datoteke već postoji" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Postavi filter naziva datoteke" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAZIV | UZORAK1 UZORAK2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Prikaži dijalog popisa" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Postavi zaglavlje stupca" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "STUPAC" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Koristi okvire odabira za prvi stupac" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Prikaži kružiće odabira" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Koristi sliku u prvom stupcu" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Dopusti odabir više redaka" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Dopusti promjenu teksta" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Ispiši određeni stupac (Uobičajeno je 1. 'ALL' se koristi za ispis svih " -"stupaca)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "BROJ" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Sakrij određeni stupac" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Sakrij zaglavlje stupca" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Promijeni popis funkcije zadane pretrage za tekst u sredini, ne na početku" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Prikaži obavijesti" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Postavi tekst obavijesti" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Osluškuj naredbe sa stdina" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Postavi napomene obavijesti" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Prikaži dijalog s pokazivačem napretka" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Postavi početni postotak" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "POSTOTAK" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsirajuća traka napretka" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Zatvori dijalog kad je dosegnuto 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Ubij sadržajni proces ako se pritisne tipka \"Odustani\"" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Sakrij tipku \"Odustani\"" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Procijeni kada će proces dostići 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Prikaži dijalog upita" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Zadaj 'Odustani' tipki fokus po zadanome" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Potisni tipke 'U redu' i 'Odustani'" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Prikaži dijalog s tekstovnim informacijom" - -#: src/option.c:715 -msgid "Open file" -msgstr "Otvori datoteku" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Postavi slova teksta" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Omogući \"Pročitao/la sam i slažem se\" odabir" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Omogući HTML podršku" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne omogućuj interakciju s WebView. Samo radi ako koristite --html mogućnost" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Postavi URL umjesto datoteke. Samo radi ako koristite --html mogućnost" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automatsko pomicanje teksta prema kraju. Samo kada je tekst dolazi sa stdina" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Prikaži dijalog upozorenja" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Prikaži dijalog ljestvice" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Postavi početnu vrijednost" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VRIJEDNOST" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Postavi najmanju vrijednost" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Postavi najveću vrijednost" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Postavi veličinu koraka" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Ispiši parcijalne vrijednosti" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Sakrij vrijednosti" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Prikaži dijalog obrazaca" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Dodaj novi unos u dijalog obrazaca" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Naziv polja" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Dodaj novi unos za lozinku u dijalog obrazaca" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Dodaj novi unos za kalendar u dijalog obrazaca" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Naziv polja kalendara" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Dodaj novi popis u dijalog obrazaca" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Polje popisa i naziv zaglavlja" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Popis vrijednosti za popis" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Popis vrijednosti odvojen sa |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Popis vrijednosti za stupce" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Dodaj novi kombinirani okvir u dijaloga obrazaca" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Naziv polja kombiniranog okvira" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Popis vrijednosti kombiniranog okvira" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Pokaži zaglavlje stupaca" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Prikaži dijalog lozinke" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Prikaži mogućnost korisničkog imena" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Prikaži dijalog za odabir boje" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Postavi boju" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Prikaži paletu" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "O Zenityu" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Prikaži inačicu" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opće mogućnosti" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Pokaži opće mogućnosti" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Mogućnosti kalendara" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Pokaži mogućnosti kalendara" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Mogućnosti upisa teksta" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Prikaži mogućnosti upisa teksta" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Mogućnosti greške" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Prikaži mogućnosti greške" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Mogućnosti informacija" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Prikaži mogućnosti informacija" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Mogućnosti odabira datoteke" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Prikaži mogućnosti odabira datoteka" - -#: src/option.c:1985 -msgid "List options" -msgstr "Mogućnosti popisa" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Prikaži mogućnosti popisa" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Mogućnosti ikone obavijesti" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Prikaži mogućnosti ikone obavijesti" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Mogućnosti napretka" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Prikaži mogućnosti napretka" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Mogućnosti pitanja" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Prikaži mogućnosti pitanja" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Mogućnosti upozorenja" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Prikaži mogućnosti upozorenja" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Mogućnosti ljestvice" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Prikaži mogućnosti ljestvice" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Mogućnosti teksta informacija" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Prikaži mogućnosti teksta informacija" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Mogućnosti odabira boja" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Prikaži mogućnosti odabira boja" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Mogućnosti dijaloga lozinke" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Prikaži mogućnosti dijaloga lozinke" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Mogućnosti dijaloga obrazaca" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Prikaži mogućnosti dijaloga obrazaca" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Ostale mogućnosti" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Prikaži ostale mogućnosti" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ova mogućnost je nedostupna. Koristite --help za moguće načine uporabe.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nije podržan u ovom dijalogu\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Određene su dvije ili više mogućnosti dijaloga\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Upišite svoju lozinku" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Upišite svoje korisničko ime i lozinku" - -#: src/password.c:100 -msgid "Username:" -msgstr "Korisničko ime:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Lozinka:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Preostalo vrijeme: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Najveća vrijednost mora biti veća od najmanje vrijednosti.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Vrijednost izvan raspona.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nema određenog stupca za dijalog popisa.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Trebali biste koristiti samo jedu vrstu popisa dijaloga.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Prilagodi vrijednost ljestvice" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Odustani" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "U redu" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Pogled teksta" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Odabir kalendara" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Odaberi dolje prikazani datum." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Dodaj novu stavku" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Upiši novi tekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Greška" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Dogodila se greška." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dijalog obrazaca" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informacije" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Sve nadopune su završene." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Napredak" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Pokretanje..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pitanje" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Sigurno želite nastaviti?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Odaberi stavke s popisa" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Odaberi stavke s donjeg popisa." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Upozorenje" diff --git a/po/hu.po b/po/hu.po deleted file mode 100644 index 49fcbac..0000000 --- a/po/hu.po +++ /dev/null @@ -1,896 +0,0 @@ -# Hungarian translation of zenity. -# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Andras Timar , 2003, 2004. -# Laszlo Dvornik , 2004. -# Gabor Kelemen , 2005, 2006, 2007, 2008, 2010, 2011, 2012. -# Kéménczy Kálmán , 2006. . -# Nyitrai István , 2009. -# Balázs Úr , 2012, 2013, 2014, 2015. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2018-01-24 21:03+0100\n" -"Last-Translator: Meskó Balázs \n" -"Language-Team: Hungarian \n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.3\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ez a program szabad szoftver, terjesztheti és/vagy módosíthatja a Free " -"Software Foundation által kiadott GNU Lesser General Public License második " -"(vagy bármely későbbi) változatában foglaltak alapján.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ezt a programot abban a reményben terjesztjük, hogy hasznos lesz, de nem " -"vállalunk SEMMIFÉLE GARANCIÁT, még olyan értelemben sem, hogy a program " -"alkalmas-e a KÖZREADÁSRA vagy EGY BIZONYOS FELADAT ELVÉGZÉSÉRE. További " -"részletekért tanulmányozza a GNU LGPL licencet.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"A programhoz a GNU Lesser General Public License egy példánya is jár, ha nem " -"kapta meg, írjon a Free Software Foundation Inc.-nek. Levélcímük: 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Dvornik László \n" -"Kéménczy Kálmán \n" -"Kelemen Gábor \n" -"Tímár András \n" -"Meskó Balázs " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Párbeszédablakok megjelenítése héjprogramokból" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Mégse" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Meg kell adni a párbeszédablak típusát. A részletekért lásd a „zenity --" -"help” parancsot\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nem" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Igen" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nem sikerült feldolgozni az üzenetet\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Érvénytelen érték a logikai típusú tipphez.\n" -"A támogatott érték „true” vagy „false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nem támogatott tipp. Kihagyás.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Ismeretlen tipp név. Kihagyás.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nem sikerült feldolgozni a parancsot a szabványos bemenetről\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity értesítés" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Párbeszédablak címsorának beállítása" - -#: src/option.c:165 -msgid "TITLE" -msgstr "CÍM" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Ablak ikonjának beállítása" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "IKONÚTVONAL" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Szélesség beállítása" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "SZÉLESSÉG" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Magasság beállítása" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "MAGASSÁG" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Párbeszédablak időtúllépésének beállítása" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "IDŐKORLÁT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Az OK gomb feliratának beállítása" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "SZÖVEG" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "A Mégse gomb feliratának beállítása" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "További gomb hozzáadása" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "A kizárólagos tipp beállítása" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "A szülőablak beállítása csatoláshoz" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ABLAK" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Naptár párbeszédablak megjelenítése" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Párbeszédablak szövegének beállítása" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Naptár napjának beállítása" - -#: src/option.c:252 -msgid "DAY" -msgstr "NAP" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Naptár hónapjának beállítása" - -#: src/option.c:259 -msgid "MONTH" -msgstr "HÓNAP" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Naptár évének beállítása" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ÉV" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "A visszaadott dátum formátumának beállítása" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MINTA" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Szövegbeviteli párbeszédablak megjelenítése" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "A szövegbeviteli mező tartalmának beállítása" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "A szövegbeviteli mező tartalmának elrejtése" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Hibára figyelmeztető párbeszédablak megjelenítése" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Párbeszédablak ikonjának beállítása" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "IKONNÉV" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ne engedélyezze a szöveg tördelését" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ne engedélyezze a Pango jelölést" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Elliptikus méretezés engedélyezése a párbeszédablak szövegében. Ez javítja a " -"hosszú szöveggel rendelkező nagy ablakméretet." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Információs párbeszédablak megjelenítése" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Fájlválasztó párbeszédablak megjelenítése" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Fájlnév beállítása" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FÁJLNÉV" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Többszörös fájlkijelölés engedélyezése" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "„Csak könyvtár” kiválasztás aktiválása" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Mentés mód aktiválása" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "A kimenet elválasztókarakterének beállítása" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ELVÁLASZTÓ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Megadott fájlnév jóváhagyása, amennyiben az már létezik" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Fájlnévszűrő beállítása" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NÉV | MINTA1 MINTA2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Lista párbeszédablak megjelenítése" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Oszlopfejléc beállítása" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "OSZLOP" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Jelölőnégyzetek az első oszlopban" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Választógombok az első oszlopban" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Kép használata az első oszlophoz" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Több sor kijelölésének engedélyezése" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Szöveg változtatható" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Egy adott oszlop nyomtatása (1 az alapértelmezés. Minden oszlop " -"nyomtatásához az „ALL” használható)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "SZÁM" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Egy bizonyos oszlop elrejtése" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Oszlopfejléc elrejtése" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"A módosításlista alapértelmezett keresési funkciója középen keresse a " -"szöveget, ne az elején" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Értesítés megjelenítése" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Az értesítési szöveg beállítása" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Parancsok figyelése a szabványos bemeneten" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Az értesítési tippek beállítása" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Folyamatkijelző párbeszédablak megjelenítése" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Kezdeti százalék beállítása" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "SZÁZALÉK" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Folyamatjelző pulzálása" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Párbeszédablak eltüntetése, ha a 100%-ot elérte" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Szülőfolyamat kilövése a Mégse gomb megnyomásakor" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Mégse gomb elrejtése" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Annak becslése, hogy a folyamat mikor éri el a 100%-ot" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Kérdező párbeszédablak megjelenítése" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Alapértelmezetten adjon fókuszt a Mégse gombnak" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Az OK és Mégse gombok elnyomása" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Szöveges információs párbeszédablak megjelenítése" - -#: src/option.c:715 -msgid "Open file" -msgstr "Fájl megnyitása" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "A szöveg betűkészletének beállítása" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "„Elolvastam és egyetértek” jelölőnégyzet engedélyezése" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML-támogatás engedélyezése" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne engedélyezze a felhasználói interakciót a webnézettel. Csak akkor " -"működik, ha a --html kapcsolót használja" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"URL-cím beállítása fájl helyett. Csak a --html kapcsolóval együtt működik" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"A szöveg automatikus görgetése a végére. Csak akkor, ha a szöveg a " -"szabványos bemenetről lett rögzítve" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Figyelmeztető párbeszédablak megjelenítése" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Nagyítás párbeszédablak megjelenítése" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Kezdeti érték beállítása" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ÉRTÉK" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Minimális érték beállítása" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Maximális érték beállítása" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Lépés értékének beállítása" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Részleges értékek kiírása" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Érték elrejtése" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Űrlapok párbeszédablak megjelenítése" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Új bejegyzés hozzáadása az Űrlapok ablakhoz" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Mezőnév" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Új jelszóbeviteli mező hozzáadása az Űrlapok ablakhoz" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Új naptár hozzáadása az Űrlapok ablakhoz" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Naptármező neve" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Új lista hozzáadása az Űrlapok ablakhoz" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Listamező és fejléc neve" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Értékek listája a listához" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Értékek | jellel elválasztott listája" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Az oszlopok értékeinek listája" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Új legördülő menü hozzáadása az űrlapok ablakhoz" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Legördülő menü mező neve" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "A legördülő menü értékeinek listája" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Oszlopfejlécek megjelenítése" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Jelszó párbeszédablak megjelenítése" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "A felhasználónév lehetőség megjelenítése" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Színválasztó párbeszédablak megjelenítése" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Szín beállítása" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "A paletta megjelenítése" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "A Zenity névjegye" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Verziószám nyomtatása" - -#: src/option.c:1913 -msgid "General options" -msgstr "Általános beállítások" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Általános beállítások megjelenítése" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Naptár beállításai" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Naptár beállításainak megjelenítése" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Szövegbeviteli mező beállításai" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Szövegbeviteli mező beállításainak megjelenítése" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Hibajelzés beállításai" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Hibajelzés beállításainak megjelenítése" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Tájékoztató üzenetek beállításai" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Tájékoztató üzenetek beállításainak megjelenítése" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Fájlválasztó beállításai" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Fájlválasztó beállításainak megjelenítése" - -#: src/option.c:1985 -msgid "List options" -msgstr "Lista beállításai" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Lista beállításainak megjelenítése" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Értesítési ikon beállításai" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Értesítési ikon beállításainak megjelenítése" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Folyamatjelző beállításai" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Folyamatjelző beállításainak megjelenítése" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Kérdések beállításai" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Kérdések beállításainak megjelenítése" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Figyelmeztetések beállításai" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Figyelmeztetések beállításainak megjelenítése" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Nagyítás beállításai" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Nagyítás beállításainak megjelenítése" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Szöveges információk beállításai" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Szöveges információk beállításainak megjelenítése" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Színválasztó beállításai" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Színválasztó beállításainak megjelenítése" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Jelszó párbeszédablak beállításai" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Jelszó párbeszédablak beállításainak megjelenítése" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Űrlapok párbeszédablak beállításai" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Űrlapok párbeszédablak beállításainak megjelenítése" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Egyéb beállítások" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Egyéb beállítások megjelenítése" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ez a lehetőség nem érhető el. Nézze meg a --help kapcsoló kimenetét a " -"lehetséges használati módokért.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nincs támogatva ezen a párbeszédablakon.\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Kettő vagy több párbeszédablak-beállítás lett megadva.\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Adja meg jelszavát" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Írja be a felhasználónevét és jelszavát" - -#: src/password.c:100 -msgid "Username:" -msgstr "Felhasználónév:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Jelszó:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Hátralévő idő: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "A maximális érték nagyobb kell legyen, mint a minimális.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Az érték kívül esik a tartományon.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "A lista párbeszédablakhoz nincsenek megadva oszlopcímek.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Csak egy Lista párbeszédablak-típust használjon.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "A nagyítás értékének beállítása" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Mégse" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Szövegnézet" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kiválasztás naptárból" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Dátum kiválasztása a naptárból." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Naptár:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Új elem hozzáadása" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Í_rja be az új szöveget:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Hiba" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Hiba történt." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Űrlapok ablak" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Információ" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Minden frissítés kész." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Folyamatjelző" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Fut…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Kérdés" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Biztos folytatja?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Válasszon ki elemeket a listából" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Válasszon ki elemeket az alábbi listából." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Figyelmeztetés" diff --git a/po/id.po b/po/id.po deleted file mode 100644 index 0ccc283..0000000 --- a/po/id.po +++ /dev/null @@ -1,893 +0,0 @@ -# Indonesia translation of zenity. -# Copyright (C) 2005 THE zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# -# Ahmad Riza H Nst 20040520 -# Mohammad DAMT , 2005. -# Dirgita , 2010, 2011, 2012. -# Dirgita , 2010. -# Andika Triwidada , 2010, 2012, 2013, 2015. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-11-28 16:04+0700\n" -"Last-Translator: Kukuh Syafaat \n" -"Language-Team: Indonesian \n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.4\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Program ini adalah perangkat lunak bebas; Anda dapat menyebarluaskannya dan/" -"atau mengubahnya di bawah syarat GNU Lesser General Public License " -"sebagaimana dipublikasikan oleh Free Software Foundation; baik versi 2 dari " -"Lisensi, atau (terserah pilihan Anda) versi setelahnya.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Program ini didistribusikan dengan harapan dapat berguna, tetapi TANPA " -"ADANYA JAMINAN; termasuk tanpa jaminan DAYA JUAL atau KELAIKAN UNTUK TUJUAN " -"TERTENTU. Lihat GNU Lesser General Public License untuk rincian lebih " -"lanjut.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Anda seharusnya menerima salinan dari GNU Lesser General Public License " -"bersama dengan program ini; jika tidak, kirimkan surat Anda ke Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Mohammad DAMT , 2005.\n" -"Ahmad Riza H Nst , 2004.\n" -"Dirgita , 2010, 2011, 2012.\n" -"Andika Triwidada , 2010, 2012, 2013." - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Menampilkan kotak dialog dari skrip shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Batal" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Anda harus menentukan jenis dialog. Lihat 'zenity --help' untuk lebih jelas\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Tidak" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ya" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Tidak dapat mengurai pesan\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Nilai yang tak valid bagi arahan bertipe boolean.\n" -"Nilai yang didukung adalah 'true' atau 'false'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Arahan yang tak didukung. Dilewati.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nama arahan tak dikenal. Dilewati.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Tidak dapat mengurai perintah dari stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notifikasi Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Menentukan judul dialog" - -#: src/option.c:165 -msgid "TITLE" -msgstr "JUDUL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Menentukan icon jendela" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PATH_IKON" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Menentukan lebar" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LEBAR" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Menentukan tinggi" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "TINGGI" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Menentukan waktu tunggu dalam detik" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "WAKTU_HABIS" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Menata label untuk tombol OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKS" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Menata label untuk tombol Batal" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Menambah sebuah tombol ekstra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Atur petunjuk modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Menentukan jendela induk tempat mencantol" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "JENDELA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Menampilkan dialog kalender" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Menentukan teks dialog" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Menentukan hari kalender" - -#: src/option.c:252 -msgid "DAY" -msgstr "HARI" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Menentukan bulan kalender" - -#: src/option.c:259 -msgid "MONTH" -msgstr "BULAN" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Menentukan tahun kalender" - -#: src/option.c:266 -msgid "YEAR" -msgstr "TAHUN" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Menentukan format untuk tanggal yang dihasilkan" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "POLA" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Menampilkan dialog entri teks" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Menentukan teks entri" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Menyembunyikan teks entri" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Menampilkan dialog galat" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Atur ikon dialog" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NAMA-IKON" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Tanpa pembengkokan teks" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Jangan fungsikan markup Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Fungsikan penyingkatan dalam teks dialog. Ini memperbaikai ukuran jendela " -"yang tinggi dengan teks panjang" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Menampilkan dialog informasi" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Menampilkan dialog seleksi berkas" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Menentukan nama berkas" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NAMA_BERKAS" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Memperbolehkan seleksi multiberkas" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Mengaktifkan seleksi hanya direktori" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Mengaktifkan mode menyimpan" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Menentukan karakter pemisah keluaran" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "PEMISAH" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Konfirmasi seleksi berkas apabila nama berkas tersebut sudah ada" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Menata penyaring nama berkas" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAMA | POLA1 POLA2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Menampilkan dialog senarai" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Menentukan tajuk kolom" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLOM" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Menggunakan kotak cek untuk kolom pertama" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Menggunakan tombol radio untuk kolom pertama" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Menggunakan gambar untuk kolom pertama" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Memperbolehkan seleksi multibaris" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Memperbolehkan mengubah teks" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Mencetak kolom tertentu (Nilai utamanya adalah 1. 'ALL' untuk mencetak semua " -"kolom)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NOMOR" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Menyembunyikan kolom tertentu" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Menyembunyikan tajuk kolom" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Ubah fungsi pencarian baku daftar mencari teks di tengah, bukan di awal" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Menampilkan notifikasi" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Menentukan teks notifikasi" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Membaca perintah dari stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Menentukan arahan notifikasi" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Menampilkan dialog indikator proses" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Menentukan persentase awal" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERSENTASE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Indikator proses berpulsa" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Menutup dialog setelah mencapai 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Mematikan proses induk bila tombol Batal ditekan" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Menyembunyikan tombol Batal" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimasikan kapan kemajuan akan mencapai 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Menampilkan dialog pertanyaan" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Berikan fokus ke tombol Batal secara baku" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Menyembunyikan tombol OK dan Batal" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Menampilkan dialog informasi teks" - -#: src/option.c:715 -msgid "Open file" -msgstr "Membuka berkas" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Menentukan fonta teks" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Aktifkan ckeckbox 'Saya telah baca dan setuju'" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Fungsikan dukungan HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Jangan fungsikan interaksi pengguna dengan WebView. Hanya bekerja bila Anda " -"memakai opsi --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Tata suatu URL sebagai pengganti berkas. Hanya bekerja bila Anda memakai " -"opsi --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "Gulir otomatis teks ke akhir. Hanya ketika teks ditangkap dari stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Menampilkan dialog peringatan" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Menampilkan dialog skala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Menentukan nilai awal" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "NILAI" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Menentukan nilai terendah" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Menentukan nilai tertinggi" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Menentukan ukuran langkah" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Mencetak nilai parsial" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Menyembunyikan nilai" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Menampilkan dialog formulir" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Menambahkan Entri baru pada dialog formulir" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nama kolom isian" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Menambahkan Entri Sandi baru pada dialog formulir" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Menambahkan Kalender baru pada dialog formulir" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kolom isian nama kalender" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Menambahkan Daftar baru pada dialog formulir" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Daftar nama ruas dan tajuk" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Daftar nilai bagi Daftar" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Daftar nilai dipisahkan oleh |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Daftar nilai bagi kolom" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Menambahkan kotak kombo baru pada dialog formulir" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nama ruas kotak kombo" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Daftar nilai bagi kotak kombo" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Tampilkan tajuk kolom" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Menampilkan dialog sandi" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Menampilkan opsi nama pengguna" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Menampilkan dialog seleksi warna" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Menyetel warna" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Menampilkan palet" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Tentang zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Menampilkan versi" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opsi umum" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Menampilkan opsi umum" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opsi kalender" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Menampilkan opsi kalender" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opsi entri teks" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Menampilkan opsi entri teks" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opsi galat" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Menampilkan opsi galat" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opsi info" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Menampilkan opsi info" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opsi seleksi berkas" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Menampilkan opsi seleksi berkas" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opsi senarai" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Menampilkan opsi senarai" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opsi ikon notifikasi" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Menampilkan opsi ikon notifikasi" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opsi indikator proses" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Menampilkan opsi indikator proses" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opsi pertanyaan" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Menampilkan opsi pertanyaan" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opsi peringatan" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Menampilkan opsi peringatan" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opsi skala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Menampilkan opsi skala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opsi informasi teks" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Menampilkan opsi informasi teks" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opsi seleksi warna" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Menampilkan opsi seleksi warna" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opsi dialog sandi" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Menampilkan opsi dialog sandi" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opsi dialog formulir" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Menampilkan opsi dialog formulir" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opsi lain-lain" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Menampilkan opsi yang lainnya" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Opsi ini tidak tersedia. Silahkan lihat --help untuk penggunaan yang " -"mungkin.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s tidak didukung untuk dialog ini\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Dua atau lebih opsi dialog telah ditentukan\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Ketik sandi Anda" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Ketik nama pengguna dan sandi Anda" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nama Pengguna:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Sandi:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Sisa waktu: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Nilai maksimal harus lebih besar dari nilai minimal.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Nilai berada di luar jangkauan.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Judul kolom belum ditentukan untuk dialog Senarai\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Anda hanya boleh menggunakan satu jenis dialog Senarai.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Setel nilai skala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Batal" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tilikan Teks" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Pemilihan kalender" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Pilih tanggal dari yang di bawah." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Tambahkan entri baru" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Masukkan t_eks baru:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Galat" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Telah terjadi galat." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialog formulir" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informasi" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Semua pemutakhiran lengkap." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Kemajuan" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Berjalan..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pertanyaan" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Anda yakin ingin melanjutkan?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Pilih butir dari daftar" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Pilih butir dari daftar di bawah." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Peringatan" diff --git a/po/is.po b/po/is.po deleted file mode 100644 index e3d20b0..0000000 --- a/po/is.po +++ /dev/null @@ -1,517 +0,0 @@ -# Translation of zenity to Icelandic. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Samúel Jón Gunnarsson , 2003. -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2003-08-23 02:01-0100\n" -"Last-Translator: Samuel Jon Gunnarsson \n" -"Language-Team: Icelandic \n" -"Language: is\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -#, fuzzy -msgid "translator-credits" -msgstr "" -"Samúel Jón Gunnarsson\n" -"" - -#: ../src/about.c:433 -#, fuzzy -msgid "Display dialog boxes from shell scripts" -msgstr "Birtir dialog box frá skeljarskriptum" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "(C) 2003 Sun Microsystems" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "Þakkir" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "Skrifað af" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "Þýtt af" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -#, fuzzy -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Þú verður að tilgreina dialog gerð. Sjá 'zenity --help' fyrir nánari " -"útlistun\n" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -#, fuzzy -msgid "Zenity notification" -msgstr "Sýna upplýsinga dialog" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "Um Zenity" - -#: ../src/zenity.glade.h:3 -msgid "Add a new entry" -msgstr "Bæta við nýrri færslu" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Öllum uppfærslum er lokið." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Villa hefur átt sér stað." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Ertu viss um að þú viljir halda áfram?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "D_agatal:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Dagatalsval" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Villa" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Upplýsingar" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Framvinda" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Spurning" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "Keyri..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Veldu dagsetningu hér að neðan." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Veldu skrá" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Veldu hluti af lista" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Veldu hluti af lista hér að neðan." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Textasýn" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Aðvörun" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "_Þakkir" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "Sláðu inn nýjan t_exta:" - -#: ../src/option.c:105 -#, fuzzy -msgid "Set the dialog title" -msgstr "Setja titil dialog" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "TITILL" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "Setja táknmynd glugga" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "TÁKNMYNDASLÓÐ" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "Setja breidd" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "BREIDD" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "Setja hæð" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "HÆÐ" - -#: ../src/option.c:147 -#, fuzzy -msgid "Display calendar dialog" -msgstr "Sýna dagatals dialog" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "Setja texta dialog" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "Setja dag dagatals" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "Setja mánuð dagatals" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "Setja ár dagatals" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:207 -#, fuzzy -msgid "Display text entry dialog" -msgstr "Sýna textafærslu dialog" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:250 -#, fuzzy -msgid "Display error dialog" -msgstr "Sýna villu dialog" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -#, fuzzy -msgid "Display info dialog" -msgstr "Sýna upplýsinga dialog" - -#: ../src/option.c:316 -#, fuzzy -msgid "Display file selection dialog" -msgstr "Sýna skráarvals dialog" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "Setja skráarheiti" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "SKRÁARNAFN" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "Leyfa fjölval á skrám" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "AÐGREINIR" - -#: ../src/option.c:376 -#, fuzzy -msgid "Display list dialog" -msgstr "Sýna lista dialog" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:430 -#, fuzzy -msgid "Allow multiple rows to be selected" -msgstr "Leyfa fjölval á skrám" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "Leyfa breytingar í texta" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -#, fuzzy -msgid "Display notification" -msgstr "Sýna upplýsinga dialog" - -#: ../src/option.c:481 -#, fuzzy -msgid "Set the notification text" -msgstr "Setja texta dialog" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -#, fuzzy -msgid "Display progress indication dialog" -msgstr "Sýna framvinduupplýsinga dialog" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:557 -#, fuzzy -msgid "Display question dialog" -msgstr "Sýna spurningar dialog" - -#: ../src/option.c:590 -#, fuzzy -msgid "Display text information dialog" -msgstr "Sýna textaupplýsinga dialog" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "Opna skrá" - -#: ../src/option.c:623 -#, fuzzy -msgid "Display warning dialog" -msgstr "Sýna Aðvörunar dialog" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "Um zenity" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "Prenta útgáfunúmer" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "Almennir valkostir" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "Almennir valkostir" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "Dagatalsvalkostir" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "Dagatalsvalkostir" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "Skráarfærsluvalkostir" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "Skráarfærsluvalkostir" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "Villuvalkostir" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "Villuvalkostir" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "Upplýsingavalkostir" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "Upplýsingavalkostir" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "Skráarval valkostir" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "Skráarval valkostir" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "Listavalkostir" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "Listavalkostir" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "Framvinduvalkostir" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "Framvinduvalkostir" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "Aðvörunarvalkostir" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "Aðvörunarvalkostir" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "Spurningarvalkostir" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "Ýmsir valkostir" - -#: ../src/option.c:1392 -#, fuzzy -msgid "Show miscellaneous options" -msgstr "Ýmsir valkostir" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1425 -#, fuzzy -msgid "Two or more dialog options specified\n" -msgstr "Tveir eða fleiri dialog valmöguleikar skilgreindir\n" diff --git a/po/it.po b/po/it.po deleted file mode 100644 index 5f71749..0000000 --- a/po/it.po +++ /dev/null @@ -1,955 +0,0 @@ -# Italian translation of zenity -# Copyright (C) 2003 - 2011 Free Software Foundation, Inc. -# Copyright (C) 2012 - 2015 the zenity copyright holders. -# This file is distributed under the same license as the zenity package. -# Stefano Canepa , 2003, 2004, 2005, 2006. -# Luca Ferretti , 2005-2007. -# Milo Casagrande , 2008, 2010, 2012. -# Claudio Arseni , 2011, 2012, 2013, 2014, 2015. -# Gianvito Cavasoli , 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-02 11:55+0100\n" -"Last-Translator: Gianvito Cavasoli \n" -"Language-Team: Italiano \n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Gtranslator 2.91.7\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Questo programma è software libero; è possibile ridistribuirlo e/o " -"modificarlo secondo i termini della licenza GNU Lesser General Public " -"License, come pubblicata dalla Free Software Foundation; versione 2 della " -"licenza, o (a scelta) una versione più recente.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Questo programma è distribuito nella speranza che possa risultare utile, ma " -"SENZA ALCUNA GARANZIA, nemmeno la garanzia implicita di COMMERCIABILITÀ o " -"APPLICABILITÀ PER UNO SCOPO PARTICOLARE. Per maggiori dettagli consultare la " -"GNU Lesser General Public License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Una copia della GNU Lesser General Public License dovrebbe essere stata " -"fornita con questo programma. In caso contrario scrivere a:\n" -" Free Software Foundation, Inc.\n" -" 51 Franklin Street, Fifth Floor, Boston, MA\n" -" 02111-1307 USA" - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Claudio Arseni \n" -"Milo Casagrande \n" -"Luca Ferretti \n" -"Stefano Canepa " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostra i dialoghi da script di shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Ok" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_nnulla" - -# GNOME-2-20 -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Specificare il tipo di dialogo. Consultare \"zenity --help\" per maggiori " -"dettagli\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_No" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Si" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Impossibile analizzare il messaggio\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valore non valido per un suggerimento di tipo booleano.\n" -"I valori supportati sono \"true\" o \"false\".\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Suggerimento non supportato. Omesso.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nome del suggerimento sconosciuto. Omesso.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Impossibile analizzare il comando da stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notifica di zenity" - -# GNOME-2-20 -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Imposta il titolo del dialogo" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITOLO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Imposta l'icona della finestra" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PERCORSO_ICONA" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Imposta la larghezza" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGHEZZA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Imposta l'altezza" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTEZZA" - -# GNOME-2-20 -# non mi va di stare a pensare a una traduzione per timeout --Luca -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Imposta il tempo massimo del dialogo in secondi" - -# GNOME 2.24 -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPO_MASSIMO" - -# GNOME 2.24 -# -# (ndt) o semplicemente 'testo'? -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Imposta l'etichetta del pulsante «OK»" - -# GNOME-2-20 -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TESTO" - -# GNOME 2.24 -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Imposta l'etichetta del pulsante «Annulla»" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Aggiungi un pulsante extra" - -# GNOME-2-20 -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Imposta il suggerimento modale" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Imposta la finestra genitore a cui collegarsi" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FINESTRA" - -# GNOME-2-20 -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostra un dialogo con il calendario" - -# GNOME-2-20 -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Imposta il testo del dialogo" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Imposta il giorno del calendario" - -# GNOME-2-20 -#: src/option.c:252 -msgid "DAY" -msgstr "GIORNO" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Imposta il mese del calendario" - -# GNOME-2-20 -#: src/option.c:259 -msgid "MONTH" -msgstr "MESE" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Imposta l'anno del calendario" - -# GNOME-2-20 -#: src/option.c:266 -msgid "YEAR" -msgstr "ANNO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Imposta il formato della data restituita" - -# GNOME-2-20 -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODELLO" - -# GNOME-2-20 -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostra un dialogo di inserimento testo" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Imposta il testo della casella di inserimento" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Nasconde il testo nella casella di inserimento" - -# GNOME-2-20 -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostra un dialogo di errore" - -# GNOME-2-20 -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Imposta l'icona del dialogo" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOME_ICONA" - -# Bruttina, ma non mi veniva in mente niente di meglio -Luca -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Non abilita il testo a capo" - -# Bruttina, ma non mi veniva in mente niente di meglio -Luca -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Non abilita il markup Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Abilita elisione nel dialogo di testo. Questo risolve la dimensione della " -"finestra alta con testi lunghi" - -# GNOME-2-20 -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostra un dialogo di informazioni" - -# GNOME-2-20 -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostra un dialogo di selezione file" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Imposta il nome del file" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOME_FILE" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Consente di selezionare più di un file" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Attiva la selezione delle sole directory" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Attiva modalità sicura" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Imposta il carattere separatore per l'output" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATORE" - -# GNOME-2-20 -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Chiede di confermare la selezione se il nome di file esiste già" - -# GNOME 2.24 -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Imposta un filtro sul nome del file" - -# GNOME 2.24 -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOME | MODELLO1 MODELLO2 ..." - -# GNOME-2-20 -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostra un dialogo con un elenco" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Imposta il titolo della colonna" - -# GNOME-2-20 -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLONNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Usa caselle di selezione per la prima colonna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Usa pulsanti radio per la prima colonna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Usa un'immagine per la prima colonna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Consente di selezionare più di una riga" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Consente la modifica del testo" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Stampa una colonna specificata (Il valore predefinito è 1. «ALL» può essere " -"usato per stampare tutte le colonne)" - -# GNOME-2-20 -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Nasconde una colonna specifica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Nasconde le intestazioni delle colonne" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Modifica la funzione di ricerca in elenco cercando il testo nel mezzo e non " -"all'inizio" - -# FIXME -# -# la forma italiana, pur se non aderente all'originale -# è più corretta e in linea con gli altri messaggi -# che si ottengono eseguento `zenity --help` -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostra un'icona nell'area di notifica" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Imposta il testo della notifica" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Attende i comandi da stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Imposta il testo del suggerimento" - -# GNOME-2-20 -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostra un dialogo di indicazione dell'avanzamento" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Imposta la percentuale iniziale" - -# GNOME-2-20 -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTUALE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Fa pulsare la barra di avanzamento" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Chiude il dialogo quando viene raggiunto il 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Termina il processo genitore se è premuto il pulsante «Annulla»" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Nasconde il pulsante «Annulla»" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Stimare quando l'avanzamento raggiungerà il 100%" - -# GNOME-2-20 -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostra un dialogo di domanda" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Dare il focus al pulsante «Annulla» in modo predefinito" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Elimina i pulsanti «OK» e «Annulla»" - -# GNOME-2-20 -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostra un dialogo di informazione testuale" - -#: src/option.c:715 -msgid "Open file" -msgstr "Apri file" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Imposta il carattere del testo" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Abilita una casella di spunta \"Ho letto e accetto\"" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Abilita il supporto HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Non abilita l'interazione dell'utente con WebView. Funziona solo se viene " -"utilizzata l'opzione --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Imposta un URL al posto di un file. Funziona solo se viene utilizzata " -"l'opzione --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Scorrere automaticamente il testo fino alla fine. Solo quando il testo viene " -"preso da stdin" - -# GNOME-2-20 -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostra un dialogo di avvertimento" - -# GNOME-2-20 -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostra un dialogo con un cursore" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Imposta il valore iniziale" - -# GNOME-2-20 -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALORE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Imposta il valore minimo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Imposta il valore massimo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Imposta la dimensione dello spostamento" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Stampa i valori parziali" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Nasconde il valore" - -# GNOME-2-20 -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostra un dialogo modulo" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Aggiunge una nuova voce nel dialogo modulo" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "NOME_CAMPO" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Aggiunge un nuovo campo password nel dialogo modulo" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Aggiunge un nuovo calendario nel dialogo modulo" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "NOME_CAMPO_CALENDARIO" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Aggiunge un nuovo Elenco nel dialogo modulo" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Nome campo e titolo dell'elenco" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Valori per elenco" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Elenco di valori separati da |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Elenco di valori per colonne" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Aggiunge una nuova casella combinata nel dialogo modulo" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nome campo casella combinata" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Elenco di valori per la casella combinata" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostra il titolo della colonna" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostra un dialogo della password" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostra l'opzione del nome utente" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostra un dialogo di selezione del colore" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Imposta il colore" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostra la tavolozza" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Informazioni su Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Stampa la versione" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opzioni generiche" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostra le opzioni generiche" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opzioni del calendario" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostra le opzioni del calendario" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opzioni della casella di inserimento del testo" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostra le opzioni della casella di inserimento del testo" - -# GNOME-2-20 -#: src/option.c:1952 -msgid "Error options" -msgstr "Opzioni del dialogo di errore" - -# GNOME-2-20 -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostra le opzioni del dialogo di errore" - -# GNOME-2-20 -#: src/option.c:1962 -msgid "Info options" -msgstr "Opzioni del dialogo di informazione" - -# GNOME-2-20 -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostra le opzioni del dialogo di informazione" - -# GNOME-2-20 -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opzioni del dialogo di selezione file" - -# GNOME-2-20 -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostra le opzioni del dialogo di selezione file" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opzioni del dialogo elenco" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostra le opzioni del dialogo elenco" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opzioni dell'icona di notifica" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostra le opzioni dell'icona di notifica" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opzioni della barra di avanzamento" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostra le opzioni della barra di avanzamento" - -# GNOME-2-20 -#: src/option.c:2024 -msgid "Question options" -msgstr "Opzioni di domanda" - -# GNOME-2-20 -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostra le opzioni di domanda" - -# GNOME-2-20 -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opzioni di avvertimento" - -# GNOME-2-20 -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostra le opzioni di avvertimento" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opzioni del cursore" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostra le opzioni del cursore" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opzioni del testo informativo" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostra le opzioni del testo informativo" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opzioni di selezione del colore" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostra le opzioni di selezione del colore" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opzioni del dialogo password" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostra le opzioni del dialogo password" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opzioni del dialogo moduli" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostra le opzioni del dialogo moduli" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opzioni varie" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostra le opzioni varie" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Questa opzione non è disponibile. Consultare --help per ogni possibile uso.\n" - -# GNOME-2-20 -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "L'opzione --%s non è supportata da questo dialogo\n" - -# GNOME-2-20 -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Specificate due o più opzioni per il dialogo\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Digitare la password" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Digitare il nome utente e la password" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nome utente:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Password:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tempo rimanente: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Il valore massimo deve essere maggiore del valore minimo.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valore fuori dai limiti.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nessun titolo per le colonne nel dialogo Elenco.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Si dovrebbe usare solo un tipo di dialogo Elenco.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Regolare il valore del cursore" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Annulla" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Testo visualizzato" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selezione da calendario" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Selezionare una data." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendario:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Aggiungere una voce" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Inserire nuovo testo:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Errore" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Si è verificato un errore." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialogo moduli" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informazioni" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Tutti gli aggiornamenti sono stati completati." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Avanzamento" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "In esecuzione..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Domanda" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Continuare veramente?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Selezionare elementi dall'elenco" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Selezionare elementi dal seguente elenco." - -# GNOME-2-20 -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avvertimento" diff --git a/po/ja.po b/po/ja.po deleted file mode 100644 index af27129..0000000 --- a/po/ja.po +++ /dev/null @@ -1,904 +0,0 @@ -# zenity ja.po. -# Copyright (C) 2003-2012 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# KAMAGASAKO Masatoshi , 2003. -# Takeshi AIHANA , 2003-2008. -# Satoru SATOH , 2006. -# Hideki Yamane (Debian-JP) , 2009. -# Yasumichi Akahoshi , 2009, 2011. -# Takayuki KUSANO , 2010, 2012. -# Jiro Matsuzawa , 2011, 2012, 2015. -# Mitsuya Shibata , 2012. -# Hajime Taira , 2015. -# sicklylife , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-06-10 18:57+0000\n" -"PO-Revision-Date: 2019-08-29 21:15+0900\n" -"Last-Translator: sicklylife \n" -"Language-Team: Japanese \n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.7.5\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財" -"団によって発行されたGNU 劣等一般公衆利用許諾契約書(バージョン2 か、希望によっ" -"てはそれ以降のバージョンのうちどれか)の定める条件の下で再頒布または改変するこ" -"とができます。\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"このプログラムは有用であることを願って頒布されますが、*全くの無保証* です。商" -"業可能性の保証や特定の目的への適合性は、言外に示されたものも含め全く存在しま" -"せん。詳しくはGNU 劣等一般公衆利用許諾契約書をご覧ください。\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"あなたはこのプログラムと共に、GNU 劣等一般公衆利用許諾契約書の複製物を一部受" -"け取ったはずです。もし受け取っていなければ、フリーソフトウェア財団まで請求し" -"てください(宛先は the Free Software Foundation, Inc., 51 Franklin Street, " -"Fifth Floor, Boston, MA 02110-1301, USA)。" - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"相花 毅 \n" -"草野 貴之 \n" -"日本 GNOME ユーザー会 \n" -"松澤 二郎 \n" -"Hajime Taira \n" -"Hideki Yamane (Debian-JP) \n" -"KAMAGASAKO Masatoshi \n" -"Mitsuya Shibata \n" -"Satoru SATOH \n" -"sicklylife \n" -"Yasumichi Akahoshi " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "シェルスクリプトからダイアログボックスを表示します" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "OK(_O)" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "キャンセル(_C)" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"ダイアログの種類を指定してください (詳細は `zenity --help` を参照してくださ" -"い)\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "いいえ(_N)" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "はい(_Y)" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "メッセージを解析できませんでした\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"ブーリアン型のヒントとして無効な値です。\n" -"指定可能な値は 'true' か 'false' のみです。\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "未サポートのヒントです。スキップします。\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "未知のヒント名です。スキップします。\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "標準入力からのコマンドを解析できませんでした\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity 通知" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "ダイアログのタイトルを指定する" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITLE" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "ウィンドウのアイコンを指定する" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "幅を指定する" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "WIDTH" - -#: src/option.c:185 -msgid "Set the height" -msgstr "高さを指定する" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "ダイアログのタイムアウトを秒単位で指定する" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "OK ボタンのラベルを指定する" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "キャンセルボタンのラベルを指定する" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "指定したボタンを追加する" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "ダイアログをモーダルにするよう、ヒントを設定する" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "アタッチする親ウィンドウを指定する" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "WINDOW" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "カレンダーダイアログを表示する" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "ダイアログに表示する文字列を指定する" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "カレンダーの日を指定する" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "カレンダーの月を指定する" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "カレンダーの年を指定する" - -#: src/option.c:266 -msgid "YEAR" -msgstr "YEAR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "返却する日付の書式を指定する" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATTERN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "テキスト入力ダイアログを表示する" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "入力欄の初期値を指定する" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "入力テキストを隠す" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "エラーダイアログを表示する" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "ダイアログのアイコンを指定する" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "テキストを折り返さない" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Pango マークアップを無効にする" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"ダイアログのテキストにおける省略表記(...)を有効にする。長文表示時にウィンドウ" -"サイズが縦に伸びるのを防止します。" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "情報ダイアログを表示する" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "ファイル選択ダイアログを表示する" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "ファイル名を指定する" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILENAME" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "複数のファイルを選択可能にする" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "フォルダーのみ選択可能にする" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "保存モードにする" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "出力を区切る文字を指定する" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "ファイル名が既に存在していたら確認をとる" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "ファイル名をフィルターするパターンを指定する" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "一覧ダイアログを表示する" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "列見出しを指定する" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "先頭の列にチェックボックスを使用する" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "先頭の列にラジオボタンを使用する" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "先頭の列に画像を使用する" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "複数行を選択可能にする" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "テキストを変更可能にする" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "特定の列を出力する (デフォルトは '1'。'ALL' ですべての列を出力)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMBER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "指定した列を隠す" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "列見出しを隠す" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"デフォルトの検索動作を変更し、テキストの先頭ではなく途中からでも検索できるよ" -"うにする" - -#: src/option.c:557 -msgid "Display notification" -msgstr "通知領域に表示する" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "通知する文字列を指定する" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "標準入力からコマンドを受け取る" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "ヒントの通知を指定する" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "進捗表示ダイアログを表示する" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "進捗率 (%) の初期値を指定する" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "進捗表示バーを左右に動かす" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "進捗率が 100% に到達したらダイアログを消す" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "キャンセルボタンを押したら親プロセスを強制終了する" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "キャンセルボタンを隠す" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "進捗状況がいつ 100% に達するか計算する" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "質問ダイアログを表示する" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "デフォルトでキャンセルボタンにフォーカスを当てる" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "テキスト情報ダイアログを表示する" - -#: src/option.c:715 -msgid "Open file" -msgstr "ファイルを開く" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "フォントを指定する" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "「熟読の上、同意します。」のようなチェックボックスを有効にする" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML サポートを有効にする" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"WebView でのユーザー操作を無効にする。--html オプションを指定した場合のみ機能" -"する" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"ファイルの代わりに URL を指定する。--html オプションを指定した場合のみ機能す" -"る。" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"テキストを最後まで自動スクロールする。テキストを標準入力から読み取る場合のみ" -"機能する" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "警告ダイアログを表示する" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "スケールダイアログを表示する" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "初期値を指定する" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALUE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "最小値を指定する" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "最大値を指定する" - -#: src/option.c:856 -msgid "Set step size" -msgstr "刻み幅を指定する" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "値が変更されるたびに標準出力へ値を出力する" - -#: src/option.c:870 -msgid "Hide value" -msgstr "ダイアログに値を表示しない" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "フォームダイアログを表示する" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "テキストエントリをフォームダイアログに追加する" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "フィールド名" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "パスワードエントリをフォームダイアログに追加する" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "カレンダーをフォームダイアログに追加する" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "カレンダーのフィールド名" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "一覧ダイアログをフォームダイアログに追加する" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "一覧ダイアログのフィールドと見出し" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "一覧ダイアログの値のリスト" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| で区切られた値のリスト" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "列の値のリスト" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "フォームダイアログに新しいコンボボックスを追加する" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "コンボボックスのフィールド名" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "コンボボックスの値の一覧" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "列見出しを表示する" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "パスワードダイアログを表示する" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "ユーザー名のオプションを表示する" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "色選択ダイアログを表示する" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "色を指定する" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "パレットを表示する" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "このアプリケーションの情報を表示する" - -#: src/option.c:1030 -msgid "Print version" -msgstr "バージョンを表示する" - -#: src/option.c:1913 -msgid "General options" -msgstr "一般的なオプション" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "一般的なオプションを表示する" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "カレンダーダイアログのオプション" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "カレンダーのオプションを表示する" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "テキスト入力ダイアログのオプション" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "テキスト入力のオプションを表示する" - -#: src/option.c:1952 -msgid "Error options" -msgstr "エラーダイアログのオプション" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "エラーダイアログのオプションを表示する" - -#: src/option.c:1962 -msgid "Info options" -msgstr "情報ダイアログのオプション" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "情報ダイアログのオプションを表示する" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "ファイル選択ダイアログのオプション" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "ファイル選択ダイアログのオプションを表示する" - -#: src/option.c:1985 -msgid "List options" -msgstr "一覧ダイアログのオプション" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "一覧ダイアログのオプションを表示する" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "通知アイコンのオプション" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "通知アイコンのオプションを表示する" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "進捗表示ダイアログのオプション" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "進捗表示ダイアログのオプションを表示する" - -#: src/option.c:2024 -msgid "Question options" -msgstr "質問ダイアログのオプション" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "質問ダイアログのオプションを表示する" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "警告ダイアログのオプション" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "警告ダイアログのオプションを表示する" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "スケールのオプション" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "スケールのオプションを表示する" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "テキスト情報のオプション" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "テキスト情報のオプションを表示する" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "色選択のオプション" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "色選択オプションを表示する" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "パスワードダイアログのオプション" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "パスワードダイアログのオプションを表示する" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "フォームダイアログのオプション" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "フォームダイアログのオプションを表示する" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "その他のオプション" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "その他のオプションを表示する" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"このオプションは利用できません (利用可能なすべてのオプションは --help で確認" -"してください)。\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "このダイアログではオプション --%s をサポートしていません\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "二つ以上のダイアログオプションが指定されました\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "パスワードを入力してください" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "ユーザー名とパスワードを入力してください" - -#: src/password.c:100 -msgid "Username:" -msgstr "ユーザー名:" - -#: src/password.c:110 -msgid "Password:" -msgstr "パスワード:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "残り時間: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "最大値は最小値よりも大きくしてください。\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "値は有効範囲外です。\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "一覧ダイアログの列見出しが指定されていません。\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "1個だけのリストダイアログを使用してください。\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "スケール値の調整" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "キャンセル" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "テキストの表示" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "カレンダーの選択" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "日付を選択してください。" - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "カレンダー(_A):" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "新しいエントリの追加" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "新しいテキストの入力(_E):" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "エラー" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "エラーが発生しました。" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "フォームダイアログ" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "情報" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "すべての更新が完了しました。" - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "進捗" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "実行中..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "質問" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "処理を続行してもよろしいですか?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "一覧からアイテムの選択" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "一覧からアイテムを選択してください。" - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "警告" diff --git a/po/ka.po b/po/ka.po deleted file mode 100644 index bcd13fd..0000000 --- a/po/ka.po +++ /dev/null @@ -1,524 +0,0 @@ -# translation of zenity.gnome-2-14.po to Georgian -# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Vladimer Sichinava , 2006. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-14\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-08-12 02:31+0200\n" -"PO-Revision-Date: 2006-03-18 22:37+0100\n" -"Last-Translator: Vladimer Sichinava \n" -"Language-Team: Georgian \n" -"Language: ka\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "Malkhaz Barkalaya მალხაზ ბარკალაია " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "ძირითადი სცენარის დიალოგის ფანჯარა" - -#: ../src/main.c:94 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "მიუთითეთ დიალოგის ტიპი. დაწვრილებით იხ. \"ზენიტის დახმარებაში\"\n" - -#: ../src/notification.c:138 -msgid "could not parse command from stdin\n" -msgstr "stdin-ბრძანების ანალიზი შეუძლებელია\n" - -#: ../src/notification.c:251 ../src/notification.c:268 -msgid "Zenity notification" -msgstr "ზენიტის შეტყობინება" - -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "მაქსიმალური მნიშვნელობა მინიმალურზე მეტი უნდა იყოს.\n" - -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "დაუშვებელი მნიშვნელობა.\n" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "არ არის მითითებული სვეტის სათაური.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "გამოიყენეთ სიის ფანჯრის მხოლოდ ერთი ტიპი\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "ახალი ჩანაწერის დამატება" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "მასშტაბის კოეფიციენტის შერჩევა" - -#: ../src/zenity.glade.h:3 -msgid "Adjust the scale value." -msgstr "მასშტაბის კოეფიციენტის შერჩევა." - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "განახლება დამთავრებულია." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "შეცდომა ოპერაციის შესრულებისას." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "დარწმუნებული ბრძანდებით?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "_კალენდარი:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "კალენდრის არჩევა" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "შეცდომა" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "ინფორმაცია" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "პროგრესი" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "შეკითხვა" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "გაშვებულია..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "თარიღის არჩევა." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "ფაილის არჩევა" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "ელემენტის არჩევა სიიდან" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "ელემენტის არჩევა სიიდან." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "ტექსტის ხედი" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "გაფრთხილება" - -#: ../src/zenity.glade.h:20 -msgid "_Enter new text:" -msgstr "_ახალი ტექსტის შეყვანა:" - -#: ../src/option.c:115 -msgid "Set the dialog title" -msgstr "დიალოგის სათაური" - -#: ../src/option.c:116 -msgid "TITLE" -msgstr "სათაური" - -#: ../src/option.c:124 -msgid "Set the window icon" -msgstr "ფანჯარის ხატულა" - -#: ../src/option.c:125 -msgid "ICONPATH" -msgstr "ხატულას მდებარეობა" - -#: ../src/option.c:133 -msgid "Set the width" -msgstr "სიგანე" - -#: ../src/option.c:134 -msgid "WIDTH" -msgstr "სიგანე" - -#: ../src/option.c:142 -msgid "Set the height" -msgstr "სიმაღლე" - -#: ../src/option.c:143 -msgid "HEIGHT" -msgstr "სიმაღლე" - -#: ../src/option.c:157 -msgid "Display calendar dialog" -msgstr "კალენდრის დიალოგი" - -#: ../src/option.c:166 ../src/option.c:226 ../src/option.c:269 -#: ../src/option.c:302 ../src/option.c:404 ../src/option.c:533 -#: ../src/option.c:585 ../src/option.c:651 ../src/option.c:684 -msgid "Set the dialog text" -msgstr "დიალოგის ტექსტი" - -#: ../src/option.c:175 -msgid "Set the calendar day" -msgstr "მიუთითეთ დღე" - -#: ../src/option.c:184 -msgid "Set the calendar month" -msgstr "მიუთითეთ თვე" - -#: ../src/option.c:193 -msgid "Set the calendar year" -msgstr "მიუთითეთ წელი" - -#: ../src/option.c:202 -msgid "Set the format for the returned date" -msgstr "მიუთითეთ·ფორმატი მიღებული თარიღისათვის" - -#: ../src/option.c:217 -msgid "Display text entry dialog" -msgstr "ტექსტი შეყვანის დიალოგი" - -#: ../src/option.c:235 -msgid "Set the entry text" -msgstr "შესაყვანი ტექსტი" - -#: ../src/option.c:244 -msgid "Hide the entry text" -msgstr "შეყვანილი ტექსტის დამალვა" - -#: ../src/option.c:260 -msgid "Display error dialog" -msgstr "შეცდომის დიალოგის ჩვენება" - -#: ../src/option.c:278 ../src/option.c:311 ../src/option.c:594 -#: ../src/option.c:660 -msgid "Do not enable text wrapping" -msgstr "ტექსტის გადატანის აკრძალვა" - -#: ../src/option.c:293 -msgid "Display info dialog" -msgstr "საინფორმაციო დიალოგი" - -#: ../src/option.c:326 -msgid "Display file selection dialog" -msgstr "ფაილის არჩევა" - -#: ../src/option.c:335 -msgid "Set the filename" -msgstr "ფაილის სახელი" - -#: ../src/option.c:336 ../src/option.c:619 -msgid "FILENAME" -msgstr "ფაილის სახელი" - -#: ../src/option.c:344 -msgid "Allow multiple files to be selected" -msgstr "რამდენიმე ფაილის არჩევის დაშვება" - -#: ../src/option.c:353 -msgid "Activate directory-only selection" -msgstr "მხოლოდ დასტის არჩევა" - -#: ../src/option.c:362 -msgid "Activate save mode" -msgstr "შენახვის რეჟიმის აქტივირება" - -#: ../src/option.c:371 ../src/option.c:440 -msgid "Set output separator character" -msgstr "გამყოფი სიმბოლოს არჩევა" - -#: ../src/option.c:372 ../src/option.c:441 -msgid "SEPARATOR" -msgstr "გამყოფი" - -#: ../src/option.c:380 -msgid "Confirm file selection if filename already exists" -msgstr "" - -#: ../src/option.c:395 -msgid "Display list dialog" -msgstr "სიის ფანჯარა" - -#: ../src/option.c:413 -msgid "Set the column header" -msgstr "სვეტის თავსართი" - -#: ../src/option.c:422 -msgid "Use check boxes for first column" -msgstr "დამოუკიდებელი არჩევანის ღილაკების გამოყენება პირველ სვეტში" - -#: ../src/option.c:431 -msgid "Use radio buttons for first column" -msgstr "დამოკიდებული არჩევანის ღილაკების გამოყენება პირველ სვეტში" - -#: ../src/option.c:449 -msgid "Allow multiple rows to be selected" -msgstr "რამდენიმე სტრიქონის არჩევის დაშვება" - -#: ../src/option.c:458 ../src/option.c:627 -msgid "Allow changes to text" -msgstr "ტექსტის შეცვლის დაშვება" - -#: ../src/option.c:467 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"მითითებული სვეტის ბეჭდვა (ნაგულისხმევია 1. 'ყველა' -დაბეჭდავს ყველა სვეტს)" - -#: ../src/option.c:476 -msgid "Hide a specific column" -msgstr "მითითებული სვეტის დამალვა" - -#: ../src/option.c:491 -msgid "Display notification" -msgstr "შეტყობინების ჩვენება" - -#: ../src/option.c:500 -msgid "Set the notification text" -msgstr "შეტყობინების ტექსტი" - -#: ../src/option.c:509 -msgid "Listen for commands on stdin" -msgstr "stdin-ბრძანებების მიღება" - -#: ../src/option.c:524 -msgid "Display progress indication dialog" -msgstr "პროგრესის ჩვენება" - -#: ../src/option.c:542 -msgid "Set initial percentage" -msgstr "საწყისი პროცენტული მაჩვენებელი" - -#: ../src/option.c:551 -msgid "Pulsate progress bar" -msgstr "პულსირებადი პროგრესბარი" - -#: ../src/option.c:561 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "დიალოგის დახურვა 100%-ის მიღწევისას" - -#: ../src/option.c:576 -msgid "Display question dialog" -msgstr "შეკითხვის ფანჯრის ჩვენება" - -#: ../src/option.c:609 -msgid "Display text information dialog" -msgstr "ტექსტური ინფორმაციის ფანჯრის ჩვენება" - -#: ../src/option.c:618 -msgid "Open file" -msgstr "ფაილის გახსნა" - -#: ../src/option.c:642 -msgid "Display warning dialog" -msgstr "გაფრთხილების ფანჯრის ჩვენება" - -#: ../src/option.c:675 -msgid "Display scale dialog" -msgstr "მასშტაბირების ფანჯრის ჩვენება" - -#: ../src/option.c:693 -msgid "Set initial value" -msgstr "საწყისი მნიშვნელობა" - -#: ../src/option.c:702 -msgid "Set minimum value" -msgstr "მინიმალური მნიშვნელობა" - -#: ../src/option.c:711 -msgid "Set maximum value" -msgstr "მაქსიმალური მნიშვნელობა" - -#: ../src/option.c:720 -msgid "Set step size" -msgstr "ბიჯის ზომა" - -#: ../src/option.c:729 -msgid "Print partial values" -msgstr "ნაწილობრივი მნიშვნელობების ბეჭდვა" - -#: ../src/option.c:738 -msgid "Hide value" -msgstr "მნიშვნელობის დამალვა" - -#: ../src/option.c:753 -msgid "About zenity" -msgstr "პროგრამის შესახებ" - -#: ../src/option.c:762 -msgid "Print version" -msgstr "ვერსიის ბეჭდვა" - -#: ../src/option.c:1397 -msgid "General options" -msgstr "საერთო პარამეტრები" - -#: ../src/option.c:1398 -msgid "Show general options" -msgstr "საერთო პარამეტრების ჩვენება" - -#: ../src/option.c:1408 -msgid "Calendar options" -msgstr "კალენდრის პარამეტრები" - -#: ../src/option.c:1409 -msgid "Show calendar options" -msgstr "კალენდრის პარამეტრების ჩვენება" - -#: ../src/option.c:1419 -msgid "Text entry options" -msgstr "ტექსტური ელემენტის პარამეტრები" - -#: ../src/option.c:1420 -msgid "Show text entry options" -msgstr "ტექსტური ელემენტის პარამეტრების ჩვენება" - -#: ../src/option.c:1430 -msgid "Error options" -msgstr "შეცდომის პარამეტრები" - -#: ../src/option.c:1431 -msgid "Show error options" -msgstr "შეცდომის პარამეტრების ჩვენება" - -#: ../src/option.c:1441 -msgid "Info options" -msgstr "ინფორმაციის პარამეტრები" - -#: ../src/option.c:1442 -msgid "Show info options" -msgstr "ინფორმაციის პარამეტრების ჩვენება" - -#: ../src/option.c:1452 -msgid "File selection options" -msgstr "ფაილის არჩევის პარამეტრები" - -#: ../src/option.c:1453 -msgid "Show file selection options" -msgstr "ფაილის არჩევის პარამეტრების ჩვენება" - -#: ../src/option.c:1463 -msgid "List options" -msgstr "სიის პარამეტრები" - -#: ../src/option.c:1464 -msgid "Show list options" -msgstr "სიის პარამეტრების ჩვენება" - -#: ../src/option.c:1474 -msgid "Notification icon options" -msgstr "მაუწყებელი ხატულების პარამეტრები" - -#: ../src/option.c:1475 -msgid "Show notification icon options" -msgstr "მაუწყებელი ხატულების პარამეტრების ჩვენება" - -#: ../src/option.c:1485 -msgid "Progress options" -msgstr "პროგრესის პარამეტრები" - -#: ../src/option.c:1486 -msgid "Show progress options" -msgstr "პროგრესის პარამეტრების ჩვენება" - -#: ../src/option.c:1496 -msgid "Question options" -msgstr "შეკითხვის პარამეტრები" - -#: ../src/option.c:1497 -msgid "Show question options" -msgstr "შეკითხვის პარამეტრების ჩვენება" - -#: ../src/option.c:1507 -msgid "Warning options" -msgstr "გაფრთხილების პარამეტრები" - -#: ../src/option.c:1508 -msgid "Show warning options" -msgstr "გაფრთხილების პარამეტრების ჩვენება" - -#: ../src/option.c:1518 -msgid "Scale options" -msgstr "მასშტაბირების პარამეტრები" - -#: ../src/option.c:1519 -msgid "Show scale options" -msgstr "მასშტაბირების პარამეტრების ჩვენება" - -#: ../src/option.c:1529 -msgid "Text information options" -msgstr "ტექსტური ინფორმაციის პარამეტრები" - -#: ../src/option.c:1530 -msgid "Show text information options" -msgstr "ტექსტური ინფორმაციის პარამეტრების ჩვენება" - -#: ../src/option.c:1540 -msgid "Miscellaneous options" -msgstr "სხვადასხვა პარამეტრები" - -#: ../src/option.c:1541 -msgid "Show miscellaneous options" -msgstr "სხვადასხვა პარამეტრების ჩვენება" - -#: ../src/option.c:1566 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "დაუშვებელი პარამეტრია. დაშვებული მნიშვნელობებისათვის იხ. დახმარება.\n" - -#: ../src/option.c:1570 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s დაუშვებელია ამ ფანჯარაში\n" - -#: ../src/option.c:1574 -msgid "Two or more dialog options specified\n" -msgstr "მითითებულია ერთზე მეტი პარამეტრი\n" - -#~ msgid "Orientation" -#~ msgstr "ორიენტაცია" - -#~ msgid "The orientation of the tray." -#~ msgstr "ლანგრის ორიენტაცია." diff --git a/po/kk.po b/po/kk.po deleted file mode 100644 index 68f9da2..0000000 --- a/po/kk.po +++ /dev/null @@ -1,869 +0,0 @@ -# Kazakh translation for zenity. -# Copyright (C) 2015 zenity's COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# Baurzhan Muftakhidinov , 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-05-24 10:30+0000\n" -"PO-Revision-Date: 2020-07-10 13:24+0500\n" -"Last-Translator: Baurzhan Muftakhidinov \n" -"Language-Team: Kazakh \n" -"Language: kk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.3.1\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Бұл бағдарлама - еркін бағдарлама қамтама; сіз оны Free Software Foundation " -"шығарған GNU Lesser General Public License аясында еркін тарата не/және " -"өзгерте аласыз; лицензия нұсқасы 2 не (тандауыңызша) кез-келген кейін " -"шыққан.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Бұл бағларлама пайдалы болады деген сеніммен таратылады, бірақ ЕШҚАНДАЙ " -"КЕПІЛДЕМЕ берілмейді; КОММЕРЦИЯЛЫҚ ҚҰНДЫЛЫҚ немесе белгілі бір МАҚСАТТАРҒА " -"СӘЙКЕС КЕЛЕТІНІ үшін де. Көбірек білу үшін GNU Lesser General Public " -"License қараңыз.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Сіз бұл бағдарламамен бірге GNU Lesser General Public License көшірмесін " -"алуыңыз керек еді; олай болмаса, Free Software Foundation, Inc. ұйымына " -"хабарласыңыз, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "Baurzhan Muftakhidinov 2015" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Қоршам скриптерінен сұхбат терезелерін көрсету" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "О_К" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "Ба_с тарту" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Сұхбат түрін көрсету керек. Көбірек білу үшін 'zenity --help' қараңыз\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Жоқ" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Иә" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Хабарламаны талдау мүмкін емес\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity хабарламасы" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Сұхбат атауын орнату" - -#: src/option.c:165 -msgid "TITLE" -msgstr "АТАУЫ" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Терезе таңбашасын орнату" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ТАҢБАШАЖОЛЫ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Енін орнату" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ЕНІ" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Биіктігін орнату" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "БИІКТІГІ" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Сұхбат уақытын орнату, сек" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ТАЙМАУТ" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "ОК батырмасынын жазуын орнату" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "МӘТІН" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Бас тарту батырмасынын жазуын орнату" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Қосымша батырманы қосу" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ТЕРЕЗЕ" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Күнтізбе сұхбатын көрсету" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Сұхбат мәтінін орнату" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Күнтізбе күнін орнату" - -#: src/option.c:252 -msgid "DAY" -msgstr "КҮН" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Күнтізбе айын орнату" - -#: src/option.c:259 -msgid "MONTH" -msgstr "АЙ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Күнтізбе жылын орнату" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ЖЫЛ" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Қайтарылған күн пішімін орнату" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ҮЛГІ" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ТАҢБАША-АТЫ" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Файл атын орнату" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "ФАЙЛ_АТЫ" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Бірнеше файлды таңдауды рұқсат ету" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Тек буманы таңдау режимін іске қосу" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Сақтау режимін белсендіру" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Шығыс ажыратқыш таңбасын орнату" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "АЖЫРАТҚЫШ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Файл аты бар болып тұрған кезде, файлды таңдаудың растауын сұрау" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "АТЫ | ҮЛГІ1 ҮЛГІ2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "БАҒАН" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "САН" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Хабарламаны көрсету" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Хабарлама мәтінін орнату" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ПАЙЫЗДЫҚ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Бас тарту батырмасын жасыру" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "" - -#: src/option.c:715 -msgid "Open file" -msgstr "Файлды ашу" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Мәтін қарібін орнату" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML қолдауын іске қосу" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Бастапқы мәнін орнату" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "МӘНІ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Минималды мәнін орнату" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Максималды мәнін орнату" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Қадам өлшемін орнату" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Мәнін жасыру" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Өріс аты" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Бағандар тақырыптамасын көрсету" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Пароль сұхбат терезесін көрсету" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Пайдаланушының аты параметрін көрсету" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Түсті таңдау сұхбат терезесін көрсету" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Түсті орнату" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Палитраны көрсету" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Zenity туралы" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Нұсқа ақпаратын шығару" - -#: src/option.c:1913 -msgid "General options" -msgstr "Жалпы опциялар" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Жалпы опцияларды көрсету" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Күнтізбе опциялары" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Күнтізбе опцияларын көрсету" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Мәтін енгізу параметрлері" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Мәтін енгізу параметрлерін көрсету" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Қате параметрлері" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Қате параметрлерін көрсету" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Ақпарат параметрлері" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Ақпарат параметрлерін көрсету" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Файлды таңдау параметрлері" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Файлды таңдау параметрлерін көрсету" - -#: src/option.c:1985 -msgid "List options" -msgstr "Тізім параметрлері" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Тізім параметрлерін көрсету" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Хабарландыру таңбашасының параметрлері" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Хабарландыру таңбашасының параметрлерін көрсету" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Прогресс параметрлері" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Прогресс параметрлерін көрсету" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Сұрақ параметрлері" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Сұрақ параметрлерін көрсету" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Ескерту параметрлері" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Ескерту параметрлерін көрсету" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Масштабтау параметрлері" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Масштабтау параметрлерін көрсету" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Мәтін ақпаратының параметрлері" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Мәтін ақпаратының параметрлерін көрсету" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Түсті таңдау параметрлері" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Түсті таңдау параметрлерін көрсету" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Пароль сұхбат терезесінің параметрлері" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Пароль сұхбат терезесінің параметрлерін көрсету" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Формалар сұхбат терезесінің параметрлері" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Формалар сұхбат терезесінің параметрлерін көрсету" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Әр түрлі параметрлер" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Әр түрлі параметрлерді көрсету" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Пароліңізді енгізіңіз" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Пайдаланушы атын және пароліңізді енгізіңіз" - -#: src/password.c:100 -msgid "Username:" -msgstr "Пайдаланушы:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Пароль:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Қалған уақыт: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максималды мәні минималды мәнінен үлкен болуы тиіс.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Мәні ауқымнан тыс.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Масштаб мәнін реттеу" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Бас тарту" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "ОК" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Мәтін көрінісі" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Күнтізбе таңдауы" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Төмендегі күнді таңдаңыз." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "Кү_нтізбе:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Жаңа жазбаны қосу" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Жаңа мәтінді _енгізіңіз:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Қате" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Қате орын алды." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Формалар сұхбат терезесі" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Ақпарат" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Барлық жаңартулар аяқталды." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Барысы" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Орындалуда..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Сұрақ" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Жалғастыруды қалайсыз ба?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Тізімнен элементтерді таңдаңыз" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Төмендегі тізімнен элементтерді таңдаңыз." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Ескерту" diff --git a/po/kn.po b/po/kn.po deleted file mode 100644 index e72d250..0000000 --- a/po/kn.po +++ /dev/null @@ -1,596 +0,0 @@ -# translation of kn.po to Kannada -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Gnome Kannada Team , 2003. -# Shankar Prasad , 2008. -msgid "" -msgstr "" -"Project-Id-Version: kn\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-21 20:47+0000\n" -"PO-Revision-Date: 2008-09-15 18:33+0530\n" -"Last-Translator: Shankar Prasad \n" -"Language-Team: Kannada \n" -"Language: kn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "ಲತಾ ಎಲ್ , ಶಂಕರ್ ಪ್ರಸಾದ್ ಎಂ. ವಿ. " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "ಶೆಲ್ ಸ್ಕ್ರಿಪ್ಟಿನಲ್ಲಿನಿಂದ ಸಂವಾದ ಬಾಕ್ಸುಗಳನ್ನು ತೋರಿಸು" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "ನೀವು ಸಂವಾದ ರೀತಿಯನ್ನು ನೀವು ಸೂಚಿಸಬೇಕಾಗುತ್ತದೆ. ಮಾಹಿತಿಗಾಗಿ 'zenity --help' ನೋಡಿ \n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin ಇಂದ ಆಜ್ಞೆಯನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗುವುದಿಲ್ಲ\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Zenity ಸೂಚನೆ" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ಹೆಚ್ಚಿನ ಮೌಲ್ಯವು ಅತ್ಯಂತ ಕಡಿಮೆ ಮೌಲ್ಯಕ್ಕಿಂತ ದೊಡ್ಡದಿರಲೇಬೇಕು. \n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿನ ಮೌಲ್ಯ. \n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "ಪಟ್ಟಿಯ ಸಂವಾದಕ್ಕೆ ಯಾವುದೆ ಕಾಲಂ ಶೀರ್ಷಿಕೆಯನ್ನು ಸೂಚಿಸಿಲ್ಲ. \n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ನೀವು ಒಂದು ಪಟ್ಟಿಯ ಸಂವಾದ ರೀತಿಯನ್ನು ಮಾತ್ರ ಉಪಯೋಗಿಸಬೇಕು.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "ಹೊಸ ನಮೂದನ್ನು ಸೇರಿಸು" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "ಸ್ಕೇಲ್ ಮೌಲ್ಯವನ್ನು ಸರಿಹೊಂದಿಸು" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "ಎಲ್ಲಾ ಅಪ್‌ಡೇಟ್‌ಗಳನ್ನು ಪೂರ್ತಿಗೊಳಿಸಲಾಗಿದೆ." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "ಒಂದು ದೋಷವು ಎದುರಾಗಿದೆ." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "ಮುಂದುವರೆಸಲು ಖಚಿತವಾಗಿಯೂ ಬಯಸುತ್ತೀರಾ?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "ಕ್ಯಾಲೆಂಡರ್(_a):" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "ಕ್ಯಾಲೆಂಡರ್ ಆಯ್ಕೆ" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "ದೋಷ" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "ಮಾಹಿತಿ" - -# libgnomeui/gnome-app-util.c:685 -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "ಪ್ರಗತಿ" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "ಪ್ರಶ್ನೆ" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "ಚಲಾಯಿಸಲಾಗುತ್ತಿದೆ..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "ಕೆಳಗಿನವುಗಳಿಂದ ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆಮಾಡಿ" - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "ಕಡತವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "ಪಟ್ಟಿಯಿಂದ ವಸ್ತುಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "ಕೆಳಗಿನ ಪಟ್ಟಿಯಿಂದ ವಸ್ತುಗಳನ್ನು ಆರಿಸಿ." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "ಪಠ್ಯದ ನೋಟ" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "ಸೂಚನೆ" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "ಹೊಸ ಪಠ್ಯವನ್ನು ನಮೂದಿಸು(_E):" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "ಸಂವಾದಕ್ಕೆ ಶೀರ್ಷಿಕೆಯನ್ನು ನೀಡು" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "TITLE" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "ವಿಂಡೋಗೆ ಚಿಹ್ನೆಯನ್ನು ನೀಡು" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "ಅಗಲವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "ಎತ್ತರವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "ಸಂವಾದದ ಸಮಯ ತೀರುವಿಕೆಯನ್ನಯ ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಹೊಂದಿಸಿ" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "ಕ್ಯಾಲೆಂಡರ್ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:428 ../src/option.c:558 -#: ../src/option.c:620 ../src/option.c:704 ../src/option.c:737 -msgid "Set the dialog text" -msgstr "ಸಂವಾದದ ಪಠ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:429 ../src/option.c:526 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:630 ../src/option.c:639 -#: ../src/option.c:705 ../src/option.c:738 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "ಕ್ಯಾಲೆಂಡರಿನ ದಿನವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "ಕ್ಯಾಲೆಂಡರಿನ ತಿಂಗಳನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "ಕ್ಯಾಲೆಂಡರಿನ ವರ್ಷವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "ಹಿಂದಿರುಗಿಸಲಾದ ದಿನಾಂಕದ ವಿನ್ಯಾಸವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "ಪಠ್ಯ ನಮೂದು ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "ನಮೂದಿಸುವ ಪಠ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "ನಮೂದಿಸುವ ಪಠ್ಯವನ್ನು ಅಡಗಿಸು" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "ದೋಷ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:647 -#: ../src/option.c:713 -msgid "Do not enable text wrapping" -msgstr "ಪಠ್ಯ ಆವರಿಕೆಯನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಡ" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "ಮಾಹಿತಿ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "ಕಡತ ಆಯ್ಕೆಯ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "ಕಡತದ ಹೆಸರು ತಿಳಿಸು" - -#: ../src/option.c:351 ../src/option.c:672 -msgid "FILENAME" -msgstr "ಕಡತದ ಹೆಸರು" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "ಬಹು ಕಡತಗಳನ್ನು ಆಯ್ಕೆಮಾಡಲು ಬಿಡು" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "ಕೋಶ-ಮಾತ್ರ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "ಉಳಿಸುವ ಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು" - -#: ../src/option.c:386 ../src/option.c:464 -msgid "Set output separator character" -msgstr "ಔಟ್‌ಪುಟ್‌ನ ವಿಭಜಕ ಅಕ್ಷರವನ್ನು ಹೊಂದಿಸಿ" - -#: ../src/option.c:387 ../src/option.c:465 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "ಕಡತದ ಹೆಸರು ಮೊದಲೇ ಅಸ್ಠಿತ್ವದಲ್ಲಿದ್ದರೆ ಕಡತದ ಆಯ್ಕೆಯನ್ನು ದೃಢಪಡಿಸಿ" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "ಕಡತದ ಹೆಸರಿನ ಫಿಲ್ಟರ್ ಅನ್ನು ಹೊಂದಿಸಿ" - -#: ../src/option.c:405 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "ಮಾದರಿ೧ ಮಾದರಿ೨..." - -#: ../src/option.c:419 -msgid "Display list dialog" -msgstr "ಪಟ್ಟಿ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:437 -msgid "Set the column header" -msgstr "ಕಾಲಂ ಹೆಡರ್ ಅನ್ನು ನೀಡಿ" - -#: ../src/option.c:438 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:446 -msgid "Use check boxes for first column" -msgstr "ಮೊದಲಿನ ಕಾಲಂಗೆ ಚೆಕ್ ಬಾಕ್ಸುಗಳನ್ನು ಬಳಸಿ" - -#: ../src/option.c:455 -msgid "Use radio buttons for first column" -msgstr "ಮೊದಲಿನ ಕಾಲಂಗೆ ರೇಡಿಯೋ ಗುಂಡಿಳನ್ನು ಬಳಸಿ" - -#: ../src/option.c:473 -msgid "Allow multiple rows to be selected" -msgstr "ಅನೇಕ ಸಾಲುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಲು ಅನುಮತಿಸಿ" - -#: ../src/option.c:482 ../src/option.c:680 -msgid "Allow changes to text" -msgstr "ಪಠ್ಯಕ್ಕೆ ಬದಲಾವಣೆ ಮಾಡಲು ಅನುಮತಿಸಿ" - -#: ../src/option.c:491 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "ನಿಗದಿತ ಕಾಲಂ ಅನ್ನು ಮುದ್ರಿಸು (ಡಿಫಾಲ್ಟ್‍ ೧ ಆಗಿರುತ್ತದೆ, ಎಲ್ಲ ಕಾಲಂಗಳನ್ನು ಮುದ್ರಿಸಲು 'ಎಲ್ಲವೂ' ಅನ್ನು ಬಳಸಬಹುದು)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:493 ../src/option.c:502 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:501 -msgid "Hide a specific column" -msgstr "ನಿರ್ದಿಷ್ಟ ಕಾಲಂ ಅನ್ನು ಅಡಗಿಸು" - -#: ../src/option.c:516 -msgid "Display notification" -msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸು" - -#: ../src/option.c:525 -msgid "Set the notification text" -msgstr "ಸೂಚನಾ ಪಠ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:534 -msgid "Listen for commands on stdin" -msgstr "stdin ನಲ್ಲಿ ಆಜ್ಞೆಗಳನ್ನು ಆಲಿಸು" - -#: ../src/option.c:549 -msgid "Display progress indication dialog" -msgstr "ಪ್ರಗತಿಯನ್ನು ಸೂಚಿಸುವ ಸಂವಾದವನ್ನು ತೋರಿಸು" - -#: ../src/option.c:567 -msgid "Set initial percentage" -msgstr "ಆರಂಭಿಕ ಪ್ರತಿಶತವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:568 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:576 -msgid "Pulsate progress bar" -msgstr "ಪ್ರಗತಿ ಪಟ್ಟಿಯನ್ನು ಪಲ್ಸೇಟ್ ಮಾಡು" - -#: ../src/option.c:586 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "೧೦೦% ಪ್ರತಿಶತ ತಲುಪಿದ ಬಳಿಕ ಸಂವಾದವನ್ನು ತೆಗೆದುಹಾಕು." - -#: ../src/option.c:596 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "ರದ್ದುಗೊಳಿಸು ಗುಂಡಿಯನ್ನು ಒತ್ತಿದಾಗ ಮೂಲ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಸ್ಥಗಿತಗೊಳಿಸು" - -#: ../src/option.c:611 -msgid "Display question dialog" -msgstr "ಪ್ರಶ್ನೆ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:629 -msgid "Sets the label of the Ok button" -msgstr "ಸರಿ ಗುಂಡಿಯ ಲೇಬಲ್‌ ಅನ್ನು ಹೊಂದಿಸುತ್ತದೆ" - -#: ../src/option.c:638 -msgid "Sets the label of the Cancel button" -msgstr "ರದ್ದುಗೊಳಿಸು ಗುಂಡಿಯ ಲೇಬಲ್‌ ಅನ್ನು ಹೊಂದಿಸುತ್ತದೆ" - -#: ../src/option.c:662 -msgid "Display text information dialog" -msgstr "ಪಠ್ಯ ಮಾಹಿತಿ ಸಂವಾದವನ್ನು ತೋರಿಸು" - -#: ../src/option.c:671 -msgid "Open file" -msgstr "ಕಡತವನ್ನು ತೆರೆ" - -#: ../src/option.c:695 -msgid "Display warning dialog" -msgstr "ಸೂಚನೆ ಸಂವಾದ ಪ್ರದರ್ಶಿಸು" - -#: ../src/option.c:728 -msgid "Display scale dialog" -msgstr "ಸ್ಕೇಲ್ ಸಂವಾದವನ್ನು ತೋರಿಸು" - -#: ../src/option.c:746 -msgid "Set initial value" -msgstr "ಆರಂಭಿಕ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:747 ../src/option.c:756 ../src/option.c:765 -#: ../src/option.c:774 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:755 -msgid "Set minimum value" -msgstr "ಕನಿಷ್ಟ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:764 -msgid "Set maximum value" -msgstr "ಗರಿಷ್ಟ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:773 -msgid "Set step size" -msgstr "ಹಂತದ ಗಾತ್ರವನ್ನು ಹೊಂದಿಸು" - -#: ../src/option.c:782 -msgid "Print partial values" -msgstr "ಆಂಶಿಕ ಮೌಲ್ಯವನ್ನು ಮುದ್ರಿಸು" - -#: ../src/option.c:791 -msgid "Hide value" -msgstr "ಮೌಲ್ಯವನ್ನು ಅಡಗಿಸು" - -#: ../src/option.c:806 -msgid "About zenity" -msgstr "ಝೆನಿಟಿ ಯ ಬಗ್ಗೆ" - -#: ../src/option.c:815 -msgid "Print version" -msgstr "ಮುದ್ರಣ ಆವೃತ್ತಿ" - -#: ../src/option.c:1470 -msgid "General options" -msgstr "ಸಾಮಾನ್ಯ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1471 -msgid "Show general options" -msgstr "ಸಾಮಾನ್ಯ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1481 -msgid "Calendar options" -msgstr "ಕ್ಯಾಲೆಂಡರಿನ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1482 -msgid "Show calendar options" -msgstr "ಕ್ಯಾಲೆಂಡರಿನ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1492 -msgid "Text entry options" -msgstr "ಪಠ್ಯ ನಮೂದು ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1493 -msgid "Show text entry options" -msgstr "ಪಠ್ಯ ನಮೂದು ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1503 -msgid "Error options" -msgstr "ತಪ್ಪು ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1504 -msgid "Show error options" -msgstr "ತಪ್ಪು ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1514 -msgid "Info options" -msgstr "ಮಾಹಿತಿ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1515 -msgid "Show info options" -msgstr "ಮಾಹಿತಿ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1525 -msgid "File selection options" -msgstr "ಕಡತವನ್ನು ಆರಿಸುವ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1526 -msgid "Show file selection options" -msgstr "ಕಡತವನ್ನು ಆರಿಸುವ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1536 -msgid "List options" -msgstr "ಪಟ್ಟಿ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1537 -msgid "Show list options" -msgstr "ಪಟ್ಟಿ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1547 -msgid "Notification icon options" -msgstr "ಸೂಚನಾ ಚಿಹ್ನೆಯ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1548 -msgid "Show notification icon options" -msgstr "ಸೂಚನಾ ಚಿಹ್ನೆಯ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1558 -msgid "Progress options" -msgstr "ಪ್ರಗತಿಯ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1559 -msgid "Show progress options" -msgstr "ಪ್ರಗತಿಯ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1569 -msgid "Question options" -msgstr "ಪ್ರಶ್ನೆಯ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1570 -msgid "Show question options" -msgstr "ಪ್ರಶ್ನೆಯ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1580 -msgid "Warning options" -msgstr "ಸೂಚನೆಯ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1581 -msgid "Show warning options" -msgstr "ಎಚ್ಚರಿಕಾ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1591 -msgid "Scale options" -msgstr "ಸ್ಕೇಲ್ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1592 -msgid "Show scale options" -msgstr "ಸ್ಕೇಲ್ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1602 -msgid "Text information options" -msgstr "ಪಠ್ಯ ಮಾಹಿತಿ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1603 -msgid "Show text information options" -msgstr "ಪಠ್ಯ ಮಾಹಿತಿ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1613 -msgid "Miscellaneous options" -msgstr "ಇತರೆ ಆಯ್ಕೆಗಳು" - -#: ../src/option.c:1614 -msgid "Show miscellaneous options" -msgstr "ಇತರೆ ಆಯ್ಕೆಗಳನ್ನು ತೋರಿಸು" - -#: ../src/option.c:1639 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "ಈ ಆಯ್ಕೆಯು ಲಭ್ಲ್ಲಯವಿಲ್ಲ. ಇದರ ಎಲ್ಲ ಸಾಧ್ಯವಿರುವ ಬಳಕೆಗಾಗಿ --help ಅನ್ನು ನೋಡಿ. \n" - -#: ../src/option.c:1643 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ವು ಈ ಸಂವಾದಕ್ಕೆ ಬೆಂಬಲ ನೀಡುವುದಿಲ್ಲ\n" - -#: ../src/option.c:1647 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "ಎರಡು ಅಥವಾ ಹೆಚ್ಚಿನ ಸಂವಾದ ಆಯ್ಕೆಗಳನ್ನು ಸೂಚಿಸಲಾಗಿದೆ \n" - diff --git a/po/ko.po b/po/ko.po deleted file mode 100644 index 5ce65a8..0000000 --- a/po/ko.po +++ /dev/null @@ -1,895 +0,0 @@ -# zenity -# This file is distributed under the same license as the zenity package. -# Young-Ho, Cha , 2004. -# Changwoo Ryu , 2006-2016, 2018. -# -# 주의: -# - 이 프로그램의 이름인 Zenity는 "제니티"로 음역. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2018-02-25 12:05+0900\n" -"Last-Translator: Changwoo Ryu \n" -"Language-Team: GNOME Korea \n" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"차영호 \n" -"류창우 " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "쉘 스크립트로 대화 상자를 표시합니다" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "확인(_O)" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "취소(_C)" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"대화 상자 형식을 지정해야 합니다. 자세한 것은 `zenity --help'를 참고하십시" -"오\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "아니요(_N)" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "예(_Y)" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "메시지를 파싱할 수 없습니다\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"불리언 형식 힌트로 잘못된 값입니다.\n" -"지원하는 값은 'true' 또는 'false'입니다.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "지원하지 않는 힌트. 무시합니다.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "알 수 없는 힌트 이름. 무시합니다.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "표준 입력에서 명령어를 파싱할 수 없습니다\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "제니티 알림" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "대화 상자 제목을 설정합니다" - -#: src/option.c:165 -msgid "TITLE" -msgstr "<제목>" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "창 아이콘을 설정합니다" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "<아이콘 경로>" - -#: src/option.c:178 -msgid "Set the width" -msgstr "너비를 설정합니다" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "<너비>" - -#: src/option.c:185 -msgid "Set the height" -msgstr "높이를 설정합니다" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "<높이>" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "대화 상자 제한 시간을 초 단위로 설정합니다" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "<제한시간>" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "확인 단추의 레이블을 설정합니다" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "<텍스트>" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "취소 단추의 레이블을 설정합니다" - -# 옵션 설명 - 문장으로 번역 -#: src/option.c:214 -msgid "Add an extra button" -msgstr "추가 단추를 추가합니다" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "모달 힌트를 설정합니다" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "붙을 상위 창을 지정합니다" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "<창>" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "달력 대화 상자를 표시합니다" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "대화 상자의 텍스트를 설정합니다" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "달력의 날짜를 설정합니다" - -#: src/option.c:252 -msgid "DAY" -msgstr "<날>" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "달력의 달을 설정합니다" - -#: src/option.c:259 -msgid "MONTH" -msgstr "<달>" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "달력의 연도를 설정합니다" - -#: src/option.c:266 -msgid "YEAR" -msgstr "<연도>" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "리턴할 날짜의 형식을 설정합니다" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "<형식>" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "텍스트 입력 대화 창을 표시합니다" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "입력란의 텍스트를 설정합니다" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "입력란의 텍스트를 숨깁니다" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "오류 대화 상자를 표시합니다" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "대화 상자 아이콘을 설정합니다" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "<아이콘 이름>" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "텍스트 줄 바꾸기를 쓰지 않습니다" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "판고 마크업을 쓰지 않습니다" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"대화 창 글에 말줄임표를 사용합니다. 말줄임표를 사용하면 글이 길어져서 창 크기" -"가 커지는 일을 방지할 수 있습니다." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "정보 대화 상자를 표시합니다" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "파일 선택상자를 표시합니다" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "파일 이름을 설정합니다" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "<파일 이름>" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "여러 파일을 선택할 수 있게 합니다" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "디렉터리만 선택합니다" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "저장 모드를 사용합니다" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "출력 구분문자를 설정합니다" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "<구분>" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "파일 이름이 이미 있을 때 그 파일을 정말 선택할 지 확인합니다" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "파일 이름 필터를 설정합니다" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "<이름> | <패턴1> <패턴2> ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "목록 대화 상자를 표시합니다" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "열 머리글을 설정합니다" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "<열>" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "첫번째 열의 확인란을 사용합니다" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "첫번째 열의 라디오 단추를 사용합니다" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "첫번째 열의 그림을 사용합니다" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "여러 파일을 선택할 수 있게 합니다" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "텍스트를 바꿀 수 있습니다" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "특정 열을 출력합니다(기본값은 1, 'ALL'을 쓰면 모든 열을 출력합니다)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "<숫자>" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "특정 열을 숨깁니다" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "열 머리글을 숨깁니다" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"리스트 기본 검색 함수가 처음이 아닌 중간의 텍스트를 검색하도록 바꿉니다" - -#: src/option.c:557 -msgid "Display notification" -msgstr "알림을 표시합니다" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "알림 텍스트를 설정합니다" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "표준 입력에서 명령어를 받습니다" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "알림 힌트를 설정합니다" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "진행 표시상자를 표시합니다" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "처음 퍼센트값을 설정합니다" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "<퍼센트값>" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "진행률 표시줄을 움직입니다" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100%가 되면 대화 상자를 닫습니다" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "취소 단추를 누르면 상위 프로세스를 강제로 끝냅니다" - -# 옵션 설명 - 문장으로 번역 -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "취소 단추를 감춥니다" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "진행률이 100%가 될 시점을 예상합니다" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "질문 대화 상자를 표시합니다" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "기본값으로 취소 단추에 포커스를 놓습니다" - -# 옵션 설명 - 문장으로 번역 -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "확인 및 취소 단추를 바꿉니다" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "텍스트 정보 대화 창을 표시합니다" - -#: src/option.c:715 -msgid "Open file" -msgstr "파일 열기" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "텍스트 글꼴을 설정합니다" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "읽었고 동의한다는 확인란 사용" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML 기능 사용" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"웹 보기에서 사용자 조작을 허용하지 않습니다. --html 옵션을 사용해야 동작합니" -"다." - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "파일 대신 URL 설정. --html 옵션을 사용해야 동작합니다." - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"자동으로 텍스트 끝으로 스크롤합니다. 텍스트를 표준 입력에서 읽었을 경우에만 " -"사용" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "주의 대화 상자를 표시합니다" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "눈금값 대화 상자를 표시합니다" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "처음 값을 설정합니다" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "<값>" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "최소값을 설정합니다" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "최대값을 설정합니다" - -#: src/option.c:856 -msgid "Set step size" -msgstr "단계 크기를 설정합니다" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "일부 값을 출력합니다" - -#: src/option.c:870 -msgid "Hide value" -msgstr "값을 숨깁니다" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "형식 입력 대화 상자를 표시합니다" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "형식 입력 대화 상자에 새 항목을 추가합니다" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "항목 이름" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "형식 입력 대화 상자에 새 암호 입력 창을 추가합니다" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "형식 입력 대화 상자에 새 달력을 추가합니다" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "달력 항목 이름" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "형식 입력 대화 상자에 새 리스트를 추가합니다" - -# argument 설명 -#: src/option.c:908 -msgid "List field and header name" -msgstr "목록 항목 및 머리글 이름" - -# argument 설명 -#: src/option.c:914 -msgid "List of values for List" -msgstr "목록에 대한 값의 목록" - -# argument 설명 -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| 문자로 구분한 값의 목록" - -# argument 설명 -#: src/option.c:921 -msgid "List of values for columns" -msgstr "열의 값의 목록" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "형식 입력 대화 상자에 새 콤보 상자를 추가합니다" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "콤보 상자 항목 이름" - -# argument 설명 -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "콤보 상자 값의 목록" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "열 머리글을 표시합니다" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "암호 대화 상자를 표시합니다" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "사용자 이름 옵션을 표시합니다" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "색 선택 창을 표시합니다" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "색을 설정합니다" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "팔레트를 표시합니다" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "제니티 정보" - -#: src/option.c:1030 -msgid "Print version" -msgstr "버전 출력" - -#: src/option.c:1913 -msgid "General options" -msgstr "일반 옵션" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "일반 옵션을 표시합니다" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "달력 옵션" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "달력 옵션을 표시합니다" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "텍스트 입력란 옵션" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "텍스트 입력란 옵션을 표시합니다" - -#: src/option.c:1952 -msgid "Error options" -msgstr "오류 옵션" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "오류 옵션을 표시합니다" - -#: src/option.c:1962 -msgid "Info options" -msgstr "정보 옵션" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "정보 옵션을 표시합니다" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "파일 선택 옵션" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "파일 선택 옵션을 표시합니다" - -#: src/option.c:1985 -msgid "List options" -msgstr "목록 옵션" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "목록 옵션을 표시합니다" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "알림 아이콘 옵션" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "알림 아이콘 옵션을 표시합니다" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "진행 옵션" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "진행 옵션을 표시합니다" - -#: src/option.c:2024 -msgid "Question options" -msgstr "물음 옵션" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "물음 옵션을 표시합니다" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "주의 옵션" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "주의 옵션을 표시합니다" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "눈금 옵션" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "눈금 옵션을 표시합니다" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "텍스트 정보 옵션" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "텍스트 정보 옵션을 표시합니다" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "색 선택 옵션" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "색 선택 옵션을 표시합니다" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "암호 대화 상자 옵션" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "암호 대화 상자 옵션을 표시합니다" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "형식 입력 대화 상자 옵션" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "형식 입력 대화 상자 옵션을 표시합니다" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "기타 옵션" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "기타 옵션을 표시합니다" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"이 옵션을 사용할 수 없습니다. 사용할 수 있는 옵션을 모두 보려면 --help를 참고" -"하십시오.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "이 대화 상자에서 --%s 옵션은 지원하지 않습니다\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "두 개 이상의 대화 상자 옵션을 설정했습니다\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "암호를 입력하십시오" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "사용자 이름과 암호를 입력하십시오" - -#: src/password.c:100 -msgid "Username:" -msgstr "사용자 이름:" - -#: src/password.c:110 -msgid "Password:" -msgstr "암호:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "남은 시간: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "최대값은 최소값보다 커야 합니다.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "값이 범위를 넘었습니다.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "목록 대화 상자에서 열 제목을 설정하지 않았습니다.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "하나의 목록 대화 상자 형식만 쓸 수 있습니다.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "눈금 값 조정" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "취소" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "확인" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "텍스트 보기" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "달력 선택" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "아래에서 날짜를 선택하십시오." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "달력(_A):" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "항목 추가" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "새 텍스트 입력(_E):" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "오류" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "오류가 발생했습니다." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "형식 입력 대화 상자" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "정보" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "모든 업데이트가 끝났습니다." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "진행" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "실행 중..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "물음" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "계속 진행하겠습니까?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "목록에서 항목을 선택하십시오" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "아래 목록에서 항목을 선택하십시오." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "경고" diff --git a/po/ku.po b/po/ku.po deleted file mode 100644 index f3ec31e..0000000 --- a/po/ku.po +++ /dev/null @@ -1,483 +0,0 @@ -# translation of zenity.gnome-2-12.po to Kurdish -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# Erdal Ronahi , 2005. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-12\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-09 13:44+0200\n" -"PO-Revision-Date: 2005-10-15 16:18+0200\n" -"Last-Translator: Erdal Ronahi \n" -"Language-Team: Kurdish \n" -"Language: ku\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.10\n" -"Plural-Forms: nplurals=2; plural= n != 1\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -msgid "translator-credits" -msgstr "Spasiya wergêran" - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "Spas" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "Nivîskar" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "Wergêr" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "Hêl" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -msgid "Zenity notification" -msgstr "" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "" - -#: ../src/zenity.glade.h:3 -#, fuzzy -msgid "Add a new entry" -msgstr "Veser kirina ketinek" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "" - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "" - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "_Salname:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Hilbijartina salnameyê" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Çewtî" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Agahî" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Pêşketin" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Pirs" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "" - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "" - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "" - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Hişyar" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "_Spas" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "SERNIVÎS" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "FIREHÎ" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "BILINDAHÎ" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "NAVÊ DOSIYÊ" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:430 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -msgid "Display notification" -msgstr "" - -#: ../src/option.c:481 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "" - -#: ../src/option.c:1260 -msgid "Show general options" -msgstr "" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "" - -#: ../src/option.c:1271 -msgid "Show calendar options" -msgstr "" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "" - -#: ../src/option.c:1282 -msgid "Show text entry options" -msgstr "" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "" - -#: ../src/option.c:1293 -msgid "Show error options" -msgstr "" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "" - -#: ../src/option.c:1304 -msgid "Show info options" -msgstr "" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "" - -#: ../src/option.c:1315 -msgid "Show file selection options" -msgstr "" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "" - -#: ../src/option.c:1326 -msgid "Show list options" -msgstr "" - -#: ../src/option.c:1336 -msgid "Notification icon options" -msgstr "" - -#: ../src/option.c:1337 -msgid "Show notification icon options" -msgstr "" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "" - -#: ../src/option.c:1348 -msgid "Show progress options" -msgstr "" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "" - -#: ../src/option.c:1359 -msgid "Show question options" -msgstr "" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "" - -#: ../src/option.c:1370 -msgid "Show warning options" -msgstr "" - -#: ../src/option.c:1380 -msgid "Text information options" -msgstr "" - -#: ../src/option.c:1381 -msgid "Show text information options" -msgstr "" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "" - -#: ../src/option.c:1392 -msgid "Show miscellaneous options" -msgstr "" - -#: ../src/option.c:1417 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "" - diff --git a/po/lt.po b/po/lt.po deleted file mode 100644 index 5afd282..0000000 --- a/po/lt.po +++ /dev/null @@ -1,900 +0,0 @@ -# translation of lt.po to Lithuanian -# Lithuanian translation of zenity -# Copyright (C) 2003-2006, 2007 Free Software Foundation, Inc. -# -# -# Tomas Kuliavas , 2003. -# Žygimantas Beručka , 2003-2006. -# Justina Klingaitė , 2005. -# Gintautas Miliauskas , 2006, 2007. -# Algimantas Margevičius , 2012. -# Aurimas Černius , 2013, 2014, 2015, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: lt\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-30 20:22+0200\n" -"Last-Translator: Aurimas Černius \n" -"Language-Team: Lietuvių \n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ši programa yra nemokama. Jūs galite ją platinti ir/arba modifikuoti " -"remdamiesi Free Software Foundation paskelbtomis GNU Nuosaikiosios " -"Bendrosios Viešosios licenzijos sąlygomis : arba 2 licenzijos versija, arba " -"(savo nuožiūra) bet kuria vėlesne versija.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ši programa platinama su viltimi, kad ji bus naudinga, bet BE JOKIOS " -"GARANTIJOS; be jokios numanomos PERKAMUMO ar TINKAMUMO KONKRETIEMS TIKSLAMS " -"garantijos. žiūrėkite GNU Nuosaikiąją Bendrąją Viešąją licenziją norėdami " -"sužinoti smulkmenas\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Jūs turėtumėte kartu su šia programa gauti ir GNU Nuosaikiosios Bendrosios " -"Viešosios licencijos sąlygas; jei ne - rašykite Free Software Foundation " -"organizacijai, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Paskutinysis vertėjas:\n" -"Aurimas Černius ,\n" -"\n" -"Ankstesnieji vertėjai:\n" -"Gintautas Miliauskas ,\n" -"Žygimantas Beručka ,\n" -"Tomas Kuliavas ,\n" -"Justina Klingaitė " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Parodo dialogo langus dirbant su tekstinės aplinkos scenarijais" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Gerai" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Atsisakyti" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Jūs turite nurodyti dialogo tipą. Paleiskite 'zenity --help' norėdami gauti " -"informaciją apie tinkamus raktus\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Taip" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nepavyko perskaityti pranešimo\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Netinkama vertė loginio tipo patarimui.\n" -"Galimos vertės yra „true“ ir „false“.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepalaikomas patarimas. Praleidžiama.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nežinomas patarimo pavadinimas. Praleidžiama.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nepavyko perskaityti komandos iš stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity pranešimas" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Nustatyti lango antraštę" - -#: src/option.c:165 -msgid "TITLE" -msgstr "ANTRAŠTĖ" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Nustatyti lango piktogramą" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "KELIAS-IKI-PIKTOGRAMOS" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Nustatyti plotį" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "PLOTIS" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Nustatyti aukštį" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "AUKŠTIS" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Nustatyti dialogo laiko limitą sekundėmis" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "LIMITAS" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Nustatyti mygtuko „Gerai“ tekstą" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKSTAS" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Nustatyti mygtuko „Atsisakyti“ tekstą" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Pridėti papildomą mygtuką" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Nustatyti modalinio lango patarimą" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Nustatyti tėvinį langą, prie kurio prikabinti" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "LANGAS" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Parodyti kalendoriaus dialogą" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Nustatyti dialogo tekstą" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Nustatyti kalendoriaus dieną" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIENA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Nustatyti kalendoriaus mėnesį" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MĖNUO" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Nustatyti kalendoriaus metus" - -#: src/option.c:266 -msgid "YEAR" -msgstr "METAI" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Nustatyti grąžinamos datos formatą" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ŠABLONAS" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Parodyti teksto įvedimo dialogą" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Nustatyti įvedamą tekstą" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Paslėpti įvedamą tekstą" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Parodyti klaidos dialogą" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Nustatyti dialogo piktogramą" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "PIKTOGRAMOS-PAVADINIMAS" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Neįjungti teksto laužymo" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Neįjungti Pango ženklinimo" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Įjungti teksto sutrumpinimą. Tai pataiso didelį lango dydį su ilgais tekstais" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Parodyti informacinį langą" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Parodyti failo pasirinkimo langą" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Nustatyti failo pavadinimą" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FAILO-PAVADINIMAS" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Leisti parinkti kelis failus" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Įjungti tik-aplankų pasirinkimą" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Įjungti saugų režimą" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Nustatyti išvedimo skiriamąjį simbolį" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SKIRTUKAS" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Patvirtinti failo pavadinimo pasirinkimą, jei toks jau egzistuoja" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Nustatyti failo pavadinimo filtrą" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "PAVADINIMAS | ŠABLONAS1 ŠABLONAS2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Parodyti sąrašo dialogą" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Nustatyti stulpelio antraštę" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "STULPELIS" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Naudoti žymimuosius langelius pirmame stulpelyje" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Naudoti radio mygtukus pirmame stulpelyje" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Pirmam stulpeliui naudoti paveikslėlį" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Leisti parinkti kelias eilutes" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Leisti keisti tekstą" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Spausdinti specifinį stulpelį (numatytasis yra 1; spausdinti visiems " -"stulpeliams gali būti naudojama „ALL“)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "SKAIČIUS" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Paslėpti specifinį stulpelį" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Slėpti stulpelių antraštes" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Pakeisti numatytąją teksto paieškos funkciją į paiešką viduryje, o ne " -"pradžioje" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Parodyti pranešimą" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Nustatyti pranešimo tekstą" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Laukti komandų iš stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Nustatyti pranešimo patarimus" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Parodyti proceso eigos dialogą" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Nustatyti pradinę procentinę vertę" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTAS" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Keisti progreso juostą" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Pašalinti dialogą pasiekus 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Užbaigti tėvinį procesą, jei paspaudžiamas mygtukas „Atsisakyti“" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Slėpti mygtuką „Atsisakyti“" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Įvertinimas, kada eiga pasieks 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Parodyti užklausimo dialogą" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Numatytai aktyvinti atsisakymo mygtuką" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Slėpti mygtukus „Gerai“ ir „Atsisakyti“" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Parodyti tekstinės informacijos dialogą" - -#: src/option.c:715 -msgid "Open file" -msgstr "Atverti failą" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Nustatyti teksto šriftą" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Įjungti perskaitymo ir sutikimo langelį" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Įjungti HTML palaikymą" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Neįjungti naudotojo darbo su WebView. Veikia tik jei naudojamas --html " -"parametras" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Nustatyti URL vietoj failo. Veikia tik jei naudojamas parametras --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automatiškai slinkti tekstą į pabaigą. Tik kai tekstas gaunamas iš stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Parodyti perspėjimo langą" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Parodyti skalės dialogą" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Nustatyti pradinę reikšmę" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "REIKŠMĖ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Nustatyti minimalią reikšmę" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Nustatyti maksimalią reikšmę" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Nustatyti žingsnelio dydį" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Spaudinti dalines reikšmes" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Paslėpti reikšmę" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Parodyti formų dialogą" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Pridėti naują įvedimo elementą formų dialoge" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Lauko reikšmė" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Pridėti naują slaptažodžio lauką formų dialoge" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Pridėti naują kalendorių formų dialoge" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalendoriaus lauko pavadinimas" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Formų dialoge pridėti naują sąrašą" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Parodyti laukelių ir antraščių sąrašą" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Sąrašo reikšmių sąrašas" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Reikšmių sąrašas atskirtas „|“" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Stulpelių reikšmių sąrašas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Formų dialoge pridėti naują sąrašo elementą" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Sąrašo elemento lauko pavadinimas" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Verčių sąrašas sąrašo elemento" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Rodyti stulpelių antraštes" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Parodyti slaptažodžio pranešimą" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Parodyti naudotojo vardo parametrą" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Parodyti spalvos pasirinkimo dialogą" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Nustatyti spalvą" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Rodyti paletę" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Apie zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Parodyti versiją" - -#: src/option.c:1913 -msgid "General options" -msgstr "Bendriniai parametrai" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Rodyti bendrus parametrus" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalendoriaus parametrai" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Rodyti kalendoriaus parametrus" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Teksto įvedimo parametrai" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Rodyti teksto įvedimo parametrus" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Klaidų parametrai" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Rodyti klaidų parametrus" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Informacijos parametrai" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Rodyti informacijos parametrus" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Failų parinkimo parametrai" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Rodyti failų parinkimo parametrus" - -#: src/option.c:1985 -msgid "List options" -msgstr "Sąrašų parametrai" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Rodyti sąrašų parametrus" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Pranešimų piktogramos parametrai" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Rodyti pranešimų piktogramos parametrus" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progreso būklės parametrai" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Rodyti progreso būklės parametrus" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Užklausų parametrai" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Rodyti užklausų parametrus" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Perspėjimų parametrai" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Rodyti perspėjimų parametrus" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Skalės parametrai" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Rodyti skalės parametrus" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Teksto informacijos parametrai" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Rodyti teksto informacijos parametrus" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Spalvų parinkimo parametrai" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Rodyti spalvų parinkimo parametrus" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Slaptažodžių dialogo parametrai" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Rodyti slaptažodžių dialogo parametrus" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Formų dialogo parametrai" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Rodyti formų dialogo parametrus" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Kiti parametrai" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Rodyti kitus parametrus" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "Šis parametras negalimas. Pažiūrėkite --help panaudojimo variantus.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nepalaikomas šiam dialogui\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Nurodytas daugiau nei vienas dialogo parametras\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Įveskite savo slaptažodį" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Įveskite savo naudotojo vardą ir slaptažodį" - -#: src/password.c:100 -msgid "Username:" -msgstr "Naudotojo vardas:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Slaptažodis:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Liko: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimali reikšmė turi būti didesnė už minimalią reikšmę.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Reikšmė yra už ribų.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Sąrašo dialoge nenurodytos stulpelių antraštės.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Jūs turėtumėte naudoti tik vieną sąrašo dialogo tipą.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Koreguoti skalės reikšmę" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Atsisakyti" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Gerai" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstinė peržiūra" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalendoriaus pasirinkimas" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Pasirinkite datą žemiau esančiuose laukuose." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendorius:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Pridėti naują įrašą" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Įveskite _naują tekstą:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Klaida" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Įvyko klaida." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formų dialogas" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informacija" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Visi atnaujinimai užbaigti." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progresas" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Dirbama..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Klausimas" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Ar Jūs tikrai norite tęsti?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Pasirinkite sąrašo elementus" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Pasirinkite elementus iš žemiau esančio sąrašo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Perspėjimas" diff --git a/po/lv.po b/po/lv.po deleted file mode 100644 index 817abd7..0000000 --- a/po/lv.po +++ /dev/null @@ -1,893 +0,0 @@ -# translation of lv.po to Latvian -# Raivis Dejus , 2006, 2009. -# Peteris Krisjanis , 2009. -# Rudolfs , 2011. -# Rūdofls Mazurs , 2011, 2012, 2013, 2014, 2015, 2016, 2018. -msgid "" -msgstr "" -"Project-Id-Version: lv\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=zenity" -"&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2018-02-24 20:08+0200\n" -"Last-Translator: Rūdolfs Mazurs \n" -"Language-Team: Latvian \n" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" -" 2);\n" -"X-Generator: Lokalize 2.0\n" -"X-Poedit-Language: Latvian\n" -"X-Poedit-Country: LATVIA\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Šī programma ir brīva programmatūra; jūs varat to izplatīt tālāk un/vai " -"izmainīt saskaņā ar GNU mazās vispārējās publiskās licences noteikumiem, ko " -"publicējis Brīvas programmatūras fonds; vai nu pēc licences 2. versijas, vai " -"arī (pēc jūsu izvēles) jebkuras vēlākās versijas.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Šī programma tiek izplatīta cerībā, ka tā būs noderīga, taču BEZ JEBKĀDĀM " -"GARANTIJĀM; pat bez šķietamām KOMERCIĀLAS VĒRTĪBAS vai PIEMĒROTĪBAS " -"KONKRĒTIEM NOLŪKIEM garantijām. Sīkāku informāciju meklējiet GNU Mazajā " -"vispārējā publiskajā licencē.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Jums būtu bijis jāsaņem GNU mazās vispārējās publiskās licences kopiju kopā " -"ar šo programmatūru; ja tā nav noticis, rakstiet Brīvās programmatūras " -"fondam uz šo adresi: Free Software Foundation, Inc., 51 Franklin Street, " -"Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Sandra Zabarovska\n" -"Pēteris Krišjānis \n" -"Rūdolfs Mazurs " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Rādīt dialoglodziņus no čaulas skriptiem" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Labi" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "At_celt" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Jānorāda dialoglodziņa veids. Skatiet “zenity --help”, lai iegūtu papildu " -"informāciju\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nē" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Jā" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nevarēja parsēt ziņojumu\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Nederīga vērtība Bula tipa padomam.\n" -"Atbalstītās vērtības ir “true” un “false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Neatbalstīts padoms. Izlaiž.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nezināms padoma nosaukums. Izlaiž.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nevarēja parsēt komandu no stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity paziņojums" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Iestatīt dialoglodziņa nosaukumu" - -#: src/option.c:165 -msgid "TITLE" -msgstr "NOSAUKUMS" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Iestatīt loga ikonu" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "IKONCEĻŠ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Iestatīt platumu" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "PLATUMS" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Iestatīt augstumu" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "AUGSTUMS" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Iestatīt dialoglodziņa noilgumu sekundēs" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "NOILDZE" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Iestatīt etiķeti pogai “Labi”" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKSTS" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Iestatīt etiķeti pogai “Atcelt”" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Pievienot papildu pogu" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Iestatīt modālo padomu" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Iestatīt vecāku logu, lai to pievienotu" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "LOGS" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Rādīt kalendāra dialoglodziņu" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Iestatīt dialoglodziņa tekstu" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Iestatīt kalendāra dienu" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIENA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Iestatīt kalendāra mēnesi" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MĒNESIS" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Iestatīt kalendāra gadu" - -#: src/option.c:266 -msgid "YEAR" -msgstr "GADS" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Iestatīt paziņotā datuma formātu" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ŠABLONS" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Rādīt teksta ievades dialoglodziņu" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Iestatīt ievades tekstu" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Slēpt ievades tekstu" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Rādīt kļūdas dialoglodziņu" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Iestatīt dialoglodziņa ikonu" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "IKONAS-NOSAUKUMS" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Neieslēgt teksta aplaušanu" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Neieslēgt Pango marķēšanu" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Ieslēdz dialoglodziņu tekstu apraušanu ar trīspunkti. Tas salabo augsto logu " -"problēmu, kad ir gari teksti" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Rādīt informācijas dialoglodziņu" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Rādīt datņu izvēles dialoglodziņu" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Iestatīt datnes nosaukumu" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "DATNES_NOSAUKUMS" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Atļaut vairāku datņu izvēlēšanos" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivizēt “tikai direktorijas” izvēli" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivizēt saglabāšanas režīmu" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Iestatīt izvades atdalītājrakstzīmi" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ATDALĪTĀJS" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Apstiprināt datnes izvēli, ja tāds datnes nosaukums jau eksistē" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Iestatīt datņu nosaukumu filtru" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOSAUKUMS | RAKSTS1 RAKSTS2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Rādīt saraksta dialoglodziņu" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Iestatīt kolonnas virsrakstu" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLONA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Izmantot izvēles rūtiņas pirmajai kolonnai" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Izmantot radio pogas pirmajai kolonnai" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Izmantot attēlu pirmajai kolonnai" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Atļaut vairāku rindiņu izvēlēšanos" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Atļaut izmaiņas tekstā" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Drukāt noteiktu kolonnu (noklusējuma ir 1. Var lietot “ALL”, lai nodrukātu " -"visas kolonnas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMURS" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Paslēpt noteiktu kolonnu" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Slēpt kolonnas virsrakstus" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Mainīt saraksta noklusējuma meklēšanas funkciju tekstam vidū, nevis no sākuma" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Parādīt paziņojumu" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Iestatīt paziņojuma tekstu" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Gaidīt komandu no stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Iestatīt paziņojumu padomus" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Rādīt progresa rādītāja dialoglodziņu" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Iestatīt sākotnējos procentus" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTI" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Iestatīt pulsējošu progresa joslu" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Aizvērt dialoglodziņu, kad sasniegti 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Pārtraukt vecāka procesu, ja tiek nospiesta atcelšanas poga" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Slēpt pogu “Atcelt”" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Novērtēt, kad progress būs sasniedzis 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Rādīt jautājumu dialoglodziņu" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Pēc noklusējuma fokusu dot atcelšanas pogai" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Slēpt ”Labi“ un “Atcelt” pogas" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Rādīt teksta informācijas dialoglodziņu" - -#: src/option.c:715 -msgid "Open file" -msgstr "Atvērt datni" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Iestatīt teksta fontu" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ieslēgt “izlasīju un piekrītu” izvēles rūtiņu" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ieslēgt HTML atbalstu" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Neieslēgt lietotāja mijiedarbību ar WebView. Darbojas tikai, ja izmantojat --" -"html opciju" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Iestatīt URL nevis datni. Darbojas tikai, ja izmantojat --html opciju" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automātiski ritināt tekstu uz leju. Tikai, kad tekst ir tverts no standarta " -"ievades" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Rādīt brīdinājuma dialoglodziņu" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Rādīt mēroga dialoglodziņu" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Iestatīt sākotnējo vērtību" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VĒRTĪBA" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Iestatīt minimālo vērtību" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Iestatīt maksimālo vērtību" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Iestatīt soļa izmēru" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Drukāt daļējās vērtības" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Slēpt vērtību" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Rādīt formas dialoglodziņu" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Pievienot jaunu ierakstu formas dialoglodziņam" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Lauka nosaukums" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Pievienot jaunu paroles ierakstu formas dialoglodziņam" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Pievienot jaunu kalendāru formas dialoglodziņam" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalendāra lauka nosaukums" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Pievienot jaunu sarakstu formu dialoglodziņam" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Saraksta lauka nosaukums" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Vērtības sarakstam" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Ar | atdalītu vērtību saraksts" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Vērtību saraksts kolonnām" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Pievienot jaunu kombinēto lodziņu formu dialoglodziņam" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Kombinētā lodziņa lauka nosaukums" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Vērtību saraksts kombinētajam lodziņam" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Rādīt kolonnu virsrakstu" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Rādīt paroles dialoglodziņu" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Rādīt lietotājvārda opciju" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Rādīt krāsu izvēles dialoglodziņu" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Iestatīt krāsu" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Rādīt palieti" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Par zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Drukāt versiju" - -#: src/option.c:1913 -msgid "General options" -msgstr "Vispārīgās opcijas" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Rādīt vispārīgās opcijas" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalendāra opcijas" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Rādīt kalendāra opcijas" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Teksta ievades opcijas" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Rādīt teksta ievades opcijas" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Kļūdas opcijas" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Rādīt kļūdas opcijas" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Informācijas opcijas" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Rādīt informācijas opcijas" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Datņu izvēles opcijas" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Rādīt datņu izvēles opcijas" - -#: src/option.c:1985 -msgid "List options" -msgstr "Saraksta opcijas" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Rādīt saraksta opcijas" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Paziņojuma ikonas opcijas" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Rādīt paziņojuma ikonas opcijas" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Progresa opcijas" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Rādīt progresa opcijas" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Jautājumu opcijas" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Rādīt jautājumu opcijas" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Brīdinājuma opcijas" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Rādīt brīdinājuma opcijas" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Mēroga opcijas" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Rādīt mēroga opcijas" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Teksta informācijas opcijas" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Rādīt teksta informācijas opcijas" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Krāsu izvēles opcijas" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Rādīt krāsu izvēles opcijas" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Paroles dialoglodziņa opcijas" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Rādīt paroles dialoglodziņa opcijas" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Formas dialoglodziņa opcijas" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Rādīt formas dialoglodziņa opcijas" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Dažādas opcijas" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Rādīt dažādas opcijas" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Šī opcija nav pieejama. Visiem iespējamiem lietojumiem, lūdzu skatīt --" -"help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s šajā dialoglodziņā nav atbalstīta\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Norādītas divas vai vairāk dialoga opcijas\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Ievadiet savu paroli" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Ievadiet savu lietotājvārdu un paroli" - -#: src/password.c:100 -msgid "Username:" -msgstr "Lietotājvārds:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Parole:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Atlikušais laiks: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maksimālajai vērtībai jābūt lielākai par minimālo vērtību.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Vērtība ir ārpus intervāla.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Saraksta dialoglodziņam nav norādīti kolonnu nosaukumi.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Vajadzētu lietot tikai vienu saraksta dialoglodziņa tipu.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Pielāgot mēroga vērtību" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Atcelt" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Labi" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Teksta skats" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalendāra izvēle" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Izvēlieties datumu no apakšā esošajiem." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendārs:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Pievienot jaunu ierakstu" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "I_evadiet jaunu tekstu:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Kļūda" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Gadījās kļūda." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formu dialoglodziņš" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informācija" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Visi atjauninājumi ir pabeigti." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progress" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Darbojas..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Jautājums" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Vai tiešām vēlaties turpināt?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Izvēlieties vienumus no saraksta" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Izvēlieties vienumus no apakšā esošā saraksta." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Brīdinājums" - diff --git a/po/mai.po b/po/mai.po deleted file mode 100644 index 110d048..0000000 --- a/po/mai.po +++ /dev/null @@ -1,602 +0,0 @@ -# translation of zenity.gnome-2-28.po to Maithili -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Sangeeta Kumari , 2009. -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-28\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2009-08-30 16:18+0000\n" -"PO-Revision-Date: 2009-09-11 20:54+0530\n" -"Last-Translator: Sangeeta Kumari \n" -"Language-Team: Maithili \n" -"Language: mai\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"ई प्रोग्राम फ्री सोफ्टवेयर अछि; अहाँ एकरा पुनर्वितरित कए सकैत छी आओर/अथवाएकरा GNU " -"जनरल पब्लिक लाइसेंसक शर्तक अधीन रूपांतरित कए सकैत छीजहिना फ्री सोफ्टवेयर फाउंडेशनक द्वारा " -"प्रकाशित कएल गेल अछि; अथवा तँ लाइसेंस क' संस्करण 2अथवा कोनो बादबला संस्करण (अहाँक " -"विकल्प अनुसार).\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"ई प्रोग्रामकेँ एहि आशासँ वितरित कएल गेल अछि जे ई उपयोगी हएताह, मुदा बिनु कोनो वारंटीक; " -"एतय तक जे बिनि कोनो मर्चेंटेबिलिटी अथवा खास उद्देश्य क'लेल फिटनेस क' वारंटीक. GNU जनरल " -"पब्लिक लाइसेंसकेँ बेसी विस्तार क'लेल देखू.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"अहाँक GNU जनरल पब्लिक लाइसेंसक एकटा कापी एहि प्रोग्रामक सँग प्राप्त कएनाइ चाही; जँ नहि, Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA केँ लिखू." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "संगीता कुमारी (sangeeta09@gmail.com)" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "डायलाग बक्सा शैल स्क्रिप्टसभसँ देखाबू" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "अहाँक एकटा डायलाग प्रकारकेँ जरूर निर्दिष्ट कएनाइ चाही. विवरण लेल देखू 'zenity --help' \n" - -#: ../src/notification.c:138 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin सँ कमांड क' विश्लेषण नहि कए सकल\n" - -#: ../src/notification.c:251 ../src/notification.c:268 -msgid "Zenity notification" -msgstr "जेनिटी सूचना" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "अधिकतम मान जरूर न्यूनतम मानसँ बेसी होनाइ चाही.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "सीमाक बाहर क' मान.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "सूची डायलाग लेल कोनो कालम शीर्षक निर्दिष्ट नहि अछि.\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "अहाँक सिर्फ एकटा सूची डायलाग प्रकार क' प्रयोग कएनाइ चाही.\n" - -#: ../src/zenity.ui.h:1 -msgid "Add a new entry" -msgstr "नवीन प्रविष्टि जोड़ू" - -#: ../src/zenity.ui.h:2 -msgid "Adjust the scale value" -msgstr "स्केल मानकेँ एडजस्ट करू " - -#: ../src/zenity.ui.h:3 -msgid "All updates are complete." -msgstr "सबहि अद्यतन पूरा भ' चुकल अछि." - -#: ../src/zenity.ui.h:4 -msgid "An error has occurred." -msgstr "एकटा त्रुटि भेटल." - -#: ../src/zenity.ui.h:5 -msgid "Are you sure you want to proceed?" -msgstr "की अहाँ सुनिश्चित छी जे अहाँ आगाँ बढ़नाइ चाहैत छी?" - -#: ../src/zenity.ui.h:6 -msgid "C_alendar:" -msgstr "कैलेंडर (_a):" - -#: ../src/zenity.ui.h:7 -msgid "Calendar selection" -msgstr "कैलेंडर चयन" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "त्रुटि" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "सूचना" - -#: ../src/zenity.ui.h:10 -msgid "Progress" -msgstr "प्रगति" - -#: ../src/zenity.ui.h:11 -msgid "Question" -msgstr "प्रश्न" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "चलि रहल अछि..." - -#: ../src/zenity.ui.h:13 -msgid "Select a date from below." -msgstr "निम्नमे सँ एकटा तिथि चुनू." - -#: ../src/zenity.ui.h:14 -msgid "Select items from the list" -msgstr "सूचीमे सँ वस्तु चुनू" - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list below." -msgstr "निम्न सूचीमे सँ वस्तुसभ चुनू." - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "पाठ दृश्य" - -#: ../src/zenity.ui.h:17 -msgid "Warning" -msgstr "चेतावनी" - -#: ../src/zenity.ui.h:18 -msgid "_Enter new text:" -msgstr "नवीन पाठ भरू:(_E)" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "डायलाग शीर्षक नियत करू " - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "शीर्षक" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "विंडो चिह्न नियत करू " - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "चिह्न-पथ" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "चओड़ाइ नियत करू " - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "चओड़ाइ" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "उँचाइ नियत करू " - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "उँचाइ" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "कैलेंडर डायलाग देखाबू" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:429 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:705 ../src/option.c:738 -msgid "Set the dialog text" -msgstr "डायलाग पाठ नियत करू " - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:285 ../src/option.c:318 ../src/option.c:430 -#: ../src/option.c:527 ../src/option.c:560 ../src/option.c:622 -#: ../src/option.c:631 ../src/option.c:640 ../src/option.c:706 -#: ../src/option.c:739 -msgid "TEXT" -msgstr "पाठ" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "कैलेंडर दिन नियत करू " - -#: ../src/option.c:191 -msgid "DAY" -msgstr "दिन" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "कैलेंडर माह नियत करू " - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "महिना" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "कैलेंडर वर्ष नियत करू " - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "साल" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "वापस लौटल तिथि लेल फार्मेट नियत करू " - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "प्रारूप" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "पाठ प्रविष्टि डायलाग देखाबू" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "प्रविष्टि पाठ नियत करू " - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "प्रविष्टि पाठ नुकाबू" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "त्रुटि डायलाग देखाबू" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:648 -#: ../src/option.c:714 -msgid "Do not enable text wrapping" -msgstr "पाठ रैपिंग सक्रिय नए करू" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "जानकारी डायलाग देखाबू" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "फाइल चयन डायलाग देखाबू" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "फाइलनाम नियत करू " - -#: ../src/option.c:351 ../src/option.c:673 -msgid "FILENAME" -msgstr "फाइलनाम" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "बहु फाइलसभक चयन स्वीकारू" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "सिर्फ निर्देशिका चयन सक्रिय करू " - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "सहेजू मोड सक्रिय करू " - -#: ../src/option.c:386 ../src/option.c:465 -msgid "Set output separator character" -msgstr "आउटपुट विभाजक अक्षर नियत करू " - -#: ../src/option.c:387 ../src/option.c:466 -msgid "SEPARATOR" -msgstr "विभाजक" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "फाइल चयन सुनिश्चित करू जँ फाइलनाम पहिले सँ मोजुद अछि" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:406 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "" - -#: ../src/option.c:420 -msgid "Display list dialog" -msgstr "सूची डायलाग देखाबू" - -#: ../src/option.c:438 -msgid "Set the column header" -msgstr "कालम हेडर नियत करू" - -#: ../src/option.c:439 -msgid "COLUMN" -msgstr "कालम" - -#: ../src/option.c:447 -msgid "Use check boxes for first column" -msgstr "पहिलुक स्तम्भ लेल चेक बक्सा उपयोग करू" - -#: ../src/option.c:456 -msgid "Use radio buttons for first column" -msgstr "पहिलुक स्तम्भ लेल रेडियो बटन उपयोग करू" - -#: ../src/option.c:474 -msgid "Allow multiple rows to be selected" -msgstr "बहु पंक्तिक चयनक स्वीकृति दिअ'" - -#: ../src/option.c:483 ../src/option.c:681 -msgid "Allow changes to text" -msgstr "पाठमे परिवर्तन स्वीकारू" - -#: ../src/option.c:492 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"एकटा निर्दिष्ट कालम चुनू (1 मूलभूत अछि 'ALL' केँ सबहि कालमकेँ छापब क'लेल प्रयोग " -"कएल जाय सकैत अछि)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:494 ../src/option.c:503 -msgid "NUMBER" -msgstr "संख्या" - -#: ../src/option.c:502 -msgid "Hide a specific column" -msgstr "एकटा निर्दिष्ट कालम नुकाबू" - -#: ../src/option.c:517 -msgid "Display notification" -msgstr "सूचना देखाबू" - -#: ../src/option.c:526 -msgid "Set the notification text" -msgstr "डायलाग पाठ नियत करू " - -#: ../src/option.c:535 -msgid "Listen for commands on stdin" -msgstr "stdin पर कमांडकेँ सुनि रहल अछि" - -#: ../src/option.c:550 -msgid "Display progress indication dialog" -msgstr "प्रगति संकेत डायलाग देखाबू" - -#: ../src/option.c:568 -msgid "Set initial percentage" -msgstr "प्रारंभिक प्रतिशत नियत करू " - -#: ../src/option.c:569 -msgid "PERCENTAGE" -msgstr "प्रतिशत" - -#: ../src/option.c:577 -msgid "Pulsate progress bar" -msgstr "प्रगति पट्टी स्पन्दित करू " - -#: ../src/option.c:587 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "डायलाग खारिज करू जखन 100% पर पहुँच जाए" - -#: ../src/option.c:597 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "जनक प्रक्रिया किल करू जँ रद्द करू बटन दबाओल जाएत अछि" - -#: ../src/option.c:612 -msgid "Display question dialog" -msgstr "प्रश्न डायलाग देखाबू" - -#: ../src/option.c:630 -msgid "Sets the label of the Ok button" -msgstr "" - -#: ../src/option.c:639 -msgid "Sets the label of the Cancel button" -msgstr "" - -#: ../src/option.c:663 -msgid "Display text information dialog" -msgstr "पाठ जानकारी डायलाग देखाबू" - -#: ../src/option.c:672 -msgid "Open file" -msgstr "फाइल खोलू" - -#: ../src/option.c:696 -msgid "Display warning dialog" -msgstr "चेतावनी डायलाग देखाबू" - -#: ../src/option.c:729 -msgid "Display scale dialog" -msgstr "स्केल डायलाग देखाबू" - -#: ../src/option.c:747 -msgid "Set initial value" -msgstr "प्रारंभिक मान नियत करू " - -#: ../src/option.c:748 ../src/option.c:757 ../src/option.c:766 -#: ../src/option.c:775 -msgid "VALUE" -msgstr "मान" - -#: ../src/option.c:756 -msgid "Set minimum value" -msgstr "न्यूनतम मान सेट करू " - -#: ../src/option.c:765 -msgid "Set maximum value" -msgstr "अधिकतम मान सेट करू " - -#: ../src/option.c:774 -msgid "Set step size" -msgstr "चरण आकार सेट करू " - -#: ../src/option.c:783 -msgid "Print partial values" -msgstr "आंशिक मान मुद्रित करू " - -#: ../src/option.c:792 -msgid "Hide value" -msgstr "मान नुकाबू" - -#: ../src/option.c:807 -msgid "About zenity" -msgstr "ज़ेनिटी क' संबंधमे" - -#: ../src/option.c:816 -msgid "Print version" -msgstr "मुद्रण संस्करण" - -#: ../src/option.c:1474 -msgid "General options" -msgstr "सामान्य विकल्प" - -#: ../src/option.c:1475 -msgid "Show general options" -msgstr "सामान्य विकल्प देखाबू" - -#: ../src/option.c:1485 -msgid "Calendar options" -msgstr "कैलेंडर विकल्प" - -#: ../src/option.c:1486 -msgid "Show calendar options" -msgstr "कैलेंडर विकल्प देखाबू" - -#: ../src/option.c:1496 -msgid "Text entry options" -msgstr "पाठ प्रविष्टि विकल्प" - -#: ../src/option.c:1497 -msgid "Show text entry options" -msgstr "पाठ प्रविष्टि विकल्प देखाबू" - -#: ../src/option.c:1507 -msgid "Error options" -msgstr "त्रुटि विकल्प" - -#: ../src/option.c:1508 -msgid "Show error options" -msgstr "त्रुटि विकल्प देखाबू" - -#: ../src/option.c:1518 -msgid "Info options" -msgstr "जानकारी विकल्प" - -#: ../src/option.c:1519 -msgid "Show info options" -msgstr "जानकारी विकल्प देखाबू" - -#: ../src/option.c:1529 -msgid "File selection options" -msgstr "फाइल चयन विकल्प" - -#: ../src/option.c:1530 -msgid "Show file selection options" -msgstr "फाइल चयन विकल्प देखाबू" - -#: ../src/option.c:1540 -msgid "List options" -msgstr "सूची विकल्प" - -#: ../src/option.c:1541 -msgid "Show list options" -msgstr "सूची विकल्प देखाबू" - -#: ../src/option.c:1551 -msgid "Notification icon options" -msgstr "सूचना आइकन विकल्प" - -#: ../src/option.c:1552 -msgid "Show notification icon options" -msgstr "सूचना आइकन विकल्प देखाबू" - -#: ../src/option.c:1562 -msgid "Progress options" -msgstr "प्रगति विकल्प" - -#: ../src/option.c:1563 -msgid "Show progress options" -msgstr "प्रगति विकल्प देखाबू" - -#: ../src/option.c:1573 -msgid "Question options" -msgstr "प्रश्न विकल्प" - -#: ../src/option.c:1574 -msgid "Show question options" -msgstr "प्रश्न विकल्प देखाबू" - -#: ../src/option.c:1584 -msgid "Warning options" -msgstr "चेतावनी विकल्प" - -#: ../src/option.c:1585 -msgid "Show warning options" -msgstr "चेतावनी विकल्प देखाबू" - -#: ../src/option.c:1595 -msgid "Scale options" -msgstr "विकल्प स्केल करू " - -#: ../src/option.c:1596 -msgid "Show scale options" -msgstr "स्केल विकल्प देखाबू" - -#: ../src/option.c:1606 -msgid "Text information options" -msgstr "पाठ सूचना विकल्प" - -#: ../src/option.c:1607 -msgid "Show text information options" -msgstr "पाठ सूचना विकल्प देखाबू" - -#: ../src/option.c:1617 -msgid "Miscellaneous options" -msgstr "विविध विकल्प" - -#: ../src/option.c:1618 -msgid "Show miscellaneous options" -msgstr "विविध विकल्प देखाबू" - -#: ../src/option.c:1643 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "विकल्प उपलब्ध नहि अछि कृपया सबहि संभावित प्रयोग क'लेल मद्दति देखू.\n" - -#: ../src/option.c:1647 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "एहि डायलाग क' लेल %s समर्थित नहि अछि \n" - -#: ../src/option.c:1651 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "दुइ अथवा बेसी डायलाग विकल्प निर्दिष्ट\n" - diff --git a/po/meson.build b/po/meson.build deleted file mode 100644 index 66362aa..0000000 --- a/po/meson.build +++ /dev/null @@ -1,4 +0,0 @@ -i18n.gettext( - meson.project_name(), - preset: 'glib' -) diff --git a/po/mg.po b/po/mg.po deleted file mode 100644 index bd31edf..0000000 --- a/po/mg.po +++ /dev/null @@ -1,516 +0,0 @@ -# MALAGASY TRANSLATION OF ZENITY. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Fano Rajaonarisoa , 2006. -msgid "" -msgstr "" -"Project-Id-Version: ZENITY VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-13 16:44+0200\n" -"PO-Revision-Date: 2007-03-08 06:30+0300\n" -"Last-Translator: Thierry Randrianiriana \n" -"Language-Team: MALAGASY \n" -"Language: mg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/about.c:65 -msgid "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" -msgstr "Ity rindran'asa ity dia maimaimpoana. Azonao zaraina ary/na ovaina mifanaraka amin'ireo fepetra voalaza anatin'ny fahazoan-dàlana ho an'ny besinimaro GNU izay navoakan'ny Free Software Foundation io rindran'asa io; na ilay andiany faha 2, na izay andiany taty afara (araka ny safidinao).\n" - -#: ../src/about.c:69 -msgid "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n" -msgstr "Ity rindranasa ity dia naparitaka noho ny fiheverana fa hisy ilàna azy izy io. Tsy misy fiantohana mihitsy izy io, na dia ilay fiantohana (tsy voalaza an-tsoratra) ny FAHALAVORARIANY HO AN'NY VAROTRA na ny FETEZANY ANAOVANA ZAVATRA aza. Vakio ilay Fahazoan-dàlana ho an'ny besinimaro GNU hahalalanao ny antsipiriany.\n" - -#: ../src/about.c:73 -msgid "You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "Tokony nahazo dika mitovin'ny Fahazoan-dàlana ho an'ny besinimaro GNU ianao niaraka tamin'ity rindranasa ity. Raha tsy nahazo izany ianao, dia manorata any amin'ny Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "" -"Mpandrindra: Thierry Randrianiriana \n" -"Mpandika teny: Fanomezana Rajaonarisoa " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "Mampiseho takila filazana avy amin'ny baiko soratry ny akora" - -#: ../src/main.c:94 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Tsy maintsy milaza karazam-pilazana ianao. Vakio ny 'zenity --help' hahafantaranao ny antsipiriany\n" - -#: ../src/notification.c:138 -msgid "could not parse command from stdin\n" -msgstr "Tsy afaka nizarazara ny baiko avy amin'ny stdin\n" - -#: ../src/notification.c:251 -#: ../src/notification.c:268 -msgid "Zenity notification" -msgstr "Fampahafantaran'ny Zenity" - -#: ../src/scale.c:56 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Tsy maintsy be noho ny isa ambany indrindra ny isa ambony indrindra.\n" - -#: ../src/scale.c:63 -msgid "Value out of range.\n" -msgstr "Mihoatra ny fetra ilay sanda.\n" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Tsy nisy lohatenim-pariana nomena ny takila Lisitra.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "Tsy tokony hampiasa afa-tsy karazan-takila Lisitra iray ihany ianao.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Hampiditra singan-daza vaovao" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Hanitsy ny sandan'ilay mari-drefy" - -#: ../src/zenity.glade.h:3 -msgid "Adjust the scale value." -msgstr "Hanitsy ny sandan'ny mari-drefy." - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Vita daholo ny fanavaozana rehetra." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Nisy olana nitranga." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Te hanohy tokoa ve ianao?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "_Kalandrie:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Famaritana anaty kalandrie" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Tsy fetezana" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Fampahalalana" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Fivoarana" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Fanontaniana" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "Mandeha..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Misafidiana daty iray amin'ireo." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Misafidiana rakitra iray" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Misafidiana amin'ireto zavatra ireto" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Misafidiana amin'ireto zavatra ireto." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Topimaso" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Fampilazana" - -#: ../src/zenity.glade.h:20 -msgid "_Enter new text:" -msgstr "_Soraty ilay lahabolana vaovao:" - -#: ../src/option.c:115 -msgid "Set the dialog title" -msgstr "Hamaritra ny lohatenin'ilay takila" - -#: ../src/option.c:116 -msgid "TITLE" -msgstr "LOHATENY" - -#: ../src/option.c:124 -msgid "Set the window icon" -msgstr "Hamaitra ny kisarin'ilay fikandrana" - -#: ../src/option.c:125 -msgid "ICONPATH" -msgstr "SORIDALAN'NYKISARY" - -#: ../src/option.c:133 -msgid "Set the width" -msgstr "Hamaritra ny indrany" - -#: ../src/option.c:134 -msgid "WIDTH" -msgstr "INDRA" - -#: ../src/option.c:142 -msgid "Set the height" -msgstr "Hamaritra ny haavony" - -#: ../src/option.c:143 -msgid "HEIGHT" -msgstr "HAAVO" - -#: ../src/option.c:157 -msgid "Display calendar dialog" -msgstr "Asehoy ny takilan'ny kalandrie" - -#: ../src/option.c:166 -#: ../src/option.c:226 -#: ../src/option.c:269 -#: ../src/option.c:302 -#: ../src/option.c:404 -#: ../src/option.c:533 -#: ../src/option.c:585 -#: ../src/option.c:651 -#: ../src/option.c:684 -msgid "Set the dialog text" -msgstr "Hamaritra ny soratra amin'ilay takila" - -#: ../src/option.c:175 -msgid "Set the calendar day" -msgstr "Hamaritra ny andro amin'ilay kalandrie" - -#: ../src/option.c:184 -msgid "Set the calendar month" -msgstr "Hamaritra ny volana amin'ilay kalandrie" - -#: ../src/option.c:193 -msgid "Set the calendar year" -msgstr "Hamaritra ny taona amin'ilay kalandrie" - -#: ../src/option.c:202 -msgid "Set the format for the returned date" -msgstr "Hamaritra ny lamin'ilay daty naverina" - -#: ../src/option.c:217 -msgid "Display text entry dialog" -msgstr "Asehoy ny takila fampidirana ny soratra" - -#: ../src/option.c:235 -msgid "Set the entry text" -msgstr "Hamaritra ilay anarana" - -#: ../src/option.c:244 -msgid "Hide the entry text" -msgstr "Afeno ilay anarana" - -#: ../src/option.c:260 -msgid "Display error dialog" -msgstr "Asehoy ny takilan'ny tsy fetezana" - -#: ../src/option.c:278 -#: ../src/option.c:311 -#: ../src/option.c:594 -#: ../src/option.c:660 -msgid "Do not enable text wrapping" -msgstr "Aza ekena ny fiovana andalana" - -#: ../src/option.c:293 -msgid "Display info dialog" -msgstr "Asehoy ny takilan'ny fampahalalana" - -#: ../src/option.c:326 -msgid "Display file selection dialog" -msgstr "Asehoy ny takila fisafidianana rakitra" - -#: ../src/option.c:335 -msgid "Set the filename" -msgstr "Hamaritra ny anaran'ilay rakitra" - -#: ../src/option.c:336 -#: ../src/option.c:619 -msgid "FILENAME" -msgstr "ANARANDRAKITRA" - -#: ../src/option.c:344 -msgid "Allow multiple files to be selected" -msgstr "Ekeo ny famaritan-drakitra maromaro" - -#: ../src/option.c:353 -msgid "Activate directory-only selection" -msgstr "Alefaso ny famaritana lahatahiry fotsiny" - -#: ../src/option.c:362 -msgid "Activate save mode" -msgstr "Ekeo ny fahafahana mandraikitra" - -#: ../src/option.c:371 -#: ../src/option.c:440 -msgid "Set output separator character" -msgstr "Hamaritra ny marika mpampisaraka" - -#: ../src/option.c:372 -#: ../src/option.c:441 -msgid "SEPARATOR" -msgstr "MPAMPISARAKA" - -#: ../src/option.c:380 -msgid "Confirm file selection if filename already exists" -msgstr "Amafiso ny famaritana ilay rakitra raha toa ka efa misy ilay anarana" - -#: ../src/option.c:395 -msgid "Display list dialog" -msgstr "Asehoy ny takilan'ny lisitra" - -#: ../src/option.c:413 -msgid "Set the column header" -msgstr "Hamaritra ny lohasoratr'ilay fariana" - -#: ../src/option.c:422 -msgid "Use check boxes for first column" -msgstr "Efamira famaritra no ampiasao amin'ny fariana voalohany" - -#: ../src/option.c:431 -msgid "Use radio buttons for first column" -msgstr "Bokotra amin'ny radiô no ampiasao amin'ny fariana voalohany" - -#: ../src/option.c:449 -msgid "Allow multiple rows to be selected" -msgstr "Ekeo ny famaritana andalana maromaro" - -#: ../src/option.c:458 -#: ../src/option.c:627 -msgid "Allow changes to text" -msgstr "Ekeo ny fanovana ilay soratra" - -#: ../src/option.c:467 -msgid "Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "Manontà fariana voafaritra iray (1 no voafaritra mialoha. Azo ampiasaina ny 'ALL' raha hanonta izy rehetra)" - -#: ../src/option.c:476 -msgid "Hide a specific column" -msgstr "Hanafina fariana voafaritra iray" - -#: ../src/option.c:491 -msgid "Display notification" -msgstr "Asehoy ny fampahafantarana" - -#: ../src/option.c:500 -msgid "Set the notification text" -msgstr "Hamaritra ny soratra amin'ilay fampahafantarana" - -#: ../src/option.c:509 -msgid "Listen for commands on stdin" -msgstr "Henoy ireo baikoavy amin'ny stdin" - -#: ../src/option.c:524 -msgid "Display progress indication dialog" -msgstr "Asehoy ny takilan'ny fivoarana" - -#: ../src/option.c:542 -msgid "Set initial percentage" -msgstr "Hamaritra ny isan-jato iantombohana" - -#: ../src/option.c:551 -msgid "Pulsate progress bar" -msgstr "Tapatapao ny tsipiky ny fivoarana" - -#: ../src/option.c:561 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Hidio ilay takila rehefa tratra ny 100%" - -#: ../src/option.c:576 -msgid "Display question dialog" -msgstr "Asehoy ny takilan'ny fanontaniana" - -#: ../src/option.c:609 -msgid "Display text information dialog" -msgstr "Asehoy ny takilan'ny laza momba ilay soratra" - -#: ../src/option.c:618 -msgid "Open file" -msgstr "Hanokatra rakitra" - -#: ../src/option.c:642 -msgid "Display warning dialog" -msgstr "Asehoy ny takila fampilazana" - -#: ../src/option.c:675 -msgid "Display scale dialog" -msgstr "Asehoy ny takilan'ny mari-drefy" - -#: ../src/option.c:693 -msgid "Set initial value" -msgstr "Hamaritra ny sanda iantombohana" - -#: ../src/option.c:702 -msgid "Set minimum value" -msgstr "Hamaritra ny sanda ambany indrindra" - -#: ../src/option.c:711 -msgid "Set maximum value" -msgstr "Hamaritra ny sanda ambony indrindra" - -#: ../src/option.c:720 -msgid "Set step size" -msgstr "Hamaritra ny halavan'ny dingana" - -#: ../src/option.c:729 -msgid "Print partial values" -msgstr "Hanonta sanda tsy feno" - -#: ../src/option.c:738 -msgid "Hide value" -msgstr "Afeno ilay sanda" - -#: ../src/option.c:753 -msgid "About zenity" -msgstr "Momba ny zenity" - -#: ../src/option.c:762 -msgid "Print version" -msgstr "Karazana natonta" - -#: ../src/option.c:1397 -msgid "General options" -msgstr "Safidy ankapobe" - -#: ../src/option.c:1398 -msgid "Show general options" -msgstr "Maneho ireo safidy ankapobe" - -#: ../src/option.c:1408 -msgid "Calendar options" -msgstr "Safidin'ny kalandrie" - -#: ../src/option.c:1409 -msgid "Show calendar options" -msgstr "Maneho ireo safidin'ny kalandrie" - -#: ../src/option.c:1419 -msgid "Text entry options" -msgstr "Safidin'ny fampidiran-tsoratra" - -#: ../src/option.c:1420 -msgid "Show text entry options" -msgstr "Maneho ireo safidin'ny fampidiran-tsoratra" - -#: ../src/option.c:1430 -msgid "Error options" -msgstr "Safidy momba ny tsy fetezana" - -#: ../src/option.c:1431 -msgid "Show error options" -msgstr "Maneho ireo safidy momba ny tsy fetezana" - -#: ../src/option.c:1441 -msgid "Info options" -msgstr "Safidin'ny fampahalalana" - -#: ../src/option.c:1442 -msgid "Show info options" -msgstr "Maneho ireo safidin'ny fampahalalana" - -#: ../src/option.c:1452 -msgid "File selection options" -msgstr "Safidy momba ny famaritana rakitra" - -#: ../src/option.c:1453 -msgid "Show file selection options" -msgstr "Maneho ireo safidy momba ny famaritana rakitra" - -#: ../src/option.c:1463 -msgid "List options" -msgstr "Safidin'ny lisitra" - -#: ../src/option.c:1464 -msgid "Show list options" -msgstr "Maneho ireo safidin'ny lisitra" - -#: ../src/option.c:1474 -msgid "Notification icon options" -msgstr "Safidy momba ny kisarin'ny fampahafantarana" - -#: ../src/option.c:1475 -msgid "Show notification icon options" -msgstr "Maneho ireo safidy momba ny kisarin'ny fampahafantarana" - -#: ../src/option.c:1485 -msgid "Progress options" -msgstr "Safidin'ny fivoarana" - -#: ../src/option.c:1486 -msgid "Show progress options" -msgstr "Maneho ireo safidin'ny fivoarana" - -#: ../src/option.c:1496 -msgid "Question options" -msgstr "Safidy momba ny fanontaniana" - -#: ../src/option.c:1497 -msgid "Show question options" -msgstr "Maneho ireo safidy momba ny fanontaniana" - -#: ../src/option.c:1507 -msgid "Warning options" -msgstr "Safidin'ny fampilazana" - -#: ../src/option.c:1508 -msgid "Show warning options" -msgstr "Maneho ireo safidin'ny fampilazana" - -#: ../src/option.c:1518 -msgid "Scale options" -msgstr "Safidin'ny mari-drefy" - -#: ../src/option.c:1519 -msgid "Show scale options" -msgstr "Maneho ireo safidin'ny mari-drefy" - -#: ../src/option.c:1529 -msgid "Text information options" -msgstr "Safidin'ny laza momba ny soratra" - -#: ../src/option.c:1530 -msgid "Show text information options" -msgstr "Maneho ireo safidin'ny laza momba ny soratra" - -#: ../src/option.c:1540 -msgid "Miscellaneous options" -msgstr "Safidy isankarazany" - -#: ../src/option.c:1541 -msgid "Show miscellaneous options" -msgstr "Maneho ireo safidy isankarazany" - -#: ../src/option.c:1566 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "Tsy misy io safidy io. Jereo ny --help ahitanao ireo safidy rehetra metyampiasaina.\n" - -#: ../src/option.c:1570 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Tsy raisina an-tànana amin'ity takila ity ny --%s\n" - -#: ../src/option.c:1574 -msgid "Two or more dialog options specified\n" -msgstr "Misy Safidin-takila roa na maromaro voafaritra\n" diff --git a/po/mi.po b/po/mi.po deleted file mode 100644 index bb71658..0000000 --- a/po/mi.po +++ /dev/null @@ -1,515 +0,0 @@ -# translation of zenity.HEAD.po to Maori -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# John C Barstow , 2004. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2004-06-26 19:15+1200\n" -"Last-Translator: John C Barstow \n" -"Language-Team: Maori \n" -"Language: mi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -msgid "translator-credits" -msgstr "" - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -#, fuzzy -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "āwhina" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -msgid "Zenity notification" -msgstr "" - -#: ../src/tree.c:320 -#, fuzzy -msgid "No column titles specified for List dialog.\n" -msgstr "Kāo Rārangi" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -#, fuzzy -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -#, fuzzy -msgid "About Zenity" -msgstr "Mō" - -#: ../src/zenity.glade.h:3 -#, fuzzy -msgid "Add a new entry" -msgstr "hou" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "" - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "" - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "" - -#: ../src/zenity.glade.h:9 -#, fuzzy -msgid "Error" -msgstr "He" - -#: ../src/zenity.glade.h:10 -#, fuzzy -msgid "Information" -msgstr "Rongo" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "" - -#: ../src/zenity.glade.h:12 -#, fuzzy -msgid "Question" -msgstr "Patai" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "" - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "" - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "" - -#: ../src/zenity.glade.h:18 -#, fuzzy -msgid "Text View" -msgstr "Ngā kupu Titiro" - -#: ../src/zenity.glade.h:19 -#, fuzzy -msgid "Warning" -msgstr "Kupu tūpato" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "" - -#: ../src/zenity.glade.h:21 -#, fuzzy -msgid "_Enter new text:" -msgstr "hou:" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:430 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -msgid "Display notification" -msgstr "" - -#: ../src/option.c:481 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:599 -#, fuzzy -msgid "Open file" -msgstr "Huaki" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "" - -#: ../src/option.c:656 -#, fuzzy -msgid "About zenity" -msgstr "Mō" - -#: ../src/option.c:665 -#, fuzzy -msgid "Print version" -msgstr "Tā" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "Ngā kupu" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "Ngā kupu" - -#: ../src/option.c:1281 -#, fuzzy -msgid "Text entry options" -msgstr "Ngā kupu" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "Ngā kupu" - -#: ../src/option.c:1292 -#, fuzzy -msgid "Error options" -msgstr "He" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "He" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "Patai" - -#: ../src/option.c:1314 -#, fuzzy -msgid "File selection options" -msgstr "Te Kōnae" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "Te Kōnae" - -#: ../src/option.c:1325 -#, fuzzy -msgid "List options" -msgstr "Rārangi" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "Rārangi" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "Patai" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "Patai" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "He" - -#: ../src/option.c:1358 -#, fuzzy -msgid "Question options" -msgstr "Patai" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "Patai" - -#: ../src/option.c:1369 -#, fuzzy -msgid "Warning options" -msgstr "Kupu tūpato" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "Kupu tūpato" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "Patai" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "Patai" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "" - -#: ../src/option.c:1392 -msgid "Show miscellaneous options" -msgstr "" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/mk.po b/po/mk.po deleted file mode 100644 index b553754..0000000 --- a/po/mk.po +++ /dev/null @@ -1,609 +0,0 @@ -# translation of zenity.HEAD.po to Macedonian -# translation of zenity.HEAD.mk.po to -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER, 2003 -# -# -# Arangel Angov , 2005, 2006, 2008. -# Arangel Angov , 2007. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-21 20:47+0000\n" -"PO-Revision-Date: 2008-08-10 20:29+0200\n" -"Last-Translator: Arangel Angov \n" -"Language-Team: Macedonian \n" -"Language: mk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"Оваа програма е слободен софтвер; можете да го редистрибуирате и/или " -"менувате во согласност со општата јавна ГНУ лиценца објавена од страна на " -"Фондацијата за слободен софтвер; можете да ја разгледате втората или пак " -"некоја понова верзија.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"Оваа програма се дистрибуира со надеж дека ќе биде корисен,но без БИЛО КАКВИ " -"ГАРАНЦИИ. За повеќе погледнете ја општата јавна ГНУ лиценца.\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Треба да добиете и копија од општата и јавнаГНУ лиценца;доколку ја нема " -"лиценцата пишете и на Фондацијата заслободен софтвер на следнава адреса: 59 " -"Temple Place, Suite 330, Boston, MA 02111-1307 USA" - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "" -"Арангел Ангов \n" -"http://gnome.softver.org.mk" - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "Прикажи дијалози од шел скрипти" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Мора да одредите тип на дијалог. Видете 'zenity --help' за подетално\n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "неможам да ја парсирам командата од stdin\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Zenity известување" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максималната вредност мора да биде поголема од минималната вредност.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Вредноста е надвор од опсегот.\n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Нема наслов за колона во Листа дијалогот.\n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Треба да користите само еден тип на дијалог за листање.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Додај нов запис" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Промени ја вредноста на скалата" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "Сите освежувања се завршени." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "Се појави грешка." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "Сигурни сте дека сакате да извршам?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "К_алендар:" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "Избор на календарот" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "Грешка" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "Информација" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "Прогрес" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "Прашање" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "Извршувам..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "Одберете датум подолу." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "Одберете датотека" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "Одберете ставка од листата" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "Одберете ставка од листата подолу." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "Текстуален поглед" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "Предупредување" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "_Внесете нов текст:" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "Постави наслов на дијалогот" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "НАСЛОВ" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "Постави прозорска икона" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "ПАТДОИКОНА" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "Постави ширина" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "ШИРИНА" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "Постави висина" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "ВИСИНА" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "Постави тајмаут за дијалог во секнуди" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "Прикажи дијалог за календар" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:428 ../src/option.c:558 -#: ../src/option.c:620 ../src/option.c:704 ../src/option.c:737 -msgid "Set the dialog text" -msgstr "Постави текст за дијалогот" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:429 ../src/option.c:526 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:630 ../src/option.c:639 -#: ../src/option.c:705 ../src/option.c:738 -msgid "TEXT" -msgstr "ТЕКСТ" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "Постави календарски ден" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "ДЕН" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "Постави календарски месец" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "МЕСЕЦ" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "Постави календарска година" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "ГОДИНА" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "Псотави формат на повратниот датум" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "ШЕМА" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "Прикажи дијалог за внес на текст" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "Постави влезен текст" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "Скриј го влезниот текст" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "Прикажи дијалог за грешка" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:647 -#: ../src/option.c:713 -msgid "Do not enable text wrapping" -msgstr "Не вклучувај завиткување на текст" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "Прикажи инфо дијалог" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "Прикажи дијалог за одбир на датотека" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "Постави име на датотеката" - -#: ../src/option.c:351 ../src/option.c:672 -msgid "FILENAME" -msgstr "ИМЕНАДАТОТЕКА" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "Дозволи повеќе датотеки да бидат одбрани" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "Активирај одбирање само на директориуми" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "Активирај режим за зачувување" - -#: ../src/option.c:386 ../src/option.c:464 -msgid "Set output separator character" -msgstr "Постави излезен знак за одвојување" - -#: ../src/option.c:387 ../src/option.c:465 -msgid "SEPARATOR" -msgstr "ОДВОЈУВАЧ" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "Потврди избирање на датотека ако името на датотеката веќе постои" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "Поставува филтер на име на датотека" - -#: ../src/option.c:405 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:419 -msgid "Display list dialog" -msgstr "Прикажи дијалог за листа" - -#: ../src/option.c:437 -msgid "Set the column header" -msgstr "Постави наслов на колона" - -#: ../src/option.c:438 -msgid "COLUMN" -msgstr "КОЛОНА" - -#: ../src/option.c:446 -msgid "Use check boxes for first column" -msgstr "Користи чек кутија за првата колона" - -#: ../src/option.c:455 -msgid "Use radio buttons for first column" -msgstr "Користи радио копче за првата колона" - -#: ../src/option.c:473 -msgid "Allow multiple rows to be selected" -msgstr "Дозволи повеќе редови да бидат одбрани" - -#: ../src/option.c:482 ../src/option.c:680 -msgid "Allow changes to text" -msgstr "Дозволи промена на текст" - -#: ../src/option.c:491 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Отпечати одредена колона (Стандардно е 1. „СИТЕ“ може да се користи за " -"печатење на сите колони)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:493 ../src/option.c:502 -msgid "NUMBER" -msgstr "БРОЈ" - -#: ../src/option.c:501 -msgid "Hide a specific column" -msgstr "Скриј одредена колона" - -#: ../src/option.c:516 -msgid "Display notification" -msgstr "Прикажи известување" - -#: ../src/option.c:525 -msgid "Set the notification text" -msgstr "Постави текст за известување" - -#: ../src/option.c:534 -msgid "Listen for commands on stdin" -msgstr "Слушај команди на stdin" - -#: ../src/option.c:549 -msgid "Display progress indication dialog" -msgstr "Прикажи дијалог за прогрес" - -#: ../src/option.c:567 -msgid "Set initial percentage" -msgstr "Постави почетен процент" - -#: ../src/option.c:568 -msgid "PERCENTAGE" -msgstr "ПРОЦЕНТ" - -#: ../src/option.c:576 -msgid "Pulsate progress bar" -msgstr "Пулсирачка прогрес линија" - -#: ../src/option.c:586 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Откажи го дијалогот кога 100% ќе биде исполнет" - -#: ../src/option.c:596 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "Убиј го процесот ако се притисне копчето „откажи“." - -#: ../src/option.c:611 -msgid "Display question dialog" -msgstr "Прикажи прашален дијалог" - -#: ../src/option.c:629 -msgid "Sets the label of the Ok button" -msgstr "Ја поставува ознаката за копчето „Во ред“" - -#: ../src/option.c:638 -msgid "Sets the label of the Cancel button" -msgstr "Ја поставува ознаката за копчето „Откажи“" - -#: ../src/option.c:662 -msgid "Display text information dialog" -msgstr "Прикажи инфо текст дијалог" - -#: ../src/option.c:671 -msgid "Open file" -msgstr "Отвори датотека" - -#: ../src/option.c:695 -msgid "Display warning dialog" -msgstr "Прикажи дијалог за предупредување" - -#: ../src/option.c:728 -msgid "Display scale dialog" -msgstr "Прикажи дијалог за скала" - -#: ../src/option.c:746 -msgid "Set initial value" -msgstr "Постави почетна вредност" - -#: ../src/option.c:747 ../src/option.c:756 ../src/option.c:765 -#: ../src/option.c:774 -msgid "VALUE" -msgstr "ВРЕДНОСТ" - -#: ../src/option.c:755 -msgid "Set minimum value" -msgstr "Постави минимална вредност" - -#: ../src/option.c:764 -msgid "Set maximum value" -msgstr "Постави максимална вредност" - -#: ../src/option.c:773 -msgid "Set step size" -msgstr "Постави големина на чекор" - -#: ../src/option.c:782 -msgid "Print partial values" -msgstr "Отпечати нецели вредности" - -#: ../src/option.c:791 -msgid "Hide value" -msgstr "Скриј вредност" - -#: ../src/option.c:806 -msgid "About zenity" -msgstr "За Zenity" - -#: ../src/option.c:815 -msgid "Print version" -msgstr "Печатена верзија" - -#: ../src/option.c:1470 -msgid "General options" -msgstr "Генерални опции" - -#: ../src/option.c:1471 -msgid "Show general options" -msgstr "Покажи општи опции" - -#: ../src/option.c:1481 -msgid "Calendar options" -msgstr "Календар опции" - -#: ../src/option.c:1482 -msgid "Show calendar options" -msgstr "Покажи опции за календар" - -#: ../src/option.c:1492 -msgid "Text entry options" -msgstr "Текст внесувачки опции" - -#: ../src/option.c:1493 -msgid "Show text entry options" -msgstr "Покажи опции за внесување на текст" - -#: ../src/option.c:1503 -msgid "Error options" -msgstr "Грешка опции" - -#: ../src/option.c:1504 -msgid "Show error options" -msgstr "Покажи опции за грешки" - -#: ../src/option.c:1514 -msgid "Info options" -msgstr "Инфо опции" - -#: ../src/option.c:1515 -msgid "Show info options" -msgstr "Покажи опции за информации" - -#: ../src/option.c:1525 -msgid "File selection options" -msgstr "Одбир на датотека опции" - -#: ../src/option.c:1526 -msgid "Show file selection options" -msgstr "Покажи опции за одбирање на датотеки" - -#: ../src/option.c:1536 -msgid "List options" -msgstr "Листа опции" - -#: ../src/option.c:1537 -msgid "Show list options" -msgstr "Покажи опции за листање" - -#: ../src/option.c:1547 -msgid "Notification icon options" -msgstr "Опции за иконата за известување" - -#: ../src/option.c:1548 -msgid "Show notification icon options" -msgstr "Покажи опции за за иконата за известување" - -#: ../src/option.c:1558 -msgid "Progress options" -msgstr "Прогрес опции" - -#: ../src/option.c:1559 -msgid "Show progress options" -msgstr "Покажи опции за прогрес" - -#: ../src/option.c:1569 -msgid "Question options" -msgstr "Прашални опции" - -#: ../src/option.c:1570 -msgid "Show question options" -msgstr "Покажи опции за прашања" - -#: ../src/option.c:1580 -msgid "Warning options" -msgstr "Предупредување опции" - -#: ../src/option.c:1581 -msgid "Show warning options" -msgstr "Покажи опции за предупредување" - -#: ../src/option.c:1591 -msgid "Scale options" -msgstr "Опции за скала" - -#: ../src/option.c:1592 -msgid "Show scale options" -msgstr "Покажи опции за скала" - -#: ../src/option.c:1602 -msgid "Text information options" -msgstr "Опции за известување преку текст" - -#: ../src/option.c:1603 -msgid "Show text information options" -msgstr "Покажи опции за известување преку текст" - -#: ../src/option.c:1613 -msgid "Miscellaneous options" -msgstr "Разни опции" - -#: ../src/option.c:1614 -msgid "Show miscellaneous options" -msgstr "Покажи разни опции" - -#: ../src/option.c:1639 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "Опцијата не е достапна. Ве молам пробајте со --help за сите можни употреби.\n" - -#: ../src/option.c:1643 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s не е поддржан за овој дијалог\n" - -#: ../src/option.c:1647 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Две или повеќе опции одбрани за дијалог\n" - diff --git a/po/ml.po b/po/ml.po deleted file mode 100644 index 215048a..0000000 --- a/po/ml.po +++ /dev/null @@ -1,865 +0,0 @@ -# translation of zenity.HEAD.ml.po to Malayalam -# This file is distributed under the same license as the zenity.HEAD.ml package. -# Copyright (C) 2008 THE zenity'S COPYRIGHT HOLDER. -# FSF-India , 2003. -# Ani Peter , 2006, 2008. -# ragsagar , 2008. -# Anish A , 2012. -# Geehu p s , 2017. -# Mithra s g , 2017 -# Abhirami a , 2017. -# Bindhu s , 2017. -# Anish Sheela , 2017. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD.ml trunk\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2018-09-07 11:06+0000\n" -"PO-Revision-Date: 2018-10-26 21:06+0530\n" -"Last-Translator: ബാലശങ്കർ സി \n" -"Language-Team: Swatantra Malayalam Computing \n" -"Language: ml\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.2\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" -msgstr "" -"ഇതൊരു സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ ആണു്; സ്വതന്ത്ര സോഫ്റ്റ്‌വെയര്‍ ഫൌണ്ടേഷന്‍ പ്രസിദ്ധീകരിച്ച ഗ്നു ജനറല്‍ പബ്ലിക് ലൈസന്‍സ് അനുസരിച്ചു് നിങ്ങള്‍ക്കിതു് വീണ്ടും വിതരണം ചെയ്യാവുന്നതും മാറ്റങ്ങള്‍ വരുത്താവുന്നതുമാണു്; " -"ലൈസന്‍സിന്റെ ലക്കം 2 അല്ലെങ്കില്‍ (നിങ്ങള്‍ തെരഞ്ഞെടുക്കുന്ന) അതിനു് ശേഷമുള്ള ഏതെങ്കിലും ലക്കമോ ഉപയോഗിക്കാം.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n" -msgstr "" -"ഈ പ്രോഗ്രാം നിങ്ങള്‍ക്കു് പ്രയോജനപ്പെടും എന്ന പ്രതീക്ഷയില്‍ വിതരണം ചെയ്യുന്നതാണു്,പക്ഷേ, ഇതിനു് ഒരു വാറണ്ടിയും ലഭ്യമല്ല; വ്യാപാരയോഗ്യതയോ ഒരു പ്രത്യേക കാര്യത്തിനു് ചേരുന്നതാണെന്നോ പരോക്ഷമായി ഉള്‍‌" -"ക്കൊള്ളുന്ന വാറണ്ടി പോലും ഇല്ല. കൂടുതല്‍ വിവരങ്ങള്‍ക്കു് ഗ്നു ജനറല്‍ പബ്ലിക് ലൈസന്‍സ് കാണുക.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"ഈ പ്രോഗ്രാമിനൊപ്പം നിങ്ങള്‍ക്ക് GNU General Public License-ന്റെ ഒരു പകര്‍പ്പ് ലഭിക്കേണ്ടതാണ്; ഇല്ലായെങ്കില്‍ ദയവായി താഴെ പറയുന്ന വിലാസത്തിലേക്ക് എഴുതുക: Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"അനി പീറ്റര്‍ \n" -"രാഗ് സാഗര്‍ \n" -"അനീഷ് എ " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "ഷെല്‍ സ്ക്രിപ്റ്റുകളില്‍ നിന്നും സംഭാഷണം ബോക്സുകള്‍ കാണിക്കുക" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "(_O)ഒകെ" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "(_C)റദ്ദാക്കുക" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "ഏതെങ്കിലും ഒരു സംഭാഷണം രീതി പറയേണ്ടതാണ്. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'zenity --help' കാണുക\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "(_N)അല്ല" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "(_Y)അതെ" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "സന്ദേശം പാഴ്സ് ചെയ്യുവാന്‍ സാധ്യമല്ല\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"ബൂളിയന്‍ തരത്തിലുള്ള മൂല്യം അസാധുവാണ്.\n" -"സഹായകമൂല്യങ്ങള്‍ ശരിയോ തെറ്റോ ആയിരിക്കും.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "പിന്തുണയ്ക്കാത്ത സൂചന. ഒഴിവാക്കുന്നു. \n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "അറിയാത്ത സൂചിക. ഒഴിവാക്കുന്നു. \n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "stdin-ല്‍ നിന്നും നിര്‍ദ്ദേശം പാഴ്സ് ചെയ്യുവാന്‍ സാധ്യമല്ല\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity അറിയിപ്പ്" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "സംഭാഷണം തലക്കെട്ട് ക്രമീകരിക്കുക" - -#: src/option.c:165 -msgid "TITLE" -msgstr "തലക്കെട്ട്" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "ജാലകത്തിന്റെ പ്രതിരൂപം ക്രമീകരിക്കുക" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "വീതി ക്രമീകരിക്കുക" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "വീതി" - -#: src/option.c:185 -msgid "Set the height" -msgstr "ഉയരം ക്രമീകരിക്കുക" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ഉയരം" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "സെക്കന്റിലുള്ള സംഭാഷണ സമയപരിധി സജ്ജീകരിയ്ക്കുക" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "ശരിയെന്ന ബട്ടണിന്റെ പേരു് വയ്ക്കുന്നു" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "പദാവലി" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "റദ്ദാക്കുന്നതിനുള്ള ബട്ടണ്ണിനു് പേരു് വയ്ക്കുക" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "ഒരു അധിക ബട്ടൺ ചേർക്കുക" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "മോഡല്‍ സൂചന ക്രമീകരിക്കുക" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "ഘടിപ്പിക്കേണ്ട പാരന്റ് ജാലകം സജ്ജമാക്കുക" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ജാലകം" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "കലണ്ടര്‍ സംഭാഷണം കാണിക്കുക" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "സംഭാഷണത്തിലെ പദാവലി ക്രമീകരിക്കുക" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "കലണ്ടറില്‍ ദിവസം സെറ്റ് ചെയ്യുക" - -#: src/option.c:252 -msgid "DAY" -msgstr "ദിവസം" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "കലണ്ടറില്‍ മാസം സെറ്റ് ചെയ്യുക" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "കലണ്ടറില്‍ വര്‍ഷം സെറ്റ് ചെയ്യുക" - -#: src/option.c:266 -msgid "YEAR" -msgstr "വര്‍ഷം" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "തിരികെ ലഭിച്ച തീയതിയുടെ രീതി സെറ്റ് ചെയ്യുക" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "രീതി" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "പദാവലി എന്റര്‍ ചെയ്യുന്നതിനുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "എന്‍ട്രി പദാവലി സെറ്റ് ചെയ്യുക" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "എന്‍ട്രി പദാവലി അദൃശ്യമാക്കുക" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "പിശക് സംഭാഷണം കാണിക്കുക" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "സംഭാഷണം ഐക്കണ്‍ ക്രമീകരിക്കുക" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "പദാവലി റാപ്പിങ് പ്രാവര്‍ത്തികമാക്കരുതു്" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "പാങ്കോ മാര്‍ക്കപ്പ് പ്രാവര്‍ത്തികമാക്കരുതു്" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "Enable ellipsizing in the dialog text. This fixes the high window size with long texts" -msgstr "സംഭാഷണ വാചകത്തിൽ എലിപ്സിസിങ് ചെയ്യുന്നത് പ്രാപ്തമാക്കുക. ദൈർഘ്യമേറിയ വാചകങ്ങൾ മൂലമുണ്ടാകുന്ന ജാലകത്തിന്റെ കൂടിയ വലിപ്പം ഇത് പരിഹരിക്കുന്നു" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "വിവരങ്ങളുടെ സംഭാഷണം കാണിക്കുക" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "ഫയല്‍ തെരഞ്ഞെടുക്കുന്നതിനുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "ഫയല്‍നാമം ക്രമീകരിക്കുക" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "ഫയല്‍നാമം" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "അനവധി ഫയലുകള്‍ തെരഞ്ഞെടുക്കുന്നതിന് അനുവദിക്കുക" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "തട്ടു്-മാത്രം തെരഞ്ഞെടുക്കല്‍ സജ്ജമാക്കുക" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "സംരക്ഷണ മോഡ് പ്രവര്‍ത്തിപ്പിക്കുക" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "ഔട്ട് പുട്ട് വേര്‍തിരിക്കുന്ന അക്ഷരം സെറ്റ് ചെയ്യുക" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "ഫയല്‍നാമം നിലവിലുണ്ട് എങ്കില്‍ ഫയല്‍ തെരഞ്ഞെടുക്കലില്‍ ഉറപ്പ് വരുത്തുക" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "ഫയലിന്റെ പേരിലുള്ള അരിപ്പ ക്രമീകരിയ്ക്കുന്നു" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME·|·PATTERN1·PATTERN2·..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "ലിസ്റ്റ് സംഭാഷണം കാണിക്കുക" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "നിരയുടെ തലക്കെട്ട് സെറ്റ് ചെയ്യുക" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUMN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "ആദ്യത്തെ നിരയ്ക്ക് ചെക്ക് ബോക്സുകള്‍ ഉപയോഗിക്കുക" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "ആദ്യത്തെ നിരയ്ക്ക് റേഡിയോ ബട്ടണുകള്‍ ഉപയോഗിക്കുക" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "ആദ്യത്തെ നിരയ്ക്ക് ചിത്രം ഉപയോഗിക്കുക" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "അനവധി വരികള്‍ തെരഞ്ഞെടുക്കുന്നതിന് അനുവദിക്കുക" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "പദാവലിത്തില്‍ മാറ്റം വരുത്തുന്നതിന് അനുവദിക്കുക" - -#: src/option.c:523 -msgid "Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "" -"പറഞ്ഞിരിക്കുന്ന നിര പ്രിന്‍റ് ചെയ്യുക (ഡീഫോള്‍ട്ടായി 1 ആണ്. എല്ലാ നിരകളും പ്രിന്‍റ് ചെയ്യുന്നതിനായി\n" -"'ALL' ഉപയോഗിക്കാം)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "അക്കം" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "പറഞ്ഞിരിക്കുന്ന വരി അദൃശ്യമാക്കുക" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "നിരയുടെ തലക്കെട്ട് മറയ്ക്കുക" - -#: src/option.c:546 -msgid "Change list default search function searching for text in the middle, not on the beginning" -msgstr "പട്ടികയുടെ തുടക്കത്തിലേതിനല്ല, മദ്ധ്യഭാഗത്തുള്ള ടെക്സ്റ്റിനായി തിരയുന്ന സ്വതേയുള്ള തിരച്ചിൽ പ്രയോഗം മാറ്റുക" - -#: src/option.c:557 -msgid "Display notification" -msgstr "അറിയിപ്പ് കാണിക്കുക" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "അറിയിപ്പിന്റെ പദാവലി സെറ്റ് ചെയ്യുക" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "stdin-ൽ വരുന്ന നിര്‍ദ്ദേശങ്ങള്‍ക്കായി കാത്തിരിക്കുക" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "അറിയിപ്പിന്റെ സൂചികകൾ സെറ്റ് ചെയ്യുക" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "പുരോഗതി സൂചിപ്പിക്കുന്ന സംഭാഷണം കാണിക്കുക" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "ആരംഭത്തിലുളള ശതമാനം സെറ്റ് ചെയ്യുക" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ശതമാനം" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "പുരോഗതിയുടെ ബാര്‍ ഇളക്കുക" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% എത്തുന്പോള്‍ സംഭാഷണം കാണിക്കുക" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "റദ്ദാക്കുന്നതിനുള്ള ബട്ടണ്‍ അമര്‍ത്തിയാല്‍ പാരന്റ് പ്രക്രിയയെ നിർത്തുക" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "റദ്ദാക്കല്‍ ബട്ടണ്‍ മറയ്ക്കുക" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "പുരോഗതി എപ്പോൾ 100%-ൽ എത്തുമെന്ന് അനുമാനിക്കുക" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "ചോദ്യമായ സംഭാഷണം കാണിക്കുക" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "റദ്ദാക്കുക ബട്ടണ് സ്വതവേ ശ്രദ്ധ നൽകുക" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "ശരി, റദ്ദാക്കുക ബട്ടണുകൾ മൂടിവയ്ക്കുക" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "പദാവലിയുടെ വിവരങ്ങള്‍ക്കായുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:715 -msgid "Open file" -msgstr "ഫയല്‍ തുറക്കുക" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "ടെക്സ്റ്റ് അക്ഷരസഞ്ചയം ക്രമീകരിക്കുക" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "ഞാന്‍ വായിച്ചു ബോധ്യപ്പെട്ടു എനേബിള്‍ ചെയ്യുക" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "html പിന്തുണ സജ്ജമാക്കുക" - -#: src/option.c:751 -msgid "Do not enable user interaction with the WebView. Only works if you use --html option" -msgstr "'വെബ്‍ വ്യൂ'വിൽ ഉപയോക്തൃ ഇടപെടൽ സജ്ജമാക്കരുത്. നിങ്ങൾ --html ഐച്ഛികം ഉപയോഗിച്ചാൽ മാത്രം പ്രവർത്തിക്കുന്നു" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "ഫയലിന് പകരം യുആര്‍എല്‍ ക്രമീകരിക്കുക. --html ഐച്ഛികം ഉപയോഗിച്ചിട്ടുണ്ടെങ്കില്‍ മാത്രം പ്രവര്‍ത്തിക്കുന്" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "ടെക്സ്റ്റിന്റെ അവസാനം വരെ തനിയേ സ്ക്രോൾ ചെയ്യുക. ടെക്സ്റ്റ് stdin-ൽ നിന്നും ലഭ്യമാകുമ്പോൾ മാത്രം" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "മുന്നറിയിപ്പിനുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "സ്കെയിലിനുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "പ്രാരംഭ മൂല്ല്യം സെറ്റ് ചെയ്യുക" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 src/option.c:1008 -msgid "VALUE" -msgstr "വില" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "ഏറ്റവും കുറഞ്ഞ മൂല്ല്യം സെറ്റ് ചെയ്യുക" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "ഏറ്റവും കൂടിയ മൂല്ല്യം സെറ്റ് ചെയ്യുക" - -#: src/option.c:856 -msgid "Set step size" -msgstr "സ്റ്റെപ്പിന്റെ അളവ് സെറ്റ് ചെയ്യുക" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "ഭാഗികമായ മൂല്ല്യങ്ങള്‍ പ്രിന്‍റ് ചെയ്യുക" - -#: src/option.c:870 -msgid "Hide value" -msgstr "മൂല്ല്യം അദൃശ്യമാക്കുക" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "ഫോമ്സ് സംഭാഷണം കാണിക്കുക" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "ഫോംസ് സംഭാഷണത്തില്‍ ഒരു പുതിയ എന്‍ട്രി ചേര്‍ക്കുക" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "ഫീല്‍ഡ് പേര്" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "ഫോംസ് സംഭാഷണത്തില്‍ ഒരു പുതിയ രഹസ്യവാക്ക് എന്‍ട്രി ചേര്‍ക്കുക" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "ഫോംസ് സംഭാഷണത്തില്‍ ഒരു പുതിയ കലണ്ടര്‍ ചേര്‍ക്കുക" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "കലണ്ടറിന്റെ ഫീല്‍ഡിന്റെ പേര്" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "ഫോംസ് സംഭാഷണത്തില്‍ ഒരു പുതിയ പട്ടിക ചേര്‍ക്കുക" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "ഫീല്‍ഡ്, തലക്കെട്ട് പേരുകള്‍ കാണിക്കുക" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "പട്ടികയിലെക്ക് വേണ്ടി മൂല്യങ്ങളുടെ പട്ടിക" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| കൊണ്ട് വേര്‍തിരിച്ച മൂല്യങ്ങളുടെ പട്ടിക" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "കോളത്തിലേക്ക് വേണ്ടി മൂല്യങ്ങളുടെ പട്ടിക" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "ഫോം സംഭാഷണത്തിൽ ഒരു പുതിയ കോംബോ ബോക്സ് ചേർക്കുക" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "കോംബോ ബോക്സ് ഫീൽഡിന്റെ പേര്" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "കോംബോ ബോക്സിനുള്ള മൂല്യങ്ങളുടെ പട്ടിക" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "നിരയുടെ തലക്കെട്ട് കാണിക്കുക" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "രഹസ്യവാക്ക് സംഭാഷണം കാണിക്കുക" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "ഉപയോക്തനാമം ഐച്ഛികം കാണിക്കുക" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "നിറക്കൂട്ട് തെരഞ്ഞെടുക്കുന്നതിനുളള സംഭാഷണം കാണിക്കുക" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "നിറം ക്രമീകരിക്കുക" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "നിറക്കുട്ട് കാണിക്കുക" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "zenity സംബന്ധിച്ച്" - -#: src/option.c:1030 -msgid "Print version" -msgstr "പതിപ്പു് കാണിക്കുക" - -#: src/option.c:1913 -msgid "General options" -msgstr "സാധാരണ ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "സാധാരണ ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "കലണ്ടര്‍ ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "കലണ്ടര്‍ ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "പദാവലി എന്റര്‍ ചെയ്യുവാനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "പദാവലി എന്റര്‍ ചെയ്യുവാനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1952 -msgid "Error options" -msgstr "പിശകിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "പിശകിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1962 -msgid "Info options" -msgstr "വിവരങ്ങള്‍ക്കായുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "വിവരങ്ങള്‍ക്കായുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "ഫയല്‍ തെരഞ്ഞെടുക്കുന്നതിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "ഫയല്‍ തെരഞ്ഞെടുക്കുന്നതിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1985 -msgid "List options" -msgstr "ലിസ്റ്റ് ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "ലിസ്റ്റ് ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "അറിയിപ്പ് പ്രതിരൂപത്തിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "അറിയിപ്പ് പ്രതിരൂപത്തിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "പുരോഗതിയ്കുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "പുരോഗതിയ്കുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2024 -msgid "Question options" -msgstr "ചോദ്യത്തിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "ചോദ്യത്തിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "മുന്നറിയിപ്പിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "മുന്നറിയിപ്പിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "സ്കെയില്‍ ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "സ്കെയില്‍ ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "പദാവലി വിവരങ്ങള്‍ക്കുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "പദാവലി വിവരങ്ങള്‍ക്കുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "നിറം തെരഞ്ഞെടുക്കുന്നതിനുളള ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "നിറെ തെരഞ്ഞെടുക്കുന്നതിനുളള ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "രഹസ്യവാക്ക് സംഭാഷണ ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "രഹസ്യവാക്ക് സംഭാഷണ ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "ഫോംസ് സംഭാഷണം ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "ഫോംസ് സംഭാഷണം ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "മറ്റു് ഐച്ഛികങ്ങള്‍" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "മറ്റു് ഐച്ഛികങ്ങള്‍ കാണിക്കുക" - -#: src/option.c:2139 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "ഈ ഐച്ഛികം ലഭ്യമല്ല. ലഭ്യമായ ഉപയോഗിക്കേണ്ട വിധങ്ങല്‍ എല്ലാം കാണുന്നതിനായി ദയവായി see --help പരിശോധിക്കുക.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--ഈ സംഭാഷണത്തിനു് %s പിന്തുണ ലഭ്യമല്ല\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "രണ്ടോ അതിലധികമോ സംഭാഷണൈച്ഛികങ്ങള്‍ പറഞ്ഞിരിക്കുന്നു\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "നിങ്ങളുടെ രഹസ്യവാക്ക് ടൈപ്പ് ചെയ്യുക" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "നിങ്ങളുടെ ഉപയോക്ത നാമവും രഹസ്യവാക്ക് ടൈപ്പ് ചെയ്യുക" - -#: src/password.c:100 -msgid "Username:" -msgstr "ഉപയോക്തൃനാമം:" - -#: src/password.c:110 -msgid "Password:" -msgstr "രഹസ്യവാക്കു്:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "ശേഷിക്കുന്ന സമയം:%lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ഏറ്റവും കൂടുതല്‍ മൂല്ല്യം ഏറ്റവും ചെറിയ മൂല്ല്യത്തെക്കാള്‍ വലുതായിരിക്കണം.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "മൂല്ല്യം പരിധിയ്ക്ക് പുറത്ത്.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "ലിസ്റ്റ് സംഭാഷണത്തിനു് ഒരു നിര തലക്കെട്ടുകളും പറഞ്ഞിട്ടില്ല.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "ഒരു തരത്തിലുളള ലിസ്റ്റ് സംഭാഷണം മാത്രമേ ഉപയോഗിക്കുവാന്‍ പാടുളളൂ.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "സ്കെയില്‍ മൂല്ല്യം ശരിയാക്കുക" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "റദ്ദാക്കുക" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "ഒകെ" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "പദാവലിയുടെ കാഴ്ച" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "കലണ്ടറിന്റെ ഭാഗം" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "താഴെ നിന്നും ഒരു തിയതി തെരഞ്ഞെടുക്കുക." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_കലണ്ടര്‍:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "ഒരു പുതിയ എന്‍ട്രി ചേര്‍ക്കുക" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "പുതിയ പദാവലി _നല്‍കുക:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "പിശക്" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "ഒരു പിഴവ് സംഭവിച്ചിരിക്കുന്നു." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "ഫോമ്സ് സംഭാഷണം" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "വിവരം" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "എല്ലാ പുതുക്കലും കഴിഞ്ഞിരിക്കുന്നു." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "പുരോഗതി‌" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "പ്രവര്‍ത്തനത്തില്‍..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "ചോദ്യം" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "മുമ്പോട്ടു് പോകണമെന്ന് നിങ്ങള്‍ക്ക് ഉറപ്പാണോ?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "ലിസ്റ്റില്‍ നിന്നും ഇനം തെരഞ്ഞെടുക്കുക" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "താഴെ കൊടുത്തിട്ടുളള ലിസ്റ്റില്‍ നിന്നും ഇനം തെരഞ്ഞെടുക്കുക." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "മുന്നറിയിപ്പ്" - -#~ msgid "Select a file" -#~ msgstr "ഒരു ഫയല്‍ തെരഞ്ഞെടുക്കുക" - -#~ msgid "Adjust the scale value." -#~ msgstr "സ്കെയില്‍ മൂല്ല്യം ശരിയാക്കുക." diff --git a/po/mn.po b/po/mn.po deleted file mode 100644 index 8ce6f2f..0000000 --- a/po/mn.po +++ /dev/null @@ -1,503 +0,0 @@ -# translation of zenity.HEAD.po to Mongolian -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# S.Dulmandakh , 2003. -# Dulmandakh Sukhbaatar , 2003. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2004-01-03 13:58+0800\n" -"Last-Translator: Dulmandakh \n" -"Language-Team: Mongolian \n" -"Language: mn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -#, fuzzy -msgid "translator-credits" -msgstr "Сүхбаатарын Дөлмандах " - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "бүрхүүлийн скриптээс харилцах хайрцаг үзүүл" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "(C) 2003 Sun Microsystems" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "Оролцогсод" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "Бичсэн" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "Орчуулсан" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "" - -#: ../src/main.c:90 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Та харилцахын төрлийг сонгох тодорхойлох хэрэгтэй. Дэлгэрэнгүй мэдээлэл " -"авахыг хүсвэл 'zenity --help'-г үз\n" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:230 ../src/notification.c:259 -#, fuzzy -msgid "Zenity notification" -msgstr "Мэдээллийн харилцахыг үзүүл" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Жагсаалтын харилцахад баганы нэр байхгүй байна.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "Зенитийн тухай" - -#: ../src/zenity.glade.h:3 -msgid "Add a new entry" -msgstr "Шинэ оролт нэмэх" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Бүх шинэчлэлтүүд дууссан." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Алдаа гарлаа." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Та үргэлжлүүлнэ гэдэгтээ итгэлтэй байна уу?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "_Хуанли:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Хуанлийн сонголт" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Алдаа" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Мэдээлэл" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Прогресс" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Асуулт" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "Ажиллаж байна..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Доороос он сар өдрөө сонго." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Файлаа сонго" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Жагсаалтаас мэдээллүүдээ сонго" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Доорхи жагсаалтаас сонго." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Текстийн үзэмж" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Анхааруулга" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "_Оролцогчид" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "_Шинэ текст оруул:" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "Харилцахын нэрийг тодорхойл" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "НЭР" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "Цонхны айконыг тохируул" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "АЙКОНЫ_ЗАМ" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "Өргөнийг тохируул" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "ӨРГӨН" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "Өндөрийг тохируул" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "ӨНДӨР" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "Хуанлийн харилцахыг үзүүл" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "Харилцахын текстийг тохируул" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "Хуанлийн өдрийг тохируул" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "Хуанлийн сарыг тохируул" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "Хуанлийн оныг тохируул" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "Буцаагдсан он сар өдрийн хэлбэрийг тохируул" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "Текст оруулах харилцахыг үзүүл" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "Оролтын текстийг тохируул" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "Оролтын текстийг нуу" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "Алдааны харилцахыг үзүүл" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "Мэдээллийн харилцахыг үзүүл" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "Файл сонгох харилцахыг үзүүл" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "Файлын нэрийг тохируул" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "ФАЙЛЫН_НЭР" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "Олон файл сонгох боломж олго" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "Гаралтын хязгаарлагч тэмдэгтийг тохируул" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "ХЯЗГААРЛАГЧ" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "Жагсаалтын харилцахыг үзүүл" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "Баганын толгойг тохируул" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "Эхний баганад сонгох хайрцаг ашигла" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "Эхний баганад радио товч ашигла" - -#: ../src/option.c:430 -#, fuzzy -msgid "Allow multiple rows to be selected" -msgstr "Олон файл сонгох боломж олго" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "Текстийг өөрчлөхыг зөвшөөр" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -#, fuzzy -msgid "Display notification" -msgstr "Мэдээллийн харилцахыг үзүүл" - -#: ../src/option.c:481 -#, fuzzy -msgid "Set the notification text" -msgstr "Харилцахын текстийг тохируул" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "Прогрессыг таних харилцах үзүүл" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "Хувь" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "Үйл явцын мөр" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100%-г давсан тохиолдол харилцахуудыг бүү үзүүл" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "Асуултын харилцах үзүүл" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "Текстэн мэдээллийн харилцах үзүүл" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "Файлыг нээ" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "Анхааруулах харилцах үзүүл" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "Зенитийн тухай" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "Хувилбарыг хэвлэ" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "Ерөнхий тохиргоонууд" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "Ерөнхий тохиргоонууд" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "Хуанлийн тохиргоонууд" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "Хуанлийн тохиргоонууд" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "Техт оруулах тохиргоонууд" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "Техт оруулах тохиргоонууд" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "Алдааны тохиргоонууд" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "Алдааны тохиргоонууд" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "Мэдээллийн тохиргоонууд" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "Мэдээллийн тохиргоонууд" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "Файл сонгох тохиргоонууд" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "Файл сонгох тохиргоонууд" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "Жагсаалтын тохиргоонууд" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "Жагсаалтын тохиргоонууд" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "Прогрессын тохиргоонууд" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "Прогрессын тохиргоонууд" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "Анхааруулгын тохиргоонууд" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "Анхааруулгын тохиргоонууд" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "Асуултын тохиргоонууд" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "Төрөл бүрийн тохиргоонууд" - -#: ../src/option.c:1392 -#, fuzzy -msgid "Show miscellaneous options" -msgstr "Төрөл бүрийн тохиргоонууд" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, fuzzy, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Энэ харилцахад %s дэмжигдэхгүй\n" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "Хоёр эсвэл түүнээс их харилцах тохиргоо өгөгдсөн байна\n" diff --git a/po/mr.po b/po/mr.po deleted file mode 100644 index 5251479..0000000 --- a/po/mr.po +++ /dev/null @@ -1,605 +0,0 @@ -# translation of mr.po to marathi -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# sandeep shedmake , 2007. -# Sandeep Shedmake , 2008. -msgid "" -msgstr "" -"Project-Id-Version: mr\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-21 20:47+0000\n" -"PO-Revision-Date: 2008-08-25 09:13+0530\n" -"Last-Translator: Sandeep Shedmake \n" -"Language-Team: marathi\n" -"Language: mr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"हा कार्यक्रम मुक्त सॉफ्टवेअर आहे; तुम्ही याचे वितरण व/किंवा संपादन Free Software " -"Foundation प्रकाशीत GNU General Public License च्या अंतर्गत; एकतर परवानातील " -"आवृत्ती 2 , किंवा (तुमच्या पर्यायनुसारे) पुढील कुठल्याही आवृत्तीनुसारे करू शकता.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"या कार्यक्रमाचा वापर लाभदायी ठरावा या हेतुने त्याचे वितरन केले आहे, पण कुठल्याही हमी " -"विना; व्यापारहेतु अंतर्भुतीत किंवा कुठल्याही हेतुकरीता वापरकरीतायेण्याजोगी हमी विना. " -"अधिक माहितीकरीता GNU General Public License पहा.\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"तुमच्याकडे या कार्यक्रमासह GNU General Public License ची एक प्रत असायला हवी; " -"नसल्यास, Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, " -"Boston, MA 02110-130159 USA कडे लिहून पाठवा." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "संदिप शेडमाके , 2008" - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "शेल स्क्रीप्टमधील संवाद चौकटी प्रदर्शीत करा" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "संवाद प्रकार तुम्ही निश्चित केले पाहिजे. अधिक माहीतीकरीता 'zenity --help' पहा\n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin पासून वाचता आले नाही\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Zenity सूचना" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "कमाल मुल्य किमान मुल्यपेक्षा जास्त आहे.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "मुल्य क्षेत्राच्या अंतर्गत नाही.\n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "संवाद सूचीसाठी स्तंभबध्द शीर्षक निशिचत नाही\n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "फक्त एकच संवाद सूची वापरली पाहिजे.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "नविन नोंदणी जोडा" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "लहान मोठे करण्याचे मुल्य सुस्थित करा" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "सर्व अद्ययावत पूर्ण झाले." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "त्रुटी आढळली." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "तुम्हाला नक्की पुढे जायचे?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "दिनदर्शिका (_a):" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "दिनदर्शिका निवडा" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "त्रुटी" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "माहिती" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "प्रगती" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "प्रश्न" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "सुरू आहे..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "खालील पासून दिनांक निवडा." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "फाइल निवडा" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "सूची मधून घटक निवडा" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "खालील सूचीमधून घटक निवडा." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "पाठ्य दृश्य" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "चेतावणी" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "नवे पाठ्य सुरू करा (_E):" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "संवाद शीर्षक निश्चित करा" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "शिर्षक" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "चौकटीतील चिन्ह निश्चित करा" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "चिन्हमार्ग" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "रूंदी निश्चित करा" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "रूंदी" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "उंची निश्चित करा" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "उंची" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "संवाद कालबाह्य सेकंदमध्ये निश्चित करा" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "कालबाह्य" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "दिनदर्शिका संवाद निश्चित करा" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:428 ../src/option.c:558 -#: ../src/option.c:620 ../src/option.c:704 ../src/option.c:737 -msgid "Set the dialog text" -msgstr "संवाद पाठ्य निश्चित करा" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:429 ../src/option.c:526 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:630 ../src/option.c:639 -#: ../src/option.c:705 ../src/option.c:738 -msgid "TEXT" -msgstr "पाठ्य" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "दिनदर्शिका दिवस निश्चित करा" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "दिवस" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "दिनदर्शिका महिना निश्चित करा" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "महिना" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "दिनदर्शिका वर्ष निश्चित करा" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "वर्ष" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "पुनःप्राप्त दिनांकाकरीता स्वरूप निश्चित करा" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "रचना" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "प्रवेश पाठ्य निश्चित करा" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "प्रवेश पाठ्य निश्चित करा" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "प्रवेश पाठ्य लपवा" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "त्रूटी संवाद दर्शवा" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:647 -#: ../src/option.c:713 -msgid "Do not enable text wrapping" -msgstr "पाठ्याचे आवरण कार्यरत करू नये" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "माहितीघटकक संवाद दर्शवा" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "फाइल निवड संवाद दर्शवा" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "फाइल नाव निश्चित करा" - -#: ../src/option.c:351 ../src/option.c:672 -msgid "FILENAME" -msgstr "फाइल नाव" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "एकापेक्षा जास्त फाइल निवडण्याकरीता परवानगी द्या" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "फक्त-संचयीका निवड सक्रीय करा" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "संचयन पध्दती सक्रीय करा" - -#: ../src/option.c:386 ../src/option.c:464 -msgid "Set output separator character" -msgstr "प्रदान विभाजक अक्षर निश्चित करा" - -#: ../src/option.c:387 ../src/option.c:465 -msgid "SEPARATOR" -msgstr "विभाजक" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "फाइलनाव आधिपासूनच अस्तीत्वात असल्यास फाइल निवड निश्चित करा" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "फाइलनाव फिल्टर निश्चित करतो" - -#: ../src/option.c:405 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "रचना1 रचना2 ..." - -#: ../src/option.c:419 -msgid "Display list dialog" -msgstr "संवाद सूची दर्शवा" - -#: ../src/option.c:437 -msgid "Set the column header" -msgstr "स्तंभ-शीर्षिका निश्चित करा" - -#: ../src/option.c:438 -msgid "COLUMN" -msgstr "स्तंभ" - -#: ../src/option.c:446 -msgid "Use check boxes for first column" -msgstr "पहिल्या स्तंभासाठी तपास चौकटीचा वापर करा" - -#: ../src/option.c:455 -msgid "Use radio buttons for first column" -msgstr "पहिल्या स्तंभासाठी रेडिओ बटणाचा वापर करा" - -#: ../src/option.c:473 -msgid "Allow multiple rows to be selected" -msgstr "निवडीसाठी अनेक ओळीरीत सुरू करा" - -#: ../src/option.c:482 ../src/option.c:680 -msgid "Allow changes to text" -msgstr "पाठ्य बदलासाठी सहमती द्या" - -#: ../src/option.c:491 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "विशिष्ट स्तंभ मुद्रीत करा (साधारम असे 1. 'सर्व' ही असा सर्व स्तंभ मुद्रणासाठी वापरता येईल" - -#. Column index number to print out on a list dialog -#: ../src/option.c:493 ../src/option.c:502 -msgid "NUMBER" -msgstr "संख्या" - -#: ../src/option.c:501 -msgid "Hide a specific column" -msgstr "एक विसिष्ट स्तंभ लपवा" - -#: ../src/option.c:516 -msgid "Display notification" -msgstr "सूचना दर्शवा" - -#: ../src/option.c:525 -msgid "Set the notification text" -msgstr "सूचना पाठ्य निश्चित करा" - -#: ../src/option.c:534 -msgid "Listen for commands on stdin" -msgstr "stdin वरील आदेशांची बांधणी करा" - -#: ../src/option.c:549 -msgid "Display progress indication dialog" -msgstr "प्रगती सूचक संवाद दर्शवा" - -#: ../src/option.c:567 -msgid "Set initial percentage" -msgstr "आरंभीय टक्केवारी निश्चित करा" - -#: ../src/option.c:568 -msgid "PERCENTAGE" -msgstr "टक्केवारी" - -#: ../src/option.c:576 -msgid "Pulsate progress bar" -msgstr "विकास पट्टी सक्रीय करा" - -#: ../src/option.c:586 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% पोहचताच संवाद काढून टाका" - -#: ../src/option.c:596 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "रद्द करा बटन दाबल्यास मुख्य कार्य बंद करा" - -#: ../src/option.c:611 -msgid "Display question dialog" -msgstr "प्रश्नार्थक संवाद दर्शवा" - -#: ../src/option.c:629 -msgid "Sets the label of the Ok button" -msgstr "ठिक आहे बटणाचे लेबल निश्चित करतो" - -#: ../src/option.c:638 -msgid "Sets the label of the Cancel button" -msgstr "रद्द करा बटणाचे लेबल निश्चित करतो" - -#: ../src/option.c:662 -msgid "Display text information dialog" -msgstr "पाठ्य माहिती संवाद दर्शवा" - -#: ../src/option.c:671 -msgid "Open file" -msgstr "फाइल उघडा" - -#: ../src/option.c:695 -msgid "Display warning dialog" -msgstr "सावधानता संवाद दर्शवा" - -#: ../src/option.c:728 -msgid "Display scale dialog" -msgstr "लहान मोठे करण्याचे संवाद दर्शवा" - -#: ../src/option.c:746 -msgid "Set initial value" -msgstr "प्रारंभीक मुल्य निश्चित करा" - -#: ../src/option.c:747 ../src/option.c:756 ../src/option.c:765 -#: ../src/option.c:774 -msgid "VALUE" -msgstr "मुल्य" - -#: ../src/option.c:755 -msgid "Set minimum value" -msgstr "किमान मुल्य निश्चित करा" - -#: ../src/option.c:764 -msgid "Set maximum value" -msgstr "कमाल मुल्य निश्चित करा" - -#: ../src/option.c:773 -msgid "Set step size" -msgstr "स्टेप आकार निश्चित करा" - -#: ../src/option.c:782 -msgid "Print partial values" -msgstr "अपुऱ्या मुल्यांची छपाई करा" - -#: ../src/option.c:791 -msgid "Hide value" -msgstr "मुल्य लपवा" - -#: ../src/option.c:806 -msgid "About zenity" -msgstr "झेनिटी विषयी" - -#: ../src/option.c:815 -msgid "Print version" -msgstr "छपाई आवृत्ती" - -#: ../src/option.c:1470 -msgid "General options" -msgstr "सर्वसाधारण पर्याय" - -#: ../src/option.c:1471 -msgid "Show general options" -msgstr "सर्वसाधारण पर्याय दर्शवा" - -#: ../src/option.c:1481 -msgid "Calendar options" -msgstr "दिनदर्शिका पर्याय" - -#: ../src/option.c:1482 -msgid "Show calendar options" -msgstr "दिनदर्शिका पर्याय दर्शवा" - -#: ../src/option.c:1492 -msgid "Text entry options" -msgstr "पाठ्य प्रवेशाचा पर्याय" - -#: ../src/option.c:1493 -msgid "Show text entry options" -msgstr "पाठ्य प्रवेशाचा पर्याय दर्शवा" - -#: ../src/option.c:1503 -msgid "Error options" -msgstr "त्रूटी पर्याय" - -#: ../src/option.c:1504 -msgid "Show error options" -msgstr "त्रूटी पर्याय दर्शवा" - -#: ../src/option.c:1514 -msgid "Info options" -msgstr "पर्याय माहिती" - -#: ../src/option.c:1515 -msgid "Show info options" -msgstr "र्याय माहिती दर्शवा" - -#: ../src/option.c:1525 -msgid "File selection options" -msgstr "फाइल निवड पर्याय" - -#: ../src/option.c:1526 -msgid "Show file selection options" -msgstr "फाइल निवड पर्याय दर्शवा" - -#: ../src/option.c:1536 -msgid "List options" -msgstr "पर्याय सूची" - -#: ../src/option.c:1537 -msgid "Show list options" -msgstr "पर्याय सूची दर्शवा" - -#: ../src/option.c:1547 -msgid "Notification icon options" -msgstr "सूचना चिन्ह पर्याय" - -#: ../src/option.c:1548 -msgid "Show notification icon options" -msgstr "सूचना चिन्ह पर्याय दर्शवा" - -#: ../src/option.c:1558 -msgid "Progress options" -msgstr "प्रगती पर्याय" - -#: ../src/option.c:1559 -msgid "Show progress options" -msgstr "प्रगती पर्याय दर्शवा" - -#: ../src/option.c:1569 -msgid "Question options" -msgstr "प्रश्न पर्याय" - -#: ../src/option.c:1570 -msgid "Show question options" -msgstr "प्रश्न पर्याय दर्शवा" - -#: ../src/option.c:1580 -msgid "Warning options" -msgstr "सावधानता पर्याय" - -#: ../src/option.c:1581 -msgid "Show warning options" -msgstr "सावधाता पर्याय दर्शवा" - -#: ../src/option.c:1591 -msgid "Scale options" -msgstr "लहान मोठे करण्याकरीता पर्याय" - -#: ../src/option.c:1592 -msgid "Show scale options" -msgstr "लहान मोठे करण्याकरीता पर्याय दर्शवा" - -#: ../src/option.c:1602 -msgid "Text information options" -msgstr "पाठ्य माहिती पर्याय" - -#: ../src/option.c:1603 -msgid "Show text information options" -msgstr "पाठ्य माहिती पर्याय दर्शवा" - -#: ../src/option.c:1613 -msgid "Miscellaneous options" -msgstr "विविध पर्याय" - -#: ../src/option.c:1614 -msgid "Show miscellaneous options" -msgstr "विविध पर्याय दर्शवा" - -#: ../src/option.c:1639 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "हा पर्याय उपलब्द नाही. संभाव्य वापरणीकरीता कृपया --help पहा.\n" - -#: ../src/option.c:1643 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "या संवादाकरीता --%s समर्थीत नाही\n" - -#: ../src/option.c:1647 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "दोन किंवा अधिक संवाद पर्याय निश्चित केले आहे\n" - diff --git a/po/ms.po b/po/ms.po deleted file mode 100644 index 8e16ad9..0000000 --- a/po/ms.po +++ /dev/null @@ -1,918 +0,0 @@ -# Duit PPRT siapa yang kebas???? -# Copyright (C) 2003 Free Software Foundation, Inc. -# Hasbullah Bin Pit (sebol) , 2003-2004. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2019-09-23 15:28+0000\n" -"PO-Revision-Date: 2020-01-03 20:11+0800\n" -"Last-Translator: abuyop \n" -"Language-Team: Projek Gabai \n" -"Language: ms\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Program ini adalah perisian bebas; anda boleh mengedarkannya semula dan/" -"ataumengubah suai di bawah syarat-syarat GNU General Public License seperti " -"yang diterbitkan oleh Free Software Foundation; sama ada Lesen versi 2 atau " -"(atas pilihan anda) mana-mana versi selepas ini.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Program ini diedarkan dengan harapan ia akan menjadi berguna, tetapi TANPA " -"SEBARANG JAMINAN; tanpa jaminan yang tersirat KEBOLEHDAGANGAN atau " -"KESESUAIAN UNTUK TUJUAN TERTENTU. Lihat Lesen Awam Am GNU untuk maklumat " -"lanjut.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Anda seharusnya menerima salinan Lesen Awam Am GNU bersama-sama program ini; " -"jika tiada, laporkan ke Free Software Foundation, Inc., 51 Franklin Street, " -"Fifth Floor, Boston, MA 02110-1301, USA." - -# Translators: This is a special message that shouldn't be translated -# literally. It is used in the about box to give credits to -# the translators. -# Thus, you should translate it to your name and email address. -# You can also include other translators who have contributed to -# this translation; in that case, please write them on separate -# lines seperated by newlines (\n). -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"abuyop\n" -"Hasbullah Bin Pit " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Papar kotak dialog daripada skrip shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Batal" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Anda mesti nyatakan satu jenis dialog. Sila rujuk 'zenity --help' untuk " -"perincian\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Tidak" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ya" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Tidak dapat menghurai mesej\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Nilai tidak sah bagi satu pembayang jenis boolean.\n" -"Nilai disokong adalah 'benar' atau 'palsu'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Pembayang tidak disokong. Melangkau.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nama pembayang tidak diketahui. Melangkau.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Tidak dapat menghurai perintah dari stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Pemberitahuan Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Tetapkan tajuk dialog" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TAJUK" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Tetapkan ikon tetingkap" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "LALUANIKON" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Tetapkan lebar" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LEBAR" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Tetapkan Tinggi" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "TINGGI" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Tetapkan had masa tamat dialog dalam saat" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "HADMASATAMAT" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Tetapkan label bagi butang OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKS" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Tetapkan label bagi butang Batal" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Tambah satu butang ekstra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Tetapkan pembayang modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Tetapkan tetingkap induk untuk dilampirkan" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "TETINGKAP" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Papar dialog kalendar" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Tetapkan teks dialog" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Tetapkan hari kalendar" - -#: src/option.c:252 -msgid "DAY" -msgstr "HARI" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Tetapkan bulan kalendar" - -#: src/option.c:259 -msgid "MONTH" -msgstr "BULAN" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Tetapkan tahun kalendar" - -#: src/option.c:266 -msgid "YEAR" -msgstr "TAHUN" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Tetapkan format tarikh dikembalikan" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "POLA" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Papar dialog masukan teks" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Tetapkan teks masukan" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Sembunyi teks masukan" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Papar dialog ralat" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Tetapkan ikon dialog" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NAMA-IKON" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Jangan benarkan pelilitan teks" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Jangan benarkan penanda Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Benarkan elipsize dalam teks dialog. Tindakan ini membaiki saiz tetingkap " -"tinggi dengan teks panjang" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Papar dialog maklumat" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Papar dialog pemilihan fail" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Tetapkan nama fail" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NAMAFAIL" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Benarkan fail berbilang yang terpilih" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktifkan pemilihan direktori-sahaja" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktifkan mod simpan" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Tetapkan aksara pemisah output" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "PEMISAH" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Sahkan pemilihan fail jika nama fail sudah wujud" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Tetapkan satu penapis nama fail" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAMA | POLA1 POLA2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Papar dialog senarai" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Tetapkan pengepala lajur" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "LAJUR" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Guna kotak semak untuk lajur pertama" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Guna butang radio untuk lajur pertama" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Guna satu imej untuk lajur pertama" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Benarkan baris berbilang yang terpilih" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Benarkan perubahan pada teks" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Cetak atau lajur khusus (Lalai ialah 1. 'ALL' boleh digunakan untuk mencetak " -"semua lajur)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "BILANGAN" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Sembunyikan satu lajur khusus" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Sembunyi pengepala lajur" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Ubah penggelintaran fungsi gelintar lalai senarai untuk teks ditengah-" -"tengah, bukannya pada permulaan" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Papar pemberitahuan" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Tetapkan teks pemberitahuan" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Dengar perintah pada stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Tetapkan pembayang pemberitahuan" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Papar dialog penunjuk kemajuan" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Tetapkan peratus awal" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERATUS" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Denyut palang kemajuan" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Singkir dialog bila 100% telah tercapai" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Bunuh proses induk jika butang Batal ditekan" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Sembunyi Butang Batal" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Anggar ketika kemajuan akan mencapai 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Papar dialog soalan" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Bari fokus butang Batal secara lalai" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Paksa butang OK dan Batal" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Papar dialog maklumat teks" - -#: src/option.c:715 -msgid "Open file" -msgstr "Buka fail" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Tetapkan fon teks" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Benarkan satu kotak semak Saya baca dan setuju" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Benarkan sokongan HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Jangan benarkan interaksi pengguna dengan WebView. Hanya berfungsi jika anda " -"guna pilihan --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Tetapkan satu URL selain dari satu fail. Hanya berfungsi jika anda guna " -"pilihan --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "Auto tatal teks dipenghujung. Hanya jika teks ditangkap dari stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Papar dialog amaran" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Papar dialog skala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Tetapkan nilai awal" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "NILAI" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Tetapkan nilai minimum" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Tetapkan nilai maksimum" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Tetapkan saiz langkah" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Cetak nilai separa" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Sembunyi nilai" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Papar dialog borang" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Tambah satu masukan baharu dalam dialog borang" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nama medan" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Tambah satu Masukan Kata Laluan baharu dalam dialog borang" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Tambah satu Kalendar baharu dalam dialog borang" - -# libgnomeui/gnome-app-helper.c:184 -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nama medan kalendar" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Tambah satu Senarai baharu dalam dialog borang" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Senarai nama medan dan pengepalan" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Senarai nilai untuk Senarai" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Senarai nilai diasing dengan tanda |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Senarai nilai untuk lajur" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Tambah satu kotak kombo baharu dalam dialog borang" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nama medan kotak kombo" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Senarai nilai untuk kotak kombo" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Tunjuk pengepala lajur" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Papar dialog kata laluan" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Papar pilihan nama pengguna" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Papar dialog pemilihan warna" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Tetapkan warna" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Tunjuk palet" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Perihal zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Cetak versi" - -#: src/option.c:1913 -msgid "General options" -msgstr "Pilihan am" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Tunjuk pilihan am" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Pilihan kalendar" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Tunjuk pilihan kalendar" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Pilihan masukan teks" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Tunjuk pilihan masukan teks" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Pilihan ralat" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Tunjuk pilihan ralat" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Pilihan maklumat" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Tunjuk pilihan maklumat" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Pilihan Pemilihan fail" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Tunjuk Pemilihan fail" - -#: src/option.c:1985 -msgid "List options" -msgstr "Pilihan senarai" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Tunjuk pilihan senarai" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Pilihan ikon pemberitahuan" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Tunjuk pilihan ikon pemberitahuan" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Pilihan kemajuan" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Tunjuk pilihan kemajuan" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Pilihan soalan" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Tunjuk pilihan soalan" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Pilihan amaran" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Tunjuk pilihan amaran" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Pilihan skala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Tunjuk pilihan skala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Pilihan maklumat teks" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Tunjuk pilihan maklumat teks" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Pilihan Pemilihan warna" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Tunjuk pilihan pemilihan warna" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Pilihan dialog kata laluan" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Tunjuk pilihan dialog kata laluan" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Pilihan dialog borang" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Tunjuk pilihan dialog borang" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Pilihan pelbagai" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Tunjuk pilihan pelbagai" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Pilihan ini tidak tersedia. Sila rujuk --help untuk semua penggunaan yang " -"ada.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s tidak disokong untuk dialog ini\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Dua atau lebih pilihan dialog dinyatakan\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Taip kata laluan anda" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Taip nama pengguna dan kata laluan anda" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nama pengguna:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Kata laluan:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Masa berbaki: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Nilai maksimum mesti lebih besar dari nilai minimum.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Nilai di luar julat.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Tiada tajuk lajur dinyatakan untuk dialog senarai.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Anda sepatutnya hanya guna satu jenis dialog Senarai.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Laras nilai skala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Batal" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Pandangan Teks" - -# libgnomeui/gnome-app-helper.c:184 -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Pemilihan kalendar" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Pilih satu tarikh di bawah." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Tambah satu masukan baharu" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Masukkan teks baharu:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Ralat" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Satu ralat telah berlaku." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialog borang" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Maklumat" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Semua kemas kini telah selesai." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Kemajuan" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Berjalan..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Soalan" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Anda pasti mahu teruskan?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Pilih item dari senarai" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Pilih item dari senarai di bawah." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Amaran" - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "(C) 2002 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "Kredit" - -#~ msgid "Written by" -#~ msgstr "Ditulis oleh" - -#~ msgid "Translated by" -#~ msgstr "Terjemahan oleh" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "Perihal Zenity" - -#~ msgid "Select a file" -#~ msgstr "Pilih fail" - -#~ msgid "_Credits" -#~ msgstr "_Kredit" diff --git a/po/nb.po b/po/nb.po deleted file mode 100644 index e44e20e..0000000 --- a/po/nb.po +++ /dev/null @@ -1,868 +0,0 @@ -# Norwegian bokmål translation of zenity. -# Copyright (C) 2004 Free Software Foundation, Inc. -# Kjartan Maraas , 2003-2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity 3.23.x\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-01-18 22:27+0000\n" -"PO-Revision-Date: 2017-02-18 11:57+0100\n" -"Last-Translator: Kjartan Maraas \n" -"Language-Team: Norwegian bokmål \n" -"Language: nb\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Dette programmet er fri programvare. Du kan redistribuere og/eller endre " -"programmet under betingelsene gitt i GNU Lesser General Public License som " -"utgitt av Free Software Foundation; enten versjon 2 av lisensen, eller (hvis " -"du ønsker det) enhver senere versjon.\n" - -#: src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Dette programmet distribueres i håp om at programmet er nyttig, men uten " -"NOEN GARANTI, ikke engang implisitt garanti om at det er SALGBART eller " -"PASSER ET BESTEMT FORMÅL. Se GNU Lesser General Public License for " -"detaljer.\n" - -#: src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Du skal ha mottatt en kopi av GNU Lesser General Public License sammen med " -"dette programmet. Hvis dette ikke er tilfelle, kan du skrive til Free " -"Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301 USA." - -#: src/about.c:263 -msgid "translator-credits" -msgstr "Kjartan Maraas " - -#: src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "Vis dialogbokser fra skallskript" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Du må oppgi en type dialog. Se «zenity --help» for detaljer\n" - -#: src/notification.c:51 -msgid "Could not parse message\n" -msgstr "kunne ikke lese melding\n" - -#: src/notification.c:140 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Ugyldig verdi for boolsk type hint.\n" -"Støttede verdier er «true» eller «false».\n" - -#. (iibiiay) -#: src/notification.c:156 -msgid "Unsupported hint. Skipping.\n" -msgstr "Ikke støttet hint. Hopper over.\n" - -#. unknown hints -#: src/notification.c:173 -msgid "Unknown hint name. Skipping.\n" -msgstr "Ukjent navn på hint. Hopper over.\n" - -#: src/notification.c:228 -msgid "Could not parse command from stdin\n" -msgstr "kunne ikke lese kommando fra stdin\n" - -#: src/notification.c:326 -msgid "Zenity notification" -msgstr "Zenity-melding" - -#: src/password.c:55 -msgid "_Cancel" -msgstr "A_vbryt" - -#: src/password.c:58 -msgid "_OK" -msgstr "_OK" - -#. Checks if username has been passed as a parameter -#: src/password.c:73 -msgid "Type your password" -msgstr "Skriv ditt passord" - -#: src/password.c:76 -msgid "Type your username and password" -msgstr "Skriv ditt brukernavn og passord" - -#: src/password.c:113 -msgid "Username:" -msgstr "Brukernavn:" - -#: src/password.c:127 -msgid "Password:" -msgstr "Passord:" - -#: src/scale.c:57 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Høyeste verdi må være større enn laveste verdi.\n" - -#: src/scale.c:64 -msgid "Value out of range.\n" -msgstr "Verdi utenfor gyldig område.\n" - -#: src/tree.c:376 -msgid "No column titles specified for List dialog.\n" -msgstr "Ingen kolonnetittel oppgitt for listedialogen.\n" - -#: src/tree.c:382 -msgid "You should use only one List dialog type.\n" -msgstr "Du bør kun bruke en type listedialog.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Juster verdi for skalering" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Avbryt" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstvisning" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalenderutvalg" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Velg en dato under." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Legg til en ny oppføring" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Oppgi ny t_ekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Feil" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "En feil har oppstått:" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Skjemadialog" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informasjon" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Alle oppdateringer er fullført." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Fremgang" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Kjører …" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Spørsmål" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Er du sikker på at du vil fortsette?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Velg oppføringer fra listen" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Velg oppføringer fra listen under." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Advarsel" - -#: src/option.c:169 -msgid "Set the dialog title" -msgstr "Sett tittel for dialog" - -#: src/option.c:170 -msgid "TITLE" -msgstr "TITTEL" - -#: src/option.c:178 -msgid "Set the window icon" -msgstr "Sett ikon for vindu" - -#: src/option.c:179 -msgid "ICONPATH" -msgstr "IKONSTI" - -#: src/option.c:187 -msgid "Set the width" -msgstr "Sett bredden" - -#: src/option.c:188 -msgid "WIDTH" -msgstr "BREDDE" - -#: src/option.c:196 -msgid "Set the height" -msgstr "Sett høyden" - -#: src/option.c:197 -msgid "HEIGHT" -msgstr "HØYDE" - -#: src/option.c:205 -msgid "Set dialog timeout in seconds" -msgstr "Sett tidsavbrudd for dialog i sekunder" - -#. Timeout for closing the dialog -#: src/option.c:207 -msgid "TIMEOUT" -msgstr "TIDSAVBRUDD" - -#: src/option.c:215 -msgid "Set the label of the OK button" -msgstr "Setter etiketten for OK-knappen" - -#: src/option.c:216 src/option.c:225 src/option.c:234 src/option.c:276 -#: src/option.c:336 src/option.c:345 src/option.c:379 src/option.c:437 -#: src/option.c:574 src/option.c:699 src/option.c:717 src/option.c:743 -#: src/option.c:823 src/option.c:917 src/option.c:926 src/option.c:988 -#: src/option.c:1046 src/option.c:1215 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:224 -msgid "Set the label of the Cancel button" -msgstr "Sett etiketten for Avbryt-knappen" - -#: src/option.c:233 -msgid "Add an extra button" -msgstr "Legg til en ekstra knapp" - -#: src/option.c:242 -msgid "Set the modal hint" -msgstr "Sett modalt hint" - -#: src/option.c:251 -msgid "Set the parent window to attach to" -msgstr "Sett opphavsvindu å koble til" - -#: src/option.c:252 -msgid "WINDOW" -msgstr "VINDU" - -#: src/option.c:266 -msgid "Display calendar dialog" -msgstr "Vis kalenderdialog" - -#: src/option.c:275 src/option.c:335 src/option.c:378 src/option.c:436 -#: src/option.c:573 src/option.c:742 src/option.c:822 src/option.c:987 -#: src/option.c:1045 src/option.c:1214 -msgid "Set the dialog text" -msgstr "Sett teksten i dialogen" - -#: src/option.c:284 -msgid "Set the calendar day" -msgstr "Sett dag i kalenderen" - -#: src/option.c:285 -msgid "DAY" -msgstr "DAG" - -#: src/option.c:293 -msgid "Set the calendar month" -msgstr "Sett måned i kalenderen" - -#: src/option.c:294 -msgid "MONTH" -msgstr "MÅNED" - -#: src/option.c:302 -msgid "Set the calendar year" -msgstr "Sett år i kalenderen" - -#: src/option.c:303 -msgid "YEAR" -msgstr "ÅR" - -#: src/option.c:311 src/option.c:1232 -msgid "Set the format for the returned date" -msgstr "Sett format for returnert dato" - -#: src/option.c:312 src/option.c:1233 -msgid "PATTERN" -msgstr "MØNSTER" - -#: src/option.c:326 -msgid "Display text entry dialog" -msgstr "Vis tekstoppføringsdialog" - -#: src/option.c:344 -msgid "Set the entry text" -msgstr "Sett tekst i oppføringen" - -#: src/option.c:353 -msgid "Hide the entry text" -msgstr "Skjul tekst i oppføringen" - -#: src/option.c:369 -msgid "Display error dialog" -msgstr "Vis feildialog" - -#: src/option.c:387 src/option.c:445 src/option.c:831 src/option.c:996 -msgid "Set the dialog icon" -msgstr "Sett ikon for dialog" - -#: src/option.c:388 src/option.c:446 src/option.c:832 src/option.c:997 -msgid "ICON-NAME" -msgstr "IKONNAVN" - -#: src/option.c:396 src/option.c:454 src/option.c:840 src/option.c:1005 -msgid "Do not enable text wrapping" -msgstr "Ikke aktiver tekstbryting" - -#: src/option.c:405 src/option.c:463 src/option.c:849 src/option.c:1014 -msgid "Do not enable Pango markup" -msgstr "Ikke slå på tekstmerking med pango" - -#: src/option.c:413 src/option.c:471 src/option.c:866 src/option.c:1022 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Slå på ellipser i dialogteksten. Dette fikser høy vindustørrelse med lange " -"tekster" - -#: src/option.c:427 -msgid "Display info dialog" -msgstr "Vis informasjonsdialog" - -#: src/option.c:485 -msgid "Display file selection dialog" -msgstr "Vis dialog for filvalg" - -#: src/option.c:494 -msgid "Set the filename" -msgstr "Sett filnavnet" - -#: src/option.c:495 src/option.c:899 -msgid "FILENAME" -msgstr "FILNAVN" - -#: src/option.c:503 -msgid "Allow multiple files to be selected" -msgstr "Tillat valg av flere filer" - -#: src/option.c:512 -msgid "Activate directory-only selection" -msgstr "Aktiver utvalg kun på katalog" - -#: src/option.c:521 -msgid "Activate save mode" -msgstr "Aktiver lagre-modus" - -#: src/option.c:530 src/option.c:618 src/option.c:1223 -msgid "Set output separator character" -msgstr "Sett skilletegn for utdata" - -#: src/option.c:531 src/option.c:619 src/option.c:1224 -msgid "SEPARATOR" -msgstr "SKILLETEGN" - -#: src/option.c:539 -msgid "Confirm file selection if filename already exists" -msgstr "Bekreft filutvalget hvis filnavnet allerede eksisterer" - -#: src/option.c:548 -msgid "Set a filename filter" -msgstr "Sett et filter for filnavn" - -#. Help for file-filter argument (name and patterns for file selection) -#: src/option.c:550 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAVN | MØNSTER1 MØNSTER2 …" - -#: src/option.c:564 -msgid "Display list dialog" -msgstr "Vis listedialog" - -#: src/option.c:582 -msgid "Set the column header" -msgstr "Sett kolonnetopptekst" - -#: src/option.c:583 -msgid "COLUMN" -msgstr "KOLONNE" - -#: src/option.c:591 -msgid "Use check boxes for the first column" -msgstr "Bruk avkrysningsbokser for første kolonne" - -#: src/option.c:600 -msgid "Use radio buttons for the first column" -msgstr "Bruk radioknapper for første kolonne" - -#: src/option.c:609 -msgid "Use an image for the first column" -msgstr "Bruk et bilde for første kolonne" - -#: src/option.c:627 -msgid "Allow multiple rows to be selected" -msgstr "Tillat valg av flere rader" - -#: src/option.c:636 src/option.c:907 -msgid "Allow changes to text" -msgstr "Tillat endringer i tekst" - -#: src/option.c:645 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Skriv ut en bestemt kolonne (Forvalg er 1. «ALL» kan brukes for å skrive ut " -"alle kolonner)" - -#. Column index number to print out on a list dialog -#: src/option.c:647 src/option.c:656 -msgid "NUMBER" -msgstr "TALL" - -#: src/option.c:655 -msgid "Hide a specific column" -msgstr "Skjul en bestemt kolonne" - -#: src/option.c:664 -msgid "Hide the column headers" -msgstr "Skjul kolonnetopptekst" - -#: src/option.c:673 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Endre forvalgt søkefunksjon for søk i tekst til å søke i midten, ikke på " -"begynnelsen" - -#: src/option.c:689 -msgid "Display notification" -msgstr "Vis melding" - -#: src/option.c:698 -msgid "Set the notification text" -msgstr "Sett meldingsteksten" - -#: src/option.c:707 -msgid "Listen for commands on stdin" -msgstr "Lytt etter kommandoer på stdin" - -#: src/option.c:716 -msgid "Set the notification hints" -msgstr "Sett hint for varsling" - -#: src/option.c:733 -msgid "Display progress indication dialog" -msgstr "Vis dialog for indikering av fremgang" - -#: src/option.c:751 -msgid "Set initial percentage" -msgstr "Sett startprosent" - -#: src/option.c:752 -msgid "PERCENTAGE" -msgstr "PROSENT" - -#: src/option.c:760 -msgid "Pulsate progress bar" -msgstr "Pulserende fremgangslinje" - -#: src/option.c:770 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Lukk dialogen når 100% er nådd" - -#: src/option.c:779 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Terminer opphavsprosess hvis Avbryt-knappen trykkes" - -#: src/option.c:788 -msgid "Hide Cancel button" -msgstr "Skjul Avbryt-knapp" - -#: src/option.c:798 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimer når fremdriften når 100%" - -#: src/option.c:813 -msgid "Display question dialog" -msgstr "Vis spørsmålsdialog" - -#: src/option.c:857 -msgid "Give Cancel button focus by default" -msgstr "Gi Avbryt-knappen fokus som standard" - -#: src/option.c:874 -msgid "Suppress OK and Cancel buttons" -msgstr "Skjul OK- og avbryt-knappene" - -#: src/option.c:889 -msgid "Display text information dialog" -msgstr "Vis dialog med tekstinformasjon" - -#: src/option.c:898 -msgid "Open file" -msgstr "Åpne fil" - -#: src/option.c:916 -msgid "Set the text font" -msgstr "Sett skrift for tekst" - -#: src/option.c:925 -msgid "Enable an I read and agree checkbox" -msgstr "Slå på en avkryssingsboks for «Lest og godtatt»" - -#: src/option.c:935 -msgid "Enable HTML support" -msgstr "Slå på støtte for HTML" - -#: src/option.c:944 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ikke slå på brukerinteraksjon med WebView. Virker kun hvis du bruker flagget " -"--html" - -#: src/option.c:953 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Sett en URL i stedet for en fil. Virker kun hvis du bruker flagget --html" - -#: src/option.c:954 -msgid "URL" -msgstr "URL" - -#: src/option.c:963 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Rull teksten til slutten automatisk. Kun når tekst fanges fra standard " -"inndata" - -#: src/option.c:978 -msgid "Display warning dialog" -msgstr "Vis advarselsdialog" - -#: src/option.c:1036 -msgid "Display scale dialog" -msgstr "Vis skaleringsdialog" - -#: src/option.c:1054 -msgid "Set initial value" -msgstr "Sett startverdi" - -#: src/option.c:1055 src/option.c:1064 src/option.c:1073 src/option.c:1082 -#: src/option.c:1281 -msgid "VALUE" -msgstr "VERDI" - -#: src/option.c:1063 -msgid "Set minimum value" -msgstr "Sett minste verdi" - -#: src/option.c:1072 -msgid "Set maximum value" -msgstr "Set høyeste verdi" - -#: src/option.c:1081 -msgid "Set step size" -msgstr "Sett størrelse på steg" - -#: src/option.c:1090 -msgid "Print partial values" -msgstr "Skriv ut delverdier" - -#: src/option.c:1099 -msgid "Hide value" -msgstr "Skjul verdi" - -#: src/option.c:1114 -msgid "Display forms dialog" -msgstr "Vis skjemadialog" - -#: src/option.c:1123 -msgid "Add a new Entry in forms dialog" -msgstr "Legg til en ny oppføring i skjemadialog" - -#: src/option.c:1124 src/option.c:1133 -msgid "Field name" -msgstr "Feltnavn" - -#: src/option.c:1132 -msgid "Add a new Password Entry in forms dialog" -msgstr "Legg til en ny passordoppføring i skjemadialog" - -#: src/option.c:1141 -msgid "Add a new Calendar in forms dialog" -msgstr "Legg til en ny kalender i skjemadialog" - -#: src/option.c:1142 -msgid "Calendar field name" -msgstr "Feltnavn for kalender" - -#: src/option.c:1150 -msgid "Add a new List in forms dialog" -msgstr "Legg til en ny liste i skjemadialog" - -#: src/option.c:1151 -msgid "List field and header name" -msgstr "Felt i liste og navn på topptekst" - -#: src/option.c:1159 -msgid "List of values for List" -msgstr "Liste med verdier for en liste" - -#: src/option.c:1160 src/option.c:1169 src/option.c:1187 -msgid "List of values separated by |" -msgstr "Liste med verdier adskilt med |" - -#: src/option.c:1168 -msgid "List of values for columns" -msgstr "Liste med verdier for kolonner" - -#: src/option.c:1177 -msgid "Add a new combo box in forms dialog" -msgstr "Legg til en ny komboboks i skjemadialog" - -#: src/option.c:1178 -msgid "Combo box field name" -msgstr "Feltnavn for komboboks" - -#: src/option.c:1186 -msgid "List of values for combo box" -msgstr "Liste med verdier for komboboks" - -#: src/option.c:1205 -msgid "Show the columns header" -msgstr "Vis kolonnetopptekst" - -#: src/option.c:1247 -msgid "Display password dialog" -msgstr "Vis passorddialog" - -#: src/option.c:1256 -msgid "Display the username option" -msgstr "Vis brukernavnalternativet" - -#: src/option.c:1271 -msgid "Display color selection dialog" -msgstr "Vis dialog for fargevalg" - -#: src/option.c:1280 -msgid "Set the color" -msgstr "Sett farge" - -#: src/option.c:1289 -msgid "Show the palette" -msgstr "Vis palett" - -#: src/option.c:1304 -msgid "About zenity" -msgstr "Om Zenity" - -#: src/option.c:1313 -msgid "Print version" -msgstr "Skriv ut versjon" - -#: src/option.c:2261 -msgid "General options" -msgstr "Generelle alternativer" - -#: src/option.c:2262 -msgid "Show general options" -msgstr "Vis generelle alternativer" - -#: src/option.c:2272 -msgid "Calendar options" -msgstr "Alternativer for kalender" - -#: src/option.c:2273 -msgid "Show calendar options" -msgstr "Vis alternativer for kalender" - -#: src/option.c:2283 -msgid "Text entry options" -msgstr "Alternativer for tekstoppføring" - -#: src/option.c:2284 -msgid "Show text entry options" -msgstr "Vis alternativer for tekstoppføring" - -#: src/option.c:2294 -msgid "Error options" -msgstr "Alternativer for feil" - -#: src/option.c:2295 -msgid "Show error options" -msgstr "Vis alternativer for feil" - -#: src/option.c:2305 -msgid "Info options" -msgstr "Alternativer for informasjon" - -#: src/option.c:2306 -msgid "Show info options" -msgstr "Vis alternativer for infosider" - -#: src/option.c:2316 -msgid "File selection options" -msgstr "Alternativer for filvalg" - -#: src/option.c:2317 -msgid "Show file selection options" -msgstr "Vis alternativer for filvalg" - -#: src/option.c:2327 -msgid "List options" -msgstr "Alternativer for liste" - -#: src/option.c:2328 -msgid "Show list options" -msgstr "Vis alternativer for liste" - -#: src/option.c:2339 -msgid "Notification icon options" -msgstr "Alternativer for varselikon" - -#: src/option.c:2340 -msgid "Show notification icon options" -msgstr "Vis alternativer for varselikon" - -#: src/option.c:2351 -msgid "Progress options" -msgstr "Alternativer for fremgang" - -#: src/option.c:2352 -msgid "Show progress options" -msgstr "Vis alternativer for fremgang" - -#: src/option.c:2362 -msgid "Question options" -msgstr "Alternativer for spørsmål" - -#: src/option.c:2363 -msgid "Show question options" -msgstr "Vis alternativer for spørsmål" - -#: src/option.c:2373 -msgid "Warning options" -msgstr "Alternativer for advarsel" - -#: src/option.c:2374 -msgid "Show warning options" -msgstr "Vis alternativer for advarsel" - -#: src/option.c:2384 -msgid "Scale options" -msgstr "Alternativer for skalering" - -#: src/option.c:2385 -msgid "Show scale options" -msgstr "Vis alternativer for skalering" - -#: src/option.c:2395 -msgid "Text information options" -msgstr "Alternativer for tekstinformasjon" - -#: src/option.c:2396 -msgid "Show text information options" -msgstr "Vis alternativer for tekstinformasjon" - -#: src/option.c:2406 -msgid "Color selection options" -msgstr "Alternativer for fargevalg" - -#: src/option.c:2407 -msgid "Show color selection options" -msgstr "Vis alternativer for fargevalg" - -#: src/option.c:2417 -msgid "Password dialog options" -msgstr "Alternativer for passorddialog" - -#: src/option.c:2418 -msgid "Show password dialog options" -msgstr "Vis alternativer for passorddialog" - -#: src/option.c:2428 -msgid "Forms dialog options" -msgstr "Alternativer for skjemadialog" - -#: src/option.c:2429 -msgid "Show forms dialog options" -msgstr "Vis alternativer for skjemadialog" - -#: src/option.c:2439 -msgid "Miscellaneous options" -msgstr "Forskjellige alternativer" - -#: src/option.c:2440 -msgid "Show miscellaneous options" -msgstr "Vis forskjellige alternativer" - -#: src/option.c:2465 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Dette flagget er ikke tilgjengelig. Vennligst bruk --help for å se mulige " -"flagg.\n" - -#: src/option.c:2469 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s er ikke støttet for denne dialogen\n" - -#: src/option.c:2473 -msgid "Two or more dialog options specified\n" -msgstr "To eller flere dialogflagg oppgitt\n" diff --git a/po/ne.po b/po/ne.po deleted file mode 100644 index c5034f3..0000000 --- a/po/ne.po +++ /dev/null @@ -1,853 +0,0 @@ -# translation of zenity.gnome-2-20.ne.po to Nepali -# Jyotshna Shrestha , 2005. -# Shyam Krishna Bal , 2007. -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-20.ne\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2021-03-11 20:09+0000\n" -"PO-Revision-Date: 2021-04-29 19:25+0545\n" -"Last-Translator: Pawan Chitrakar \n" -"Language-Team: Nepali \n" -"Language: ne\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" -"Plural-Forms: nplurals=2; plural=n !=1;\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as " -"published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" -msgstr "" -"यो कार्यक्रम निःशुल्क सफ्टवेयर हो; तपाईँले यसलाई नि:शुल्क सफ्टवेयर संस्थाद्वारा प्रकाशित GNU सानो साधारण सार्वजनिक इजाजतपत्रको शर्त अन्तर्गत पुन: वितरण र/" -"वा परिमार्जन गर्न सक्नुहुन्छ; या इजाजतपत्रको संस्करण २, वा (तपाईँको विकल्पमा) कुनै पछिल्लो संस्करण ।\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of " -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n" -msgstr "" -"जिनोम टर्मिनल उपयोगी हुनेछ भन्ने आशामा, तर कुनै प्रत्याभूति बिना; व्यापारीकरण वा एउटा निश्चित उद्देश्यका लागि मिलानको सूचीत प्रत्याभूति बिना नै वितरण " -"गरिएको छ । अरू विस्तृत विवरणका लागि जीएनयू साधारण सार्वजनिक इजाजतपत्र हेर्नुहोस् ।\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"तपाईँले यो कार्यक्रमको साथसाथै जीएनयू साधरण सार्वजनिक इजाजतपत्रको प्रतिलिपि प्राप्त गर्नुपर्नेछ; यदि छैन भने, स्वतन्त्र सफ्टवेयर संघ, संस्था., ५१ फ्राङ्कलिन " -"गल्ली, पाँचौ तल्ला, बोस्टोन, एमए ०२११०-१३०१, अमेरिका लाई लेख्नुहोस् ।." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "श्यामकृष्ण बल " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "शेल स्क्रिप्टबाट संवाद बाकस प्रदर्शन गर्नुहोस्" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_हो" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_रद्द गर्नुहोस्" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "तपाईँले संवाद प्रकार निर्दिष्ट गर्नुपर्छ । विस्तृतका लागि 'zenity --help' हेर्नुहोस्\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "होईन" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "हो" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "" -"सन्देश पद वर्णन गर्न सकेन \n" -"\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"बूलियन टाइप गरिएको सङ्केतका लागि अवैध मान ।\n" -"समर्थित मानहरू 'ठीक' वा 'गलत' हुन् ।\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "असमर्थित सङ्केत । फड्काउदैछ ।\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "अज्ञात सङ्केत नाम । फड्काउदैछ ।\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "रङ छनौट विकल्प\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "जेनिटि सूचना" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "संवाद शीर्षक सेट गर्नुहोस्" - -#: src/option.c:165 -msgid "TITLE" -msgstr "शीर्षक" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "सञ्झ्याल प्रतिमा सेट गर्नुहोस्" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: src/option.c:178 -msgid "Set the width" -msgstr "चौडाइ सेट गर्नुहोस्" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "चौडाइ" - -#: src/option.c:185 -msgid "Set the height" -msgstr "उचाइ सेट गर्नुहोस्" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "उचाइ" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "सेकेन्डमा संवाद समाप्ति सेट गर्नुहोस्" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -# src/main.c:528 -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "'ठीक छ' बटनको लेबुल सेट गर्नुहोस्" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 src/option.c:289 src/option.c:296 src/option.c:319 -#: src/option.c:362 src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 src/option.c:658 src/option.c:730 -#: src/option.c:737 src/option.c:786 src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "पाठ" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "रद्द गर्नुहोस् बटनको लेबुल सेट गर्नुहोस्" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "एउटा अतिरिक्त बटन थप्नुहोस्" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "मोडल सङ्केत सेट गर्नुहोस्" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "संलग्न गर्न प्रमूल सञ्झ्याल सेट गर्नुहोस्" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "सन्झ्याल" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "पात्रो संवाद प्रदर्शन गर्नुहोस्" - -# src/main.c:528 -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 src/option.c:467 src/option.c:597 src/option.c:657 -#: src/option.c:785 src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "संवाद पाठ सेट गर्नुहोस्" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "पात्रो दिन सेट गर्नुहोस्" - -#: src/option.c:252 -msgid "DAY" -msgstr "दिन" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "पात्रो महिना सेट गर्नुहोस्" - -#: src/option.c:259 -msgid "MONTH" -msgstr "महिना" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "पात्रो वर्ष सेट गर्नुहोस्" - -#: src/option.c:266 -msgid "YEAR" -msgstr "वर्ष" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "फर्काइएको मितिका लागि ढाँचा सेट गर्नुहोस्" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "बाँन्की" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "पाठ प्रविष्ट संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "प्रविष्टि पाठ सेट गर्नुहोस्" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "प्रविष्टि पाठ लुकाउनुहोस्" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "त्रुटि संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "संवाद प्रतिमा सेट गर्नुहोस्" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "प्रतिमाको नाम" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "पाठ बेराइ सक्षम नपार्नुहोस्" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "प्याङ्गो मार्कअप सक्षम नपार्नुहोस्" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "Enable ellipsizing in the dialog text. This fixes the high window size with long texts" -msgstr "संवाद पाठमा दीर्घवृतीकरण सक्षम पार्नुहोस् । यसले लामो पाठहरूसँग उच्च सञ्झ्याल साइज निश्चित गर्दछ" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "सूचना संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "फाइल चयन संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "फाइलनाम सेट गर्नुहोस्" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "फाइलनाम" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "चयन गर्नका लागि बहुँविध फाइलहरूलाई अनुमति दिनुहोस्" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "चयन निर्दिशिका मात्र सक्रिय पार्नुहोस्" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "बचत मोड सक्रिय पार्नुहोस्" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "निर्गत विभाजक क्यारेक्टर सेट गर्नुहोस्" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "विभाजक" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "यदि फाइलनाम पहिल्यै अवस्थित छ भने फाइल चयन यकिन गर्नुहोस्" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "फाइलनाम फिल्टर सेट गर्नुहोस्" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "सूची संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "स्तम्भ हेडर सेट गर्नुहोस्" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "स्तम्भ" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "पहिलो स्तम्भका लागि जाँच बाकस प्रयोग गर्नुहोस्" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "पहिलो स्तम्भका लागि रेडियो बटन प्रयोग गर्नुहोस्" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "पहिलो स्तम्भका लागि एउटा छवि प्रयोग गर्नुहोस्" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "चयनका लागि बहुँविध फाइलहरूलाई अनुमति दिनुहोस्" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "पाठमा परिवर्तनहरूलाई अनुमति दिनुहोस्" - -#: src/option.c:523 -msgid "Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "विशिष्ट स्तम्भ मुद्रण गर्नुहोस् (पूर्वनिर्धारित १ हो । 'सबै' सबै स्तम्भ मुद्रण गर्न प्रयोग गरिन्छ)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "नम्बर" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "विशिष्ट स्तम्भ लुकाउनुहोस्" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "स्तम्भ हेडर लुकाउनुहोस्" - -#: src/option.c:546 -msgid "Change list default search function searching for text in the middle, not on the beginning" -msgstr "पाठका लागि बीचमा खोजी गरिरहेको सूची पूर्वनिर्धारित खोजी प्रकार्य परिवर्तन गर्नुहोस्, सुरुआतमा होइन" - -#: src/option.c:557 -msgid "Display notification" -msgstr "सूचना प्रदर्शन गर्नुहोस्" - -# src/main.c:528 -#: src/option.c:564 -msgid "Set the notification text" -msgstr "सूचना पाठ सेट गर्नुहोस्" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "आदेशको लागि stdin मा सुन्नुहोस्" - -# src/main.c:528 -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "सूचना सङ्केत सेट गर्नुहोस्" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "प्रगति इङ्कित संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "सुरुको प्रतिशत सेट गर्नुहोस्" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "प्रतिशत" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "निस्किएको प्रगतिपट्टी" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "१००% पुग्दा संवाद छिन्नभिन्न भयो" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "यदि 'रद्द गर्नुहोस्' बटन थिचियो भने प्रमूल प्रक्रिया नष्ट गर्नुहोस्" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "रद्द गर्नुहोस् बटन लुकाउनुहोस्" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "प्रगति १००% पुग्ने अनुमान गर्नुहोस्" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "प्रश्न संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "पूर्वनिर्धारितद्वारा रद्द गर्नुहोस् बटन फोकस दिनुहोस्" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "'ठीक छ' दबाउनुहोस् र रद्द गर्नुहोस् बटन" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "पाठ जानकारी संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:715 -msgid "Open file" -msgstr "फाइल खोल्नुहोस्" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "पाठ फन्ट सेट गर्नुहोस्" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "मैले पढेको र सहमत भएको जाँच बाकस सक्षम पार्नुहोस्" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML समर्थन सक्षम पार्नुहोस्" - -#: src/option.c:751 -msgid "Do not enable user interaction with the WebView. Only works if you use --html option" -msgstr "WebView सँग प्रयोगकर्ता अन्तरक्रिया सक्षम नपार्नुहोस् । यदि तपाईँले --html विकल्प प्रयोग गर्नुभयो भने मात्र काम गर्दछ" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "फाइलको सट्टा यूआरएल सेट गर्नुहोस् । यदि तपाईँले --html विकल्प प्रयोग गर्नुभयो भने मात्र काम गर्दछ" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "पाठलाई अन्त्यमा स्वत: स्क्रोल गर्नुहोस् । stdin बाट पाठ ग्रहण गर्दा मात्र" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "चेतावनी संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "मापन संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "सुरुको मान सेट गर्नुहोस्" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 src/option.c:1008 -msgid "VALUE" -msgstr "मान" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "न्यूनतम मान सेट गर्नुहोस्" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "अधिक्तम मान सेट गर्नुहोस्" - -#: src/option.c:856 -msgid "Set step size" -msgstr "चरण साइज सेट गर्नुहोस्" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "आंशिक मान मुद्रण गर्नुहोस्" - -#: src/option.c:870 -msgid "Hide value" -msgstr "मान लुकाउनुहोस्" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "फारम संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "फारम संवादमा नयाँ प्रविष्टि थप्नुहोस्" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "क्षेत्रको नाम" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "फारम संवादमा नयाँ पासवर्ड प्रविष्टि थप्नुहोस्" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "फारम संवादमा नयाँ पात्रो थप्नुहोस्" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "पात्रो फाँट नाम" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "फारम संवादमा नयाँ सूची थप्नुहोस्" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "फिल्ड र हेडर नाम सूचीबद्ध गर्नुहोस्" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "सूचीका लागि मानहरूको सूची" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| द्वारा छुट्याएको मानहरूको सूची" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "स्तम्भका लागि मानहरूको सूची" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "फारम संवादमा नयाँ कम्बो बाकस थप्नुहोस्" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "कम्बो बाकस फाँट नाम" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "कम्बो बाकसका लागि मानहरूको सूची" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "स्तम्भ हेडर देखाउनुहोस्" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "पासवर्ड संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "प्रयोगकर्ता नाम विकल्प प्रदर्शन गर्नुहोस्" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "रङ चयन संवाद प्रदर्शन गर्नुहोस्" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "रङ सेट गर्नुहोस्" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "रङदानी देखाउनुहोस्" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "जेनिटीको बारेमा" - -#: src/option.c:1030 -msgid "Print version" -msgstr "मुद्रण संस्करण" - -#: src/option.c:1913 -msgid "General options" -msgstr "साधारण विकल्प" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "साधारण विकल्प देखाउनुहोस्" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "पात्रो विकल्प" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "पात्रो विकल्प देखाउनुहोस्" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "पाठ प्रविष्टि विकल्प" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "पाठ प्रविष्टका विकल्पहरू देखाउनुहोस्" - -#: src/option.c:1952 -msgid "Error options" -msgstr "त्रुटि विकल्प" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "त्रुटि विकल्प देखाउनुहोस्" - -#: src/option.c:1962 -msgid "Info options" -msgstr "सूचना विकल्प" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "सूचना विकल्प देखाउनुहोस्" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "फाइल छनौट विकल्प" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "फाइल छनौट विकल्प देखाउनुहोस्" - -#: src/option.c:1985 -msgid "List options" -msgstr "विकल्पहरू सूचीबद्ध गर्नुहोस्" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "सूची विकल्प देखाउनुहोस्" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "सूचना प्रतिमा विकल्प" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "सूचना प्रतिमा विकल्प देखाउनुहोस्" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "प्रगति विकल्प" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "प्रगति विकल्प देखाउनुहोस्" - -#: src/option.c:2024 -msgid "Question options" -msgstr "प्रश्न विकल्प" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "प्रश्न विकल्प देखाउनुहोस्" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "चेतावनी विकल्प" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "चेतावनी विकल्प देखाउनुहोस्" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "विकल्प मापन गर्नुहोस्" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "मापन विकल्प देखाउनुहोस्" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "पाठ जनकारी विकल्प" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "पाठ जनकारी विकल्प देखाउनुहोस्" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "रङ छनौट विकल्प" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "रङ छनौट विकल्प देखाउनुहोस्" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "पासवर्ड संवाद विकल्प" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "पासवर्ड संवाद विकल्प देखाउनुहोस्" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "फारम संवाद विकल्प" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "फारम संवाद विकल्प देखाउनुहोस्" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "विविध विकल्प" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "विविध विकल्पहरू देखाउनुहोस्" - -#: src/option.c:2139 -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "यो विकल्प उपलब्ध छैन । कृपया अरू सम्भाव्य प्रयोगहरूको लागि -सहयोगमा हेर्नुहोस् ।\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s यो संवादको लागि समर्थित छैन\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "दुई या दुईभन्दा बढी संवाद विकल्पहरू निर्दिष्ट गरिएको छ\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "तपाईँको पासवर्ड टाइप गर्नुहोस्" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "तपाईँको प्रयोगकर्ता नाम र पासवर्ड टाइप गर्नुहोस्" - -#: src/password.c:100 -msgid "Username:" -msgstr "प्रयोगकर्ताको नाम:" - -#: src/password.c:110 -msgid "Password:" -msgstr "गोप्यशब्द:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "बाँकी समय: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "अधिक्तम मान न्यूनतम मान भन्दा ठूलो हुनुपर्छ ।\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "दायरा बाहिरको मान ।\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "सूची संवादका लागि कुनै स्तम्भ शीर्षकहरू निर्दिष्ट गरेको छैन ।\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "तपाईँले मात्र एउटा संवाद प्रकार प्रयोग गर्नुपर्नेछ ।\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "मापन मान समायोजन गर्नुहोस्" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "_रद्द" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 -#: src/zenity.ui:798 src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "ठिक छ" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "पाठ दृश्य" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "पात्रो छनौट" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "तलबाट मिति छान्नुहोस् ।." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "पात्रो:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "नयाँ प्रविष्टि थप्नुहोस्" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "नयाँ पाठ प्रविष्ट गर्नुहोस्:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "त्रुटि" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "एउटा त्रुटि देखापर्यो ।." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "फारम सम्बाद" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "सूचना" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "सबै अद्यावधिकहरू पूरा भयो ।." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "प्रगति" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "सञ्चालन भइरहेछ..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "प्रश्न" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "के तपाई अगाडि बढ्न चाहनुहुन्छ ?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "सूचीबाट वस्तु चयन गर्नुहोस्" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "तलको सूचीबाट वस्तु चयन गर्नुहोस् ।." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "चेतावनी" - -#~ msgid "Select a file" -#~ msgstr "फाइल चयन गर्नुहोस्" diff --git a/po/nl.po b/po/nl.po deleted file mode 100644 index e92f49e..0000000 --- a/po/nl.po +++ /dev/null @@ -1,934 +0,0 @@ -# Dutch translation of zenity. -# -# This file is distributed under the same license as the zenity package. -# -# -# Vincent van Adrighem , 2003–2005. -# Tino Meinen , 2008. -# Reinout van Schouwen , 2010. -# Wouter Bolsterlee , 2007, 2010–2011, 2012. -# Hannie Dumoleyn , 2012. -# Nathan Follens , 2017-2018. -msgid "" -msgstr "" -"Project-Id-Version: Zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2018-02-08 19:48+0100\n" -"Last-Translator: Nathan Follens \n" -"Language-Team: Dutch \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.6\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Dit programma is vrije software; u mag het verspreiden en/of wijzigen onder " -"de voorwaarden van de GNU Lesser General Public License, uitgegeven door de " -"Free Software Foundation (versie 2 van de licentie of een nieuwere versie.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Dit programma wordt verspreid in de hoop dat het nuttig zal zijn, maar " -"ZONDER ENIGE GARANTIE; zelfs zonder de impliciete garantie van " -"VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie voor meer " -"informatie de GNU Lesser General Public License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Als het goed is heeft u bij dit programma een kopie van de GNU Lesser " -"General Public License ontvangen; als dat niet zo is, stuur dan een brief " -"naar de Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, " -"Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Vincent van Adrighem\n" -"Reinout van Schouwen\n" -"Wouter Bolsterlee\n" -"Tino Meinen\n" -"Nathan Follens\n" -"\n" -"Meer info over Gnome-NL http://nl.gnome.org/" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Dialoogvenster weergeven vanuit shellscripts" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Oké" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Annuleren" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"U moet een type dialoogvenster meeegeven. Kijk naar ‘zenity --help’ voor " -"meer informatie\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nee" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ja" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Kon het bericht niet verwerken\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Ongeldige waarde voor een booleaanse tip.\n" -"Ondersteunde waarden zijn ‘true’ of ‘false’.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Tip niet ondersteund, overslaan.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Naam van tip onbekend, overslaan.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Kon de opdracht van stdin niet verwerken\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity melding" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Titel van dialoogvenster instellen" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITEL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Pictogram van dialoogvenster instellen" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PICTOGRAMPAD" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Breedte instellen" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "BREEDTE" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Hoogte instellen" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HOOGTE" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Timeout van dialoogvenster instellen (in seconden)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIJDSLIMIET" - -# zet/stelt in -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Stel het label van de knop ‘Oké’ in" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Stel het label van de knop ‘Annuleren’ in" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Een extra knop toevoegen" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Modale tip instellen" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Bovenliggend venster om aan vast te maken instellen" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "VENSTER" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Dialoogvenster kalender weergeven" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Tekst van dialoogvenster instellen" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Kalenderdag instellen" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAG" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Kalendermaand instellen" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MAAND" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Kalenderjaar instellen" - -#: src/option.c:266 -msgid "YEAR" -msgstr "JAAR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Formattering van terug gegeven datum instellen" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PATROON" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Dialoogvenster tekstinvoer weergeven" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Tekst van de tekstinvoer instellen" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Tekst van de tekstinvoer verbergen" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Dialoogvenster ‘foutmelding’ weergeven" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Pictogram van dialoogvenster instellen" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "PICTOGRAM-NAAM" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Regels niet afbreken" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Gebruik van Pango-markup niet inschakelen" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Weglatingstekens in dialoogvenstertekst inschakelen. Dit lost een probleem " -"op waarbij lange teksten leiden tot hoge venstergroottes" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Dialoogvenster ‘informatie’ weergeven" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Dialoogvenster ‘bestand selecteren’ weergeven" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Bestandsnaam instellen" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "BESTANDSNAAM" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Selecteren van meerdere bestanden toestaan" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Alleen mappen kiezen" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Om op te slaan" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Scheidingsteken voor uitvoer instellen" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SCHEIDING" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Bestandsselectie bevestigen indien bestand reeds bestaat" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Stel een bestandsnaamfilter in" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAAM | PATROON 1 PATROON2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Dialoogvenster ‘lijst’ weergeven" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Kop van kolom instellen" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLOM" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Aankruisvakjes gebruiken als eerste kolom" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Radioknoppen gebruiken als eerste kolom" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Afbeelding gebruiken als eerste kolom" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Selecteren van meerdere rijen toestaan" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Tekst mag veranderd worden" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Een specifieke kolom teruggeven (Standaard is 1. ‘ALL’ kan gebruikt worden " -"om alle kolommen terug te geven)." - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "GETAL" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Een specifieke kolom verbergen" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Kolomkoppen verbergen" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Standaardzoekfunctie in lijsten laten zoeken naar tekst in het midden, niet " -"in het begin" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Melding weergeven" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Tekst van melding instellen" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Luisteren naar opdrachten op stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Meldingstips instellen" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Dialoogvenster ‘voortgangsindicator’ weergeven" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Beginpercentage instellen" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Voortgangsbalk laten pulseren" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Dialoogvenster sluiten wanneer 100% is bereikt" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Ouderproces afsluiten als op de knop Annuleren geklikt wordt" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Annuleren-knop verbergen" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Schatten wanneer voortgang 100% zal bereiken" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Dialoogvenster ‘vraag’ weergeven" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Focus standaard op Annuleren-knop plaatsen" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Oké- en Annuleren-knoppen verbergen" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Dialoogvenster ‘tekstinformatie’ weergeven" - -#: src/option.c:715 -msgid "Open file" -msgstr "Bestand openen" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Lettertype van de tekst instellen" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Een keuzevinkje voor ‘gelezen en akkoord’ inschakelen" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ondersteuning voor HTML inschakelen" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Gebruikersinteractie met WebView niet inschakelen. Dit werkt alleen met de " -"optie ‘--html’" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Een URL in plaats van een bestand gebruiken. Dit werkt alleen met de optie " -"‘--html’" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Tekst automatisch scrollen naar einde. Enkel wanneer tekst uit stdin komt" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Waarschuwingvenster weergeven" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Dialoogvenster ‘schalen’ weergeven" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Beginwaarde instellen" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "WAARDE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Minimumwaarde instellen" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Maximumwaarde instellen" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Stapgrootte instellen" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Ook fracties van getallen" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Waarde verbergen" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Formuliervenster weergeven" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Nieuwe invoer aan formuliervenster toevoegen" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Veldnaam" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Een nieuw wachtwoordveld aan het formuliervenster toevoegen" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Een nieuwe kalender aan het formuliervenster toevoegen" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Kalenderveldnaam" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Een nieuwe lijst aan het formuliervenster toevoegen" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Veld- en kopnaam van de lijst" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lijst van waarden voor de lijst" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lijst van waarden gescheiden door |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lijst van waarden voor kolommen" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Een nieuwe keuzelijst aan het formuliervenster toevoegen" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Keuzelijstveldnaam" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lijst van waarden voor keuzelijst" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Kop van kolom tonen" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Dialoogvenster ‘wachtwoord’ weergeven" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Gebruikersnaam-optie weergeven" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Kleurselectievenster weergeven" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "De kleur instellen" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Het palet tonen" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Info over zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Versie weergeven" - -#: src/option.c:1913 -msgid "General options" -msgstr "Algemene instellingen" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Algemene instellingen weergeven" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalenderinstellingen" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Kalenderinstellingen weergeven" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Tekstinvoerinstellingen" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Tekstinvoerinstellingen weergeven" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Foutmeldingsinstellingen" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Foutmeldingsinstellingen weergeven" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Info-instellingen" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Info-instellingen weergeven" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Bestandsselectie-instellingen" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Bestandsselectie-instellingen weergeven" - -#: src/option.c:1985 -msgid "List options" -msgstr "Lijstinstellingen" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Lijstinstellingen weergeven" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Instellingen voor meldingspictogram" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Instellingen voor meldingspictogram weergeven" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Voortgangsbalkinstellingen" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Voortgangsbalkinstellingen weergeven" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Vraag-instellingen" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Vraag-instellingen weergeven" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Waarschuwingsinstellingen" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Waarschuwingsinstellingen weergeven" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Schaalinstellingen weergeven" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Schaalinstellingen weergeven" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Instellingen voor tekstinformatie" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Instellingen voor tekstinformatie weergeven" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Kleursselectie-instellingen" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Kleurselectie-instellingen weergeven" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opties voor wachtwoordvenster" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Opties voor wachtwoordvenster weergeven" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opties voor formuliervenster" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Opties voor formuliervenster weergeven" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Diverse instellingen" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Diverse instellingen weergeven" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Deze optie is niet beschikbaar. Kijk bij --help voor alle mogelijke manieren " -"om te gebruiken.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s wordt niet ondersteund door dit dialoogvenster\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Twee of meer dialoogvenster-opties gespecificeerd\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Voer uw wachtwoord in" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Voer uw gebruikersnaam en wachtwoord in" - -#: src/password.c:100 -msgid "Username:" -msgstr "Gebruikersnaam:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Wachtwoord:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Resterende tijd: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximumwaarde moet meer zijn dan de minimumwarde.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Waarde te groot.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Geen kolomtitels gegeven voor lijstweergave.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "U dient slechts één type Lijstvenster te gebruiken.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Waarde aanpassen" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Annuleren" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Oké" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstweergave" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalenderselectie" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Kies hieronder een datum." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Nieuwe ingang toevoegen" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Geef nieuwe tekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Fout" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Er is een fout opgetreden." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formuliervenster" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informatie" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Alle updates zijn voltooid." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Voortgang" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Actief…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Vraag" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Weet u zeker dat u wilt doorgaan?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Kies items uit de lijst" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Kies hieronder items uit de lijst." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Waarschuwing" - -#~ msgid "Select a file" -#~ msgstr "Kies een bestand" - -#~ msgid "Orientation" -#~ msgstr "Oriëntatie" - -#~ msgid "The orientation of the tray." -#~ msgstr "De oriëntatie van het mededelingengebied." - -#~ msgid "Adjust the scale value." -#~ msgstr "U kunt de waarde aanpassen." - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "© 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "Met dank aan" - -#~ msgid "Written by" -#~ msgstr "Geschreven door" - -#~ msgid "Translated by" -#~ msgstr "Vertaald door" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "Info over Zenity" - -#~ msgid "_Credits" -#~ msgstr "_Credits" diff --git a/po/nn.po b/po/nn.po deleted file mode 100644 index c68088f..0000000 --- a/po/nn.po +++ /dev/null @@ -1,763 +0,0 @@ -# translation of zenity.HEAD.nn.po to Norwegian Nynorsk -# translation of nn.po to Norwegian Nynorsk -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# Åsmund Skjæveland , 2004, 2006. -# Eskild Hustvedt , 2007, 2009. -# Åsmund Skjæveland , 2009, 2011. -# Torstein Adolf Winterseth , 2009. -msgid "" -msgstr "" -"Project-Id-Version: nn\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug." -"cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2011-01-17 14:20+0000\n" -"PO-Revision-Date: 2011-03-30 14:05+0200\n" -"Last-Translator: Åsmund Skjæveland \n" -"Language-Team: Norsk (nynorsk) \n" -"Language: nn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.0\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/about.c:64 -#| msgid "" -#| "This program is free software; you can redistribute it and/or modify it " -#| "under the terms of the GNU General Public License as published by the " -#| "Free Software Foundation; either version 2 of the License, or (at your " -#| "option) any later version.\n" -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Dette programmet er fri programvare. Du kan dela og/eller endra programmet " -"under vilkåra gjeven i GNU Lesser General Public License som utgjeven av Free " -"Software Foundation; anten versjon 2, eller kva for ein seinare versjon av " -"lisensen du ønskjer.\n" - -#: ../src/about.c:68 -#| msgid "" -#| "This program is distributed in the hope that it will be useful, but " -#| "WITHOUT ANY WARRANTY; without even the implied warranty of " -#| "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General " -#| "Public License for more details.\n" -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Dette programmet vert distribuert i håp om at programmet er nyttig, men utan " -"NOKO GARANTI, ikkje eingong implisitt garanti om at det er SALBART eller " -"PASSER EIT BESTEMT FØREMÅL. Sjå GNU Lesser General Public License for " -"detaljar.\n" - -#: ../src/about.c:72 -#| msgid "" -#| "You should have received a copy of the GNU General Public License along " -#| "with this program; if not, write to the Free Software Foundation, Inc., " -#| "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Du skal ha motteken ein kopi av GNU Lesser General Public License saman med " -"dette " -"programmet. Viss dette ikkje er tilfelle, kan du skriva til Free Software " -"Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"Åsmund Skjæveland \n" -"Eskild Hustvedt \n" -"Torstein Adolf Winterseth \n" -"\n" -"Send merknader og feilmeldingar til i18n-nn@lister.ping.uio.no" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Vis dialogboksar frå skalskript" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Du må oppgje ein dialogtype. Sjå «zenity --help» for detaljar\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "klarte ikkje tolka kommando frå standardinn\n" - -#: ../src/notification.c:122 -#, c-format -#| msgid "could not parse command from stdin\n" -msgid "Could not parse message from stdin\n" -msgstr "Klarte ikkje tolka melding frå standardinn\n" - -#: ../src/notification.c:196 -msgid "Zenity notification" -msgstr "Zenity-melding" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "Skriv passord" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "Brukarnamn:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "Passord:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Største verdi må vera større enn minste verdi.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Verdien er utanfor området.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Ingen kolonnetitlar oppgjevne for listedialogen.\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Du bør bruka berre ein listedialogtype.\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "Skjemadialog" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "Legg til ei ny oppføring" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "Juster skalaverdien" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "Alle oppdateringane er ferdige." - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "Ein feil har oppstått." - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Er du sikker på at du vil halda fram?" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "K_alender:" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "Kalenderutval" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "Feil" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "Informasjon" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "Framgang" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "Spørsmål" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "Køyrer …" - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "Vel ein dato under." - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "Vel element frå lista" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "Vel element frå lista under." - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "Tekstvising" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "Åtvaring" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "_Skriv inn ny tekst:" - -#: ../src/option.c:144 -msgid "Set the dialog title" -msgstr "Vel dialogtittel" - -#: ../src/option.c:145 -msgid "TITLE" -msgstr "TITTEL" - -#: ../src/option.c:153 -msgid "Set the window icon" -msgstr "Vel ikonet til vindauget" - -#: ../src/option.c:154 -msgid "ICONPATH" -msgstr "IKONSTI" - -#: ../src/option.c:162 -msgid "Set the width" -msgstr "Vel breidda" - -#: ../src/option.c:163 -msgid "WIDTH" -msgstr "BREIDDE" - -#: ../src/option.c:171 -msgid "Set the height" -msgstr "Vel høgda" - -#: ../src/option.c:172 -msgid "HEIGHT" -msgstr "HØGDE" - -#: ../src/option.c:180 -msgid "Set dialog timeout in seconds" -msgstr "Set tidsavbrudd for dialog i sekund" - -#. Timeout for closing the dialog -#: ../src/option.c:182 -msgid "TIMEOUT" -msgstr "TIDSAVBROT" - -#: ../src/option.c:196 -msgid "Display calendar dialog" -msgstr "Vis kalenderdialog" - -#: ../src/option.c:205 ../src/option.c:265 ../src/option.c:308 -#: ../src/option.c:341 ../src/option.c:453 ../src/option.c:595 -#: ../src/option.c:667 ../src/option.c:760 ../src/option.c:793 -#: ../src/option.c:898 -msgid "Set the dialog text" -msgstr "Vel dialogteksten" - -#: ../src/option.c:206 ../src/option.c:266 ../src/option.c:275 -#: ../src/option.c:309 ../src/option.c:342 ../src/option.c:454 -#: ../src/option.c:561 ../src/option.c:596 ../src/option.c:668 -#: ../src/option.c:677 ../src/option.c:686 ../src/option.c:737 -#: ../src/option.c:761 ../src/option.c:794 ../src/option.c:899 -msgid "TEXT" -msgstr "TEKST" - -#: ../src/option.c:214 -msgid "Set the calendar day" -msgstr "Vel kalenderdag" - -#: ../src/option.c:215 -msgid "DAY" -msgstr "DAG" - -#: ../src/option.c:223 -msgid "Set the calendar month" -msgstr "Vel kalendermånad" - -#: ../src/option.c:224 -msgid "MONTH" -msgstr "MÅNAD" - -#: ../src/option.c:232 -msgid "Set the calendar year" -msgstr "Vel kalenderår" - -#: ../src/option.c:233 -msgid "YEAR" -msgstr "ÅR" - -#: ../src/option.c:241 ../src/option.c:916 -msgid "Set the format for the returned date" -msgstr "Vel formatet på datoen som vert returnert" - -#: ../src/option.c:242 ../src/option.c:917 -msgid "PATTERN" -msgstr "MØNSTER" - -#: ../src/option.c:256 -msgid "Display text entry dialog" -msgstr "Vis tekstoppføringsdialog" - -#: ../src/option.c:274 -msgid "Set the entry text" -msgstr "Tekst i oppføringa" - -#: ../src/option.c:283 -msgid "Hide the entry text" -msgstr "Gøym oppføringsteksten" - -#: ../src/option.c:299 -msgid "Display error dialog" -msgstr "Vis feildialog" - -#: ../src/option.c:317 ../src/option.c:350 ../src/option.c:694 -#: ../src/option.c:769 -msgid "Do not enable text wrapping" -msgstr "Ikkje bruk tekstbryting" - -#: ../src/option.c:332 -msgid "Display info dialog" -msgstr "Vis infodialog" - -#: ../src/option.c:365 -msgid "Display file selection dialog" -msgstr "Vis filveljardialog" - -#: ../src/option.c:374 -msgid "Set the filename" -msgstr "Vel filnamn" - -#: ../src/option.c:375 ../src/option.c:719 -msgid "FILENAME" -msgstr "FILNAMN" - -#: ../src/option.c:383 -msgid "Allow multiple files to be selected" -msgstr "Tillat å velja fleire filer samtidig" - -#: ../src/option.c:392 -msgid "Activate directory-only selection" -msgstr "Vel berre katalogar, ikkje filer" - -#: ../src/option.c:401 -msgid "Activate save mode" -msgstr "Bruk lagringsmodus" - -#: ../src/option.c:410 ../src/option.c:489 ../src/option.c:907 -msgid "Set output separator character" -msgstr "Vel skiljeteikn i utdata" - -#: ../src/option.c:411 ../src/option.c:490 ../src/option.c:908 -msgid "SEPARATOR" -msgstr "SKILJETEIKN" - -#: ../src/option.c:419 -msgid "Confirm file selection if filename already exists" -msgstr "Stadfest filvalet dersom fila finst frå før" - -#: ../src/option.c:428 -msgid "Sets a filename filter" -msgstr "Vel filnamnfilter" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:430 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAMN | MØNSTER1 MØNSTER2" - -#: ../src/option.c:444 -msgid "Display list dialog" -msgstr "Vis listedialog" - -#: ../src/option.c:462 -msgid "Set the column header" -msgstr "Vel kolonnetopptekst" - -#: ../src/option.c:463 -msgid "COLUMN" -msgstr "KOLONNE" - -#: ../src/option.c:471 -msgid "Use check boxes for first column" -msgstr "Bruk avkryssingsboksar i fyrste kolonne" - -#: ../src/option.c:480 -msgid "Use radio buttons for first column" -msgstr "Bruk radioknappar i fyrste kolonne" - -#: ../src/option.c:498 -msgid "Allow multiple rows to be selected" -msgstr "Tillat å velja fleire rader samtidig" - -#: ../src/option.c:507 ../src/option.c:727 -msgid "Allow changes to text" -msgstr "Tillat endringar av teksten" - -#: ../src/option.c:516 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Skriv ut ei bestemt kolonne (standard er 1. «ALL» kan brukast for å skriva ut " -"alle kolonnene)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:518 ../src/option.c:527 -msgid "NUMBER" -msgstr "TAL" - -#: ../src/option.c:526 -msgid "Hide a specific column" -msgstr "Gøym ei bestemt kolonne" - -#: ../src/option.c:535 -#| msgid "Set the column header" -msgid "Hides the column headers" -msgstr "Gøymer kolonneoverskriftene" - -#: ../src/option.c:551 -msgid "Display notification" -msgstr "Vis melding" - -#: ../src/option.c:560 -msgid "Set the notification text" -msgstr "Lag meldingsteksten" - -#: ../src/option.c:569 -msgid "Listen for commands on stdin" -msgstr "Lytt etter kommandoar på standardinn" - -#: ../src/option.c:586 -msgid "Display progress indication dialog" -msgstr "Vis framdriftsvisardialog" - -#: ../src/option.c:604 -msgid "Set initial percentage" -msgstr "Vel startprosent" - -#: ../src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROSENT" - -#: ../src/option.c:613 -msgid "Pulsate progress bar" -msgstr "Pulserande framgangslinje" - -#: ../src/option.c:623 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Lukk dialogen når 100 % er nådd" - -#: ../src/option.c:633 -#, no-c-format -#| msgid "Kill parent process if cancel button is pressed" -msgid "Kill parent process if Cancel button is pressed" -msgstr "Drep forelderprosessen viss du trykkar på Avbryt-knappen" - -#: ../src/option.c:643 -#, no-c-format -msgid "Hide Cancel button" -msgstr "Gøym Avbryt-knappen" - -#: ../src/option.c:658 -msgid "Display question dialog" -msgstr "Vis spørsmålsdialog" - -#: ../src/option.c:676 -msgid "Sets the label of the Ok button" -msgstr "Vel tekst på OK-knappen" - -#: ../src/option.c:685 -msgid "Sets the label of the Cancel button" -msgstr "Vel tekst på Avbryt-knappen" - -#: ../src/option.c:709 -msgid "Display text information dialog" -msgstr "Vis tekstinformasjonsdialog" - -#: ../src/option.c:718 -msgid "Open file" -msgstr "Opna fil" - -#: ../src/option.c:736 -#| msgid "Set the entry text" -msgid "Set the text font" -msgstr "Vel skrifttype for tekst" - -#: ../src/option.c:751 -msgid "Display warning dialog" -msgstr "Vis åtvaringsdialog" - -#: ../src/option.c:784 -msgid "Display scale dialog" -msgstr "Vis skaladialog" - -#: ../src/option.c:802 -msgid "Set initial value" -msgstr "Vel startverdi" - -#: ../src/option.c:803 ../src/option.c:812 ../src/option.c:821 -#: ../src/option.c:830 ../src/option.c:965 -msgid "VALUE" -msgstr "VERDI" - -#: ../src/option.c:811 -msgid "Set minimum value" -msgstr "Vel minste verdi" - -#: ../src/option.c:820 -msgid "Set maximum value" -msgstr "Vel største verdi" - -#: ../src/option.c:829 -msgid "Set step size" -msgstr "Vel stegstorleik" - -#: ../src/option.c:838 -msgid "Print partial values" -msgstr "Skriv delvise verdiar" - -#: ../src/option.c:847 -msgid "Hide value" -msgstr "Gøym verdi" - -#: ../src/option.c:862 -#| msgid "Display info dialog" -msgid "Display forms dialog" -msgstr "Vis skjemadialog" - -#: ../src/option.c:871 -#| msgid "Add a new entry" -msgid "Add a new Entry in forms dialog" -msgstr "Legg til eit nytt felt i skjemadialogen" - -#: ../src/option.c:872 ../src/option.c:881 -msgid "Field name" -msgstr "Feltnamn" - -#: ../src/option.c:880 -msgid "Add a new Password Entry in forms dialog" -msgstr "Legg til eit nytt passordfelt i skjemadialogen" - -#: ../src/option.c:889 -msgid "Add a new Calendar in forms dialog" -msgstr "Legg til eit nytt kalenderfelt i skjemadialogen" - -#: ../src/option.c:890 -#| msgid "Calendar selection" -msgid "Calendar field name" -msgstr "Kalenderfeltnamn" - -#: ../src/option.c:931 -#| msgid "Display error dialog" -msgid "Display password dialog" -msgstr "Vis passorddialog" - -#: ../src/option.c:940 -#| msgid "Display text entry dialog" -msgid "Display the username option" -msgstr "Vis brukarnamn-valet" - -#: ../src/option.c:955 -#| msgid "Display file selection dialog" -msgid "Display color selection dialog" -msgstr "Vis fargeveljardialog" - -#: ../src/option.c:964 -#| msgid "Set the column header" -msgid "Set the color" -msgstr "Vel farge" - -#: ../src/option.c:973 -#| msgid "Set the dialog title" -msgid "Show the palette" -msgstr "Vis paletten" - -#: ../src/option.c:988 -msgid "About zenity" -msgstr "Om Zenity" - -#: ../src/option.c:997 -msgid "Print version" -msgstr "Vis versjonsnummer" - -#: ../src/option.c:1813 -msgid "General options" -msgstr "Allmenne val" - -#: ../src/option.c:1814 -msgid "Show general options" -msgstr "Vis allmenne val" - -#: ../src/option.c:1824 -msgid "Calendar options" -msgstr "Kalenderval" - -#: ../src/option.c:1825 -msgid "Show calendar options" -msgstr "Vis kalenderval" - -#: ../src/option.c:1835 -msgid "Text entry options" -msgstr "Val for tekstoppføring" - -#: ../src/option.c:1836 -msgid "Show text entry options" -msgstr "Vis val for tekstoppføring" - -#: ../src/option.c:1846 -msgid "Error options" -msgstr "Val om feil" - -#: ../src/option.c:1847 -msgid "Show error options" -msgstr "Vis val om feil" - -#: ../src/option.c:1857 -msgid "Info options" -msgstr "Val om informasjon" - -#: ../src/option.c:1858 -msgid "Show info options" -msgstr "Vis val om informasjon" - -#: ../src/option.c:1868 -msgid "File selection options" -msgstr "Val om filveljar" - -#: ../src/option.c:1869 -msgid "Show file selection options" -msgstr "Vis val om filveljar" - -#: ../src/option.c:1879 -msgid "List options" -msgstr "Listeval" - -#: ../src/option.c:1880 -msgid "Show list options" -msgstr "Vis listeval" - -#: ../src/option.c:1891 -msgid "Notification icon options" -msgstr "Val om meldingar" - -#: ../src/option.c:1892 -msgid "Show notification icon options" -msgstr "Vis val om meldingsikon" - -#: ../src/option.c:1903 -msgid "Progress options" -msgstr "Framdriftsval" - -#: ../src/option.c:1904 -msgid "Show progress options" -msgstr "Vis framdriftsval" - -#: ../src/option.c:1914 -msgid "Question options" -msgstr "Val om spørsmål" - -#: ../src/option.c:1915 -msgid "Show question options" -msgstr "Vis val om spørsmål" - -#: ../src/option.c:1925 -msgid "Warning options" -msgstr "Val om åtvaringar" - -#: ../src/option.c:1926 -msgid "Show warning options" -msgstr "Vis val om åtvaringar" - -#: ../src/option.c:1936 -msgid "Scale options" -msgstr "Skalaval" - -#: ../src/option.c:1937 -msgid "Show scale options" -msgstr "Vis skalaval" - -#: ../src/option.c:1947 -msgid "Text information options" -msgstr "Val om tekstinformasjon" - -#: ../src/option.c:1948 -msgid "Show text information options" -msgstr "Vis val om tekstinformasjon" - -#: ../src/option.c:1958 -#| msgid "File selection options" -msgid "Color selection options" -msgstr "Val om fargeveljar" - -#: ../src/option.c:1959 -#| msgid "Show file selection options" -msgid "Show color selection options" -msgstr "Vis val om fargeveljar" - -#: ../src/option.c:1969 -#| msgid "Warning options" -msgid "Password dialog options" -msgstr "Val om passorddialog" - -#: ../src/option.c:1970 -#| msgid "Show warning options" -msgid "Show password dialog options" -msgstr "Vis val om passorddialog" - -#: ../src/option.c:1980 -#| msgid "Show info options" -msgid "Forms dialog options" -msgstr "Val om skjemadialog" - -#: ../src/option.c:1981 -#| msgid "Show scale options" -msgid "Show forms dialog options" -msgstr "Vis val om skjemadialog" - -#: ../src/option.c:1991 -msgid "Miscellaneous options" -msgstr "Ymse val" - -#: ../src/option.c:1992 -msgid "Show miscellaneous options" -msgstr "Vis ymse val" - -#: ../src/option.c:2017 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Dette valet er ikkje tilgjengeleg. Sjå «--help» for moglege bruksmåtar.\n" - -#: ../src/option.c:2021 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s er ikkje støtta i denne dialogen\n" - -#: ../src/option.c:2025 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "To eller fleire dialogval oppgjevne\n" - -#~ msgid "Select a file" -#~ msgstr "Vel ei fil" - -#~ msgid "Orientation" -#~ msgstr "Retning" - -#~ msgid "The orientation of the tray." -#~ msgstr "Retninga på trauet." - -#~ msgid "Adjust the scale value." -#~ msgstr "Juster skalaverdien." diff --git a/po/oc.po b/po/oc.po deleted file mode 100644 index 37d2b65..0000000 --- a/po/oc.po +++ /dev/null @@ -1,897 +0,0 @@ -# Occitan Translation of Zenity. -# Copyright (C) 2003-2015 Free Software Foundation, Inc. -# This file is distributed under the same license as the Zenity package. -# -# Yannig Marchegay (Kokoyaya) , 2006-2008, 2010. -# Cédric Valmary (totenoc.eu) , 2016. -msgid "" -msgstr "" -"Project-Id-Version: Zenity master\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2021-08-11 19:52+0000\n" -"PO-Revision-Date: 2021-08-11 21:51+0200\n" -"Last-Translator: Quentin PAGÈS\n" -"Language-Team: Tot En Òc\n" -"Language: oc\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0\n" -"X-Launchpad-Export-Date: 2012-08-31 07:48+0000\n" -"X-Project-Style: gnome\n" - -#: src/about.c:56 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Aqueste programa es un logicial liure ; lo podètz tornar distribuir e/o lo " -"modificar segon los tèrmes de la licéncia publica generala GNU, coma es " -"publicada per la Free Software Foundation ; version 2 de la licéncia, o (se " -"volètz) tota version seguenta.\n" - -#: src/about.c:61 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Aqueste programa es distribuit en esperant que vos serà util mas SENS CAP DE " -"GARANTIA ; sens tanpauc la garantia implicita de VALOR MERCANDA o " -"D'ADEQÜACION A UN BESONH PARTICULIER. Consultatz la licéncia publica " -"generala GNU per mai d'entresenhas.\n" - -#: src/about.c:65 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Deuriatz aver recebut una còpia de la licéncia GNU GPL amb Nautilus ; s'es " -"pas lo cas, escrivètz a Free Software Foundation, Inc., 59 Temple Place, " -"Suite 330, Boston, MA 02111-1307 USA." - -#: src/about.c:76 -msgid "translator-credits" -msgstr "" -"Yannig Marchegay (Kokoyaya) \n" -"\n" -"Launchpad Contributions:\n" -" Cédric VALMARY (Tot en òc) https://launchpad.net/~cvalmary\n" -" Yannig MARCHEGAY (Kokoyaya) https://launchpad.net/~yannick-marchegay" - -#: src/about.c:93 -msgid "Display dialog boxes from shell scripts" -msgstr "Aficha de bóstias de dialòg a partir d'escripts shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Validar" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_nullar" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Vos cal indicar un tipe de bóstia de dialòg. Aviar « zenity --help » per mai " -"de detalhs.\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Non" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "Ò_c" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Impossible d'analisar lo messatge\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valor pas valida per una indicacion de tipe boolean.\n" -"Las valors presas en carga son « true » o « false ».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Indicacion pas presa en carga. Ignorada.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nom d'indicacion desconegut. Ignorada.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Impossible d'analisar la comanda eissida de stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificacion de Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Definís lo títol de la bóstia de dialòg" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTOL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Definís l'icòna de la fenèstra" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMIN_DE_LAS_ICÒNAS" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Definís la largor" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGOR" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Definís la nautor" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "NAUTOR" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Definís lo relambi d'expiracion de la bóstia de dialòg en segondas" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "EXPIRACION" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Definís l'etiqueta del boton Validar" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TÈXTE" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Definís l'etiqueta del boton Anullar" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Apond un boton supplementari" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Definís l'indicacion modala" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Definís la fenèstra parenta a la quala s'estacar" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FENÈSTRA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Aficha una bóstia de dialòg calendièr" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Definís lo tèxte de la bóstia de dialòg" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Definís lo jorn del calendièr" - -#: src/option.c:252 -msgid "DAY" -msgstr "JORN" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Definís lo mes del calendièr" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MES" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Definís l'annada del calendièr" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANNADA" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Definís lo format de la data tornada" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODÈL" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Aficha una bóstia de dialòg de picada de tèxte" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Definís lo tèxte de picada" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Amaga lo tèxte de picada" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Aficha una bóstia de dialòg d'error" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Definís l'icòna de la bóstia de dialòg" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOM-DE-L-ICÒNA" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Desactiva lo retorn a la linha" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Desactiva lo balisatge Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Autoriza la troncadura de tèxte dins la bóstia de dialòg. Aquò evita las " -"tròp grandas talhas de fenèstras amb los tèxtes longs" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Aficha una bóstia de dialòg d'informacion" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Aficha una bóstia de dialòg de seleccion de fichièr" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Definís lo nom del fichièr" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOM_DEL_FICHIÈR" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Autoriza la seleccion de mai d'un fichièr" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activa pas que la seleccion dels repertòris" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activa lo mòde de salvament" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Definís lo caractèr separador de sortida" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirma la seleccion del fichièr se lo nom del fichièr existís ja" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Definís un filtre de nom de fichièrs" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOM | MODÈL1 MODÈL2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Aficha una bóstia de dialòg de lista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Definís l'entèsta de la colomna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLOMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utiliza de casas de marcar per la primièra colomna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utiliza de botons ràdio per la primièra colomna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utiliza un imatge per la primièra colomna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Autoriza la seleccion de mai d'una linha" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Autoriza las modificacions del tèxte" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Estampa una colomna especifica (per defaut la primièra, « ALL » pòt èsser " -"utilizat per estampar totas las colomnas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMÈRO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Amaga una colomna precisa" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Amaga las entèstas de colomnas" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Modifica la foncion de recèrca de lista per defaut per fin de recercar de " -"tèxte al mitan, pas al començament" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Aficha una notificacion" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Definís lo tèxte de notificacion" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Escota las comandas eissidas de stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Definís las indicacions de notificacion" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Aficha una bóstia de dialòg de barra de progression" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Definís lo percentatge inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTATGE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Barra de progression discontinua" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Far desaparéisser la fenèstra quand 100 % es estat atench" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Tua lo processus parent se lo boton Anullar es clicat" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Amaga lo boton Anullar" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estima quora la progression va aténher 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Aficha una bóstia de dialòg de question" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Plaça per defaut lo focus sul boton Anullar" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Levar los botons Validar e Anullar" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Aficha una bóstia de dialòg de tèxte d'informacion" - -#: src/option.c:715 -msgid "Open file" -msgstr "Dobrís un fichièr" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Definís la poliça del tèxte" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Activa una casa de marcar « Ai legit e accèpti »" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Activa la presa en carga del HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Permetre las interaccions utilizaires amb la vista WebView. Fonciona " -"unicament amb l'opcion --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Definís un URL al luòc d'un fichier. Fonciona unicament amb l'opcion --html" - -#: src/option.c:761 -msgid "URL" -msgstr "Adreça Internet" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Fa automaticament desfilar lo tèxte fins a la fin. Solament quand lo tèxte " -"es capturat a partir de stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Aficha una bóstia de dialòg d'avertiment" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Aficha una bóstia de dialòg d'escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Definís la valor iniciala" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Definís la valor minimala" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Definís la valor maximala" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Definís lo pas" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Aficha las valors intermediàrias" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Amaga la valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Aficha una bóstia de dialòg de formulari" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Apond una novèla zòna de picada dins la bóstia de dialòg de formulari" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nom del camp" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "" -"Apond una novèla zòna de picada de senhal dins la bóstia de dialòg de " -"formulari" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Apond un calendièr novèl dins la bóstia de dialòg de formulari" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nom del camp calendièr" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Apond una novèla lista dins la bóstia de dialòg de formulari" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Camp de lista e nom d'entèsta" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista de las valors de la lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista de las valors separadas per |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista de las valors per las colomnas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "" -"Apond una novèla bóstia combinada dins la bóstia de dialòg de formulari" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nom del camp de la bóstia combinada" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista de valors per la bóstia combinada" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Aficha las entèstas de las colomnas" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Aficha una bóstia de dialòg de senhal" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Aficha l'opcion del nom d'utilizaire" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Lo títol de la bóstia de dialòg de seleccion de color" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Definir la color" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Visualizar la paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "A prepaus de zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Aficha la version" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opcions generalas" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Aficha las opcions generalas" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcions del calendièr" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Aficha las opcions del calendièr" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcions de picada de tèxte" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Aficha las opcions de picada de tèxte" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcions d'errors" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Aficha las opcions d'errors" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcions d'informacion" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Aficha las opcions d'informacion" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcions de seleccion de fichièrs" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Aficha las opcions de seleccion de fichièrs" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcions de lista" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Aficha las opcions de lista" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcions de l'icòna de notificacion" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Aficha las opcions de l'icòna de notificacion" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcions de barra de progression" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Aficha las opcions de barra de progression" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcions de question" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Aficha las opcions de question" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcions d'avertiment" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Aficha las opcions d'avertiment" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcions de l'escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Aficha las opcions de l'escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opcions del tèxte d'informacion" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Aficha las opcions del tèxte d'informacion" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcions de color de seleccion" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Visualizar las opcions de color de seleccion" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcions de la bóstia de dialòg de senhal" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Aficha las opcions de la bóstia de dialòg de senhal" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcions de la bóstia de dialòg de formulari" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Aficha las opcions de la bóstia de dialòg de formulari" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opcions divèrsas" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Aficha las opcions divèrsas" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Aquesta opcion es pas disponibla. Consultatz --help per totas las " -"utilizacions possiblas.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s es pas pres en carga per aquesta bóstia de dialòg\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Doas opcions de bóstia de dialòg o mai son indicadas\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Picatz vòstre senhal" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Picatz vòstre nom d'utilizaire e vòstre senhal" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nom d'utilizaire :" - -#: src/password.c:110 -msgid "Password:" -msgstr "Senhal :" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Temps restant : %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "La valor maximum deu èsser superiora a la valor minimum.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valor en defòra dels limits.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Pas cap de títol de colomna indicat dins la bóstia de dialòg Lista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Vos caldriá pas utilizar qu'un sol tipe de bóstia de dialòg Lista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Apondètz la valor de l'escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Anullar" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Validar" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vista tèxte" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Seleccionatz dins lo calendièr" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Causissètz una data çaijós." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Calendièr :" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Apondètz una zòna de picada novèla" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Picatz un tèxte novèl :" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Error" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Una error s'es producha." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Bóstia de dialòg de formulari" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Entresenhas" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Totas las mesas a jorn son acabadas." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progression" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "En execucion..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Question" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Sètz segur que volètz contunhar ?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Causissètz d'objèctes dins la lista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Causissètz d'objèctes dins la lista çaijós." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avertiment" diff --git a/po/or.po b/po/or.po deleted file mode 100644 index baa602f..0000000 --- a/po/or.po +++ /dev/null @@ -1,748 +0,0 @@ -# translation of or.po to Oriya -# Oriya translation of zenity.HEAD.pot. -# Copyright (C) 2006, 2008, 2009, Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# $Id: or.po,v 1.2 2006/03/21 17:46:19 gmohanty Exp $ -# -# Gora Mohanty , 2006. -# Manoj Kumar Giri , 2008. -# Manoj Kumar Giri , 2009, 2011. -msgid "" -msgstr "" -"Project-Id-Version: or\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&component=general\n" -"POT-Creation-Date: 2011-01-17 14:20+0000\n" -"PO-Revision-Date: 2011-03-07 16:13+0530\n" -"Last-Translator: Manoj Kumar Giri \n" -"Language-Team: Oriya \n" -"Language: or\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.1\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"\n" - -#: ../src/about.c:64 -#| msgid "" -#| "This program is free software; you can redistribute it and/or modify it " -#| "under the terms of the GNU General Public License as published by the " -#| "Free Software Foundation; either version 2 of the License, or (at your " -#| "option) any later version.\n" -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" - -#: ../src/about.c:68 -#| msgid "" -#| "This program is distributed in the hope that it will be useful, but " -#| "WITHOUT ANY WARRANTY; without even the implied warranty of " -#| "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General " -#| "Public License for more details.\n" -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" - -#: ../src/about.c:72 -#| msgid "" -#| "You should have received a copy of the GNU General Public License along " -#| "with this program; if not, write to the Free Software Foundation, Inc., " -#| "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "Gora Mohanty ମନୋଜ କୁମାର ଗିରି " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "ଆବରଣ ସ୍କ୍ରିପ୍ଟରୁ ସଂଳାପ ବାକ୍ସ ଦେଖାନ୍ତୁ" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"ଆପଣଙ୍କୁ ଗୋଟିଏ ସଂଳାପ ପ୍ରକାର ଉଲ୍ଲେଖିତ କରିବାକୁ ପଡ଼ିବ. ବିସ୍ତୃତ ବିବରଣୀ ପାଇଁ 'zenity --help' " -"ଦେଖନ୍ତୁ\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "ସାଧାରଣ ନିବେଶ ଧାରାରୁ ନିର୍ଦ୍ଦେଶ ବିଶ୍ଲେଷିତ କରିହେଲା ନାହିଁ\n" - -#: ../src/notification.c:122 -#, c-format -#| msgid "could not parse command from stdin\n" -msgid "Could not parse message from stdin\n" -msgstr "stdin ରୁ ସନ୍ଦେଶକୁ ବିଶ୍ଲେଷିତ କରିହେଲା ନାହିଁ\n" - -#: ../src/notification.c:196 -msgid "Zenity notification" -msgstr "Zenity ବିଜ୍ଞପ୍ତି" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତକୁ ଲେଖନ୍ତୁ" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "ଚାଳକ ନାମ:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ସର୍ବାଧିକ ମୂଲ୍ଯ ସର୍ବନିମ୍ନ ମୂଲ୍ଯଠାରୁ ବଡ଼ ହେବା ଉଚିତ।\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "ମୂଲ୍ଯ ପରିସର ବାହାରେ.\n" - -#: ../src/tree.c:321 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "ତାଲିକା ସଂଳାପ ପାଇଁ କୌଣସି ସ୍ତମ୍ଭ ଶୀର୍ଷକ ଉଲ୍ଲେଖିତ ହୋଇନାହିଁ.\n" - -#: ../src/tree.c:327 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ଆପଣ କେବଳ ଗୋଟିଏ ପ୍ରକାରର ତାଲିକା ସଂଳାପ ବ୍ଯବହାର କରିବା ଉଚିତ.\n" - -#: ../src/zenity.ui.h:1 -msgid "Forms dialog" -msgstr "ସଂଳାପ ନିର୍ମାଣ କରିଥାଏ" - -#: ../src/zenity.ui.h:2 -msgid "Add a new entry" -msgstr "ନୂଆ ଭରଣ ଯୋଗ କରନ୍ତୁ" - -#: ../src/zenity.ui.h:3 -msgid "Adjust the scale value" -msgstr "ମେଳା ମୂଲ୍ଯ ବଦଳାନ୍ତୁ" - -#: ../src/zenity.ui.h:4 -msgid "All updates are complete." -msgstr "ସବୁ ଅଦ୍ଯତନ ସମାପ୍ତ" - -#: ../src/zenity.ui.h:5 -msgid "An error has occurred." -msgstr "ଗୋଟିଏ ତ୍ରୁଟି ହେଲା." - -#: ../src/zenity.ui.h:6 -msgid "Are you sure you want to proceed?" -msgstr "ଆପଣ ନିଶ୍ଚିତ ଭାବରେ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହାନ୍ତି କି?" - -#: ../src/zenity.ui.h:7 -msgid "C_alendar:" -msgstr "କାଲେଣ୍ଡର (_a)" - -#: ../src/zenity.ui.h:8 -msgid "Calendar selection" -msgstr "କାଲେଣ୍ଡର ବଛା" - -#: ../src/zenity.ui.h:9 -msgid "Error" -msgstr "ତ୍ରୁଟି" - -#: ../src/zenity.ui.h:10 -msgid "Information" -msgstr "ସୂଚନା" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "ପ୍ରଗତି" - -#: ../src/zenity.ui.h:12 -msgid "Question" -msgstr "ପ୍ରଶ୍ନ" - -#: ../src/zenity.ui.h:13 -msgid "Running..." -msgstr "ଚାଲୁଛି..." - -#: ../src/zenity.ui.h:14 -msgid "Select a date from below." -msgstr "ତଳୁ ଗୋଟିଏ ତାରିଖ ବାଛନ୍ତୁ." - -#: ../src/zenity.ui.h:15 -msgid "Select items from the list" -msgstr "ତାଲିକାରୁ ବସ୍ତୁଗୁଡ଼ିକ ବାଛନ୍ତୁ" - -#: ../src/zenity.ui.h:16 -msgid "Select items from the list below." -msgstr "ତଳ ତାଲିକାରୁ ବସ୍ତୁଗୁଡ଼ିକ ବାଛନ୍ତୁ." - -#: ../src/zenity.ui.h:17 -msgid "Text View" -msgstr "ଫାଠ୍ଯ ଦୃଶ୍ଯ" - -#: ../src/zenity.ui.h:18 -msgid "Warning" -msgstr "ଚେତାବନୀ" - -#: ../src/zenity.ui.h:19 -msgid "_Enter new text:" -msgstr "ନୂଆ ପାଠ୍ଯ ଭର୍ତ୍ତି କରନ୍ତୁ (_E)" - -#: ../src/option.c:144 -msgid "Set the dialog title" -msgstr "ସଂଳାପ ଶୀର୍ଷକ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:145 -msgid "TITLE" -msgstr "ଶୀର୍ଷକ" - -#: ../src/option.c:153 -msgid "Set the window icon" -msgstr "ୱିଣ୍ଡୋ ଚିତ୍ରସଙ୍କେତ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:154 -msgid "ICONPATH" -msgstr "ଚିତ୍ରସଙ୍କେତ ପଥ" - -#: ../src/option.c:162 -msgid "Set the width" -msgstr "ଓସାର ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:163 -msgid "WIDTH" -msgstr "ଓସାର" - -#: ../src/option.c:171 -msgid "Set the height" -msgstr "ଉଚ୍ଚତା ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:172 -msgid "HEIGHT" -msgstr "ଉଚ୍ଚତା" - -#: ../src/option.c:180 -msgid "Set dialog timeout in seconds" -msgstr "ସଂଳାପ ସମୟ ସମାପ୍ତିକୁ ସେକଣ୍ଡରେ ସଜାଡନ୍ତୁ" - -#. Timeout for closing the dialog -#: ../src/option.c:182 -msgid "TIMEOUT" -msgstr "ସମୟ ସମାପ୍ତ" - -#: ../src/option.c:196 -msgid "Display calendar dialog" -msgstr "କାଲେଣ୍ଡର ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:205 ../src/option.c:265 ../src/option.c:308 -#: ../src/option.c:341 ../src/option.c:453 ../src/option.c:595 -#: ../src/option.c:667 ../src/option.c:760 ../src/option.c:793 -#: ../src/option.c:898 -msgid "Set the dialog text" -msgstr "ସଂଳାପ ପାଠ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:206 ../src/option.c:266 ../src/option.c:275 -#: ../src/option.c:309 ../src/option.c:342 ../src/option.c:454 -#: ../src/option.c:561 ../src/option.c:596 ../src/option.c:668 -#: ../src/option.c:677 ../src/option.c:686 ../src/option.c:737 -#: ../src/option.c:761 ../src/option.c:794 ../src/option.c:899 -msgid "TEXT" -msgstr "ପାଠ୍ୟ" - -#: ../src/option.c:214 -msgid "Set the calendar day" -msgstr "କାଲେଣ୍ଡର ଦିନ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:215 -msgid "DAY" -msgstr "ଦିନ" - -#: ../src/option.c:223 -msgid "Set the calendar month" -msgstr "କାଲେଣ୍ଡର ମାସ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:224 -msgid "MONTH" -msgstr "ମାସ" - -#: ../src/option.c:232 -msgid "Set the calendar year" -msgstr "କାଲେଣ୍ଡର ବର୍ଷ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:233 -msgid "YEAR" -msgstr "ବର୍ଷ" - -#: ../src/option.c:241 ../src/option.c:916 -msgid "Set the format for the returned date" -msgstr "ଫେରସ୍ତ ତାରିଖ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:242 ../src/option.c:917 -msgid "PATTERN" -msgstr "ନମୁନା" - -#: ../src/option.c:256 -msgid "Display text entry dialog" -msgstr "ପାଠ୍ଯ ଭରଣ ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:274 -msgid "Set the entry text" -msgstr "ଭରଣ ପାଠ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:283 -msgid "Hide the entry text" -msgstr "ଭରଣ ପାଠ୍ଯ ଲୁଚାନ୍ତୁ" - -#: ../src/option.c:299 -msgid "Display error dialog" -msgstr "ତ୍ରୁଟି ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:317 ../src/option.c:350 ../src/option.c:694 -#: ../src/option.c:769 -msgid "Do not enable text wrapping" -msgstr "ପାଠ୍ଯଭଙ୍ଗ ସକ୍ରିୟ କରନ୍ତୁ ନାହିଁ" - -#: ../src/option.c:332 -msgid "Display info dialog" -msgstr "ସୂଚନା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:365 -msgid "Display file selection dialog" -msgstr "ଫାଇଲ ବଛା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:374 -msgid "Set the filename" -msgstr "ଫାଇଲନାମ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:375 ../src/option.c:719 -msgid "FILENAME" -msgstr "ଫାଇଲନାମ" - -#: ../src/option.c:383 -msgid "Allow multiple files to be selected" -msgstr "ଏକାଧିକ ଫାଇଲ ବାଛିବାର ଅନୁମତି ଦିଅନ୍ତୁ" - -#: ../src/option.c:392 -msgid "Activate directory-only selection" -msgstr "କେବଳ-ଡିରେକ୍ଟୋରି ବଛା ସକ୍ରିୟ କରନ୍ତୁ" - -#: ../src/option.c:401 -msgid "Activate save mode" -msgstr "ସଂରକ୍ଷଣ ଧାରା ସକ୍ରିୟ କରନ୍ତୁ" - -#: ../src/option.c:410 ../src/option.c:489 ../src/option.c:907 -msgid "Set output separator character" -msgstr "ନିର୍ଗମ ବିଭାଜକ ଅକ୍ଷର ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:411 ../src/option.c:490 ../src/option.c:908 -msgid "SEPARATOR" -msgstr "ବିଭାଜକ" - -#: ../src/option.c:419 -msgid "Confirm file selection if filename already exists" -msgstr "ଫାଇଲ ଚୟନ ସୁନିଶ୍ଚିତ କରନ୍ତୁ ଯଦି ଫାଇଲନାମ ପୂର୍ବରୁ ଅବସ୍ଥିତ ଅଛି" - -#: ../src/option.c:428 -msgid "Sets a filename filter" -msgstr "ଫାଇଲନାମ ଛାଣକକୁ ସଜାଡନ୍ତୁ" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:430 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:444 -msgid "Display list dialog" -msgstr "ତାଲିକା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:462 -msgid "Set the column header" -msgstr "ସ୍ତମ୍ଭ ଶୀର୍ଷକ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:463 -msgid "COLUMN" -msgstr "ସ୍ତମ୍ଭ" - -#: ../src/option.c:471 -msgid "Use check boxes for first column" -msgstr "ପ୍ରଥମ ସ୍ତମ୍ଭ ପାଇଁ ତନଖି ବାକ୍ସ ବ୍ଯବହାର କରନ୍ତୁ" - -#: ../src/option.c:480 -msgid "Use radio buttons for first column" -msgstr "ପ୍ରଥମ ସ୍ତମ୍ଭ ପାଇଁ ରେଡିଓ ଚାବି ବ୍ଯବହାର କରନ୍ତୁ" - -#: ../src/option.c:498 -msgid "Allow multiple rows to be selected" -msgstr "ଏକାଧିକ ଧାଡ଼ି ବାଛିବାର ଅନୁମତି ଦିଅନ୍ତୁ" - -#: ../src/option.c:507 ../src/option.c:727 -msgid "Allow changes to text" -msgstr "ପାଠ୍ଯ ପରିବର୍ତ୍ତନ ପାଇଁ ଅନୁମତି ଦିଅନ୍ତୁ" - -#: ../src/option.c:516 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"ଗୋଟିଏ ନିର୍ଦ୍ଦିଷ୍ଟ ସ୍ତମ୍ଭ ମୁଦ୍ରଣ କରନ୍ତୁ (ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଲ୍ଯ ୧), ସବୁ ସ୍ତମ୍ଭ ମୁଦ୍ରଣ କରିବା ପାଇଁ 'ALL' " -"ବ୍ଯବହାର କରିହେବ)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:518 ../src/option.c:527 -msgid "NUMBER" -msgstr "ସଂଖ୍ୟା" - -#: ../src/option.c:526 -msgid "Hide a specific column" -msgstr "ଗୋଟିଏ ନିର୍ଦ୍ଦିଷ୍ଟ ସ୍ତମ୍ଭ ଲୁଚାନ୍ତୁ" - -#: ../src/option.c:535 -#| msgid "Set the column header" -msgid "Hides the column headers" -msgstr "ସ୍ତମ୍ଭ ଶୀର୍ଷକମାନଙ୍କୁ ଲୁଚାନ୍ତୁ" - -#: ../src/option.c:551 -msgid "Display notification" -msgstr "ବିଜ୍ଞପ୍ତି ଦେଖାନ୍ତୁ" - -#: ../src/option.c:560 -msgid "Set the notification text" -msgstr "ବିଜ୍ଞପ୍ତି ପାଠ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:569 -msgid "Listen for commands on stdin" -msgstr "ସାଧାରଣ ନିବେଶ ଧାରାରେ ନିର୍ଦ୍ଦେଶ ପାଇଁ ଜଗନ୍ତୁ" - -#: ../src/option.c:586 -msgid "Display progress indication dialog" -msgstr "ପ୍ରଗତି ସୂଚନା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:604 -msgid "Set initial percentage" -msgstr "ପ୍ରାରମ୍ଭିକ ପ୍ରତିଶତ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:605 -msgid "PERCENTAGE" -msgstr "ପ୍ରତିଶତ" - -#: ../src/option.c:613 -msgid "Pulsate progress bar" -msgstr "ପ୍ରଗତି ଦଣ୍ଡ ସ୍ପନ୍ଦିତ କରନ୍ତୁ" - -#: ../src/option.c:623 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "୧୦୦ ପ୍ରତିଶତ ପହଞ୍ଚିଲେ ସଂଳାପଠାରୁ ବିଦାୟ ନିଅନ୍ତୁ" - -#: ../src/option.c:633 -#, no-c-format -#| msgid "Kill parent process if cancel button is pressed" -msgid "Kill parent process if Cancel button is pressed" -msgstr "ଯଦି ବାତିଲ କରନ୍ତୁ ବଟନ ଦବାଯାଇଛି ତେବେ ପ୍ରଧାନ କ୍ରିୟାକୁ ବନ୍ଦକରନ୍ତୁ " - -#: ../src/option.c:643 -#, no-c-format -msgid "Hide Cancel button" -msgstr "ବାତିଲ କରନ୍ତୁ ବଟନକୁ ଲୁଚାନ୍ତୁ" - -#: ../src/option.c:658 -msgid "Display question dialog" -msgstr "ପ୍ରଶ୍ନ ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:676 -msgid "Sets the label of the Ok button" -msgstr "ଠିକଅଛି ବଟନର ନାମପଟିକୁ ସଜାଡନ୍ତୁ" - -#: ../src/option.c:685 -msgid "Sets the label of the Cancel button" -msgstr "ବାତିଲ କରନ୍ତୁ ବଟନର ନାମପଟିକୁ ସଜାଡନ୍ତୁ" - -#: ../src/option.c:709 -msgid "Display text information dialog" -msgstr "ପାଠ୍ଯ ସୂଚନା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:718 -msgid "Open file" -msgstr "ଫାଇଲ ଖୋଲନ୍ତୁ" - -#: ../src/option.c:736 -#| msgid "Set the entry text" -msgid "Set the text font" -msgstr "ପାଠ୍ଯ ଅକ୍ଷରରୂପକୁ ସେଟ କରନ୍ତୁ" - -#: ../src/option.c:751 -msgid "Display warning dialog" -msgstr "ଚେତାବନୀ ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:784 -msgid "Display scale dialog" -msgstr "ମେଳେଇବା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:802 -msgid "Set initial value" -msgstr "ପ୍ରାରମ୍ଭିକ ମୂଲ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:803 ../src/option.c:812 ../src/option.c:821 -#: ../src/option.c:830 ../src/option.c:965 -msgid "VALUE" -msgstr "ମୁଲ୍ୟ" - -#: ../src/option.c:811 -msgid "Set minimum value" -msgstr "ସର୍ବନିମ୍ନ ମୂଲ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:820 -msgid "Set maximum value" -msgstr "ସର୍ବାଧିକ ମୂଲ୍ଯ ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:829 -msgid "Set step size" -msgstr "ପାଦ ଆକାର ବିନ୍ଯାସ କରନ୍ତୁ" - -#: ../src/option.c:838 -msgid "Print partial values" -msgstr "ଆଂଶିକ ମୂଲ୍ଯ ମୁଦ୍ରଣ କରନ୍ତୁ" - -#: ../src/option.c:847 -msgid "Hide value" -msgstr "ମୂଲ୍ଯ ଲୁଚାନ୍ତୁ" - -#: ../src/option.c:862 -#| msgid "Display info dialog" -msgid "Display forms dialog" -msgstr "ଫର୍ମ ସଂଳାପକୁ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:871 -#| msgid "Add a new entry" -msgid "Add a new Entry in forms dialog" -msgstr "ଫର୍ମ ସଂଳାପରେ ଗୋଟିଏ ନୂଆ ଭରଣକୁ ଯୋଗ କରନ୍ତୁ" - -#: ../src/option.c:872 ../src/option.c:881 -msgid "Field name" -msgstr "କ୍ଷେତ୍ର ନାମ" - -#: ../src/option.c:880 -msgid "Add a new Password Entry in forms dialog" -msgstr "ଫର୍ମ ସଂଳାପରେ ଗୋଟିଏ ନୂଆ ପ୍ରବେଶ ସଂକେତକୁ ଯୋଗ କରନ୍ତୁ" - -#: ../src/option.c:889 -msgid "Add a new Calendar in forms dialog" -msgstr "ଫର୍ମ ସଂଳାପରେ ଗୋଟିଏ ନୂଆ କ୍ୟାଲେଣ୍ଡରକୁ ଯୋଗ କରନ୍ତୁ" - -#: ../src/option.c:890 -#| msgid "Calendar selection" -msgid "Calendar field name" -msgstr "କାଲେଣ୍ଡର କ୍ଷେତ୍ର ନାମ" - -#: ../src/option.c:931 -#| msgid "Display error dialog" -msgid "Display password dialog" -msgstr "ପ୍ରବେଶ ସଂକେତ ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:940 -#| msgid "Display text entry dialog" -msgid "Display the username option" -msgstr "ଚାଳକନାମ ବିକଳ୍ପକୁ ଦର୍ଶାନ୍ତୁ" - -#: ../src/option.c:955 -#| msgid "Display file selection dialog" -msgid "Display color selection dialog" -msgstr "ରଙ୍ଗ ବଛା ସଂଳାପ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:964 -#| msgid "Set the column header" -msgid "Set the color" -msgstr "ରଙ୍ଗ ସେଟ କରନ୍ତୁ" - -#: ../src/option.c:973 -#| msgid "Set the dialog title" -msgid "Show the palette" -msgstr "ରଙ୍ଗପଟି ଦର୍ଶାନ୍ତୁ" - -#: ../src/option.c:988 -msgid "About zenity" -msgstr "zenity ବିଷୟରେ" - -#: ../src/option.c:997 -msgid "Print version" -msgstr "ସଂସକରଣ ମୁଦ୍ରଣ" - -#: ../src/option.c:1813 -msgid "General options" -msgstr "ସାଧାରଣ ପସନ୍ଦ" - -#: ../src/option.c:1814 -msgid "Show general options" -msgstr "ସାଧାରଣ ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1824 -msgid "Calendar options" -msgstr "କାଲେଣ୍ଡର ପସନ୍ଦ" - -#: ../src/option.c:1825 -msgid "Show calendar options" -msgstr "କାଲେଣ୍ଡର ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1835 -msgid "Text entry options" -msgstr "ପାଠ୍ଯ ଭରଣ ପସନ୍ଦ" - -#: ../src/option.c:1836 -msgid "Show text entry options" -msgstr "ପାଠ୍ଯ ଭରଣ ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1846 -msgid "Error options" -msgstr "ତ୍ରୁଟି ପସନ୍ଦ" - -#: ../src/option.c:1847 -msgid "Show error options" -msgstr "ତ୍ରୁଟି ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1857 -msgid "Info options" -msgstr "ସୂଚନା ପସନ୍ଦ" - -#: ../src/option.c:1858 -msgid "Show info options" -msgstr "ସୂଚନା ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1868 -msgid "File selection options" -msgstr "ଫାଇଲ ବଛା ପସନ୍ଦ" - -#: ../src/option.c:1869 -msgid "Show file selection options" -msgstr "ଫାଇଲ ବଛା ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1879 -msgid "List options" -msgstr "ତାଲିକା ପସନ୍ଦ" - -#: ../src/option.c:1880 -msgid "Show list options" -msgstr "ତାଲିକା ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1891 -msgid "Notification icon options" -msgstr "ବିଜ୍ଞପ୍ତି ଚିତ୍ରସଙ୍କେତ ପସନ୍ଦ" - -#: ../src/option.c:1892 -msgid "Show notification icon options" -msgstr "ବିଜ୍ଞପ୍ତି ଚିତ୍ରସଙ୍କେତ ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1903 -msgid "Progress options" -msgstr "ପ୍ରଗତି ପସନ୍ଦ" - -#: ../src/option.c:1904 -msgid "Show progress options" -msgstr "ପ୍ରଗତି ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1914 -msgid "Question options" -msgstr "ପ୍ରଶ୍ନ ପସନ୍ଦ" - -#: ../src/option.c:1915 -msgid "Show question options" -msgstr "ପ୍ରଶ୍ନ ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1925 -msgid "Warning options" -msgstr "ଚେତାବନୀ ପସନ୍ଦ" - -#: ../src/option.c:1926 -msgid "Show warning options" -msgstr "ଚେତାବନୀ ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1936 -msgid "Scale options" -msgstr "ମେଳାଇବା ପସନ୍ଦ" - -#: ../src/option.c:1937 -msgid "Show scale options" -msgstr "ମେଳାଇବା ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1947 -msgid "Text information options" -msgstr "ପାଠ୍ଯ ସୂଚନା ପସନ୍ଦ" - -#: ../src/option.c:1948 -msgid "Show text information options" -msgstr "ପାଠ୍ଯ ସୂଚନା ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:1958 -#| msgid "File selection options" -msgid "Color selection options" -msgstr "ରଙ୍ଗ ଚୟନ ବିକଳ୍ପଗୁଡ଼ିକ" - -#: ../src/option.c:1959 -#| msgid "Show file selection options" -msgid "Show color selection options" -msgstr "ରଙ୍ଗ ଚୟନ ବିକଳ୍ପଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" - -#: ../src/option.c:1969 -#| msgid "Warning options" -msgid "Password dialog options" -msgstr "ପ୍ରବେଶ ସଂକେତ ସଂଳାପ ବିକଳ୍ପଗୁଡ଼ିକ" - -#: ../src/option.c:1970 -#| msgid "Show warning options" -msgid "Show password dialog options" -msgstr "ପ୍ରବେଶ ସଂକେତ ସଂଳାପ ବିକଳ୍ପଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" - -#: ../src/option.c:1980 -#| msgid "Show info options" -msgid "Forms dialog options" -msgstr "ସଂଳାପ ବିକଳ୍ପଗୁଡ଼ିକୁ ଗଠନ କରିଥାଏ" - -#: ../src/option.c:1981 -#| msgid "Show scale options" -msgid "Show forms dialog options" -msgstr "ଫର୍ମ ସଂଳାପ ବିକଳ୍ପଗୁଡ଼ିକୁ ଦର୍ଶାନ୍ତୁ" - -#: ../src/option.c:1991 -msgid "Miscellaneous options" -msgstr "ବିଭିନ୍ନ ପ୍ରକାରର ପସନ୍ଦ" - -#: ../src/option.c:1992 -msgid "Show miscellaneous options" -msgstr "ବିଭିନ୍ନ ପ୍ରକାରର ପସନ୍ଦ ଦେଖାନ୍ତୁ" - -#: ../src/option.c:2017 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "ଏହି ପସନ୍ଦଟି ଉପଲବ୍ଧ ନୁହେଁ. ସମ୍ଭବ ବ୍ଯବହାର ବିଧି ପାଇଁ --help ଦେଖନ୍ତୁ.\n" - -#: ../src/option.c:2021 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "ଏହି ସଂଳାପ ପାଇଁ --%s ସହାୟକ ନୁହେଁ\n" - -#: ../src/option.c:2025 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "ଦୁଇଟି ବା ଅଧିକ ସଂଳାପ ପସନ୍ଦ ଉଲ୍ଲେଖିତ ହୋଇଛି\n" - -#~ msgid "Select a file" -#~ msgstr "ଗୋଟିଏ ଫାଇଲ ବାଛନ୍ତୁ." diff --git a/po/pa.po b/po/pa.po deleted file mode 100644 index 7e1ae35..0000000 --- a/po/pa.po +++ /dev/null @@ -1,789 +0,0 @@ -# translation of zenity.HEAD.po to Punjabi -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -# -# Amanpreet Singh Alam , 2004, 2005. -# A S Alam , 2005, 2006 2007, 2009, 2010, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-09-25 23:45+0000\n" -"PO-Revision-Date: 2012-09-26 06:55+0530\n" -"Last-Translator: A S Alam \n" -"Language-Team: Punjabi/Panjabi \n" -"Language: pa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"\n" -"\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"ਇਹ ਪ੍ਰੋਗਰਾਮ ਇੱਕ ਮੁਫਤ ਸਾਫਟਵੇਅਰ ਹੈ, ਜਿਸ ਨੂੰ ਤੁਸੀਂ ਗਨੂ ਲੈਸਰ ਜਰਨਲ ਪਬਲਿਕ " -"ਲਾਈਸੈਂਸ,ਜਿਸ ਨੂੰ ਫਰੀ " -"ਸਾਫਟਵੇਅਰ ਫਾਊਨਡੇਸ਼ਨ ਨੇ ਤਿਆਰ ਕੀਤਾ ਹੈ, ਦੇ ਵਰਜਨ ੨ ਜਾਂ ਨਵੇਂ ਦੀਆਂਸ਼ਰਤਾਂ (ਉਹ ਤੁਹਾਡੀ " -"ਆਪਣੀ ਮਰਜ਼ੀ ਹੈ) " -"ਅਧੀਨ ਵੰਡ ਅਤੇ/ਜਾਂ ਸੋਧ ਸਕਦੇ ਹੋ।\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"ਇਹ ਪ੍ਰੋਗਰਾਮ ਨੂੰ ਇਹ ਮੰਨ ਕੇ ਵੰਡਿਆ ਜਾ ਰਿਹਾ ਹੈ ਕਿ ਇਹ ਫਾਇਦੇਮੰਦ ਰਹੇਗਾ,ਪਰ ਇਸ ਦੀ ਕੋਈ " -"ਵਾਰੰਟੀ ਨਹੀਂ " -"ਲਈ ਜਾ ਰਹੀ ਹੈ, ਕਿਸੇ ਖਾਸ ਕੰਮ ਲਈ ਅਨੁਕੂਲ ਹੋਣ ਜਾਂ ਠੀਕ ਤਰ੍ਹਾਂ ਕੰਮ ਕਰਨ ਦੀ ਵੀ ਕੋਈ " -"ਗਾਰੰਟੀ ਨਹੀਂ ਹੈ। " -"ਹੋਰ ਵੇਰਵੇ ਲਈ ਗਨੂ ਲੈਸਰ ਜਰਨਲ ਪਬਲਿਕ ਲਾਇਸੈਂਸ ਨੂੰ ਪੜ੍ਹੋ।\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"ਇਹ ਪ੍ਰੋਗਰਾਮ ਨਾਲ ਤੁਸੀਂ ਗਨੂ ਲੈਸਰ ਜਰਨਲ ਪਬਲਿਕ ਲਾਇਸੈਂਸ ਦੀ ਨਕਲ ਪ੍ਰਾਪਤ ਕਰੋਗੇ, ਜੇਕਰ " -"ਤੁਹਾਨੂੰਨਹੀਂ ਮਿਲੀ " -"ਹੈ ਤਾਂ ਫਰੀ ਸਾਫਟਵੇਅਰ ਫਾਊਨਡੇਸ਼ਨ, ੫੧ ਫਰਾਕਲਿੰਨ ਸਟਰੀਟ, ਪੰਜਵੀਂ ਮੰਜ਼ਲ,ਬੋਸਟਨ, ਐਮ ਏ " -"੦੨੧੧੦-੧੩੦੧, " -"ਅਮਰੀਕਾ ਨੂੰ ਲਿਖੋ।" - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"ਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ\n" -"Punjabi Open Source Team\n" -"http://www.satluj.com" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "ਸੈੱਲ ਸਕ੍ਰਿਪਟ ਲਈ ਡਾਈਲਾਗ ਬਕਸਾ ਵੇਖਾਓ" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "ਤੁਹਾਨੂੰ ਡਾਈਲਾਗ ਦੀ ਕਿਸਮ ਦੇਣੀ ਪਵੇਗੀ, ਜ਼ੈਂਟੀ ਮੱਦਦ ਵੇਖੋ ਜੀ\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin ਤੋਂ ਕਮਾਂਡ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin ਤੋਂ ਸੁਨੇਹੇ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "ਜੈਂਟੀ ਸੂਚਨਾ" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "ਆਪਣਾ ਪਾਸਵਰਡ ਵਰਤ ਕੇ ਵੇਖੋ" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "ਯੂਜ਼ਰ ਨਾਂ:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "ਪਾਸਵਰਡ:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਮੁੱਲ ਘੱਟ ਤੋਂ ਘੱਟ ਮੁੱਲ ਤੋਂ ਵੱਧ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "ਮੁੱਲ ਸੀਮਾ ਤੋਂ ਵੱਧ ਹੈ।\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "ਲਿਸਟ ਡਾਈਲਾਗ ਲਈ ਕੋਈ ਕਾਲਮ ਟਾਈਟਲ ਨਹੀਂ ਦਿੱਤਾ ਗਿਆ।\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ਤੁਹਾਨੂੰ ਇੱਕ ਲਿਸਟ ਡਾਈਲਾਗ ਕਿਸਮ ਹੀ ਵਰਤਣੀ ਚਾਹੀਦੀ ਹੈ।\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "ਕੈਲੰਡਰ ਦੀ ਚੋਣ" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "ਹੇਠਲੀ ਸੂਚੀ ਵਿੱਚੋ ਤਰੀਕ ਚੁਣੋ।" - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "ਕੈਲੰਡਰ(_a):" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "ਨਵੀਂ ਐਂਟਰੀ ਦਿਓ" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "ਨਵਾਂ ਟੈਕਸਟ ਲਿਖੋ(_E):" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "ਗਲਤੀ" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "ਇਕ ਗਲਤੀ ਆਈ ਹੈ।" - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "ਜਾਣਕਾਰੀ" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "ਸਭ ਅੱਪਡੇਟ ਮੁਕੰਮਲ ਹੋ ਗਏ ਹਨ।" - -# libgnomeui/gnome-app-util.c:685 -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "ਤਰੱਕੀ" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "ਚੱਲ ਰਿਹਾ ਹੈ.." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "ਸਵਾਲ" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "ਕੀ ਤੁਸੀ ਅੱਗੇ ਚੱਲਣਾ ਲਈ ਸਹਿਮਤ ਹੋ?" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "ਸਕੇਲ ਮੁੱਲ ਠੀਕ ਕਰੋ" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "ਟੈਕਸਟ ਝਲਕ" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "ਲਿਸਟ ਵਿਚੋਂ ਇਕਾਈਆਂ ਚੁਣੋ" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "ਹੇਠਲੀ ਲਿਸਟ ਵਿਚੋਂ ਇਕਾਈਆਂ ਚੁਣੋ।" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "ਚੇਤਾਵਨੀ" - -#: ../src/option.c:157 -msgid "Set the dialog title" -msgstr "ਡਾਈਲਾਗ ਟਾਈਟਲ ਦਿਓ" - -#: ../src/option.c:158 -msgid "TITLE" -msgstr "ਟਾਈਟਲ" - -#: ../src/option.c:166 -msgid "Set the window icon" -msgstr "ਵਿੰਡੋ ਆਈਕਾਨ ਸੈੱਟ ਕਰੋ" - -#: ../src/option.c:167 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:175 -msgid "Set the width" -msgstr "ਚੌਡ਼ਾਈ ਦਿਉ" - -#: ../src/option.c:176 -msgid "WIDTH" -msgstr "ਚੌਡ਼ਾਈ" - -#: ../src/option.c:184 -msgid "Set the height" -msgstr "ਉਚਾਈ ਦਿਉ" - -#: ../src/option.c:185 -msgid "HEIGHT" -msgstr "ਲੰਬਾਈ" - -#: ../src/option.c:193 -msgid "Set dialog timeout in seconds" -msgstr "ਸਕਿੰਟਾਂ ਵਿੱਚ ਡਾਈਲਾਗ ਟਾਈਮ-ਆਉਟ ਸੈੱਟ ਕਰੋ" - -#. Timeout for closing the dialog -#: ../src/option.c:195 -msgid "TIMEOUT" -msgstr "ਟਾਈਮ-ਆਉਟ" - -#: ../src/option.c:203 -msgid "Sets the label of the Ok button" -msgstr "ਠੀਕ ਹੈ ਬਟਨ ਦਾ ਲੇਬਲ ਸੈੱਟ ਕਰੋ" - -#: ../src/option.c:204 ../src/option.c:213 ../src/option.c:246 -#: ../src/option.c:306 ../src/option.c:315 ../src/option.c:349 -#: ../src/option.c:399 ../src/option.c:528 ../src/option.c:644 -#: ../src/option.c:679 ../src/option.c:751 ../src/option.c:819 -#: ../src/option.c:828 ../src/option.c:872 ../src/option.c:922 -#: ../src/option.c:1073 -msgid "TEXT" -msgstr "ਟੈਕਸਟ" - -#: ../src/option.c:212 -msgid "Sets the label of the Cancel button" -msgstr "ਰੱਦ ਕਰੋ ਬਟਨ ਦਾ ਲੇਬਲ ਸੈੱਟ ਕਰੋ" - -#: ../src/option.c:221 -#| msgid "Set the dialog title" -msgid "Set the modal hint" -msgstr "ਮਾਡਲ ਹਿੰਟ ਦਿਓ" - -#: ../src/option.c:236 -msgid "Display calendar dialog" -msgstr "ਕੈਲੰਡਰ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:245 ../src/option.c:305 ../src/option.c:348 -#: ../src/option.c:398 ../src/option.c:527 ../src/option.c:678 -#: ../src/option.c:750 ../src/option.c:871 ../src/option.c:921 -#: ../src/option.c:1072 -msgid "Set the dialog text" -msgstr "ਡਾਈਲਾਗ ਟੈਕਸਟ ਦਿਓ" - -#: ../src/option.c:254 -msgid "Set the calendar day" -msgstr "ਕੈਲੰਡਰ ਦਿਨ ਦਿਉ" - -#: ../src/option.c:255 -msgid "DAY" -msgstr "ਦਿਨ" - -#: ../src/option.c:263 -msgid "Set the calendar month" -msgstr "ਕੈਲੰਡਰ ਮਹੀਨਾ ਦਿਉ" - -#: ../src/option.c:264 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:272 -msgid "Set the calendar year" -msgstr "ਕੈਲੰਡਰ ਸਾਲ ਦਿਉ" - -#: ../src/option.c:273 -msgid "YEAR" -msgstr "ਸਾਲ" - -#: ../src/option.c:281 ../src/option.c:1090 -msgid "Set the format for the returned date" -msgstr "ਵਾਪਸੀ ਮਿਤੀ ਲਈ ਫਾਰਮੈਟ ਦਿਓ" - -#: ../src/option.c:282 ../src/option.c:1091 -msgid "PATTERN" -msgstr "ਪੈਟਰਨ" - -#: ../src/option.c:296 -msgid "Display text entry dialog" -msgstr "ਟੈਕਸਟ ਐਂਟਰੀ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:314 -msgid "Set the entry text" -msgstr "ਐਂਟਰੀ ਟੈਕਸਟ ਦਿਓ" - -#: ../src/option.c:323 -msgid "Hide the entry text" -msgstr "ਐਂਟਰੀ ਟੈਕਸਟ ਉਹਲੇ ਕਰੋ" - -#: ../src/option.c:339 -msgid "Display error dialog" -msgstr "ਗਲਤੀ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:357 ../src/option.c:407 ../src/option.c:759 -#: ../src/option.c:880 -#| msgid "Set the dialog title" -msgid "Set the dialog icon" -msgstr "ਡਾਈਲਾਗ ਆਈਕਾਨ ਦਿਓ" - -#: ../src/option.c:358 ../src/option.c:408 ../src/option.c:760 -#: ../src/option.c:881 -msgid "ICON-NAME" -msgstr "ਆਈਕਾਨ ਨਾਂ" - -#: ../src/option.c:366 ../src/option.c:416 ../src/option.c:768 -#: ../src/option.c:889 -msgid "Do not enable text wrapping" -msgstr "ਟੈਕਸਟ ਸਮੇਟਣਾ ਯੋਗ ਨਾ ਕਰੋ" - -#: ../src/option.c:375 ../src/option.c:425 ../src/option.c:777 -#: ../src/option.c:898 -msgid "Do not enable pango markup" -msgstr "ਪੈਂਗੋ ਮਾਰਕਅੱਪ ਚਾਲੂ ਨਾ ਕਰੋ" - -#: ../src/option.c:389 -msgid "Display info dialog" -msgstr "ਸੂਚਨਾ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:439 -msgid "Display file selection dialog" -msgstr "ਫਾਇਲ ਚੋਣ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:448 -msgid "Set the filename" -msgstr "ਫਾਇਲ ਨਾਂ ਦਿਉ" - -#: ../src/option.c:449 ../src/option.c:801 -msgid "FILENAME" -msgstr "ਫਾਇਲ ਨਾਂ" - -#: ../src/option.c:457 -msgid "Allow multiple files to be selected" -msgstr "ਬਹੁਤੀਆਂ ਫਾਇਲਾਂ ਇਕੋ ਸਮੇਂ ਚੁਣੀਆਂ ਜਾ ਸਕਣ" - -#: ../src/option.c:466 -msgid "Activate directory-only selection" -msgstr "ਡਾਇਰੈਕਟਰੀ ਚੋਣ ਸਰਗਰਮ" - -#: ../src/option.c:475 -msgid "Activate save mode" -msgstr "ਸੰਭਾਲ ਢੰਗ ਸਰਗਰਮ" - -#: ../src/option.c:484 ../src/option.c:572 ../src/option.c:1081 -msgid "Set output separator character" -msgstr "ਆਉਟਪੁੱਟ ਵੱਖਰੇਵਾਂ ਅੱਖਰ ਦਿਓ" - -#: ../src/option.c:485 ../src/option.c:573 ../src/option.c:1082 -msgid "SEPARATOR" -msgstr "ਵੱਖਰੇਵਾਂ" - -#: ../src/option.c:493 -msgid "Confirm file selection if filename already exists" -msgstr "ਜੇ ਫਾਇਲ ਨਾਂ ਪਹਿਲਾਂ ਮੌਜੂਦ ਹੋਵੇ ਤਾਂ ਫਾਇਲ ਚੋਣ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ" - -#: ../src/option.c:502 -msgid "Sets a filename filter" -msgstr "ਫਾਇਲ-ਨਾਂ ਫਿਲਟਰ ਦਿਓ" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:504 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:518 -msgid "Display list dialog" -msgstr "ਲਿਸਟ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:536 -msgid "Set the column header" -msgstr "ਕਾਲਮ ਹੈੱਡਰ ਦਿਓ" - -#: ../src/option.c:537 -msgid "COLUMN" -msgstr "ਕਾਲਮ" - -#: ../src/option.c:545 -msgid "Use check boxes for first column" -msgstr "ਪਹਿਲੇ ਕਾਲਮ ਲਈ ਚੈਕ ਬਾਕਸ ਵਰਤੋਂ" - -#: ../src/option.c:554 -msgid "Use radio buttons for first column" -msgstr "ਪਹਿਲੇ ਕਾਲਮ ਲਈ ਰੇਡੀਓ ਬਾਕਸ ਵਰਤੋਂ" - -#: ../src/option.c:563 -msgid "Use an image for first column" -msgstr "ਪਹਿਲੇ ਕਾਲਮ ਲਈ ਚਿੱਤਰ ਵਰਤੋਂ" - -#: ../src/option.c:581 -msgid "Allow multiple rows to be selected" -msgstr "ਬਹੁਤੀਆਂ ਸਤਰਾਂ ਇਕੋ ਸਮੇਂ ਚੁਣੀਆਂ ਸੰਭਵ" - -#: ../src/option.c:590 ../src/option.c:809 -msgid "Allow changes to text" -msgstr "ਟੈਕਸਟ ਵਿੱਚ ਤਬਦੀਲੀ ਦੀ ਸਵੀਕਾਰ" - -#: ../src/option.c:599 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"ਇੱਕ ਖਾਸ ਕਾਲਮ ਪਰਿੰਟ ਕਰੋ (ਡਿਫਾਲਟ 1 ਹੈ। 'ਸਭ' ਸਾਰੇ ਕਾਲਮਾਂ ਨੂੰ ਛਾਪਣ ਲਈ ਵਰਤਿਆ " -"ਜਾਵੇਗਾ)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:601 ../src/option.c:610 -msgid "NUMBER" -msgstr "ਨੰਬਰ" - -#: ../src/option.c:609 -msgid "Hide a specific column" -msgstr "ਇੱਕ ਖਾਸ ਕਾਲਮ ਓਹਲੇ" - -#: ../src/option.c:618 -msgid "Hides the column headers" -msgstr "ਕਾਲਮ ਹੈੱਡਰ ਓਹਲੇ ਕਰੋ" - -#: ../src/option.c:634 -msgid "Display notification" -msgstr "ਸੂਚਨਾ ਵੇਖੋ" - -#: ../src/option.c:643 -msgid "Set the notification text" -msgstr "ਸੂਚਨਾ ਪਾਠ ਦਿਓ" - -#: ../src/option.c:652 -msgid "Listen for commands on stdin" -msgstr "stdin ਤੇ' ਕਮਾਂਡਾਂ ਸੁਣੋ" - -#: ../src/option.c:669 -msgid "Display progress indication dialog" -msgstr "ਤਰੱਕੀ ਵੇਖਾਉਦਾ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:687 -msgid "Set initial percentage" -msgstr "ਸ਼ੁਰੂਆਤੀ ਫ਼ੀ-ਸਦੀ ਦਿਓ" - -#: ../src/option.c:688 -msgid "PERCENTAGE" -msgstr "ਫੀ-ਸਦੀ" - -#: ../src/option.c:696 -msgid "Pulsate progress bar" -msgstr "ਪੋਲਸਲੇਟ ਤਰੱਕੀ ਪੱਟੀ" - -#: ../src/option.c:706 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "ਜਦੋਂ ੧੦੦ ਫੀਸਦੀ ਹੋ ਜਾਵੇ ਤਾਂ ਡਾਈਲਾਗ ਬੰਦ ਕਰੋ" - -#: ../src/option.c:716 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "ਮੁੱਢਲੇ ਪਰੋਸੈਸ ਨੂੰ ਕਿੱਲ ਕਰੋ, ਜੇ ਰੱਦ ਕਰੋ ਬਟਨ ਦੱਬਿਆ ਜਾਵੇ" - -#: ../src/option.c:726 -#, no-c-format -msgid "Hide Cancel button" -msgstr "ਰੱਦ ਕਰੋ ਬਟਨ ਓਹਲੇ" - -#: ../src/option.c:741 -msgid "Display question dialog" -msgstr "ਸਵਾਲ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:791 -msgid "Display text information dialog" -msgstr "ਟੈਕਸਟ ਜਾਣਕਾਰੀ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:800 -msgid "Open file" -msgstr "ਫਾਇਲ ਖੋਲ੍ਹੋ" - -#: ../src/option.c:818 -msgid "Set the text font" -msgstr "ਟੈਕਸਟ ਫੋਂਟ ਸੈੱਟ ਕਰੋ" - -#: ../src/option.c:827 -msgid "Enable an I read and agree checkbox" -msgstr "ਮੈਂ ਪੜ੍ਹਿਆ ਅਤੇ ਸਹਿਮਤ ਹਾਂ ਚੋਣ ਬਾਕਸ ਨੂੰ ਯੋਗ ਕਰੋ" - -#: ../src/option.c:837 -msgid "Enable html support" -msgstr "html ਸਹਿਯੋਗ ਚਾਲੂ ਕਰੋ" - -#: ../src/option.c:846 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" -"ਫਾਇਲ ਦੀ ਬਜਾਏ url ਸੈੱਟ ਕਰੋ। ਇਹ ਕੇਵਲ ਤਾਂ ਹੀ ਕੰਮ ਕਰਦਾ ਹੈ, ਜੇ --html ਚੋਣ ਵਰਤੀ ਹੋਵੇ" - -#: ../src/option.c:847 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:862 -msgid "Display warning dialog" -msgstr "ਚੇਤਾਵਨੀ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:912 -msgid "Display scale dialog" -msgstr "ਸਕੇਲ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:930 -msgid "Set initial value" -msgstr "ਸ਼ੁਰੂਆਤੀ ਮੁੱਲ ਦਿਓ" - -#: ../src/option.c:931 ../src/option.c:940 ../src/option.c:949 -#: ../src/option.c:958 ../src/option.c:1139 -msgid "VALUE" -msgstr "ਮੁੱਲ" - -#: ../src/option.c:939 -msgid "Set minimum value" -msgstr "ਘੱਟ ਤੋਂ ਘੱਟ ਮੁੱਲ ਦਿਓ" - -#: ../src/option.c:948 -msgid "Set maximum value" -msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਮੁੱਲ ਦਿਓ" - -#: ../src/option.c:957 -msgid "Set step size" -msgstr "ਸਟੈਪ ਸਾਈਜ਼ ਦਿਓ" - -#: ../src/option.c:966 -msgid "Print partial values" -msgstr "ਅਧੂਰੇ ਮੁੱਲ ਪਰਿੰਟ ਕਰੋ" - -#: ../src/option.c:975 -msgid "Hide value" -msgstr "ਮੁੱਲ ਓਹਲੇ" - -#: ../src/option.c:990 -msgid "Display forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:999 -msgid "Add a new Entry in forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਵਿੱਚ ਨਵੀਂ ਐਂਟਰੀ ਸ਼ਾਮਲ" - -#: ../src/option.c:1000 ../src/option.c:1009 -msgid "Field name" -msgstr "ਖੇਤਰ ਨਾਂ" - -#: ../src/option.c:1008 -msgid "Add a new Password Entry in forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਵਿੱਚ ਨਵੀਂ ਪਾਸਵਰਡ ਐਂਟਰੀ ਸ਼ਾਮਲ" - -#: ../src/option.c:1017 -msgid "Add a new Calendar in forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਵਿੱਚ ਨਵਾਂ ਕੈਲੰਡਰ ਸ਼ਾਮਲ" - -#: ../src/option.c:1018 -msgid "Calendar field name" -msgstr "ਕੈਲੰਡਰ ਖੇਤਰ ਨਾਂ" - -#: ../src/option.c:1026 -msgid "Add a new List in forms dialog" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਵਿੱਚ ਨਵੀਂ ਲਿਸਟ ਸ਼ਾਮਲ" - -#: ../src/option.c:1027 -msgid "List field and header name" -msgstr "ਸੂਚੀ ਖੇਤਰ ਅਤੇ ਹੈੱਡਰ ਨਾਂ" - -#: ../src/option.c:1035 -msgid "List of values for List" -msgstr "ਸੂਚੀ ਲਈ ਮੁੱਲ ਦੀ ਸੂਚੀ" - -#: ../src/option.c:1036 ../src/option.c:1045 -msgid "List of values separated by |" -msgstr "| ਰਾਹੀਂ ਵੱਖ ਕਰਕੇ ਮੁੱਲ ਦੀ ਲਿਸਟ ਦਿਓ" - -#: ../src/option.c:1044 -msgid "List of values for columns" -msgstr "ਕਾਲਮ ਲਈ ਮੁੱਲਾਂ ਦੀ ਸੂਚੀ" - -#: ../src/option.c:1063 -msgid "Show the columns header" -msgstr "ਕਾਲਮ ਹੈੱਡਰ ਵੇਖਾਓ" - -#: ../src/option.c:1105 -msgid "Display password dialog" -msgstr "ਪਾਸਵਰਡ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:1114 -msgid "Display the username option" -msgstr "ਯੂਜ਼ਰ ਨਾਂ ਚੋਣ ਵੇਖਾਓ" - -#: ../src/option.c:1129 -msgid "Display color selection dialog" -msgstr "ਰੰਗ ਚੋਣ ਡਾਈਲਾਗ ਵੇਖੋ" - -#: ../src/option.c:1138 -msgid "Set the color" -msgstr "ਰੰਗ ਸੈੱਟ ਕਰੋ" - -#: ../src/option.c:1147 -msgid "Show the palette" -msgstr "ਪਲੇਅਟ ਵੇਖੋ" - -#: ../src/option.c:1162 -msgid "About zenity" -msgstr "ਜ਼ੋਟੀ ਬਾਰੇ" - -#: ../src/option.c:1171 -msgid "Print version" -msgstr "ਵਰਜਨ ਪਰਿੰਟ ਕਰੋ" - -#: ../src/option.c:2059 -msgid "General options" -msgstr "ਸਧਾਰਨ ਚੋਣ" - -#: ../src/option.c:2060 -msgid "Show general options" -msgstr "ਸਧਾਰਨ ਚੋਣ ਵੇਖਾਓ" - -#: ../src/option.c:2070 -msgid "Calendar options" -msgstr "ਕੈਲੰਡਰ ਚੋਣ" - -#: ../src/option.c:2071 -msgid "Show calendar options" -msgstr "ਕੈਲੰਡਰ ਚੋਣ ਵੇਖਾਓ" - -#: ../src/option.c:2081 -msgid "Text entry options" -msgstr "ਟੈਕਸਟ ਐਂਟਰੀ ਚੋਣਾਂ" - -#: ../src/option.c:2082 -msgid "Show text entry options" -msgstr "ਟੈਕਸਟ ਐਂਟਰੀ ਚੋਣਾਂ ਵੇਖੋ" - -#: ../src/option.c:2092 -msgid "Error options" -msgstr "ਗਲਤੀ ਚੋਣ" - -#: ../src/option.c:2093 -msgid "Show error options" -msgstr "ਗਲਤੀ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2103 -msgid "Info options" -msgstr "ਸੂਚਨਾ ਚੋਣ" - -#: ../src/option.c:2104 -msgid "Show info options" -msgstr "ਸੂਚਨਾ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2114 -msgid "File selection options" -msgstr "ਫਾਇਲ ਚੁਣਨ ਲਈ ਚੋਣ" - -#: ../src/option.c:2115 -msgid "Show file selection options" -msgstr "ਫਾਇਲ ਚੁਣਨ ਲਈ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2125 -msgid "List options" -msgstr "ਲਿਸਟ ਚੋਣ" - -#: ../src/option.c:2126 -msgid "Show list options" -msgstr "ਲਿਸਟ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2137 -msgid "Notification icon options" -msgstr "ਸੂਚਨਾ ਆਈਕਾਨ ਚੋਣ" - -#: ../src/option.c:2138 -msgid "Show notification icon options" -msgstr "ਸੂਚਨਾ ਆਈਕਾਨ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2149 -msgid "Progress options" -msgstr "ਤਰੱਕੀ ਚੋਣ" - -#: ../src/option.c:2150 -msgid "Show progress options" -msgstr "ਤਰੱਕੀ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2160 -msgid "Question options" -msgstr "ਸਵਾਲ ਚੋਣ" - -#: ../src/option.c:2161 -msgid "Show question options" -msgstr "ਸਵਾਲ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2171 -msgid "Warning options" -msgstr "ਚੇਤਾਵਨੀ ਚੋਣ" - -#: ../src/option.c:2172 -msgid "Show warning options" -msgstr "ਚੇਤਾਵਨੀ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2182 -msgid "Scale options" -msgstr "ਸਕੇਲ ਚੋਣਾਂ" - -#: ../src/option.c:2183 -msgid "Show scale options" -msgstr "ਸਕੇਲ ਚੋਣਾਂ ਵੇਖੋ" - -#: ../src/option.c:2193 -msgid "Text information options" -msgstr "ਟੈਕਸਟ ਜਾਣਕਾਰੀ ਚੋਣਾਂ" - -#: ../src/option.c:2194 -msgid "Show text information options" -msgstr "ਟੈਕਸਟ ਜਾਣਕਾਰੀ ਚੋਣਾਂ ਵੇਖੋ" - -#: ../src/option.c:2204 -msgid "Color selection options" -msgstr "ਰੰਗ ਚੋਣ ਸਬੰਧੀ ਚੋਣਾਂ" - -#: ../src/option.c:2205 -msgid "Show color selection options" -msgstr "ਰੰਗ ਚੁਣਨ ਲਈ ਚੋਣਾਂ ਦਿਓ" - -#: ../src/option.c:2215 -msgid "Password dialog options" -msgstr "ਪਾਸਵਰਡ ਡਾਈਲਾਗ ਚੋਣਾਂ" - -#: ../src/option.c:2216 -msgid "Show password dialog options" -msgstr "ਪਾਸਵਰਡ ਡਾਈਲਾਗ ਚੋਣਾਂ ਵੇਖੋ" - -#: ../src/option.c:2226 -msgid "Forms dialog options" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਚੋਣ" - -#: ../src/option.c:2227 -msgid "Show forms dialog options" -msgstr "ਫਾਰਮ ਡਾਈਲਾਗ ਚੋਣਾਂ ਵੇਖੋ" - -#: ../src/option.c:2237 -msgid "Miscellaneous options" -msgstr "ਫੁਟਕਲ ਚੋਣ" - -#: ../src/option.c:2238 -msgid "Show miscellaneous options" -msgstr "ਫੁਟਕਲ ਚੋਣ ਵੇਖੋ" - -#: ../src/option.c:2263 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "ਇਹ ਚੋਣ ਉਪਲਬੱਧ ਨਹੀਂ ਹੈ। ਸਭ ਸੰਭਵ ਚੋਣਾਂ ਲਈ --help ਦੀ ਵਰਤੋਂ ਕਰੋ ਜੀ।\n" - -#: ../src/option.c:2267 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "ਇਸ ਡਾਈਲਾਗ ਲਈ --%s ਸਹਾਇਕ ਨਹੀਂ ਹੈ\n" - -#: ../src/option.c:2271 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "ਦੋ ਜਾਂ ਜਿਆਦਾ ਡਾਈਲਾਗ ਚੋਣਾਂ ਦਿੱਤੀਆਂ ਗਈਆਂ ਹਨ\n" - -#~ msgid "Select a file" -#~ msgstr "ਇਕ ਫਾਇਲ ਚੁਣੋ" diff --git a/po/pl.po b/po/pl.po deleted file mode 100644 index 90debd3..0000000 --- a/po/pl.po +++ /dev/null @@ -1,898 +0,0 @@ -# Polish translation for zenity. -# Copyright © 2003-2017 the zenity authors. -# This file is distributed under the same license as the zenity package. -# Zbigniew Chyla , 2003. -# Artur Flinta , 2003-2007. -# Tomasz Dominikowski , 2008. -# Piotr Drąg , 2010-2017. -# Aviary.pl , 2008-2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-11-26 21:45+0100\n" -"Last-Translator: Piotr Drąg \n" -"Language-Team: Polish \n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Niniejszy program jest wolnym oprogramowaniem; można go rozprowadzać dalej i/" -"lub modyfikować na warunkach Pomniejszej Powszechnej Licencji Publicznej " -"GNU, wydanej przez Fundację Wolnego Oprogramowania (Free Software " -"Foundation) — według wersji drugiej tej Licencji lub którejś z późniejszych " -"wersji.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny — " -"jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI " -"HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania " -"bliższych informacji należy zapoznać się z Pomniejszą Powszechną Licencją " -"Publiczną GNU.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Z pewnością wraz z niniejszym programem dostarczono także egzemplarz " -"Pomniejszej Powszechnej Licencji Publicznej GNU (GNU General Public " -"License); jeśli nie — proszę napisać do Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Zbigniew Chyla , 2003\n" -"Artur Flinta , 2003-2007\n" -"Tomasz Dominikowski , 2008\n" -"Piotr Drąg , 2010-2017\n" -"Aviary.pl , 2008-2017" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Wyświetla okna dialogowe z poziomu skryptów powłoki" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Anuluj" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Należy podać typ okna dialogowego. Polecenie „zenity --help” wyświetli " -"więcej informacji\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nie" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Tak" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nie można przetworzyć wiadomości\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Nieprawidłowa wartość dla wskazówki w formie zmiennej logicznej.\n" -"Obsługiwane wartości to „true” lub „false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nieobsługiwana wskazówka. Pomijanie.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nieznana nazwa wskazówki. Pomijanie.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nie można przetworzyć polecenia ze standardowego wejścia\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Powiadomienie zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Ustawia tytuł okna dialogowego" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TYTUŁ" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Ustawia ikonę okna" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ŚCIEŻKA-IKONY" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Ustawia szerokość" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "SZEROKOŚĆ" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Ustawia wysokość" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "WYSOKOŚĆ" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Ustawia czas wygasania okna dialogowego (w sekundach)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "OGRANICZENIE-CZASU" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Ustawia etykietę przycisku OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Ustawia etykietę przycisku Anuluj" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Dodaje dodatkowy przycisk" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Ustawia okno jako modalne" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Ustawia, do którego okna nadrzędnego dołączyć" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "OKNO" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Wyświetla okno dialogowe kalendarza" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Ustawia tekst w oknie dialogowym" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Ustawia dzień w kalendarzu" - -#: src/option.c:252 -msgid "DAY" -msgstr "DZIEŃ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Ustawia miesiąc w kalendarzu" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MIESIĄC" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Ustawia rok w kalendarzu" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ROK" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Ustawia format zwracanej daty" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "WZÓR" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Wyświetla okno dialogowe z polem wprowadzania tekstu" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Ustawia tekst w polu tekstowym" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ukrywa tekst wprowadzany w polu" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Wyświetla okno dialogowe błędu" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Ustawia ikonę okna dialogowego" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NAZWA-IKONY" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Bez włączania zawijania tekstu" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Bez włączania znaczników biblioteki Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Włącza skracanie tekstu okna dialogowego. Naprawia to duży rozmiar okna " -"z długim tekstem" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Wyświetla informacyjne okno dialogowe" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Wyświetla okno dialogowe wyboru pliku" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Ustawia nazwę pliku" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NAZWA-PLIKU" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Zezwala na wybieranie wielu plików" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktywuje wybór tylko katalogów" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktywuje tryb awaryjny" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Ustawia znak odstępu danych wyjściowych" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potwierdzenie wyboru pliku, jeśli plik już istnieje" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Ustawia filtr na nazwy plików" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAZWA | WZÓR1 WZÓR2…" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Wyświetla okno dialogowe listy" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Ustawia nagłówek kolumny" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLUMNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Umieszcza przełączniki w pierwszej kolumnie" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Umieszcza przyciski radiowe w pierwszej kolumnie" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Umieszcza obraz w pierwszej kolumnie" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Zezwala na wybieranie wielu wierszy" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Zezwala na wprowadzanie zmian w tekście" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Drukuje podaną kolumnę (Domyślnie 1. Można użyć „ALL”, aby wydrukować " -"wszystkie kolumny)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Ukrywa podaną kolumnę" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Ukrywa nagłówki kolumn" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Zmienia domyślną funkcję wyszukiwania listy na wyszukiwanie tekstu na " -"środku, nie na początku" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Wyświetla powiadomienie" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Ustawia tekst powiadomienia" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Oczekuje na polecenia ze standardowego wejścia" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Ustawia wskazówki powiadomienia" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Wyświetla okno dialogowe z paskiem postępu" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Ustawia początkową wartość w procentach" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENT" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Odbijający się prostokąt w pasku stanu" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Zamknięcie okna po osiągnięciu 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Kończy proces nadrzędny w przypadku naciśnięcia przycisku Anuluj" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ukrywa przycisk Anuluj" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Szacuje, kiedy postęp osiągnie 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Wyświetla okno dialogowe z pytaniem" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Domyślnie aktywuje przycisk Anuluj" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Bez przycisków OK i Anuluj" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Wyświetla okno dialogowe z ramką tekstową" - -#: src/option.c:715 -msgid "Open file" -msgstr "Otwiera plik" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Ustawia czcionkę tekstu" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Włącza pole wyboru „Przeczytałam i zgadzam się”" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Włącza obsługę HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Nie włącza interakcji użytkownika za pomocą WebView. Działa tylko, jeśli " -"użyto opcji --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Ustawia adres URL zamiast pliku. Działa tylko, jeśli użyto opcji --html" - -#: src/option.c:761 -msgid "URL" -msgstr "Adres URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Automatyczne przewijanie tekstu do końca. Tylko, kiedy tekst jest " -"przechwytywany ze standardowego wejścia" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Wyświetla okno dialogowe z ostrzeżeniem" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Wyświetla okno dialogowe z podziałką" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Ustawia wartość początkową" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "WARTOŚĆ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Ustawia wartość minimalną" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Ustawia wartość maksymalną" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Ustawia rozmiar kroku" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Wyświetla wartości częściowe" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ukrywa wartość" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Wyświetla okno formularzy" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Dodanie nowego wpisu w oknie formularzy" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nazwa pola" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Dodanie nowego wpisu hasła w oknie formularzy" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Dodanie nowego kalendarza w oknie formularzy" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nazwa pola kalendarza" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Dodanie nowej listy w oknie formularzy" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Nazwa pola i nagłówka listy" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista wartości dla listy" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista wartości oddzielanych |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista wartości dla kolumn" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Dodanie nowego pola rozwijanego w oknie formularzy" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nazwa pola rozwijanego" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista wartości dla pola rozwijanego" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Wyświetla nagłówek kolumny" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Wyświetla okno dialogowe hasła" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Wyświetla opcję nazwy użytkownika" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Wyświetla okno dialogowe wyboru koloru" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Ustawia kolor" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Wyświetla paletę" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "O programie Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Wyświetla wersję programu" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opcje ogólne" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Wyświetla opcje ogólne" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcje okna kalendarza" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Wyświetla opcje okna kalendarza" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcje okna wprowadzania tekstu" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Wyświetla opcje okna wprowadzania tekstu" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcje okna z komunikatem o błędzie" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Wyświetla opcje okna z komunikatem o błędzie" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcje okna informacyjnego" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Wyświetla opcje okna informacyjnego" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcje okna wyboru pliku" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Wyświetla opcje okna wyboru pliku" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcje okna listy" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Wyświetla opcje okna listy" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcje ikony powiadomień" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Wyświetla opcje ikony powiadomień" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcje okna paska postępu" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Wyświetla opcje okna paska postępu" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcje okna pytania" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Wyświetla opcje okna pytania" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcje okna ostrzeżeń" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Wyświetla opcje okna ostrzeżeń" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcje podziałki" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Wyświetla opcje podziałki" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opcje okna informacji tekstowych" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Wyświetla opcje okna informacji tekstowych" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcje wyboru koloru" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Wyświetla opcje wyboru koloru" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcje okna dialogowego hasła" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Wyświetla opcje okna dialogowego hasła" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcje okna formularzy" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Wyświetla opcje okna formularzy" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Różne opcje" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Wyświetla różne opcje" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ta opcja nie jest dostępna. Opcja --help wyświetli wszystkie możliwości.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Opcja --%s nie jest obsługiwana przez to okno dialogowe\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Podano więcej niż jedną opcję okna dialogowego\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Proszę wprowadzić hasło" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Proszę wprowadzić nazwę użytkownika i hasło" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nazwa użytkownika:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Hasło:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Pozostały czas: %lu∶%02lu∶%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Wartość maksymalna musi być większa od minimalnej.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Wartość poza zakresem.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nie podano tytułów kolumn dla okna dialogowego listy.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Należy używać tylko jednego rodzaju okna dialogowego listy.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Dopasowanie wartości podziałki" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Anuluj" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Okno tekstowe" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Wybór daty z kalendarza" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Proszę wybrać datę poniżej." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Kalendarz:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Dodanie nowego wpisu" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Nowy tekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Błąd" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Wystąpił błąd." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Okno formularzy" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informacja" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Ukończono wszystkie aktualizacje." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Postęp" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Uruchamianie…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pytanie" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Na pewno kontynuować?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Wybór elementów z listy" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Proszę wybrać elementy z poniższej listy." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Ostrzeżenie" diff --git a/po/ps.po b/po/ps.po deleted file mode 100644 index cb63c4f..0000000 --- a/po/ps.po +++ /dev/null @@ -1,595 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-09 00:57+0100\n" -"PO-Revision-Date: 2009-01-28 11:06+0500\n" -"Last-Translator: Zabeeh Khan \n" -"Language-Team: Pashto \n" -"Language: ps\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Pashto, Pushto\n" -"X-Poedit-Country: AFGHANISTAN, PAKISTAN\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "Zabeeh Khan " - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "نوی ننوت ډېرول" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "د کچ ارزښت برابرول" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "ټولې اوسمهالونې بشپړې دي." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "کومه تېروتنه رامنځته شوې ده." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "تاسو په ډاډمنه توګه مخکې تلل غواړﺉ؟" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr ":ک_ليز" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "کليز ټاکنه" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "تېروتنه" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "خبرتياوې" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "پرمختګ" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "پوښتنه" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "ځغلي..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "لاندې يوه نېټه وټاکﺉ." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "دوتنه ټاکل" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "د لړ نه توکي وټاکﺉ" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "د لاندې لړ نه توکي وټاکﺉ." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "ليک کوت" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "خبرتيا" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr ":نوې ليکنه وليکﺉ_" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "د کړکۍ سرليک ټاکل" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "سرليک" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "د کړکۍ انځورن ټاکل" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "پلنوالی ټاکل" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "پلنوالی" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "لوړوالی ټاکل" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "لوړوالی" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "کليز کړکۍ ښودل" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:429 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:705 ../src/option.c:738 -msgid "Set the dialog text" -msgstr "د کړکۍ ليکنه وټاکﺉ" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:430 ../src/option.c:527 ../src/option.c:560 -#: ../src/option.c:622 ../src/option.c:631 ../src/option.c:640 -#: ../src/option.c:706 ../src/option.c:739 -msgid "TEXT" -msgstr "ليکنه" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "د کليز ورځ وټاکﺉ" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "ورځ" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "د کليز مياشت وټاکﺉ" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "مياشت" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "د کليز کال وټاکﺉ" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "کال" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "بېلګه" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "د ننوت ليکنه ټاکل" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "د ننوت ليکنه پټول" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "د تېروتنې کړکۍ ښودل" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:648 -#: ../src/option.c:714 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "خبرتيا کړکۍ ښودل" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "د دوتنې نوم ټاکل" - -#: ../src/option.c:351 ../src/option.c:673 -msgid "FILENAME" -msgstr "دوتنې نوم" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "" - -#: ../src/option.c:386 ../src/option.c:465 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:387 ../src/option.c:466 -msgid "SEPARATOR" -msgstr "بېلند" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:406 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "" - -#: ../src/option.c:420 -msgid "Display list dialog" -msgstr "لړ کړکۍ ښودل" - -#: ../src/option.c:438 -msgid "Set the column header" -msgstr "د ستن سرۍ ټاکل" - -#: ../src/option.c:439 -msgid "COLUMN" -msgstr "ستن" - -#: ../src/option.c:447 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:456 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:474 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:483 ../src/option.c:681 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:492 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#. Column index number to print out on a list dialog -#: ../src/option.c:494 ../src/option.c:503 -msgid "NUMBER" -msgstr "شمېره" - -#: ../src/option.c:502 -msgid "Hide a specific column" -msgstr "کومه ټاکلې ستن پټول" - -#: ../src/option.c:517 -msgid "Display notification" -msgstr "يادښت ښودل" - -#: ../src/option.c:526 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:535 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:550 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:568 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:569 -msgid "PERCENTAGE" -msgstr "سلنه" - -#: ../src/option.c:577 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:587 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:597 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "" - -#: ../src/option.c:612 -msgid "Display question dialog" -msgstr "پوښتنې کړکۍ ښودل" - -#: ../src/option.c:630 -msgid "Sets the label of the Ok button" -msgstr "" - -#: ../src/option.c:639 -msgid "Sets the label of the Cancel button" -msgstr "" - -#: ../src/option.c:663 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:672 -msgid "Open file" -msgstr "دوتنه پرانيستل" - -#: ../src/option.c:696 -msgid "Display warning dialog" -msgstr "خبرتيا کړکۍ ښودل" - -#: ../src/option.c:729 -msgid "Display scale dialog" -msgstr "کچ کړکۍ ښودل" - -#: ../src/option.c:747 -msgid "Set initial value" -msgstr "لومړنی ارزښت ټاکل" - -#: ../src/option.c:748 ../src/option.c:757 ../src/option.c:766 -#: ../src/option.c:775 -msgid "VALUE" -msgstr "ارزښت" - -#: ../src/option.c:756 -msgid "Set minimum value" -msgstr "" - -#: ../src/option.c:765 -msgid "Set maximum value" -msgstr "" - -#: ../src/option.c:774 -msgid "Set step size" -msgstr "" - -#: ../src/option.c:783 -msgid "Print partial values" -msgstr "" - -#: ../src/option.c:792 -msgid "Hide value" -msgstr "ارزښت پټول" - -#: ../src/option.c:807 -msgid "About zenity" -msgstr "د زېنېټي په اړه" - -#: ../src/option.c:816 -msgid "Print version" -msgstr "نسخه چاپول" - -#: ../src/option.c:1471 -msgid "General options" -msgstr "ټولګړي غوراوي" - -#: ../src/option.c:1472 -msgid "Show general options" -msgstr "ټولګړي غوراوي ښودل" - -#: ../src/option.c:1482 -msgid "Calendar options" -msgstr "کليز غوراوي" - -#: ../src/option.c:1483 -msgid "Show calendar options" -msgstr "کليز غوراوي ښودل" - -#: ../src/option.c:1493 -msgid "Text entry options" -msgstr "د لیک ننوتنې غوراوي" - -#: ../src/option.c:1494 -msgid "Show text entry options" -msgstr "" - -#: ../src/option.c:1504 -msgid "Error options" -msgstr "تېروتنې غوراوي" - -#: ../src/option.c:1505 -msgid "Show error options" -msgstr "د تېروتنې غوراوي ښودل" - -#: ../src/option.c:1515 -msgid "Info options" -msgstr "خبرتيا غوراوي" - -#: ../src/option.c:1516 -msgid "Show info options" -msgstr "خبرتيا غوراوي ښودل" - -#: ../src/option.c:1526 -msgid "File selection options" -msgstr "د دوتنې ټاکنې غوراوي" - -#: ../src/option.c:1527 -msgid "Show file selection options" -msgstr "" - -#: ../src/option.c:1537 -msgid "List options" -msgstr "لړ غوراوي" - -#: ../src/option.c:1538 -msgid "Show list options" -msgstr "لړ غوراوي ښودل" - -#: ../src/option.c:1548 -msgid "Notification icon options" -msgstr "" - -#: ../src/option.c:1549 -msgid "Show notification icon options" -msgstr "" - -#: ../src/option.c:1559 -msgid "Progress options" -msgstr "پرمختګ غوراوي" - -#: ../src/option.c:1560 -msgid "Show progress options" -msgstr "پرمختګ غوراوي ښودل" - -#: ../src/option.c:1570 -msgid "Question options" -msgstr "پوښتنې غوراوي" - -#: ../src/option.c:1571 -msgid "Show question options" -msgstr "پوښتنې غوراوي ښودل" - -#: ../src/option.c:1581 -msgid "Warning options" -msgstr "خبرتيا غوراوي" - -#: ../src/option.c:1582 -msgid "Show warning options" -msgstr "خبرتيا غوراوي ښودل" - -#: ../src/option.c:1592 -msgid "Scale options" -msgstr "کچ غوراوي" - -#: ../src/option.c:1593 -msgid "Show scale options" -msgstr "کچ غوراوي ښودل" - -#: ../src/option.c:1603 -msgid "Text information options" -msgstr "" - -#: ../src/option.c:1604 -msgid "Show text information options" -msgstr "" - -#: ../src/option.c:1614 -msgid "Miscellaneous options" -msgstr "ګډوډ غوراوي" - -#: ../src/option.c:1615 -msgid "Show miscellaneous options" -msgstr "ګډوډ غوراوي ښودل" - -#: ../src/option.c:1640 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1644 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:1648 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/pt.po b/po/pt.po deleted file mode 100644 index f2d89c1..0000000 --- a/po/pt.po +++ /dev/null @@ -1,924 +0,0 @@ -# zenity's Portuguese translation. -# Copyright © 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013, 2014 zenity -# This file is distributed under the same license as the zenity package. -# Duarte Loreto , 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013. -# Tiago S. , 2014. -# Pedro Albuquerque , 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: 3.12\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2020-12-16 23:39+0000\n" -"Last-Translator: Hugo Carvalho \n" -"Language-Team: Português \n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n;\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Esta aplicação é livre; pode redistribuí-la e/ou alterá-la sob as condições " -"da Licença Pública Genérica GNU tal como publicada pela Free Software " -"Foundation; ou a versão 2 da Licença ou (à sua discrição) qualquer versão " -"posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Esta aplicação é distribuída na expectativa de que seja útil, mas SEM " -"QUALQUER GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou " -"ADEQUAÇÃO A UM DETERMINADO PROPÓSITO. Consulte a Licença Pública Genérica " -"GNU para mais detalhes.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Deverá ter recebido uma cópia da Licença Pública Genérica GNU juntamente com " -"esta aplicação; caso contrário, escreva para a Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA (em inglês)" - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Duarte Loreto \n" -"Pedro Albuquerque \n" -"Hugo Carvalho " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Mostrar caixas de diálogo a partir de scripts de terminal" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Aceitar" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancelar" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Tem de especificar um tipo de diálogo. Consulte 'zenity --help' para mais " -"detalhes\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Não" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sim" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Impossível processar a mensagem\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valore inválido para uma dica do tipo booleano.\n" -"Valores suportados são 'verdadeiro' ou 'falso'.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Dica não suportada. A ignorar.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nome de dica desconhecido. A ignorar.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Impossível processar comando da linha de terminal\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificação zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Definir título do diálogo" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTULO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Definir o ícone da janela" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMINHODOÍCONE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Definir a largura" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGURA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Definir a altura" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTURA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Definir a expiração do diálogo, em segundos" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "EXPIRAÇÃO" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Define o rótulo do botão Aceitar" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXTO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Define o rótulo do botão Cancelar" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Adicionar um botão extra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Definir a dica modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Definir a janela pai à qual anexar" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "JANELA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Mostrar diálogo de calendário" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Definir o texto do diálogo" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Definir o dia do calendário" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Definir o mês do calendário" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MÊS" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Definir o ano do calendário" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Definir o formato da data devolvida" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "PADRÃO" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Mostrar diálogo de introdução de texto" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Definir o texto introduzido" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ocultar o texto introduzido" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Mostrar diálogo de erro" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Definir o ícone do diálogo" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOME-ÍCONE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Não ativar quebra de linha no texto" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Não ativar formatação Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Permitir reticências no texto do diálogo. Isto corrige o tamanho elevado da " -"janela com textos longos" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Mostrar diálogo de informação" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Mostrar diálogo de seleção de ficheiro" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Definir o nome de ficheiro" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOMEDOFICHEIRO" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permitir que sejam selecionados múltiplos ficheiros" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Ativar seleção só de pastas" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Ativar modo de gravação" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Definir carácter separador do resultado" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmar a seleção de ficheiro se o nome do ficheiro já existir" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Define um filtro de nomes de ficheiros" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOME | PADRÃO1 PADRÃO2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Mostrar diálogo de lista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Definir o cabeçalho da coluna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utilizar caixas de seleção para a primeira coluna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utilizar botões rádio para a primeira coluna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utilizar uma imagem para a primeira coluna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permitir que sejam selecionadas múltiplas linhas" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permitir alterações ao texto" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprimir uma coluna específica (Predefinição é 1. Pode ser utilizado \"ALL\" " -"para imprimir todas as colunas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NÚMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Ocultar uma coluna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Esconde o cabeçalho da coluna" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Altera a função de procura predefinida para procurar texto no meio e não no " -"princípio" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Mostrar notificação" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Definir o texto da notificação" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Ouvir comandos na linha de terminal" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Definir as dicas de notificação" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Mostrar diálogo indicador de progresso" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Definir percentagem inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTAGEM" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Incrementar barra de progresso" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Fechar o diálogo ao atingir 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Matar o processo pai se o botão \"Cancelar\" for premido" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ocultar o botão \"Cancelar\"" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimar quando os 100% forem atingidos" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Mostrar diálogo de questão" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Foco predefinido no botão Cancelar" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suprimir os botões Aceitar e Cancelar" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Mostrar diálogo de texto informativo" - -#: src/option.c:715 -msgid "Open file" -msgstr "Abrir ficheiro" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Definir a letra do texto" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Ativar uma caixa de seleção 'Li e concordo'" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Ativar suporte HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Não ativar interação do utilizador com a vista Web. Só funciona se utilizar " -"a opção --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Define um url em vez de um ficheiro. Só funciona se utilizar a opção --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Rolar automaticamente o texto até ao fim. Somente quando o texto capturado " -"vier de stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Mostrar diálogo de aviso" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Mostrar o diálogo de escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Definir o valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Definir o valor mínimo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Definir o valor máximo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Definir o tamanho dos incrementos" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprimir valores parciais" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ocultar o valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Mostrar o diálogo de formulário" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Adicionar uma nova entrada no diálogo de formulário" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nome do campo" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Adicionar uma nova entrada de palavra-passe no diálogo de formulário" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Adicionar um novo calendário no diálogo de formulário" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nome do campo de calendário" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Adicionar uma nova lista no diálogo de formulário" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Campo de lista e nome de cabeçalho" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista de valores para a lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista de valores separados por |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista de valores para colunas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Adicionar uma nova caixa de seleção única no diálogo de formulário" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nome do campo de caixa de seleção única" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista de valores para a caixa de seleção única" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Mostrar o cabeçalho das colunas" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Mostrar o diálogo de palavra-passe" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Mostrar a opção de utilizador" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Mostrar o diálogo de seleção de cores" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Definir a cor" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostrar a paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Sobre o Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprimir versão" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opções gerais" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostrar as opções gerais" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opções de calendário" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostrar as opções de calendário" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opções de introdução de texto" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostrar as opções de introdução de texto" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opções de erro" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostrar as opções de erro" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opções de informação" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostrar as opções de informação" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opções de seleção de ficheiro" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostrar as opções de seleção de ficheiro" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opções de lista" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostrar as opções de lista" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opções de ícone de notificação" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostrar as opções de ícones de notificação" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opções de progresso" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostrar as opções de progresso" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opções de questão" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostrar as opções de questão" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opções de aviso" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostrar as opções de aviso" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opções de escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostrar as opções de escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opções de informação de texto" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostrar as opções de informação de texto" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opções de seleção de cor" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostrar as opções de seleção de cor" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opções do diálogo de palavra-passe" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostrar as opções do diálogo de palavra-passe" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opções do diálogo de formulário" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostrar as opções do diálogo de formulário" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opções diversas" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostrar as opções várias" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Esta opção não se encontra disponível. Consulte --help para todas as " -"utilizações possíveis.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s não é suportado neste diálogo\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Duas ou mais opções de diálogo especificadas\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Introduza a sua palavra-passe" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Insira o seu nome de utilizador e a sua palavra-passe" - -#: src/password.c:100 -msgid "Username:" -msgstr "Utilizador:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Palavra-passe:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tempo restante: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "O valor máximo tem de ser maior do que o valor mínimo.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valor fora do intervalo.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nenhum título de coluna especificado para diálogo de lista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Só deve utilizar um tipo de diálogo de lista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajustar a escala de valores" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancelar" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Aceitar" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vista de texto" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Seleção de calendário" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Selecione uma data de baixo." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendário:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Adicionar uma nova entrada" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Introduzir novo texto:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Erro" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Ocorreu um erro." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diálogo de formulário" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informação" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Todas as atualizações estão terminadas." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progresso" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Em execução..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Questão" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Tem a certeza de que deseja continuar?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Selecione itens da lista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Selecione itens da lista abaixo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Aviso" - -#~ msgid "Select a file" -#~ msgstr "Selecione um ficheiro" - -#~ msgid "Adjust the scale value." -#~ msgstr "Ajustar a escala de valores." - -#~ msgid "Orientation" -#~ msgstr "Orientação" - -#~ msgid "The orientation of the tray." -#~ msgstr "A orientação da área de notificação." - -#~ msgid "(C) 2003 Sun Microsystems" -#~ msgstr "© 2003 Sun Microsystems" - -#~ msgid "Credits" -#~ msgstr "Créditos" - -#~ msgid "Written by" -#~ msgstr "Escrito por" - -#~ msgid "Translated by" -#~ msgstr "Traduzido por" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "About Zenity" -#~ msgstr "Sobre o Zenity" - -#~ msgid "_Credits" -#~ msgstr "_Créditos" diff --git a/po/pt_BR.po b/po/pt_BR.po deleted file mode 100644 index ed76bae..0000000 --- a/po/pt_BR.po +++ /dev/null @@ -1,902 +0,0 @@ -# Brazilian Portuguese translation for Zenity. -# Copyright (C) 2003-2017 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Alexandre Folle de Menezes , 2003. -# Evandro Fernandes Giovanini , 2004, 2006. -# Og Maciel , 2007, 2011. -# Fábio Nogueira , 2007-2008, 2009. -# Vladimir Melo , 2010. -# André Gondim , 2010. -# Enrico Nicoletto , 2013. -# Felipe Braga , 2015. -# Rafael Fontenelle , 2013, 2017. -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=zenity" -"&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-11-27 23:18-0200\n" -"Last-Translator: Rafael Fontenelle \n" -"Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Virtaal 1.0.0-beta1\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo " -"sob os termos da Licença Pública Geral Menor do GNU, como publicado pela " -"Free Software Foundation; em sua versão 2 da Licença, ou (em sua opção) sua " -"versão posterior.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Este programa é distribuído na expectativa de que seja útil, mas SEM NENHUMA " -"GARANTIA; sem mesmo implicar garantias de COMERCIABILIDADE ou ADAPTAÇÃO A UM " -"PROPÓSITO PARTICULAR. Veja a Licença Pública Menos Geral do GNU para mais " -"detalhes.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Você deve ter recebido uma cópia da Licença Pública Menos Geral do GNU junto " -"com este programa; se não, escreva para a Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Alexandre Folle de Menezes \n" -"Evandro Fernandes Giovanini \n" -"Fábio Nogueira \n" -"Og Maciel \n" -"Felipe Braga \n" -"Rafael Fontenelle " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Exibe caixas de diálogo a partir de scripts de shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Cancelar" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Você deve especificar um tipo de diálogo. Veja “zenity --help” para " -"detalhes\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Não" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Sim" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Não foi possível analisar a mensagem\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valor inválido para uma dica de tipo boolean.\n" -"Valores aceitos são “true” ou “false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Dica sem suporte. Ignorando.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nome de dica desconhecido. Ignorando.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Não foi possível analisar o comando a partir de stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificação do Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Define o título do diálogo" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TÍTULO" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Define o ícone da janela" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CAMINHODOÍCONE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Define a largura" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LARGURA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Define a altura" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ALTURA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Define o intervalo do diálogo em segundos" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TEMPO" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Define o rótulo do botão OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXTO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Define o rótulo do botão Cancelar" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Adiciona um botão adicional" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Define a dica do modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Define a janela principal a anexar" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "JANELA" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Exibe um diálogo de calendário" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Define o texto do diálogo" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Define o dia do calendário" - -#: src/option.c:252 -msgid "DAY" -msgstr "DIA" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Define o mês do calendário" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MÊS" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Define o ano do calendário" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ANO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Define o formato para a data devolvida" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODELO" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Exibe um diálogo de entrada de texto" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Define o texto introduzido" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Oculta o texto introduzido" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Exibe um diálogo de erro" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Define o ícone do diálogo" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NOME-DO-ICONE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Não habilita quebra de linha no texto" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Não habilita marcação pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Habilitar formatação elíptica no texto do diálogo. Isto corrige o alto " -"tamanho da janela quando há textos longos" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Exibe um diálogo de informações" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Exibe um diálogo de seleção de arquivo" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Define o nome do arquivo" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NOMEDOARQUIVO" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permite a seleção de múltiplos arquivos" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Ativa apenas a seleção de diretórios" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Ativa modo de salvar" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Define o caractere separador de saída" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARADOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirma a seleção do arquivo se o nome do arquivo já existe" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Define um filtro de nome de arquivo" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NOME | PADRÃO1 PADRÃO2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Exibe um diálogo de lista" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Define o cabeçalho da coluna" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLUNA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Usa caixas de seleção para primeira coluna" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Usa botões de opção para primeira coluna" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Usa uma imagem para primeira coluna" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permite seleção de múltiplas linhas" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permite alterações no texto" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Imprime uma coluna específica (O padrão é 1. “ALL” pode ser usado para " -"imprimir todas as colunas)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NÚMERO" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Oculta uma coluna específica" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Oculta os cabeçalhos da coluna" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Altera a pesquisa da função de pesquisa padrão da lista para o texto no " -"meio, e não no começo" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Exibe uma notificação" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Define o texto da notificação" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Espera por comandos na entrada padrão" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Define as dicas da notificação" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Exibe um diálogo indicador de progresso" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Define uma percentagem inicial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PORCENTAGEM" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsa a barra de progresso" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Fecha o diálogo quando atingir 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Mata o processo principal se o botão Cancelar for pressionado" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Oculta o botão Cancelar" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estima quando o progresso vai alcançar 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Exibe um diálogo de pergunta" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Dá foco ao botão Cancelar, por padrão" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Oculta os botões “OK” e “Cancelar”" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Exibe um diálogo de texto informativo" - -#: src/option.c:715 -msgid "Open file" -msgstr "Abre o arquivo" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Define a fonte do texto" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Habilita uma caixa de seleção Eu li e concordo" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Habilita suporte a HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Não habilita interação do usuário com a WebView. Só funciona se você usar a " -"opção --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Define uma URL ao invés de um arquivo. Só funciona se você usar a opção --" -"html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Rola automaticamente o texto até o final. Apenas quando o texto for " -"capturado da entrada padrão" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Exibe um diálogo de aviso" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Exibe um diálogo de escala" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Define o valor inicial" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOR" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Define o valor mínimo" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Define o valor máximo" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Define o tamanho de cada passo" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Imprime os valores parciais" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Oculta o valor" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Exibe um diálogo de formulários" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Adiciona uma nova entrada no diálogo de formulários" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nome do campo" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Adiciona uma nova entrada de senha no diálogo de formulários" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Adiciona um novo calendário no diálogo de formulários" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Nome do campo calendário" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Adiciona uma nova lista no diálogo de formulários" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Campo lista e nome do cabeçalho" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista de valores para lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista de valores separado por |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista de valores para colunas" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Adiciona uma nova caixa de combinação no diálogo de formulários" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Nome do campo da caixa de combinação" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista de valores para a caixa de combinação" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Exibe o cabeçalho das colunas" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Exibe um diálogo de senha" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Exibe a opção de nome de usuário" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Exibe um diálogo de seleção de cor" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Define a cor" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Mostra a paleta" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Sobre o zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Imprime a versão" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opções gerais" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Mostra as opções gerais" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opções de calendário" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Mostra as opções de calendário" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opções de entrada texto" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Mostra as opções de entrada texto" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opções de erro" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Mostra as opções de erro" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opções de informação" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Mostra as opções de informação" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opções de seleção de arquivo" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Mostra as opções de seleção de arquivo" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opções de lista" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Mostra as opções de lista" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opções do ícone de notificação" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Mostra as opções do ícone de notificação" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opções de progresso" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Mostra as opções de progresso" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opções de pergunta" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Mostra as opções de pergunta" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opções de aviso" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Mostra as opções de aviso" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opções de escala" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Mostra as opções de escala" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opções das informações do texto" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Mostra as opções das informações do texto" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opções de seleção de cor" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Mostra as opções de seleção de cor" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opções de aviso de senha" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Mostra as opções de aviso de senha" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opções de diálogo de formulários" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Mostra as opções de diálogo de formulário" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opções adicionais" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Mostra as opções adicionais" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Esta opção não está disponível. Use --help para ver todas as opções " -"disponíveis.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s não tem suporte para este diálogo\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Duas ou mais opções de diálogo especificadas\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Digite sua senha" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Digite seu nome de usuário e sua senha" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nome de usuário:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Senha:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Tempo restante: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Valor máximo deve ser maior que o valor mínimo.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valor fora de alcance.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nenhum título de coluna especificado para o diálogo Lista.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Você deve usar apenas um diálogo do tipo Lista.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajusta o valor da escala" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Cancelar" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Visão de texto" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Seleção de calendário" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Selecione uma data abaixo." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendário:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Adiciona uma nova entrada" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Digite o novo texto:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Erro" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Ocorreu um erro." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Diálogo de formulários" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informações" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Todas as atualizações estão completas." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progresso" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Executando…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Pergunta" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Você tem certeza que deseja prosseguir?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Selecione itens da lista" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Selecione itens da lista abaixo." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Aviso" diff --git a/po/ro.po b/po/ro.po deleted file mode 100644 index 77a101c..0000000 --- a/po/ro.po +++ /dev/null @@ -1,904 +0,0 @@ -# translation of zenity.HEAD.ro.po to Română -# Romanian translation of zenity. -# Copyright (C) 2004 zenity -# This file is distributed under the same license as the zenity package. -# Mugurel Tudor , 2004, 2005, 2006, 2007. -# Lucian Adrian Grijincu , 2009, 2010, 2011. -# Daniel Șerbănescu , 2010, 2014. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD.ro\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2018-03-11 08:56+0000\n" -"PO-Revision-Date: 2018-04-06 01:02+0300\n" -"Last-Translator: Florentina Mușat \n" -"Language-Team: Gnome Romanian Translation Team\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Poedit 2.0.6\n" -"X-Launchpad-Export-Date: 2012-08-31 07:52+0000\n" -"X-Project-Style: gnome\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Acest program este liber; îl puteți redistribui și/sau modifica în " -"conformitate cu termenii licenței LGPL așa cum este publicată de Free " -"Software Foundation; fie versiunea 2 a Licenței, fie (la latitudinea " -"dumneavoastră) orice versiune ulterioară.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Acest program este distribuit cu speranța că va fi util, dar FĂRĂ NICI O " -"GARANȚIE, fără garanție implicită de vandabilitate și conformitate unui " -"anumit scop. Pentru detalii vezi Licența Publică Generală GNU Lesser.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Ar fi trebuit să primiți o copie a Licenței GNU LGPL împreună cu acest " -"program; dacă nu, scrieți la Free Software Foundation, Inc., 51 Franklin " -"Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Mugurel Tudor \n" -"Lucian Adrian Grijincu \n" -"Florentina Mușat \n" -"\n" -"Launchpad Contributions:\n" -" Adi Roiban https://launchpad.net/~adiroiban\n" -" Anca Emanuel https://launchpad.net/~anca-emanuel\n" -" Daniel Șerbănescu https://launchpad.net/~serbanescu.daniel\n" -" Lucian Adrian Grijincu https://launchpad.net/~lucian.grijincu\n" -" Marian Vasile https://launchpad.net/~marianvasile-upcmail\n" -" Mugurel Tudor https://launchpad.net/~mugurelu-gnome\n" -" angelescu https://launchpad.net/~titus0818" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Afișează ferestre de dialog din scripturi shell" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Anulează" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Trebuie să specificați un tip de dialog. Consultați „zenity --help“ pentru " -"detalii\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nu" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Da" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nu s-a putut parsa mesajul\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Valoare nevalidă pentru un indiciu de tipul boolean.\n" -"Valorile suportate sunt „true” sau „false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Indiciu nesuportat. Se omite.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nume de indiciu necunoscut. Se omite.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nu s-a putut parsa comanda de la stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Notificare Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Specifică titlul dialogului" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITLU" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Stabilește iconița ferestrei" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CALE_ICONIȚĂ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Specifică lățimea" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "LĂȚIME" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Specifică înălțimea" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ÎNĂLȚIME" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Specifică expirarea dialogului în secunde" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "LIMITĂ_DE_TIMP" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Stabilește eticheta pentru butonul OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Stabilește eticheta pentru butonul anulează" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Adaugă un buton extra" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Stabilește indiciul modal" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Specifică fereastra părinte de care se atașează" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FEREASTRĂ" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Afișează dialog de tip calendar" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Specifică textul pentru dialog" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Specifică ziua calendarului" - -#: src/option.c:252 -msgid "DAY" -msgstr "ZI" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Specifică luna calendarului" - -#: src/option.c:259 -msgid "MONTH" -msgstr "LUNĂ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Specifică anul calendarului" - -#: src/option.c:266 -msgid "YEAR" -msgstr "AN" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Specifică formatul pentru data returnată" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MODEL" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Afișează un dialog pentru introducerea de text" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Stabilește textul de intrare" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Ascunde textul introdus" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Afișează un dialog de eroare" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Stabilește iconița dialogului" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NUME-ICONIȚĂ" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Nu activa ruperea rândurilor textului" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Nu activa marcarea Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Activează elipsa în textul de dialog. Aceasta rezolvă dimensiunea mare a " -"ferestrei cu texte lungi" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Afișează un dialog informațional" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Afișează un dialog pentru selecție de fișiere" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Specifică numele fișierului" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NUME_FIȘIER" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Permite selecția de fișiere multiple" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Activează selecția doar pentru directoare" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Activează modul pentru salvare" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Specifică caracterul separator pentru ieșire" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Confirmă selectarea fișierului în cazul în care acesta există" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Stabilește un filtru pentru numele fișierului" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NUME | ȘABLON1 ȘABLON2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Afișează un dialog de tip listă" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Specifică antetul coloanei" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "COLOANĂ" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Utilizează căsuțe de bifare pentru prima coloană" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Utilizează butoane radio pentru prima coloană" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Utilizează o imagine pentru prima coloană" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Permite selecția de linii multiple" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Permite modificarea textului" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Tipărește o anume coloană (Implicit este 1. „ALL” poate fi folosit pentru a " -"tipări toate coloanele)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMĂR" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Ascunde o anumită coloană" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Ascunde anteturile coloanelor" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Modifică funcția de căutare implicită în listă pentru a căuta text în " -"mijloc, nu la început" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Afișează notificarea" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Specifică textul pentru notificare" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Ascultă pentru comenzi la stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Specifică sugestiile pentru notificări" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Afișează un dialog de indicare a progresului" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Specifică procentajul inițial" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTAJ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Bară de progres pulsatilă" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Închide dialogul în momentul în care 100% a fost atins" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Termină procesul superior dacă este apăsat butonul anulează" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Ascunde butonul anulează" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Estimează când progresul va ajunge la 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Afișează un dialog de interogare" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Focalizează implicit butonul anulează" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Suprimează butoanele OK și Anulează" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Afișează un dialog pentru informație de tip text" - -#: src/option.c:715 -msgid "Open file" -msgstr "Deschide fișier" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Specifică fontul textului" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Activează o căsuță de bifare Eu citesc și aprob" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Activează suportul HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Nu activa iteracțiunea cu utilizatorul cu WebView. Funcționează numai dacă " -"folosiți opțiunea --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Stabilește un URL în locul unui fișier. Funcționează doar dacă utilizați " -"opțiunea --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Derulează automat textul la sfârșit. Doar când textul este capturat din stdin" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Afișează un dialog de avertizare" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Afișează un dialog cu scală" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Specifică valoarea inițială" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VALOARE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Specifică valoarea minimă" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Specifică valoarea maximă" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Specifică mărimea pasului" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Afișează valori parțiale" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Ascunde valoarea" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Afișează un dialog formular" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Adăugă o nouă intrare în dialogul formular" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Nume câmp" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Adăugă o nouă intrare de tip parolă în dialogul formular" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Adăugă un nou calendar în dialogul formular" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Numele de câmp al calendarului" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Adaugă o nouă listă în formular" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Lista câmpurilor și a numelor pentru tabel" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Listă de valori pentru listă" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Listă de valori separată de |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Listă de valori pentru coloane" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Adaugă o nouă căsuță combo în dialogul de formulare" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Numele de câmp al listei de selecție" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Listă de valori pentru lista de selecție" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Afișează capul de tabel" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Afișează un dialog de tip parolă" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Afișează opțiunea nume de utilizator" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Afișează un dialog de selecție de culoare" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Stabilește culoarea" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Afișează setul de culori" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Despre zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Afișează versiunea" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opțiuni generale" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Afișează opțiunile generale" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opțiuni calendar" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Afișează opțiunile pentru calendar" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opțiuni introducere text" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Afișează opțiunile pentru introducere text" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opțiuni eroare" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Afișează opțiunile pentru eroare" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opțiuni dialog informațional" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Afișează opțiunile dialogului informațional" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opțiuni selecție fișier" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Afișează opțiunile pentru selecție fișier" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opțiuni listă" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Afișează opțiunile pentru listă" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opțiuni pentru iconița de notificare" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Afișează opțiunile pentru iconița de notificare" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opțiuni progres" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Afișează opțiunile progresului" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opțiuni interogare" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Afișează opțiunile interogării" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opțiuni avertisment" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Afișează opțiunile pentru avertisment" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opțiuni dialog cu scală" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Afișează opțiunile dialogului cu scală" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opțiuni despre informațiile text" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Afișează opțiunile despre informațiile text" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opțiuni selecție culoare" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Afișează opțiunile pentru selecția culorii" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opțiunile dialogului de introducere a parolei" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Afișează opțiunile dialogului de introducere a parolei" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opțiunile dialogului formular" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Afișează opțiunile dialogului formular" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Opțiuni diverse" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Afișează opțiuni diverse" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Această opțiune nu este disponibilă. Consultați --help pentru o listă de " -"posibile utilizări.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s nu este suportată pentru acest dialog\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Două sau mai multe opțiuni dialog specificate\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Tastați parola" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Tastați utilizatorul și parola" - -#: src/password.c:100 -msgid "Username:" -msgstr "Nume utilizator:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Parolă:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Timp rămas: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Valoarea maximă trebuie să fie mai mare decât valoarea minimă.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Valoare în afara intervalului acceptat.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "" -"Nu s-a specificat niciun titlu de coloană pentru dialogul de tip listă.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Ar trebui să folosiți doar un tip de dialog listă.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ajustează valoarea scalei" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Anulează" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Vizualizare text" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Selecție calendar" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Selectați o dată de mai jos." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "C_alendar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Adăugă o nouă intrare" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "Introduceți noul t_ext:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Eroare" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "A intervenit o eroare." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialog de formulare" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informație" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Toate actualizările au fost făcute." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Progres" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Se execută..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Întrebare" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Sigur doriți să continuați?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Selectați elemente din listă" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Selectați elemente din lista de mai jos." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Avertisment" diff --git a/po/ru.po b/po/ru.po deleted file mode 100644 index 4192522..0000000 --- a/po/ru.po +++ /dev/null @@ -1,896 +0,0 @@ -# translation of ru.po to Russian -# Copyright (C) 2003 zenity COPYRIGHT HOLDER -# This file is distributed under the same license as the zenity package. -# -# -# Shaynurov Ildar , 2003. -# Leonid Kanter , 2004, 2005, 2006, 2010. -# Yuri Kozlov , 2010, 2013. -# Yuri Myasoedov , 2012. -# AlexL , 2015. -# Stas Solovey , 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: ru\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-07-10 08:25+0000\n" -"PO-Revision-Date: 2021-06-27 19:44+0300\n" -"Last-Translator: Alexey Rubtsov \n" -"Language-Team: Русский \n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.0\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Это свободное ПО; вы можете распространять и/или изменять его на условиях " -"универсальной общественной лицензии GNU, опубликованной фондом Free Software " -"Foundation; либо версии 2 этой лицензии, либо (на ваш выбор) любой более " -"поздней версии.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Данная программа распространяется в надежде, что он может быть полезен, но " -"БЕЗ КАКОГО-ЛИБО ВИДА ГАРАНТИЙ, ВЫРАЖЕННЫХ ЯВНО ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВКЛЮЧАЯ, " -"НО НЕ ОГРАНИЧИВАЯСЬ ПОДРАЗУМЕВАЕМЫМИ ГАРАНТИЯМИ КОММЕРЧЕСКОЙ ЦЕННОСТИ И " -"ПРИГОДНОСТИ ДЛЯ КОНКРЕТНОЙ ЦЕЛИ. Для получения дополнительных сведений " -"обратитесь к универсальной общественной лицензии GNU.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Вы должны получить копию лицензии GNU вместе c программой. Если лицензия не " -"была получена, известите об этом Фонд свободного программного обеспечения по " -"адресу Free Software Foundation, Inc.: Franklin Street, Fifth Floor, Boston, " -"MA 02110-1301, США." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Станислав Соловей , 2013-2019.\n" -"Юрий Мясоедов , 2014.\n" -"Alexey Rubtsov , 2021" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Программа для создания диалоговых окон из сценариев оболочки" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_ОК" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Отменить" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Укажите тип диалога. См. «zenity --help» для получения подробной информации\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Нет" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Да" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Не удалось разобрать сообщение\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Некорректное значение свойства логического типа.\n" -"Возможные значения: «true» или «false».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Неподдерживаемое свойство, пропускается.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Неизвестное имя свойства, пропускается.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Не удалось разобрать команду из стандартного ввода\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Уведомление Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Установить заголовок диалога" - -#: src/option.c:165 -msgid "TITLE" -msgstr "ЗАГОЛОВОК" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Установить значок диалога" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ПУТЬ_К_ЗНАЧКУ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Установить ширину" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ШИРИНА" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Установить высоту" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ВЫСОТА" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Установить задержку диалога в секундах" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ЗАДЕРЖКА" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Устанавливает метку для кнопки «ОК»" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "ТЕКСТ" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Устанавливает метку для кнопки «Отменить»" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Добавляет дополнительную кнопку" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Установить модальное свойство" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Установить родительское окно для прикрепления" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ОКНО" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Показать диалог выбора даты" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Установить текст диалога" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Установить день в календаре" - -#: src/option.c:252 -msgid "DAY" -msgstr "ДЕНЬ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Установить месяц в календаре" - -#: src/option.c:259 -msgid "MONTH" -msgstr "МЕСЯЦ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Установить год в календаре" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ГОД" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Установить формат возвращаемой даты" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ШАБЛОН" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Показать диалог с полем ввода" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Установить текст для поля ввода" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Скрывать текст в поле ввода" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Показать диалог для вывода ошибки" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Установить значок диалога" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ИМЯ_ЗНАЧКА" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Запретить перенос текста" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Не включать разметку Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Включить усечение текста в диалогах. Это функция уменьшает размер окна с " -"длинным текстом" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Показать диалог для вывода информации" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Показать диалог выбора файлов" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Установить имя файла" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "ИМЯ_ФАЙЛА" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Разрешить выбор нескольких файлов" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Включить выделение только по каталогам" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Включить безопасный режим" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Установить выходной разделяющий символ" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "РАЗДЕЛИТЕЛЬ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Подтверждать выбор файла, если имя файла уже существует" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Устанавливает фильтр имён файлов" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "ИМЯ или ШАБЛОН1 ШАБЛОН2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Показать диалог со списком" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Установить заголовок столбца" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "СТОЛБЕЦ" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Использовать флажки для первого столбца" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Использовать переключатели для первого столбца" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Использовать изображение для первого столбца" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Разрешить выбор нескольких строк" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Разрешить изменять текст" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Показать указанный столбец (по умолчанию — 1-й; «ALL» — показать все столбцы)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ЧИСЛО" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Скрыть указанный столбец" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Скрыть заголовки столбцов" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Изменить функцию поисковой системы списка для поиска текста в середине, а не " -"в начале" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Показать диалог уведомления" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Установить текст уведомления" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Выполнять команды со стандартного ввода" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Установить свойства уведомления" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Показать диалог выполнения процесса" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Указать начальный процент" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ПРОЦЕНТЫ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Пульсирующий индикатор выполнения" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Закрыть диалог при достижении 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Завершить родительский процесс, если нажата кнопка «Отменить»" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Скрыть кнопку «Отменить»" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Расчётное время, когда прогресс достигнет 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Показать диалог с вопросом" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Фокус по умолчанию находится на кнопке «Отменить»" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Скрыть кнопки «ОК» и «Отменить»" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Показать диалог с текстовой информацией" - -#: src/option.c:715 -msgid "Open file" -msgstr "Открыть файл" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Установить шрифт текста" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Включить кнопку с флагом «Я прочитал(а) и согласен(на)»" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Включить поддержку HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Запретить взаимодействие пользователя с WebView. Работает только с " -"параметром --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Устанавливает вместо файла URL. Работает только с параметром --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Автоматически прокручивать текст до конца. Только когда текст захвачен из " -"стандартного ввода" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Показать диалог с предупреждением" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Показать диалог масштаба" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Установить начальное значение" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ЗНАЧЕНИЕ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Установить минимальное значение" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Установить максимальное значение" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Установить шаг" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Печатать частичные значения" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Скрыть величину" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Показать диалог форм" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Добавить новое поле в диалог форм" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Название поля" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Добавить новое поле с паролем в диалог форм" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Добавить новый календарь в диалог форм" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Название поле календаря" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Добавить новый список в диалог форм" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Поле списка и название заголовка" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Список значений для списка" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Список значений, разделённых «|»" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Список значений для столбцов" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Добавить новый выпадающий список в диалог форм" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Название поле выпадающего списка" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Список значений для выпадающего списка" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Показать заголовок столбцов" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Показать диалог пароля" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Показать параметр имени пользователя" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Показать диалог выбора цвета" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Установить цвет" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Показать палитру цветов" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "О программе zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Вывести версию" - -#: src/option.c:1913 -msgid "General options" -msgstr "Общие параметры" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Показать общие параметры" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Параметры календаря" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Показать параметры календаря" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Параметры ввода текста" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Показать параметры ввода текста" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Параметры диалога вывода ошибки" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Показать параметры диалога вывода ошибки" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Параметры диалога вывода информации" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Показать параметры диалога вывода информации" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Параметры диалога выбора файла" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Показать параметры диалога выбора файлов" - -#: src/option.c:1985 -msgid "List options" -msgstr "Параметры списка" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Показать параметры списка" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Параметры значка уведомления" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Показать параметры значка уведомления" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Параметры хода процесса" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Показать параметры хода процесса" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Параметры запроса" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Показать параметры запроса" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Параметры диалога для вывода предупреждения" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Показать параметры диалога для вывода предупреждения" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Параметры масштаба" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Показать параметры масштаба" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Параметры текстовой информации" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Показать параметры текстовой информации" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Параметры выбора цвета" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Показать параметры диалога выбора файлов" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Параметры диалога ввода пароля" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Показать параметры диалога ввода пароля" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Параметры диалога форм" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Показать параметры диалога форм" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Прочие параметры" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Показать прочие параметры" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Этот параметр недоступен. Используйте --help для просмотра всех возможных " -"параметров.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s не поддерживается данным диалогом\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Указано два или более параметра для диалога\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Введите пароль" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Введите имя пользователя и пароль" - -#: src/password.c:100 -msgid "Username:" -msgstr "Имя пользователя:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Пароль:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Оставшееся время: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максимальное значение должно быть больше, чем минимальное.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Значение за пределами диапазона.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Для диалога со списком не указаны заголовки столбцов.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Необходимо использовать только один тип диалога «Список».\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Изменение значения масштаба" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Отменить" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "ОК" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Текстовая область" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Выбор даты" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Выберите дату." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Календарь:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Добавление нового поля" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Введите новый текст:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Ошибка" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Произошла ошибка." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Диалог форм" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Информация" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Все обновления завершены." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Индикатор выполнения" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Выполняется…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Вопрос" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Уверены, что хотите продолжить?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Выберите элементы из списка" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Выберите элементы из списка." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Предупреждение" diff --git a/po/rw.po b/po/rw.po deleted file mode 100644 index 69b5f44..0000000 --- a/po/rw.po +++ /dev/null @@ -1,610 +0,0 @@ -# translation of zenity to Kinyarwanda. -# Copyright (C) 2005 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Steve Murphy , 2005 -# Steve performed initial rough translation from compendium built from translations provided by the following translators: -# Philibert Ndandali , 2005. -# Viateur MUGENZI , 2005. -# Noëlla Mupole , 2005. -# Carole Karema , 2005. -# JEAN BAPTISTE NGENDAHAYO , 2005. -# Augustin KIBERWA , 2005. -# Donatien NSENGIYUMVA , 2005.. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity 2.12\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2005-03-28 19:36-0700\n" -"Last-Translator: Steve Murphy \n" -"Language-Team: Kinyarwanda \n" -"Language: rw\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -#, fuzzy -msgid "translator-credits" -msgstr "" -"Philibert Ndandali , 2005.\n" -"# Viateur MUGENZI , 2005.\n" -"# Noëlla Mupole , 2005.\n" -"# Carole Karema , 2005.\n" -"# JEAN BAPTISTE NGENDAHAYO , 2005.\n" -"# Augustin KIBERWA , 2005.\n" -"# Donatien NSENGIYUMVA , 2005." - -#: ../src/about.c:433 -#, fuzzy -msgid "Display dialog boxes from shell scripts" -msgstr "Ikiganiro Bivuye Igikonoshwa Inyandikoporogaramu" - -#: ../src/about.c:437 -#, fuzzy -msgid "(C) 2003 Sun Microsystems" -msgstr "(C" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "" - -#: ../src/about.c:548 -#, fuzzy -msgid "Written by" -msgstr "ku" - -#: ../src/about.c:561 -#, fuzzy -msgid "Translated by" -msgstr "ku" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "Icyerekezo" - -#: ../src/eggtrayicon.c:119 -#, fuzzy -msgid "The orientation of the tray." -msgstr "Icyerekezo Bya" - -#: ../src/main.c:90 -#, fuzzy -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "a Ikiganiro Ubwoko kugirango" - -#: ../src/notification.c:161 -#, fuzzy -msgid "could not parse command from stdin\n" -msgstr "OYA Komandi: Bivuye" - -#: ../src/notification.c:230 ../src/notification.c:259 -#, fuzzy -msgid "Zenity notification" -msgstr "Ikimenyetso" - -#: ../src/tree.c:320 -#, fuzzy -msgid "No column titles specified for List dialog.\n" -msgstr "Inkingi Imitwe kugirango Ikiganiro" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "" - -#: ../src/zenity.glade.h:3 -#, fuzzy -msgid "Add a new entry" -msgstr "a Gishya Icyinjijwe" - -#: ../src/zenity.glade.h:4 -#, fuzzy -msgid "All updates are complete." -msgstr "Byuzuye" - -# wizards/source\template\template.src:CorrespondenceMsgError.text -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Ikosa yagaragaye." - -#: ../src/zenity.glade.h:6 -#, fuzzy -msgid "Are you sure you want to proceed?" -msgstr "Kuri" - -# svtools/source\dialogs\addresstemplate.src:STR_FIELD_CALENDAR.text -#: ../src/zenity.glade.h:7 -#, fuzzy -msgid "C_alendar:" -msgstr "Kalindari" - -#: ../src/zenity.glade.h:8 -#, fuzzy -msgid "Calendar selection" -msgstr "Ihitamo" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Ikosa" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Ibisobanuro" - -# padmin/source\padialog.src:RID_PROGRESS_DLG.RID_PROGRESS_PROGRESS_TXT.text -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Aho bigeze" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "" - -#: ../src/zenity.glade.h:14 -#, fuzzy -msgid "Select a date from below." -msgstr "a Itariki Bivuye munsi" - -#: ../src/zenity.glade.h:15 -#, fuzzy -msgid "Select a file" -msgstr "a IDOSIYE" - -#: ../src/zenity.glade.h:16 -#, fuzzy -msgid "Select items from the list" -msgstr "Bivuye Urutonde" - -#: ../src/zenity.glade.h:17 -#, fuzzy -msgid "Select items from the list below." -msgstr "Bivuye Urutonde munsi" - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Iburira" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "" - -#: ../src/zenity.glade.h:21 -#, fuzzy -msgid "_Enter new text:" -msgstr "Gishya Umwandiko" - -#: ../src/option.c:105 -#, fuzzy -msgid "Set the dialog title" -msgstr "Ikiganiro Umutwe" - -#: ../src/option.c:106 -#, fuzzy -msgid "TITLE" -msgstr "Umutwe" - -#: ../src/option.c:114 -#, fuzzy -msgid "Set the window icon" -msgstr "Idirishya Agashushondanga" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:123 -#, fuzzy -msgid "Set the width" -msgstr "Ubugari" - -#: ../src/option.c:124 -#, fuzzy -msgid "WIDTH" -msgstr "Ubugari" - -#: ../src/option.c:132 -#, fuzzy -msgid "Set the height" -msgstr "Ubuhagarike" - -#: ../src/option.c:133 -#, fuzzy -msgid "HEIGHT" -msgstr "Ubuhagarike" - -#: ../src/option.c:147 -#, fuzzy -msgid "Display calendar dialog" -msgstr "Kalindari Ikiganiro" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -#, fuzzy -msgid "Set the dialog text" -msgstr "Ikiganiro Umwandiko" - -#: ../src/option.c:165 -#, fuzzy -msgid "Set the calendar day" -msgstr "Kalindari UMUNSI" - -#: ../src/option.c:174 -#, fuzzy -msgid "Set the calendar month" -msgstr "Kalindari Ukwezi" - -#: ../src/option.c:183 -#, fuzzy -msgid "Set the calendar year" -msgstr "Kalindari Umwaka" - -#: ../src/option.c:192 -#, fuzzy -msgid "Set the format for the returned date" -msgstr "Imiterere kugirango Itariki" - -#: ../src/option.c:207 -#, fuzzy -msgid "Display text entry dialog" -msgstr "Umwandiko Icyinjijwe Ikiganiro" - -#: ../src/option.c:225 -#, fuzzy -msgid "Set the entry text" -msgstr "Icyinjijwe Umwandiko" - -#: ../src/option.c:234 -#, fuzzy -msgid "Hide the entry text" -msgstr "Icyinjijwe Umwandiko" - -#: ../src/option.c:250 -#, fuzzy -msgid "Display error dialog" -msgstr "Ikosa Ikiganiro" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -#, fuzzy -msgid "Display info dialog" -msgstr "Ibisobanuro Ikiganiro" - -#: ../src/option.c:316 -#, fuzzy -msgid "Display file selection dialog" -msgstr "IDOSIYE Ihitamo Ikiganiro" - -#: ../src/option.c:325 -#, fuzzy -msgid "Set the filename" -msgstr "Izina ry'idosiye:" - -#: ../src/option.c:326 ../src/option.c:600 -#, fuzzy -msgid "FILENAME" -msgstr "Izina ry'idosiye" - -#: ../src/option.c:334 -#, fuzzy -msgid "Allow multiple files to be selected" -msgstr "Igikubo Idosiye Kuri Byahiswemo" - -#: ../src/option.c:343 -#, fuzzy -msgid "Activate directory-only selection" -msgstr "bushyinguro Ihitamo" - -#: ../src/option.c:352 -#, fuzzy -msgid "Activate save mode" -msgstr "Kubika Ubwoko" - -#: ../src/option.c:361 ../src/option.c:421 -#, fuzzy -msgid "Set output separator character" -msgstr "Ibisohoka Mutandukanya Inyuguti" - -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Table.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Frame.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Graphic.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Calc.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Draw.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Chart.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Image.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Formula.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Impress.Settings.Delimiter.text -# #-#-#-#-# officecfg.pot (Gnome 2.12) #-#-#-#-# -# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.OLEMisc.Settings.Delimiter.text -#: ../src/option.c:362 ../src/option.c:422 -#, fuzzy -msgid "SEPARATOR" -msgstr "Mutandukanya" - -#: ../src/option.c:376 -#, fuzzy -msgid "Display list dialog" -msgstr "Urutonde Ikiganiro" - -#: ../src/option.c:394 -#, fuzzy -msgid "Set the column header" -msgstr "Inkingi Umutwempangano" - -#: ../src/option.c:403 -#, fuzzy -msgid "Use check boxes for first column" -msgstr "Kugenzura... kugirango Itangira Inkingi" - -#: ../src/option.c:412 -#, fuzzy -msgid "Use radio buttons for first column" -msgstr "Utubuto kugirango Itangira Inkingi" - -#: ../src/option.c:430 -#, fuzzy -msgid "Allow multiple rows to be selected" -msgstr "Igikubo Idosiye Kuri Byahiswemo" - -#: ../src/option.c:439 ../src/option.c:608 -#, fuzzy -msgid "Allow changes to text" -msgstr "Amahinduka Kuri Umwandiko" - -#: ../src/option.c:448 -#, fuzzy -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "a Inkingi ni 1. Kuri Gucapa Byose Inkingi" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -#, fuzzy -msgid "Display notification" -msgstr "Ikimenyetso" - -#: ../src/option.c:481 -#, fuzzy -msgid "Set the notification text" -msgstr "Ikimenyetso Umwandiko" - -#: ../src/option.c:490 -#, fuzzy -msgid "Listen for commands on stdin" -msgstr "kugirango Amabwiriza ku" - -#: ../src/option.c:505 -#, fuzzy -msgid "Display progress indication dialog" -msgstr "Aho bigeze Ikiganiro" - -#: ../src/option.c:523 -#, fuzzy -msgid "Set initial percentage" -msgstr "Ijanisha" - -#: ../src/option.c:532 -#, fuzzy -msgid "Pulsate progress bar" -msgstr "Aho bigeze" - -#: ../src/option.c:542 -#, fuzzy, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Ikiganiro Ryari: 100" - -#: ../src/option.c:557 -#, fuzzy -msgid "Display question dialog" -msgstr "Ikiganiro" - -#: ../src/option.c:590 -#, fuzzy -msgid "Display text information dialog" -msgstr "Umwandiko Ibisobanuro Ikiganiro" - -# sfx2/sdi\sfxslots.src:SID_OPENDOC.text -#: ../src/option.c:599 -#, fuzzy -msgid "Open file" -msgstr "Gufungura Dosiye" - -#: ../src/option.c:623 -#, fuzzy -msgid "Display warning dialog" -msgstr "Iburira Ikiganiro" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "" - -#: ../src/option.c:665 -#, fuzzy -msgid "Print version" -msgstr "Verisiyo" - -# svx/source\options\optctl.src:RID_SVXPAGE_OPTIONS_CTL.FL_GENERAL.text -#: ../src/option.c:1259 -msgid "General options" -msgstr "Amahitamo rusange" - -#: ../src/option.c:1260 -#, fuzzy -msgid "Show general options" -msgstr "Rusange Amahitamo" - -#: ../src/option.c:1270 -#, fuzzy -msgid "Calendar options" -msgstr "Amahitamo" - -#: ../src/option.c:1271 -#, fuzzy -msgid "Show calendar options" -msgstr "Kalindari Amahitamo" - -#: ../src/option.c:1281 -#, fuzzy -msgid "Text entry options" -msgstr "Icyinjijwe Amahitamo" - -#: ../src/option.c:1282 -#, fuzzy -msgid "Show text entry options" -msgstr "Umwandiko Icyinjijwe Amahitamo" - -#: ../src/option.c:1292 -#, fuzzy -msgid "Error options" -msgstr "Amahitamo" - -#: ../src/option.c:1293 -#, fuzzy -msgid "Show error options" -msgstr "Ikosa Amahitamo" - -#: ../src/option.c:1303 -#, fuzzy -msgid "Info options" -msgstr "Amahitamo" - -#: ../src/option.c:1304 -#, fuzzy -msgid "Show info options" -msgstr "Ibisobanuro Amahitamo" - -#: ../src/option.c:1314 -#, fuzzy -msgid "File selection options" -msgstr "Idosiye Ihitamo Amahitamo" - -#: ../src/option.c:1315 -#, fuzzy -msgid "Show file selection options" -msgstr "IDOSIYE Ihitamo Amahitamo" - -#: ../src/option.c:1325 -#, fuzzy -msgid "List options" -msgstr "Amahitamo" - -#: ../src/option.c:1326 -#, fuzzy -msgid "Show list options" -msgstr "Urutonde Amahitamo" - -#: ../src/option.c:1336 -#, fuzzy -msgid "Notification icon options" -msgstr "Agashushondanga Amahitamo" - -#: ../src/option.c:1337 -#, fuzzy -msgid "Show notification icon options" -msgstr "Ikimenyetso Agashushondanga Amahitamo" - -#: ../src/option.c:1347 -#, fuzzy -msgid "Progress options" -msgstr "Amahitamo" - -#: ../src/option.c:1348 -#, fuzzy -msgid "Show progress options" -msgstr "Aho bigeze Amahitamo" - -#: ../src/option.c:1358 -#, fuzzy -msgid "Question options" -msgstr "Amahitamo" - -#: ../src/option.c:1359 -#, fuzzy -msgid "Show question options" -msgstr "Amahitamo" - -#: ../src/option.c:1369 -#, fuzzy -msgid "Warning options" -msgstr "Amahitamo" - -#: ../src/option.c:1370 -#, fuzzy -msgid "Show warning options" -msgstr "Iburira Amahitamo" - -#: ../src/option.c:1380 -#, fuzzy -msgid "Text information options" -msgstr "Ibisobanuro Amahitamo" - -#: ../src/option.c:1381 -#, fuzzy -msgid "Show text information options" -msgstr "Umwandiko Ibisobanuro Amahitamo" - -# starmath/source\smres.src:RID_PRINTOPTIONPAGE.FL_MISC_OPTIONS.text -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "Amahitamo anyuranye" - -#: ../src/option.c:1392 -#, fuzzy -msgid "Show miscellaneous options" -msgstr "Binyuranye Amahitamo" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, fuzzy, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%sni OYA kugirango iyi" - -#: ../src/option.c:1425 -#, fuzzy -msgid "Two or more dialog options specified\n" -msgstr "Cyangwa Birenzeho Ikiganiro Amahitamo" diff --git a/po/si.po b/po/si.po deleted file mode 100644 index 426da43..0000000 --- a/po/si.po +++ /dev/null @@ -1,586 +0,0 @@ -# translation of zenity.gnome-2-22.po to Sinhala -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Yajith Ajantha Dayarathna , 2008. -# ඩනිෂ්ක නවින්, 2008. -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-22\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-03-17 04:13+0000\n" -"PO-Revision-Date: 2008-05-22 14:38+0530\n" -"Last-Translator: ඩනිෂ්ක නවින්\n" -"Language-Team: American English \n" -"Language: si\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Sinhala\n" -"X-Poedit-Country: SRI LANKA\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Generator: KAider 0.1\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/about.c:65 -msgid "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n" -msgstr "මෙම ක්‍රමලේඛය නිදහස් මෘදුකාංගයකි; ඔබට Free Software Foundation මගින් ප්‍රකාශයට පත්කරන ලද GNU General Public License හි 2 වන අනුවාදය හෝ (ඔබගේ තේරීම අනුව) ඊට පසු අනුවාදයන්හි වගන්ති වලට යටත්ව මෙය නැවත බෙදා හැරීමට සහ/හෝ වෙනස්කම් වලට බඳුන් කිරීමට අවසර ඇත.\n" - -#: ../src/about.c:69 -msgid "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n" -msgstr "මෙම ක්‍රමලේඛය වැඩිදෙනෙකුටකට ප්‍රයෝජනවත් වනු ඇතැයි යන බලාපොරොත්තුවෙන්, එනමුදු කිසිම වගකීමකින් තොරව; එනමවෙළඳ කටයුතු සඳහා හෝ යම්කිසි විශේශේෂ කාර්යයක් සඳහා සුදුසු යන්නෙන් වූ කිසිම ආකාරයක වගකීමකින් තොරව බෙදාහරින ලදී. වැඩි විස්තර සඳහා GNU General Public Licence බලන්න.\n" - -#: ../src/about.c:73 -msgid "You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "ඔබට මෙම ක්‍රමලේඛය සමඟ GNU General Public License හි පිටපතක් ලැබිය යුතුය. එසේ නොමැති නම් Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA ලිපිනයට ලියන්න." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "යජිත් අජන්ත" - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "කවච ලේඛන වලින් සංවාද කොටු පෙන්වන්න" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "ඔබ දෙබස් මාදිලියක් තෝරා දිය යුතුය. වැඩි විස්තර සඳහා 'zenity --help' බලන්න\n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "සම්මත ආදායකයෙන් ලැබුනු විධානය විග්‍රහ කරගැනීමට නොහැකියි\n" - -#: ../src/notification.c:252 -#: ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Zenity දැනුම්දීම" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "විශාලතම අගය කුඩාම අගයට වඩා වැඩි විය යුතූයි.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "අගය සීමාවෙන් බාහිරය.\n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "ලැයිස්තු සංවාද මාදිලිය සඳහා තීරු ශීර්ෂයන් දක්වා නොමැත.\n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ඔබ භාවිතා කල යුත්තේ එක් ලැයිස්තු සංවාද මාදිලියක් පමණකි.\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "නව නිවේශනයක් එක් කරන්න" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "පරිමාණ අගය සකස් කරන්න" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "සියලුම යාවත්කාලීන කීරීම් නිමයි." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "දෝශයක් උද්ගත වී ඇත." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "ඔබට මෙම ක්‍රියාවලිය තවදුරටත් ඉදිරියට ගෙන යා යුතුද?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "දි_න දර්ශකය" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "දින දර්ශක තේරුම" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "දෝශය" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "තොරතුරු" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "ප්‍රගතිය" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "ප්‍රශ්නය" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "ධාවනය වෙමින් පවතී..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "පහතින් දිනයක් තෝරන්න." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "ගොනුවක් තෝරන්න" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "ලැයිස්තුවෙන් අයිතමයන් තෝරන්න" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "පහත ලැයිස්තුවෙන් අයිතමයන් තෝරන්න." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "පෙළ දර්ශනය" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "අනතුරු ඇඟවීමයි" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "_නව පෙළ ඇතුලත් කරන්න:" - -#: ../src/option.c:117 -msgid "Set the dialog title" -msgstr "සංවාද ශීර්ෂය සකසන්න." - -#: ../src/option.c:118 -msgid "TITLE" -msgstr "ශීර්ෂය" - -#: ../src/option.c:126 -msgid "Set the window icon" -msgstr "කවුලු නිරූපකය සකසන්න" - -#: ../src/option.c:127 -msgid "ICONPATH" -msgstr "නිරූපක පෙත" - -#: ../src/option.c:135 -msgid "Set the width" -msgstr "පලළ සකසන්න" - -#: ../src/option.c:136 -msgid "WIDTH" -msgstr "පලළ" - -#: ../src/option.c:144 -msgid "Set the height" -msgstr "උස සකසන්න" - -#: ../src/option.c:145 -msgid "HEIGHT" -msgstr "උස" - -#: ../src/option.c:153 -msgid "Set dialog timeout in seconds" -msgstr "සංවාදය කල් ඉකුත් වීමේ සීමාව සකසන්න" - -#: ../src/option.c:168 -msgid "Display calendar dialog" -msgstr "දින දර්ශක සංවාදය පෙන්වන්න" - -#: ../src/option.c:177 -#: ../src/option.c:237 -#: ../src/option.c:280 -#: ../src/option.c:313 -#: ../src/option.c:415 -#: ../src/option.c:544 -#: ../src/option.c:606 -#: ../src/option.c:672 -#: ../src/option.c:705 -msgid "Set the dialog text" -msgstr "සංවාද පෙළ සකසන්න" - -#: ../src/option.c:178 -#: ../src/option.c:238 -#: ../src/option.c:247 -#: ../src/option.c:256 -#: ../src/option.c:281 -#: ../src/option.c:314 -#: ../src/option.c:416 -#: ../src/option.c:512 -#: ../src/option.c:545 -#: ../src/option.c:607 -#: ../src/option.c:673 -#: ../src/option.c:706 -msgid "TEXT" -msgstr "පෙළ" - -#: ../src/option.c:186 -msgid "Set the calendar day" -msgstr "දින දර්ශකයෙහි දිනය සකසන්න" - -#: ../src/option.c:187 -msgid "DAY" -msgstr "දිනය" - -#: ../src/option.c:195 -msgid "Set the calendar month" -msgstr "දින දර්ශකයෙහි මාසය සකසන්න" - -#: ../src/option.c:196 -msgid "MONTH" -msgstr "මාසය" - -#: ../src/option.c:204 -msgid "Set the calendar year" -msgstr "දින දර්ශකයෙහි වසර සකසන්න" - -#: ../src/option.c:205 -msgid "YEAR" -msgstr "වසර" - -#: ../src/option.c:213 -msgid "Set the format for the returned date" -msgstr "ලබාදෙන දින හැඩතලය සකසන්න" - -#: ../src/option.c:214 -msgid "PATTERN" -msgstr "රටාව" - -#: ../src/option.c:228 -msgid "Display text entry dialog" -msgstr "පෙළ ඇතුලත් කිරීමේ සංවාදය පෙන්වන්න" - -#: ../src/option.c:246 -msgid "Set the entry text" -msgstr "පිවිසුම් පෙළ සකසන්න" - -#: ../src/option.c:255 -msgid "Hide the entry text" -msgstr "පිවිසුම් පෙළ සඟවන්න" - -#: ../src/option.c:271 -msgid "Display error dialog" -msgstr "දෝශ සංවාදය පෙන්වන්න" - -#: ../src/option.c:289 -#: ../src/option.c:322 -#: ../src/option.c:615 -#: ../src/option.c:681 -msgid "Do not enable text wrapping" -msgstr "පෙළ එතුම ක්‍රියාත්මක නොකරන්න" - -#: ../src/option.c:304 -msgid "Display info dialog" -msgstr "තොරතුරු සංවාදය පෙන්වන්න" - -#: ../src/option.c:337 -msgid "Display file selection dialog" -msgstr "ගොනු තේරුම් සංවාදය පෙන්වන්න" - -#: ../src/option.c:346 -msgid "Set the filename" -msgstr "ගොනු නාමය සකසන්න" - -#: ../src/option.c:347 -#: ../src/option.c:640 -msgid "FILENAME" -msgstr "ගොනු නාමය" - -#: ../src/option.c:355 -msgid "Allow multiple files to be selected" -msgstr "ගොනු බහුවරණයට අවසර දෙන්න" - -#: ../src/option.c:364 -msgid "Activate directory-only selection" -msgstr "ගොනු බාහාලුම් පමණක් තෝරන්න" - -#: ../src/option.c:373 -msgid "Activate save mode" -msgstr "සුරැකුම් ප්‍රකාරය ක්‍රියාත්මක කරන්න" - -#: ../src/option.c:382 -#: ../src/option.c:451 -msgid "Set output separator character" -msgstr "ප්‍රතිදායක විභේදකය සකසන්න" - -#: ../src/option.c:383 -#: ../src/option.c:452 -msgid "SEPARATOR" -msgstr "විභේදකය" - -#: ../src/option.c:391 -msgid "Confirm file selection if filename already exists" -msgstr "ගොනු නාමය දැනට පවතින ගොනුවකට අයත් නම් ගොනු තේරුම තහවුරු කරන්න" - -#: ../src/option.c:406 -msgid "Display list dialog" -msgstr "ලැයිස්තු සංවාදය පෙන්වන්න" - -#: ../src/option.c:424 -msgid "Set the column header" -msgstr "තීරු ශීර්ෂකය සකසන්න" - -#: ../src/option.c:425 -msgid "COLUMN" -msgstr "තීරුව" - -#: ../src/option.c:433 -msgid "Use check boxes for first column" -msgstr "පළමු තීරුව සඳහා සලකුණු කොටු යොදන්න" - -#: ../src/option.c:442 -msgid "Use radio buttons for first column" -msgstr "පළමු තීරුව සඳහා විකල්ප බොත්තම් යොදන්න" - -#: ../src/option.c:460 -msgid "Allow multiple rows to be selected" -msgstr "පේළි බහුවරණයට අවසර දෙන්න" - -#: ../src/option.c:469 -#: ../src/option.c:648 -msgid "Allow changes to text" -msgstr "පෙළ වෙනස්කිරීමට අවසර දෙන්න" - -#: ../src/option.c:478 -msgid "Print a specific column (Default is 1. 'ALL' can be used to print all columns)" -msgstr "තෝරාදුන් තීරුවක් මුද්‍රණය කරන්න ( මෙහි පෙෙරනිමිය 1 වේ . සියලුම තීරු මුද්‍රණය කිරීම සඳහා'ALL' භාවිතා කළ හැකිය)" - -#: ../src/option.c:479 -#: ../src/option.c:488 -msgid "NUMBER" -msgstr "අංකය" - -#: ../src/option.c:487 -msgid "Hide a specific column" -msgstr "තෝරාදුන් තීරුවක් සඟවන්න" - -#: ../src/option.c:502 -msgid "Display notification" -msgstr "දැනුම්දීම පෙන්වන්න" - -#: ../src/option.c:511 -msgid "Set the notification text" -msgstr "දැනුම්දීම් පෙළ සකසන්න" - -#: ../src/option.c:520 -msgid "Listen for commands on stdin" -msgstr "විධාන සඳහා සම්මත ආදායකට සවන්දෙන්න" - -#: ../src/option.c:535 -msgid "Display progress indication dialog" -msgstr "ප්‍රගති දර්ශක සංවාදය පෙන්වන්න" - -#: ../src/option.c:553 -msgid "Set initial percentage" -msgstr "මූලික ප්‍රතිශතය සකසන්න" - -#: ../src/option.c:554 -msgid "PERCENTAGE" -msgstr "ප්‍රතිශතය" - -#: ../src/option.c:562 -msgid "Pulsate progress bar" -msgstr "ප්‍රගති දර්ශකය දෝලනය කරවන්න" - -#: ../src/option.c:572 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% ලඟා වූ වහාම සංවාදය වසාදමන්න" - -#: ../src/option.c:582 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "අවලංගු කිරීමේ බොත්තම එබූ විට මව් ක්‍රියාවලිය නවතා දමන්න." - -#: ../src/option.c:597 -msgid "Display question dialog" -msgstr "ප්‍රශ්ණාර්ථ සවාදය පෙන්වන්න" - -#: ../src/option.c:630 -msgid "Display text information dialog" -msgstr "පෙළ තොරතුරු සංවාදය පෙන්වන්න" - -#: ../src/option.c:639 -msgid "Open file" -msgstr "ගොනුව විවෘත කරන්න" - -#: ../src/option.c:663 -msgid "Display warning dialog" -msgstr "අනතුරු ඇඟවීමේ සංවාදය පෙන්වන්න" - -#: ../src/option.c:696 -msgid "Display scale dialog" -msgstr "පරිමාණ සංවාදය පෙන්වන්න" - -#: ../src/option.c:714 -msgid "Set initial value" -msgstr "මූලික අගය සකසන්න" - -#: ../src/option.c:715 -#: ../src/option.c:724 -#: ../src/option.c:733 -#: ../src/option.c:742 -msgid "VALUE" -msgstr "අගය" - -#: ../src/option.c:723 -msgid "Set minimum value" -msgstr "කුඩාම අගය සකසන්න" - -#: ../src/option.c:732 -msgid "Set maximum value" -msgstr "විශාලතම අගය සකසන්න" - -#: ../src/option.c:741 -msgid "Set step size" -msgstr "පියවර විශාලත්වය සකසන්න" - -#: ../src/option.c:750 -msgid "Print partial values" -msgstr "අඩ අගයන් මුද්‍රණය කරන්න" - -#: ../src/option.c:759 -msgid "Hide value" -msgstr "අගය සඟවන්න" - -#: ../src/option.c:774 -msgid "About zenity" -msgstr "zenity වගතුග" - -#: ../src/option.c:783 -msgid "Print version" -msgstr "අනුවාදය මුද්‍රණය කරන්න" - -#: ../src/option.c:1425 -msgid "General options" -msgstr "පොදු විකල්ප" - -#: ../src/option.c:1426 -msgid "Show general options" -msgstr "පොදු විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1436 -msgid "Calendar options" -msgstr "දින දර්ශන සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1437 -msgid "Show calendar options" -msgstr "දින දර්ශන සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1447 -msgid "Text entry options" -msgstr "පෙළ ඇතුලත් කීරීමේ සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1448 -msgid "Show text entry options" -msgstr "පෙළ ඇතුලත් කීරීමේ සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1458 -msgid "Error options" -msgstr "දෝශ සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1459 -msgid "Show error options" -msgstr "දෝශ සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1469 -msgid "Info options" -msgstr "තොරතුරු සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1470 -msgid "Show info options" -msgstr "තොරතුරු සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1480 -msgid "File selection options" -msgstr "ගොනු තේරුම් සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1481 -msgid "Show file selection options" -msgstr "ගොනු තේරුම් සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1491 -msgid "List options" -msgstr "ලැයිස්තු සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1492 -msgid "Show list options" -msgstr "ලැයිස්තු සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1502 -msgid "Notification icon options" -msgstr "දැනුම්දීම් නිරූපක විකල්ප" - -#: ../src/option.c:1503 -msgid "Show notification icon options" -msgstr "දැනුම්දීම් නිරූපක විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1513 -msgid "Progress options" -msgstr "ප්‍රගති සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1514 -msgid "Show progress options" -msgstr "ප්‍රගති සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1524 -msgid "Question options" -msgstr "ප්‍රශ්ණාර්ථ සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1525 -msgid "Show question options" -msgstr "ප්‍රශ්ණාර්ථ සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1535 -msgid "Warning options" -msgstr "අනතුරු ඇඟවීම් සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1536 -msgid "Show warning options" -msgstr "අනතුරු ඇඟවීම් සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1546 -msgid "Scale options" -msgstr "පරිමාණ සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1547 -msgid "Show scale options" -msgstr "පරිමාණ සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1557 -msgid "Text information options" -msgstr "පෙළ තොරතුරු සංවාදයෙහි විකල්ප" - -#: ../src/option.c:1558 -msgid "Show text information options" -msgstr "පෙළ තොරතුරු සංවාදයෙහි විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1568 -msgid "Miscellaneous options" -msgstr "වීවිධ විකල්ප" - -#: ../src/option.c:1569 -msgid "Show miscellaneous options" -msgstr "වීවිධ විකල්පයන් පෙන්වන්න" - -#: ../src/option.c:1594 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "මෙම විකල්පය භාවිතා කළ නොහැක. භාවිතා කළ හැකි සියලුම විකල්පයන් ලබාගැනීම සඳහා කරුණාකර --help බලන්න.\n" - -#: ../src/option.c:1598 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ට මෙම සංවාදය සහාය නොදක්වයි\n" - -#: ../src/option.c:1602 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "දෙකක් හෝ වැඩි විකල්පයන් සංඛ්‍යාවක් ලාබාදී ඇත\n" - diff --git a/po/sk.po b/po/sk.po deleted file mode 100644 index bcc5250..0000000 --- a/po/sk.po +++ /dev/null @@ -1,1036 +0,0 @@ -# Slovak translation for zenity. -# Copyright (C) 2003-2006, 2008, 2010, 2012, 2013 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Marcel Telka , 2003-2006, 2008, 2010. -# Dušan Kazik , 2012, 2013, 2014, 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-09 09:11+0100\n" -"Last-Translator: Dušan Kazik \n" -"Language-Team: slovenčina <>\n" -"Language: sk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.4\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Tento program je slobodný softvér. Môžete ho šíriť a/alebo modifikovať podľa " -"ustanovení licencie GNU Lesser General Public License (Menej všeobecná " -"zverejňovacia licencia GNU), vydanej nadáciou Free Software Foundation a to " -"buď verzie 2 tejto licencie, alebo (podľa vášho uváženia) ktorejkoľvek " -"neskoršej verzie.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Tento program je rozširovaný v nádeji, že bude užitočný, avšak BEZ " -"AKEJKOĽVEK ZÁRUKY. Neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo " -"VHODNOSTI PRE URČITÝ ÚČEL. Ďalšie podrobnosti hľadajte v licencii GNU Lesser " -"General Public License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Kópiu licencie GNU Lesser General Public License ste mali dostať spolu s " -"týmto programom. Ak sa tak nestalo, napíšte na adresu Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Marcel Telka \n" -"Dušan Kazik " - -# desc -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Zobrazuje dialógové okná zo skriptov shellu" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Zrušiť" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Musíte zadať typ dialógového okna. Viac podrobností získate po zadaní " -"príkazu „zenity --help“\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nie" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "Án_o" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Nepodarilo sa analyzovať správu\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neplatná hodnota pre zadanú radu logického typu.\n" -"Podporované sú hodnoty „true“ alebo „false“.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodporovaná rada. Vynecháva sa.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Neznámy názov rady. Vynecháva sa.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Nepodarilo sa analyzovať príkaz zo štandardného vstupu (stdin)\n" - -# window title -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity - oznámenie" - -# cmd desc -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Nastaví titulok dialógového okna" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITULOK" - -# cmd desc -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Nastaví ikonu okna" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "CESTA_K_IKONE" - -# cmd desc -#: src/option.c:178 -msgid "Set the width" -msgstr "Nastaví šírku" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ŠÍRKA" - -# cmd desc -#: src/option.c:185 -msgid "Set the height" -msgstr "Nastaví výšku" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "VÝŠKA" - -# cmd desc -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Nastaví časový limit dialógového okna v sekundách" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ČASOVÝ_LIMIT" - -# cmd desc -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Nastaví označenie tlačidla OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -# cmd desc -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Nastaví označenie tlačidla Zrušiť" - -# cmd desc -# * https://bugzilla.gnome.org/show_bug.cgi?id=611103 -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Pridá extra tlačidlo" - -# cmd desc -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Nastaví typ modálneho okna" - -# cmd desc -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Nastaví rodičovské okno, ku ktorému sa má pripojiť" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "OKNO" - -# cmd desc -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Zobrazí dialógové okno kalendára" - -# cmd desc -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Nastaví text dialógového okna" - -# cmd desc -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Nastaví deň v kalendári" - -#: src/option.c:252 -msgid "DAY" -msgstr "DEŇ" - -# cmd desc -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Nastaví mesiac v kalendári" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MESIAC" - -# cmd desc -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Nastaví rok v kalendári" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ROK" - -# cmd desc -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Nastaví formát vráteného dátumu" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "VZOR" - -# cmd desc -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Zobrazí dialógové okno na zadávanie textu" - -# cmd desc -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Nastaví text položky" - -# cmd desc -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Skryje text položky" - -# cmd desc -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Zobrazí dialógové okno chyby" - -# cmd desc -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Nastaví ikonu dialógového okna" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NÁZOV_IKONY" - -# cmd desc -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Nepovolí zalomenie textu" - -# cmd desc -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Nepovolí značkovací jazyk Pango" - -# cmd desc -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Povolí skracovanie textu v dialógových oknách. Týmto sa opraví nadmerná " -"veľkosť okien s dlhými textami." - -# cmd desc -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Zobrazí dialógové okno s informáciami" - -# cmd desc -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Zobrazí dialógové okno na výber súboru" - -# cmd desc -#: src/option.c:405 -msgid "Set the filename" -msgstr "Nastaví názov súboru" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NÁZOV_SÚBORU" - -# cmd desc -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Povolí výber viacerých súborov" - -# cmd desc -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivuje výber obmedzený iba na adresáre" - -# cmd desc -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivuje ukladací režim" - -# cmd desc -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Nastaví oddeľovací znak výstupu" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ODDEĽOVAČ" - -# cmd desc -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potvrdí výber súboru, ak názov súboru už existuje" - -# cmd desc -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Nastaví filter názvu súboru" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NÁZOV | VZOR1 VZOR2 …" - -# DK: "list dialog-om" je myslene toto: -# http://library.gnome.org/users/zenity/stable/list.html.en - cize okno so zoznamom -# cmd desc -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Zobrazí dialógové okno so zoznamom" - -# cmd desc -#: src/option.c:474 -msgid "Set the column header" -msgstr "Nastaví hlavičku stĺpca" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "STĹPEC" - -# cmd desc -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Použije zaškrtávacie polia pre prvý stĺpec" - -# cmd desc -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Použije rádiové tlačidlá pre prvý stĺpec" - -# cmd desc -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Použije obrázok pre prvý stĺpec" - -# cmd desc -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Povolí výber viacerých riadkov" - -# cmd desc -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Povolí zmeny textu" - -# cmd desc -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Vypíše zadaný stĺpec (Pri nezadaní stĺpca sa vypíše predvolený prvý stĺpec. " -"Môžete použiť „ALL“ na vypísanie všetkých stĺpcov)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ČÍSLO" - -# cmd desc -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Skryje zadaný stĺpec" - -# cmd desc -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Skryje hlavičky stĺpcov" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Zmení predvolenú vyhľadávaciu funkciu zoznamu pre text v strede a nie na " -"začiatku" - -# cmd desc -#: src/option.c:557 -msgid "Display notification" -msgstr "Zobrazí oznámenie" - -# cmd desc -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Nastaví text oznámenia" - -# cmd desc -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Bude očakávať príkazy zo štandardného vstupu (stdin)" - -# cmd desc -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Nastaví rady pre oznámenia" - -# cmd desc -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Zobrazí dialógové okno s indikátorom priebehu" - -# cmd desc -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Nastaví počiatočné percento" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PERCENTO" - -# cmd desc -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Indikátor priebehu bude puzlovať" - -# cmd desc -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Zatvorí dialógové okno pri dosiahnutí 100 %" - -# cmd desc -# * https://bugzilla.gnome.org/show_bug.cgi?id=611103 -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Zabije rodičovský proces po stlačení tlačidla Zrušiť" - -# cmd desc -# * https://bugzilla.gnome.org/show_bug.cgi?id=611103 -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Skryje tlačidlo Zrušiť" - -# cmd desc -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Odhadne, kedy priebeh dosiahne 100%" - -# cmd desc -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Zobrazí dialógové okno s otázkou" - -# cmd desc -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Predvolené zameranie bude na tlačidlo Zrušiť" - -# cmd desc -# * https://bugzilla.gnome.org/show_bug.cgi?id=611103 -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Potlačí tlačidlá OK a Zrušiť" - -# cmd desc -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Zobrazí textové informačné dialógové okno" - -# cmd desc -#: src/option.c:715 -msgid "Open file" -msgstr "Otvorí súbor" - -# cmd desc -#: src/option.c:729 -msgid "Set the text font" -msgstr "Nastaví písmo textu" - -# cmd desc -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Povolí zaškrtávacie pole o súhlase s textom" - -# cmd desc -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Povolí podporu HTML" - -# cmd desc -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Nepovolí interakciu používateľa so zobrazením WebView. Funguje iba pri " -"použití voľby --html." - -# cmd desc -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Nastaví adresu URL namiesto súboru. Funguje iba pri použití voľby --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -# cmd desc -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Bude automaticky rolovať text až do konca. Iba keď je test zachytený zo " -"štandardného vstupu." - -# cmd desc -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Zobrazí dialógové okno s upozornením" - -# cmd desc -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Zobrazí dialógové okno s mierkou" - -# cmd desc -#: src/option.c:835 -msgid "Set initial value" -msgstr "Nastaví počiatočnú hodnotu" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "HODNOTA" - -# cmd desc -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Nastaví minimálnu hodnotu" - -# cmd desc -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Nastaví maximálnu hodnotu" - -# cmd desc -#: src/option.c:856 -msgid "Set step size" -msgstr "Nastaví veľkosť kroku" - -# cmd desc -#: src/option.c:863 -msgid "Print partial values" -msgstr "Vypíše čiastočné hodnoty" - -# cmd desc -#: src/option.c:870 -msgid "Hide value" -msgstr "Skryje hodnotu" - -# cmd desc -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Zobrazí dialógové okno s formulármi" - -# cmd desc -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Pridá novú položku do dialógového okna s formulármi" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Názov poľa" - -# cmd desc -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Pridá novú položku s heslom do dialógového okna s formulármi" - -# cmd desc -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Pridá nový kalendár do dialógového okna s formulármi" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Názov poľa pre kalendár" - -# cmd desc -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Pridá nový zoznam do dialógového okna s formulármi" - -# cmd desc -#: src/option.c:908 -msgid "List field and header name" -msgstr "Pole so zoznamom a názov hlavičky" - -# cmd desc -#: src/option.c:914 -msgid "List of values for List" -msgstr "Zoznam hodnôt pre zoznam" - -# cmd desc -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Zoznam hodnôt oddelených znakom |" - -# cmd desc -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Zoznam hodnôt pre stĺpce" - -# cmd desc -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Pridá nové kombinované pole do dialógového okna s formulármi" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Názov poľa pre kombinované pole" - -# cmd desc -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Zoznam hodnôt pre kombinované pole" - -# cmd desc -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Zobrazí hlavičku pre stĺpce" - -# cmd desc -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Zobrazí dialógové okno na zadanie hesla" - -# PM: čo za voľbu tým myslia? sa mi to nevidí -# DK: urobi to presne to, co som napisal."--username" sa pouziva pri volbe "--password" a sposobi to, ze sa zobrazi nie len pole na zadanie hesla ale aj pole na zadanie pouz. mena(username) -# overenie: zadaj si prikaz "zenity --password --username" -# cmd desc -#: src/option.c:990 -msgid "Display the username option" -msgstr "Zobrazí pole na zadanie používateľského mena" - -# cmd desc -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Zobrazí dialógové okno na výber farby" - -# cmd desc -#: src/option.c:1007 -msgid "Set the color" -msgstr "Nastaví farbu" - -# cmd desc -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Zobrazí paletu" - -# cmd desc -#: src/option.c:1023 -msgid "About zenity" -msgstr "O programe zenity" - -# cmd desc -#: src/option.c:1030 -msgid "Print version" -msgstr "Vypíše verziu" - -#: src/option.c:1913 -msgid "General options" -msgstr "Všeobecné voľby" - -# cmd desc -#: src/option.c:1914 -msgid "Show general options" -msgstr "Zobrazí všeobecné voľby" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Voľby kalendára" - -# cmd desc -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Zobrazí voľby kalendára" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Voľby textového vstupu" - -# cmd desc -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Zobrazí voľby textového vstupu" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Voľby chýb" - -# cmd desc -#: src/option.c:1952 -msgid "Show error options" -msgstr "Zobrazí voľby chýb" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Voľby informácie" - -# cmd desc -#: src/option.c:1962 -msgid "Show info options" -msgstr "Zobrazí voľby informácie" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Voľby výberu súboru" - -# cmd desc -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Zobrazí voľby výberu súboru" - -#: src/option.c:1985 -msgid "List options" -msgstr "Voľby zoznamu" - -# cmd desc -#: src/option.c:1985 -msgid "Show list options" -msgstr "Zobrazí voľby zoznamu" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Voľby oznamovacej ikony" - -# cmd desc -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Zobrazí voľby oznamovacej ikony" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Voľby indikátora priebehu" - -# cmd desc -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Zobrazí voľby indikátora priebehu" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Voľby otázky" - -# cmd desc -#: src/option.c:2025 -msgid "Show question options" -msgstr "Zobrazí voľby otázky" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Voľby upozornenia" - -# cmd desc -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Zobrazí voľby upozornenia" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Voľby mierky" - -# cmd desc -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Zobrazí voľby mierky" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Voľby textovej informácie" - -# cmd desc -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Zobrazí voľby textovej informácie" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Voľby výberu farby" - -# cmd desc -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Zobrazí voľby výberu farby" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Voľby dialógového okna na zadanie hesla" - -# cmd desc -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Zobrazí voľby dialógového okna na zadanie hesla" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Voľby dialógového okna s formulármi" - -# cmd desc -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Zobrazí voľby dialógového okna s formulármi" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Rôzne voľby" - -# cmd desc -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Zobrazí rôzne voľby" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Táto voľba nie je dostupná. Všetky možné voľby získate po zadaní „zenity --" -"help“.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Parameter „--%s“ nie je pre toto okno podporovaný\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Zadané dve alebo viac volieb pre dialógové okno\n" - -# GtkLabel label -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Zadajte vaše heslo" - -# GtkLabel label -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Zadajte vaše používateľské meno a heslo" - -# GtkLabel label -#: src/password.c:100 -msgid "Username:" -msgstr "Používateľské meno:" - -# GtkLabel label -#: src/password.c:110 -msgid "Password:" -msgstr "Heslo:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Zostávajúci čas: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximálna hodnota musí byť väčšia ako minimálna hodnota.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Hodnota mimo rozsah.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nie sú zadané názvy stĺpcov pre dialógové okno so zoznamom.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Mali by ste použiť iba jeden typ dialógového okna so zoznamom.\n" - -# DK: https://bugzilla.gnome.org/show_bug.cgi?id=687190 -# GtkDialog title -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Úprava hodnoty mierky" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Zrušiť" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -# GtkDialog title -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Zobrazenie textu" - -# GtkDialog title -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Výber kalendára" - -# GtkLabel label -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Vyberte dátum nižšie." - -# GtkLabel label -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alendár:" - -# GtkDialog title -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Pridanie novej položky" - -# GtkLabel label -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Zadajte nový text:" - -# GtkDialog title -#: src/zenity.ui:465 -msgid "Error" -msgstr "Chyba" - -# GtkLabel label -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Vyskytla sa chyba." - -# GtkLabel label -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Dialógové okno s formulárom" - -# GtkDialog title -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informácia" - -# GtkLabel label -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Všetky aktualizácie sú hotové." - -# GtkDialog title -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Priebeh" - -# GtkLabel label -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Spúšťa sa…" - -# GtkDialog title -#: src/zenity.ui:882 -msgid "Question" -msgstr "Otázka" - -# GtkLabel label -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Naozaj chcete pokračovať?" - -# GtkDialog title -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Výber položky zo zoznamu" - -# GtkLabel label -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Vyberte položky zo zoznamu nižšie." - -# GtkDialog title -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Upozornenie" diff --git a/po/sl.po b/po/sl.po deleted file mode 100644 index 6678dcd..0000000 --- a/po/sl.po +++ /dev/null @@ -1,949 +0,0 @@ -# Slovenian translations for zenity. -# Copyright (C) 2002-2007 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Andraž Tori , 2002. -# Matjaž Horvat , 2006. -# Matic Žgur , 2007. -# Matej Urbančič , 2008–2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-12-30 18:24+0000\n" -"PO-Revision-Date: 2017-12-31 11:11+0100\n" -"Last-Translator: Matej Urbančič \n" -"Language-Team: Slovenian GNOME Translation Team \n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" -"%100==4 ? 3 : 0);\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Generator: Poedit 2.0.4\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Program je prosta programska oprema; lahko ga širite in/ali spreminjate pod " -"pogoji manj splošnega dovoljenja GNU (GNU LGPL), kot ga je objavila ustanova " -"Free Software Foundation; bodisi različice 2 ali (po vaši izbiri) katerekoli " -"poznejše različice.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Program je na voljo v upanju, da bo uporaben, vendar je BREZ VSAKRŠNEGA " -"JAMSTVA; tudi brez jamstva o USTREZNOSTI ZA PRODAJO ali PRIMERNOSTI ZA " -"UPORABO. Za več podrobnosti si glejte besedilo Splošnega javnega dovoljenja " -"(GNU GPL).\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Skupaj s tem programom bi morali prejeti izvod manj splošnega dovoljenja GNU " -"(GNU LGPL); v primeru, da ga niste, pišite na Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Matej Urbančič \n" -"Matjaž Horvat\n" -"Tilen Travnik\n" -"Matic Žgur" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Pokaži pogovorna okna lupinskih skript" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "V _redu" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "Pre_kliči" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Določiti je treba vrsto pogovornega okna. Za podrobnosti si oglejte pomoč " -"»zenity --help«\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Da" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Sporočila ni mogoče razčleniti\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neveljavna logična vrednost namiga.\n" -"Dovoljeni vrednosti sta »prav« in »napak«.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodprta vrsta namiga. Namig bo preskočen.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Neznano ime namiga. Namig bo preskočen.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Ukaza iz standardnega vhoda ni mogoče razčleniti.\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Obvestila Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Nastavi naziv pogovornega okna" - -#: src/option.c:165 -msgid "TITLE" -msgstr "NAZIV" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Nastavi ikono okna" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "POTIKONE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Nastavi širino" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ŠIRINA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Nastavi višino" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "VIŠINA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Nastavitev časovnega zamika pogovornega okna v sekundah" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ZAKASNITEV" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Nastavi naziv gumba V redu" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "BESEDILO" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Nastavi naziv gumba Prekliči" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Dodaj dodatni gumb" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Nastavi splošni namig" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Nastavi nadrejeno okno za pripenjanje" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "OKNO" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Pokaži pogovorno okno koledarja" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Nastavi besedilo pogovornega okna" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Nastavi dan na koledarju" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAN" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Nastavi mesec na koledarju" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MESEC" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Nastavi leto na koledarju" - -#: src/option.c:266 -msgid "YEAR" -msgstr "LETO" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Nastavi oblikovanje vrnjenega datuma" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "VZOREC" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Pokaži pogovorno okno vnos besedila" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Nastavi začetno besedilo" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Skrij začetno besedilo" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Pokaži pogovorno okno napake" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Nastavi ikono pogovornega okna" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "Ime ikone" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ne omogoči preloma besedila" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ne omogoči oblikovanja Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Omogoči okrajševanje besedil pogovornih oken. Možnost razreši velikosti oken " -"z veliko besedila." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Pokaži pogovorno okno podatkov" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Pokaži pogovorno okno izbire datoteke" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Nastavi ime datoteke" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "Ime datoteke" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Dovoli izbrati več datotek" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Omogoči izbor le map" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Omogoči način shranjevanja" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Nastavi znak za ločevanje izhoda" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "LOČILNIK" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potrdi izbor datotek, v kolikor ime datoteke že obstaja" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Nastavi filter imen datotek" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "IME | VZOREC1 VZOREC2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Pokaži pogovorno okno seznama" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Nastavi glavo stolpca" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "STOLPEC" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Uporabi označna polja za prvi stolpec" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Uporabi izbirne gumbe za prvi stolpec" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Uporabi sliko za prvi stolpec" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Dovoli izbor več vrstic" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Dovoli spremembe v besedilu" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Natisni določen stolpec (privzeto je izbrana možnost 1. Za izpis vseh " -"stolpcev lahko uporabite 'ALL')" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ŠTEVILKA" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Skrij določen stolpec" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Skrij glave stolpcev" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Spremeni seznam privzetih iskalnih funkcij za besedilo na sredini in ne na " -"začetku." - -#: src/option.c:557 -msgid "Display notification" -msgstr "Pokaži obvestilo" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Nastavi besedilo obvestila" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Poslušaj ukaze na stdin" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Nastavi besedila namigov obvestil" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Pokaži pogovorno okno napredka opravila" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Nastavi začetni odstotek" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ODSTOTEK" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Vrstica napredka naj utripa" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Opusti pogovorno okno, ko je doseženih 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Uniči nadrejeno opravilo, kadar je pritisnjen gumb za preklic" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Skrij gumb za preklic" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Oceni, kdaj bo napredek dosegel vrednost 100 %." - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Pokaži pogovorno okno vprašanja" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Gumb Prekliči naj bo privzeto v žarišču" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Prepreči delovanje gumbov V redu in Prekliči" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Pokaži pogovorno okno podatkov o besedilu" - -#: src/option.c:715 -msgid "Open file" -msgstr "Odpri datoteko" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Določitev pisave besedila" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Omogoči označna polja potrditve strinjanja in branja" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Omogoči podporo HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne omogoči interakcije uporabnika z WebView. Možnost deluje le, če je " -"izbrana možnost --html." - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Nastavi naslov URL namesto datoteke. Deluje le z uporabo možnosti --html" - -#: src/option.c:761 -msgid "URL" -msgstr "Naslov URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Samodejno zdrsi besedilo do konca. Le kadar je besedilo zajeto preko " -"standardnega vhoda" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Pokaži pogovorno okno opozorila" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Pokaži pogovorno okno merila" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Nastavi začetno vrednost" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VREDNOST" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Nastavi najmanjšo vrednost" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Nastavi največjo vrednost" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Nastavi velikost koraka" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Natisni delne vrednosti" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Skrij vrednost" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Pokaži pogovorno okno obrazca" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Dodaj nov vnos v pogovorno okno obrazca" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Ime polja" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Dodaj nov vnos gesla v pogovorno okno obrazca" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Dodaj nov koledar v pogovorno okno obrazca" - -# G:7 K:2 O:4 -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Ime polja koledarja" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Dodaj nov seznam v pogovorno okno obrazca" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Polje seznama in ime glave" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Seznam vrednosti za seznam" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Seznam vrednosti ločen z znakom |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Seznam vrednosti za stolpce" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Dodaj novo spustno polje v pogovorno okno obrazca" - -# G:7 K:2 O:4 -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Ime spustnega polja" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Seznam vrednosti spustnega polja" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Pokaži glave stolpcev" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Prikaži pogovorno okno gesla" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Prikaži možnost uporabniškega imena" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Pokaži pogovorno okno izbire barv" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Nastavi barvo" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Pokaži paleto" - -# G:2 K:0 O:0 -#: src/option.c:1023 -msgid "About zenity" -msgstr "O programu" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Izpiši različico" - -#: src/option.c:1913 -msgid "General options" -msgstr "Splošne možnosti" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Pokaži splošne možnosti" - -# G:0 K:7 O:1 -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Možnosti koledarja" - -# G:0 K:7 O:1 -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Pokaži možnosti koledarja" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Možnosti vnosa besedila" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Pokaži možnosti vnosa besedila" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Možnosti napak" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Pokaži možnosti napak" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Možnosti info" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Pokaži možnosti info" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Možnosti izbire datoteke" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Pokaži možnosti izbire datotek" - -#: src/option.c:1985 -msgid "List options" -msgstr "Možnosti seznama" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Pokaži možnosti seznama" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Možnosti ikone obvestil" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Pokaži možnosti ikone obvestil" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Možnosti prikaza napredka" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Pokaži možnosti prikaza napredka" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Možnosti vprašanja" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Pokaži možnosti vprašanja" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Možnosti opozorila" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Pokaži možnosti opozorila" - -# G:0 K:7 O:1 -#: src/option.c:2050 -msgid "Scale options" -msgstr "Možnosti merila" - -# G:0 K:7 O:1 -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Pokaži možnosti merila" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Možnosti podatkov besedila" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Pokaži možnosti podatkov besedila" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Možnosti izbire barv" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Pokaži možnosti izbire barv" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Možnosti pogovornega okna gesla" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Pokaži možnosti pogovornega okna gesla" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Možnosti pogovornega okna obrazca" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Pokaži možnosti pogovornega okna obrazca" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Razne možnosti" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Pokaži razne možnosti" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ta možnost ni na voljo. Za pregled vseh mogočih uporab si oglejte --help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ni podprt v tem pogovornem oknu\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Določeni sta dve ali več možnosti pogovornega okna\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Vpišite geslo." - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Vpišite uporabniško ime in geslo" - -#: src/password.c:100 -msgid "Username:" -msgstr "Uporabniško ime:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Geslo:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Preostal čas: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Največja vrednost mora biti večja od najmanjše.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Vrednost je izven območja.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Za pogovorno okno seznama ni določenih naslovov stolpcev.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Uporabiti bi morali le eno vrsto pogovornega okna seznama.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Prilagodi vrednost merila" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Prekliči" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "V redu" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Besedilni pogled" - -# G:0 K:7 O:1 -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Izbor koledarja" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Spodaj izberite datum." - -# G:0 K:7 O:1 -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "Koled_ar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Dodaj nov vnos" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Vpišite novo besedilo:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Napaka" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Prišlo je do napake!" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Pogovorno okno obrazca" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Podrobnosti" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Vse posodobitve so končane." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Napredek" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Zagnano ..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Vprašanje" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Ali ste prepričani, da želite nadaljevati?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Izberite predmete iz seznama." - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Izberite predmete iz spodnjega seznama." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Opozorilo" - -#~ msgid "Could not parse message from stdin\n" -#~ msgstr "Ni mogoče razčleniti sporočila stdin\n" - -#~ msgid "Sets the label of the Ok button" -#~ msgstr "Nastavi besedilo gumba V redu" - -#~ msgid "Sets the label of the Cancel button" -#~ msgstr "Nastavi besedilo gumba Prekliči" - -#~ msgid "Add extra-button" -#~ msgstr "Dodaj dodaten gumb" - -#~ msgid "Do not enable pango markup" -#~ msgstr "Ne omogoči označevanja Pango" - -#~ msgid "Sets a filename filter" -#~ msgstr "Določi filter imena datotek" - -#~ msgid "Use check boxes for first column" -#~ msgstr "Uporabi potrditvena polja za prvi stolpec" - -#~ msgid "Use radio buttons for first column" -#~ msgstr "Uporabi radijske gumbe za prvi stolpec" - -#~ msgid "Use an image for first column" -#~ msgstr "Uporabi sliko za prvi stolpec" - -#~ msgid "Hides the column headers" -#~ msgstr "Skrije glavo stolpca" - -#~ msgid "Give cancel button focus by default" -#~ msgstr "Privzeto postavi pozornost na gumb Prekliči" - -#~ msgid "Suppress ok and cancel buttons" -#~ msgstr "Skrij gumba V redu in Prekliči" - -#~ msgid "Enable html support" -#~ msgstr "Omogoči podporo za HTML" - -#~ msgid "Sets an url instead of a file. Only works if you use --html option" -#~ msgstr "" -#~ "Določite naslov URL namesto datoteke. Možnost deluje le, če je izbrana " -#~ "možnost —html." diff --git a/po/sq.po b/po/sq.po deleted file mode 100644 index c114207..0000000 --- a/po/sq.po +++ /dev/null @@ -1,609 +0,0 @@ -# Përkthimi i mesazheve të zenity në shqip. -# This file is distributed under the same license as the zenity package. -# Copyright (C) 2003-2008 Free Software Foundation, Inc. -# -# Laurent Dhima , 2003-2008. -msgid "" -msgstr "" -"Project-Id-Version: zenity HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-07-22 10:32+0000\n" -"PO-Revision-Date: 2008-09-27 18:51+0200\n" -"Last-Translator: Laurent Dhima \n" -"Language-Team: Albanian \n" -"Language: sq\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../src/about.c:65 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU General Public License as published by the Free " -"Software Foundation; either version 2 of the License, or (at your option) " -"any later version.\n" -msgstr "" -"Ky program është software i lirë; mund ta rishpërndani apo/dhe ndryshoni nën " -"kushtet e Liçencës Publike të Përgjithshme GNU sikurse publikuar nga " -"Fondacioni Free Software; duke zgjedhur midis versionit 2 të Liçencës, ose " -"(sipas dëshirës suaj) çdo versioni tjetër më të përditësuar.\n" - -#: ../src/about.c:69 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " -"more details.\n" -msgstr "" -"Ky program shpërndahet me dëshirën që të jetë i vlefshëm për ju, por PA " -"ASNJË LLOJ GARANCIE; bile as pa garancinë e TREGTIMIT apo PËRDORIMIT PËR " -"QËLLIME TË VEÇANTA. Shiko Liçencën Publike të Përgjithshme GNU për hollësi " -"të mëtejshme.\n" - -#: ../src/about.c:73 -msgid "" -"You should have received a copy of the GNU General Public License along with " -"this program; if not, write to the Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Së bashku me këtë program duhet të keni marrë edhe një kopje të " -"GNU General Public License; nëse jo, shkruaj tek Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, " -"MA 02110-1301, USA." - -#: ../src/about.c:264 -msgid "translator-credits" -msgstr "Laurent Dhima , 2003-2008" - -#: ../src/about.c:276 -msgid "Display dialog boxes from shell scripts" -msgstr "Shfaq dialogët nga script e shell" - -#: ../src/main.c:94 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Duhet specifikuar lloji i dialogut. Shiko \"zenity --help\" për hollësitë\n" - -#: ../src/notification.c:139 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "i pamundur analizimi i komandës nga stdin\n" - -#: ../src/notification.c:252 ../src/notification.c:269 -msgid "Zenity notification" -msgstr "Njoftim i zenity" - -#: ../src/scale.c:56 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Vlera maksimale duhet të jetë më e madhe se vlera minimale.\n" - -#: ../src/scale.c:63 -#, c-format -msgid "Value out of range.\n" -msgstr "Vlerë jashtë limitit.\n" - -#: ../src/tree.c:320 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Asnjë titull për kollonat në dialogun \"Lista\".\n" - -#: ../src/tree.c:326 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Duhet përdorur vetëm një lloj dialogu \"Lista\".\n" - -#: ../src/zenity.glade.h:1 -msgid "Add a new entry" -msgstr "Shto një zë të ri" - -#: ../src/zenity.glade.h:2 -msgid "Adjust the scale value" -msgstr "Rregullo vlerën e shkallës" - -#: ../src/zenity.glade.h:3 -msgid "All updates are complete." -msgstr "Të gjithë përditësimet u plotësuan." - -#: ../src/zenity.glade.h:4 -msgid "An error has occurred." -msgstr "U verifikua një gabim." - -#: ../src/zenity.glade.h:5 -msgid "Are you sure you want to proceed?" -msgstr "Dëshirohet vazhdimi?" - -#: ../src/zenity.glade.h:6 -msgid "C_alendar:" -msgstr "K_alendari:" - -#: ../src/zenity.glade.h:7 -msgid "Calendar selection" -msgstr "Zgjedhje nga kalendari" - -#: ../src/zenity.glade.h:8 -msgid "Error" -msgstr "Gabim" - -#: ../src/zenity.glade.h:9 -msgid "Information" -msgstr "Informacione" - -#: ../src/zenity.glade.h:10 -msgid "Progress" -msgstr "Përparimi" - -#: ../src/zenity.glade.h:11 -msgid "Question" -msgstr "Pyetje" - -#: ../src/zenity.glade.h:12 -msgid "Running..." -msgstr "Në ekzekutim..." - -#: ../src/zenity.glade.h:13 -msgid "Select a date from below." -msgstr "Zgjidh një datë." - -#: ../src/zenity.glade.h:14 -msgid "Select a file" -msgstr "Zgjidh një file" - -#: ../src/zenity.glade.h:15 -msgid "Select items from the list" -msgstr "Zgjidh elementë nga lista" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list below." -msgstr "Zgjidh elementët nga lista në vijim." - -#: ../src/zenity.glade.h:17 -msgid "Text View" -msgstr "Tekst" - -#: ../src/zenity.glade.h:18 -msgid "Warning" -msgstr "Paralajmërim" - -#: ../src/zenity.glade.h:19 -msgid "_Enter new text:" -msgstr "S_hto tekstin e ri:" - -#: ../src/option.c:120 -msgid "Set the dialog title" -msgstr "Përcakto titullin e dialogut" - -#: ../src/option.c:121 -msgid "TITLE" -msgstr "TITULLI" - -#: ../src/option.c:129 -msgid "Set the window icon" -msgstr "Përcakto ikonën e dritares" - -#: ../src/option.c:130 -msgid "ICONPATH" -msgstr "POZICIONI_IKONËS" - -#: ../src/option.c:138 -msgid "Set the width" -msgstr "Përcakto gjerësinë" - -#: ../src/option.c:139 -msgid "WIDTH" -msgstr "GJERËSIA" - -#: ../src/option.c:147 -msgid "Set the height" -msgstr "Përcakto lartësinë" - -#: ../src/option.c:148 -msgid "HEIGHT" -msgstr "LARTËSIA" - -#: ../src/option.c:156 -msgid "Set dialog timeout in seconds" -msgstr "Përcakto timeout e dialogut në sekonda" - -#. Timeout for closing the dialog -#: ../src/option.c:158 -msgid "TIMEOUT" -msgstr "KOHA_MAKSIMUM" - -#: ../src/option.c:172 -msgid "Display calendar dialog" -msgstr "Shfaq një dialog me kalendarin" - -#: ../src/option.c:181 ../src/option.c:241 ../src/option.c:284 -#: ../src/option.c:317 ../src/option.c:428 ../src/option.c:558 -#: ../src/option.c:620 ../src/option.c:704 ../src/option.c:737 -msgid "Set the dialog text" -msgstr "Përcakto tekstin e dialogut" - -#: ../src/option.c:182 ../src/option.c:242 ../src/option.c:251 -#: ../src/option.c:260 ../src/option.c:285 ../src/option.c:318 -#: ../src/option.c:429 ../src/option.c:526 ../src/option.c:559 -#: ../src/option.c:621 ../src/option.c:630 ../src/option.c:639 -#: ../src/option.c:705 ../src/option.c:738 -msgid "TEXT" -msgstr "TEKSTI" - -#: ../src/option.c:190 -msgid "Set the calendar day" -msgstr "Përcakto ditën e kalendarit" - -#: ../src/option.c:191 -msgid "DAY" -msgstr "DITA" - -#: ../src/option.c:199 -msgid "Set the calendar month" -msgstr "Përcakto muajin e kalendarit" - -#: ../src/option.c:200 -msgid "MONTH" -msgstr "MUAJI" - -#: ../src/option.c:208 -msgid "Set the calendar year" -msgstr "Përcakto vitin e kalendarit" - -#: ../src/option.c:209 -msgid "YEAR" -msgstr "VITI" - -#: ../src/option.c:217 -msgid "Set the format for the returned date" -msgstr "Përcakto formatin e datës së kthyer" - -#: ../src/option.c:218 -msgid "PATTERN" -msgstr "MODELI" - -#: ../src/option.c:232 -msgid "Display text entry dialog" -msgstr "Shfaq një dialog për shtim teksti" - -#: ../src/option.c:250 -msgid "Set the entry text" -msgstr "Përcakton tekstin e kutizës së futjes" - -#: ../src/option.c:259 -msgid "Hide the entry text" -msgstr "Fsheh tekstin tek kutiza e futjes" - -#: ../src/option.c:275 -msgid "Display error dialog" -msgstr "Shfaq një dialog gabimi" - -#: ../src/option.c:293 ../src/option.c:326 ../src/option.c:647 -#: ../src/option.c:713 -msgid "Do not enable text wrapping" -msgstr "Nuk aktivizon ndërprerjen e tekstit" - -#: ../src/option.c:308 -msgid "Display info dialog" -msgstr "Shfaq një dialog informacionesh" - -#: ../src/option.c:341 -msgid "Display file selection dialog" -msgstr "Shfaq një dialog për zgjedhje file" - -#: ../src/option.c:350 -msgid "Set the filename" -msgstr "Përcakton emrin e file" - -#: ../src/option.c:351 ../src/option.c:672 -msgid "FILENAME" -msgstr "EMRIFILE" - -#: ../src/option.c:359 -msgid "Allow multiple files to be selected" -msgstr "Lejon zgjedhjen e më shumë se një file" - -#: ../src/option.c:368 -msgid "Activate directory-only selection" -msgstr "Aktivizon zgjedhjen e vetëm directory" - -#: ../src/option.c:377 -msgid "Activate save mode" -msgstr "Aktivizon modalitetin e sigurtë" - -#: ../src/option.c:386 ../src/option.c:464 -msgid "Set output separator character" -msgstr "Përcakton simbolin ndarës për output" - -#: ../src/option.c:387 ../src/option.c:465 -msgid "SEPARATOR" -msgstr "NDARËSI" - -#: ../src/option.c:395 -msgid "Confirm file selection if filename already exists" -msgstr "Konfermon zgjedhjen e file nëse emri i file ekziston rregullisht" - -#: ../src/option.c:404 -msgid "Sets a filename filter" -msgstr "Përcakton një filtër mbi emrin e file" - -#: ../src/option.c:405 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "EMRI | MODELI1 MODELI2 ..." - -#: ../src/option.c:419 -msgid "Display list dialog" -msgstr "Shfaq një dialog me një listë" - -#: ../src/option.c:437 -msgid "Set the column header" -msgstr "Përcakton titullin e kollonës" - -#: ../src/option.c:438 -msgid "COLUMN" -msgstr "KOLLONA" - -#: ../src/option.c:446 -msgid "Use check boxes for first column" -msgstr "Përdor kutiza zgjedhje për kollonën e parë" - -#: ../src/option.c:455 -msgid "Use radio buttons for first column" -msgstr "Përdor butonë radio për kollonën e parë" - -#: ../src/option.c:473 -msgid "Allow multiple rows to be selected" -msgstr "Lejon zgjedhjen e më shumë se një rreshti" - -#: ../src/option.c:482 ../src/option.c:680 -msgid "Allow changes to text" -msgstr "Lejon ndryshimin e tekstit" - -#: ../src/option.c:491 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Printon një kollonë të caktuar (Vlera e paracaktuar është 1. 'ALL' " -"mund të përdoret për të printuar të gjitha kollonat)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:493 ../src/option.c:502 -msgid "NUMBER" -msgstr "NUMRI" - -#: ../src/option.c:501 -msgid "Hide a specific column" -msgstr "Fsheh një kollonë të specifikuar" - -#: ../src/option.c:516 -msgid "Display notification" -msgstr "Shfaq një ikonë në zonën e njoftimeve" - -#: ../src/option.c:525 -msgid "Set the notification text" -msgstr "Përcakton tekstin e njoftimit" - -#: ../src/option.c:534 -msgid "Listen for commands on stdin" -msgstr "Në pritje për komandat nga stdin" - -#: ../src/option.c:549 -msgid "Display progress indication dialog" -msgstr "Shfaq një dialog me treguesin e përparimit" - -#: ../src/option.c:567 -msgid "Set initial percentage" -msgstr "Përcakton përqindjen fillestare" - -#: ../src/option.c:568 -msgid "PERCENTAGE" -msgstr "PËRQINDJA" - -#: ../src/option.c:576 -msgid "Pulsate progress bar" -msgstr "Bën të pulsojë shtyllën e përparimit" - -#: ../src/option.c:586 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Mbyll dialogun kur arrihet 100%" - -#: ../src/option.c:596 -#, no-c-format -msgid "Kill parent process if cancel button is pressed" -msgstr "Vret proçesin prind nëse shtypet butoni \"anullo\"" - -#: ../src/option.c:611 -msgid "Display question dialog" -msgstr "Shfaq një dialog pyetje" - -#: ../src/option.c:629 -msgid "Sets the label of the Ok button" -msgstr "Përcakton etiketën e pulsantit \"Ok\"" - -#: ../src/option.c:638 -msgid "Sets the label of the Cancel button" -msgstr "Përcakton etiketën e pulsantit \"Anullo\"" - -#: ../src/option.c:662 -msgid "Display text information dialog" -msgstr "Shfaq një dialog informacioni me tekst" - -#: ../src/option.c:671 -msgid "Open file" -msgstr "Hap file" - -#: ../src/option.c:695 -msgid "Display warning dialog" -msgstr "Shfaq një dialog paralajmërimi" - -#: ../src/option.c:728 -msgid "Display scale dialog" -msgstr "Shfaq një dialog me shkallën" - -#: ../src/option.c:746 -msgid "Set initial value" -msgstr "Përcakton vlerën fillestare" - -#: ../src/option.c:747 ../src/option.c:756 ../src/option.c:765 -#: ../src/option.c:774 -msgid "VALUE" -msgstr "VLERA" - -#: ../src/option.c:755 -msgid "Set minimum value" -msgstr "Përcakton vlerën minimale" - -#: ../src/option.c:764 -msgid "Set maximum value" -msgstr "Përcakton vlerën maksimale" - -#: ../src/option.c:773 -msgid "Set step size" -msgstr "Përcakton madhësinë e hapit" - -#: ../src/option.c:782 -msgid "Print partial values" -msgstr "Printon vlerat e pjesëshme" - -#: ../src/option.c:791 -msgid "Hide value" -msgstr "Fshih vlerën" - -#: ../src/option.c:806 -msgid "About zenity" -msgstr "Informacione mbi zenity" - -#: ../src/option.c:815 -msgid "Print version" -msgstr "Printo versionin" - -#: ../src/option.c:1470 -msgid "General options" -msgstr "Opsione të përgjithshme" - -#: ../src/option.c:1471 -msgid "Show general options" -msgstr "Shfaq opsionet e përgjithshme" - -#: ../src/option.c:1481 -msgid "Calendar options" -msgstr "Opsione të kalendarit" - -#: ../src/option.c:1482 -msgid "Show calendar options" -msgstr "Shfaq opsionet e kalendarit" - -#: ../src/option.c:1492 -msgid "Text entry options" -msgstr "Opsionet e kutizës së shtimit të tekstit" - -#: ../src/option.c:1493 -msgid "Show text entry options" -msgstr "Shfaq opsionet e kutizës së shtimit të tekstit" - -#: ../src/option.c:1503 -msgid "Error options" -msgstr "Opsione të dialogut të gabimeve" - -#: ../src/option.c:1504 -msgid "Show error options" -msgstr "Shfaq opsionet e dialogut të gabimeve" - -#: ../src/option.c:1514 -msgid "Info options" -msgstr "Opsione të dialogut të informacioneve" - -#: ../src/option.c:1515 -msgid "Show info options" -msgstr "Shfaq opsionet e dialogut të informacioneve" - -#: ../src/option.c:1525 -msgid "File selection options" -msgstr "Opsione të dialogut të zgjedhjes së file" - -#: ../src/option.c:1526 -msgid "Show file selection options" -msgstr "Shfaq opsionet e dialogut të zgjedhjes së file" - -#: ../src/option.c:1536 -msgid "List options" -msgstr "Opsionet e listës" - -#: ../src/option.c:1537 -msgid "Show list options" -msgstr "Shfaq opsionet e listës" - -#: ../src/option.c:1547 -msgid "Notification icon options" -msgstr "Opsione të ikonës së njoftimeve" - -#: ../src/option.c:1548 -msgid "Show notification icon options" -msgstr "Shfaq opsionet e ikonës së njoftimeve" - -#: ../src/option.c:1558 -msgid "Progress options" -msgstr "Opsione të shtyllës së përparimit" - -#: ../src/option.c:1559 -msgid "Show progress options" -msgstr "Shfaq opsionet e shtyllës së përparimit" - -#: ../src/option.c:1569 -msgid "Question options" -msgstr "Opsione të dialogut pyetje" - -#: ../src/option.c:1570 -msgid "Show question options" -msgstr "Shfaq opsione të dialogut të pyetjes" - -#: ../src/option.c:1580 -msgid "Warning options" -msgstr "Opsione të dialogut të paralajmërimit" - -#: ../src/option.c:1581 -msgid "Show warning options" -msgstr "Shfaq opsionet e dialogut të paralajmërimit" - -#: ../src/option.c:1591 -msgid "Scale options" -msgstr "Opsionet e shkallës" - -#: ../src/option.c:1592 -msgid "Show scale options" -msgstr "Shfaq opsionet e shkallës" - -#: ../src/option.c:1602 -msgid "Text information options" -msgstr "Opsionet e tekstit informues" - -#: ../src/option.c:1603 -msgid "Show text information options" -msgstr "Shfaq opsionet e tekstit informues" - -#: ../src/option.c:1613 -msgid "Miscellaneous options" -msgstr "Opsione të ndryshme" - -#: ../src/option.c:1614 -msgid "Show miscellaneous options" -msgstr "Shfaq opsione të ndryshme" - -#: ../src/option.c:1639 -#, c-format -msgid "This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ky opsion nuk gjendet në dispozicion. Shiko --help për të gjitha " -"përdorimet e mundshme.\n" - -#: ../src/option.c:1643 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Opsioni --%s nuk suportohet nga ky dialog\n" - -#: ../src/option.c:1647 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Janë specifikuar dy apo më shumë opsione për dialogun\n" - diff --git a/po/sr.po b/po/sr.po deleted file mode 100644 index 74a8247..0000000 --- a/po/sr.po +++ /dev/null @@ -1,900 +0,0 @@ -# Serbian translation of zenity -# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2015. -# This file is distributed under the same license as the zenity package. -# Александар Урошевић , 2004—2005. -# Слободан Д. Средојевић 2005. -# Мирослав Николић , 2011—2015. -# Милош Поповић , 2010, 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-25 22:15+0100\n" -"Last-Translator: Марко М. Костић \n" -"Language-Team: српски \n" -"Language: sr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" -"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Project-Style: gnome\n" -"X-Generator: Poedit 2.0.3\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Овај програм је слободан софтвер; можете га расподељивати и/или мењати под " -"условима Гнуове мање опште јавне лиценце како је објављује Задужбина " -"слободног софтвера; било издања 2 те лиценце, или (према вашем мишљењу) било " -"којег новијег издања.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Овај програм се расподељује у нади да ће бити од користи, али БЕЗ ИКАКВИХ " -"ГАРАНЦИЈА; чак и без примењене гаранције ТРЖИШНЕ ВРЕДНОСТИ или " -"ПРИЛАГОЂЕНОСТИ ОДРЕЂЕНОЈ НАМЕНИ. Погледајте Гнуову мању општу јавну лиценцу " -"за више детаља.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Требали сте да примите примерак Гнуове мање опште јавне лиценце уз овај " -"програм; ако нисте, пишите Задужбини слободног софтвера на адресу: „Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA“." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Александар Урошевић \n" -"Данило Шеган \n" -"Мирослав Николић \n" -"Марко М. Костић (Marko M. Kostić) \n" -"\n" -"http://prevod.org — превод на српски језик." - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Приказује прозорче из скрипти шкољке" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_У реду" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Откажи" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Морате одредити врсту прозорчета. За детаље погледајте „zenity --help‟\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Не" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Да" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Не могу да обрадим поруку\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Неисправна вредност за упут уписан логиком.\n" -"Подржане вредности су „true“ или „false“.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Неподржан упут. Прескачем.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Непознат назив упута. Прескачем.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Не могу да обрадим наредбу са стандардног улаза\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Обавештење Зенита" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Поставља наслов прозорчета" - -#: src/option.c:165 -msgid "TITLE" -msgstr "НАСЛОВ" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Одређује иконицу прозора" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ПУТАЊА ДО ИКОНИЦЕ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Поставља ширину" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ШИРИНА" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Поставља висину" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ВИСИНА" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Поставља временски рок прозорчета у секундама" - -# Где, шта, где, ко??? -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ВРЕМЕНСКИ РОК" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Поставите натпис дугмета „У реду“" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "ТЕКСТ" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Поставите натпис дугмета „Откажи“" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Додај још једно дугме" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Поставља условљени савет" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Поставља родитељски прозор на који се прикачиње" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ПРОЗОР" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Приказује прозорче календара" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Поставља текст прозорчета" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Поставља дан у календару" - -#: src/option.c:252 -msgid "DAY" -msgstr "ДАН" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Поставља месец у календару" - -#: src/option.c:259 -msgid "MONTH" -msgstr "МЕСЕЦ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Поставља годину у календару" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ГОДИНА" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Поставља формат повратног датума" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ОБРАЗАЦ" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Приказује прозорче за унос текста" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Поставља текст за унос" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Скрива текст за унос" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Приказује прозорче за грешке" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Поставља иконицу прозорчета" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "НАЗИВ ИКОНИЦЕ" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Не укључује прелом текста" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Не укључуј Панго ознаке" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Укључује скраћивање у тексту прозорчета. Ово поправља висину прозора код " -"дугих текстова" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Приказује прозорче информација" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Приказује прозорче за избор датотеке" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Поставља назив датотеке" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "НАЗИВ ДАТОТЕКЕ" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Дозвољава избор више датотека" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Покреће избор само директоријума" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Покреће режим за чување" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Поставља знак за раздвајање на излазу" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "РАЗДВОЈНИК" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Потврђује избор датотеке ако иста већ постоји" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Постави филтер имена датотеке" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "НАЗИВ | ШАБЛОН1 ШАБЛОН2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Приказује прозорче са списком" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Поставља заглавље колоне" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "КОЛОНА" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Користи кућице за штиклирање за прву колону" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Користи радио дугмад за прву колону" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Користи слику за прву колону" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Дозвољава истовремени избор више редова" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Дозвољава промене текста" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Исписује одређену колону (Подразумева се 1. За испис свих колона можете " -"користити „ALL“)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "БРОЈ" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Скрива одређену колону" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Сакриј заглавља колона" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Мења основну функцију претраге списка тражећи текст по средини, а не на " -"почетку" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Приказује обавештење" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Поставља текст обавештења" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Прати наредбе на стандардном улазу" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Поставља упуте обавештења" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Приказује прозорче указивача напретка" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Поставља почетни проценат" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ПРОЦЕНАТ" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Пулсирајући указивач напретка" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Одбацује прозорче када се стигне до 100%" - -# bug: it's not "cancel button" but "Cancel button" or even '"Cancel" button -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Убија надпроцес када се притисне дугме „Откажи“" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Скрива дугме „Откажи“" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Процењује када ће напредовање достићи 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Приказује прозорче за упит" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Прикажи дугме „Откажи“ у жижи, подразумевано" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Сакриј „У реду“ и „Откажи“ дугмад" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Приказује прозорче за текстуалне информације" - -#: src/option.c:715 -msgid "Open file" -msgstr "Отвара датотеку" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Поставља текст за унос" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Укључује једно „Прочитао сам и слажем се“ прозорче за избор" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Укључи подршку за ХТМЛ" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Не укључује корисничко дејство са Веб прегледом. Ради само ако користите " -"опцију „--html“" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Постави адресу уместо датотеке. Ради само уколико користите опцију „--html“" - -#: src/option.c:761 -msgid "URL" -msgstr "АДРЕСА" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Самостално премиче текст на крај. Само када је текст снимљен са стандардног " -"улаза" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Приказује прозорче упозорења" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Приказује прозорче размере" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Поставља почетну вредност" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ВРЕДНОСТ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Поставља најмању могућу вредност" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Поставља највећу могућу вредност" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Поставља вредност корака" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Штампа делимичне вредности" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Скрива вредност" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Приказује прозорче образаца" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Додаје нову ставку у прозорче обрасца" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "НАЗИВ ПОЉА" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Додаје нову ставку лозинке у прозорче обрасца" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Додаје нови календар у прозорче обрасца" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "НАЗИВ ПОЉА КАЛЕНДАРА" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Додаје нови списак у прозорче обрасца" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Наводи назив поља и заглавља" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Списак вредности за списак" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Списак вредности раздвојен |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Списак вредности за колоне" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Додаје ново изборно прозорче у прозорче обрасца" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Назив поља изборног прозорчета" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Списак вредности изборног прозорчета" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Приказује заглавље колона" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Приказује прозорче за лозинку" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Приказује прозорче за корисничко име" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Приказује прозорче за избор боје" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Поставља боју" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Приказује палету" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "О Зениту" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Исписује издање програма" - -#: src/option.c:1913 -msgid "General options" -msgstr "Опште опције" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Приказује опште опције" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Опције календара" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Приказује опције календара" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Опције уноса текста" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Приказује опције уноса текста" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Опције грешке" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Приказује опције грешке" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Опције информација" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Приказује опције информација" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Опције избора датотеке" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Приказује опције избора датотеке" - -#: src/option.c:1985 -msgid "List options" -msgstr "Опције списка" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Приказује опције списка" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Опције иконице обавештења" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Приказује опције иконице обавештења" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Опције напретка" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Приказује опције напретка" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Опције упита" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Приказује опције упита" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Опције упозорења" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Приказује опције упозорења" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Опције размере" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Приказује опције размере" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Опције текстуалног обавештења" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Приказује опције текстуалног обавештења" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Опције избора боје" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Приказује опције избора боје" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Опције прозорчета за лозинку" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Приказује опције прозорчета за избор лозинке" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Опције прозорчета образаца" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Приказује опције прозорчета образаца" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Остале опције" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Приказује остале опције" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ова опција није доступна. Молим погледајте „--help“ за све опције " -"коришћења.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Опција „--%s“ није подржана за ово прозорче\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Прослеђене су две или више опција прозорчета\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Упишите вашу лозинку" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Упишите ваше корисничко име и лозинку" - -#: src/password.c:100 -msgid "Username:" -msgstr "Корисничко име:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Лозинка:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Преостало време: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Највећа вредност мора бити већа од најмање вредности.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Вредност је изван опсега.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Није одређен наслов колоне за прозорче списка.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Треба да користите само једну врсту прозорчета списка.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Подесите вредности скале" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Откажи" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "У реду" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Текстуални приказ" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Избор календара" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Изаберите датум." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Календар:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Додајте нови унос" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Унесите нови текст:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Грешка" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Дошло је до грешке." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Прозорче образаца" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Информације" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Сва ажурирања су одрађена." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Напредак" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Покрећем..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Упитник" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Да ли сте сигурни да желите да наставите?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Изаберите ставке са списка" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Изаберите ставке са доњег списка." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Упозорење" diff --git a/po/sr@latin.po b/po/sr@latin.po deleted file mode 100644 index 6aceec1..0000000 --- a/po/sr@latin.po +++ /dev/null @@ -1,900 +0,0 @@ -# Serbian translation of zenity -# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2015. -# This file is distributed under the same license as the zenity package. -# Aleksandar Urošević , 2004—2005. -# Slobodan D. Sredojević 2005. -# Miroslav Nikolić , 2011—2015. -# Miloš Popović , 2010, 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-12-25 22:30+0000\n" -"PO-Revision-Date: 2017-12-25 22:15+0100\n" -"Last-Translator: Marko M. Kostić \n" -"Language-Team: srpski \n" -"Language: sr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" -"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Project-Style: gnome\n" -"X-Generator: Poedit 2.0.3\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Ovaj program je slobodan softver; možete ga raspodeljivati i/ili menjati pod " -"uslovima Gnuove manje opšte javne licence kako je objavljuje Zadužbina " -"slobodnog softvera; bilo izdanja 2 te licence, ili (prema vašem mišljenju) bilo " -"kojeg novijeg izdanja.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ovaj program se raspodeljuje u nadi da će biti od koristi, ali BEZ IKAKVIH " -"GARANCIJA; čak i bez primenjene garancije TRŽIŠNE VREDNOSTI ili " -"PRILAGOĐENOSTI ODREĐENOJ NAMENI. Pogledajte Gnuovu manju opštu javnu licencu " -"za više detalja.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Trebali ste da primite primerak Gnuove manje opšte javne licence uz ovaj " -"program; ako niste, pišite Zadužbini slobodnog softvera na adresu: „Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA“." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Aleksandar Urošević \n" -"Danilo Šegan \n" -"Miroslav Nikolić \n" -"Marko M. Kostić (Marko M. Kostić) \n" -"\n" -"http://prevod.org — prevod na srpski jezik." - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Prikazuje prozorče iz skripti školjke" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_U redu" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Otkaži" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Morate odrediti vrstu prozorčeta. Za detalje pogledajte „zenity --help‟\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ne" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Da" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Ne mogu da obradim poruku\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Neispravna vrednost za uput upisan logikom.\n" -"Podržane vrednosti su „true“ ili „false“.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Nepodržan uput. Preskačem.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Nepoznat naziv uputa. Preskačem.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Ne mogu da obradim naredbu sa standardnog ulaza\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Obaveštenje Zenita" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Postavlja naslov prozorčeta" - -#: src/option.c:165 -msgid "TITLE" -msgstr "NASLOV" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Određuje ikonicu prozora" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "PUTANJA DO IKONICE" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Postavlja širinu" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ŠIRINA" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Postavlja visinu" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "VISINA" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Postavlja vremenski rok prozorčeta u sekundama" - -# Gde, šta, gde, ko??? -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "VREMENSKI ROK" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Postavite natpis dugmeta „U redu“" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEKST" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Postavite natpis dugmeta „Otkaži“" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Dodaj još jedno dugme" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Postavlja uslovljeni savet" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Postavlja roditeljski prozor na koji se prikačinje" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "PROZOR" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Prikazuje prozorče kalendara" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Postavlja tekst prozorčeta" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Postavlja dan u kalendaru" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAN" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Postavlja mesec u kalendaru" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MESEC" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Postavlja godinu u kalendaru" - -#: src/option.c:266 -msgid "YEAR" -msgstr "GODINA" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Postavlja format povratnog datuma" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "OBRAZAC" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Prikazuje prozorče za unos teksta" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Postavlja tekst za unos" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Skriva tekst za unos" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Prikazuje prozorče za greške" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Postavlja ikonicu prozorčeta" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "NAZIV IKONICE" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Ne uključuje prelom teksta" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Ne uključuj Pango oznake" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Uključuje skraćivanje u tekstu prozorčeta. Ovo popravlja visinu prozora kod " -"dugih tekstova" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Prikazuje prozorče informacija" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Prikazuje prozorče za izbor datoteke" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Postavlja naziv datoteke" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "NAZIV DATOTEKE" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Dozvoljava izbor više datoteka" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Pokreće izbor samo direktorijuma" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Pokreće režim za čuvanje" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Postavlja znak za razdvajanje na izlazu" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "RAZDVOJNIK" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Potvrđuje izbor datoteke ako ista već postoji" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Postavi filter imena datoteke" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAZIV | ŠABLON1 ŠABLON2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Prikazuje prozorče sa spiskom" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Postavlja zaglavlje kolone" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLONA" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Koristi kućice za štikliranje za prvu kolonu" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Koristi radio dugmad za prvu kolonu" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Koristi sliku za prvu kolonu" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Dozvoljava istovremeni izbor više redova" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Dozvoljava promene teksta" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Ispisuje određenu kolonu (Podrazumeva se 1. Za ispis svih kolona možete " -"koristiti „ALL“)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "BROJ" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Skriva određenu kolonu" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Sakrij zaglavlja kolona" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Menja osnovnu funkciju pretrage spiska tražeći tekst po sredini, a ne na " -"početku" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Prikazuje obaveštenje" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Postavlja tekst obaveštenja" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Prati naredbe na standardnom ulazu" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Postavlja upute obaveštenja" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Prikazuje prozorče ukazivača napretka" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Postavlja početni procenat" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENAT" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsirajući ukazivač napretka" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Odbacuje prozorče kada se stigne do 100%" - -# bug: it's not "cancel button" but "Cancel button" or even '"Cancel" button -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Ubija nadproces kada se pritisne dugme „Otkaži“" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Skriva dugme „Otkaži“" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Procenjuje kada će napredovanje dostići 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Prikazuje prozorče za upit" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Prikaži dugme „Otkaži“ u žiži, podrazumevano" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Sakrij „U redu“ i „Otkaži“ dugmad" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Prikazuje prozorče za tekstualne informacije" - -#: src/option.c:715 -msgid "Open file" -msgstr "Otvara datoteku" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Postavlja tekst za unos" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Uključuje jedno „Pročitao sam i slažem se“ prozorče za izbor" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Uključi podršku za HTML" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Ne uključuje korisničko dejstvo sa Veb pregledom. Radi samo ako koristite " -"opciju „--html“" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Postavi adresu umesto datoteke. Radi samo ukoliko koristite opciju „--html“" - -#: src/option.c:761 -msgid "URL" -msgstr "ADRESA" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Samostalno premiče tekst na kraj. Samo kada je tekst snimljen sa standardnog " -"ulaza" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Prikazuje prozorče upozorenja" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Prikazuje prozorče razmere" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Postavlja početnu vrednost" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VREDNOST" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Postavlja najmanju moguću vrednost" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Postavlja najveću moguću vrednost" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Postavlja vrednost koraka" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Štampa delimične vrednosti" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Skriva vrednost" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Prikazuje prozorče obrazaca" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Dodaje novu stavku u prozorče obrasca" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "NAZIV POLJA" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Dodaje novu stavku lozinke u prozorče obrasca" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Dodaje novi kalendar u prozorče obrasca" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "NAZIV POLJA KALENDARA" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Dodaje novi spisak u prozorče obrasca" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Navodi naziv polja i zaglavlja" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Spisak vrednosti za spisak" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Spisak vrednosti razdvojen |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Spisak vrednosti za kolone" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Dodaje novo izborno prozorče u prozorče obrasca" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Naziv polja izbornog prozorčeta" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Spisak vrednosti izbornog prozorčeta" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Prikazuje zaglavlje kolona" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Prikazuje prozorče za lozinku" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Prikazuje prozorče za korisničko ime" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Prikazuje prozorče za izbor boje" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Postavlja boju" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Prikazuje paletu" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "O Zenitu" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Ispisuje izdanje programa" - -#: src/option.c:1913 -msgid "General options" -msgstr "Opšte opcije" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Prikazuje opšte opcije" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Opcije kalendara" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Prikazuje opcije kalendara" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Opcije unosa teksta" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Prikazuje opcije unosa teksta" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Opcije greške" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Prikazuje opcije greške" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Opcije informacija" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Prikazuje opcije informacija" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Opcije izbora datoteke" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Prikazuje opcije izbora datoteke" - -#: src/option.c:1985 -msgid "List options" -msgstr "Opcije spiska" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Prikazuje opcije spiska" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Opcije ikonice obaveštenja" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Prikazuje opcije ikonice obaveštenja" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Opcije napretka" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Prikazuje opcije napretka" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Opcije upita" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Prikazuje opcije upita" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Opcije upozorenja" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Prikazuje opcije upozorenja" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Opcije razmere" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Prikazuje opcije razmere" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Opcije tekstualnog obaveštenja" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Prikazuje opcije tekstualnog obaveštenja" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Opcije izbora boje" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Prikazuje opcije izbora boje" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Opcije prozorčeta za lozinku" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Prikazuje opcije prozorčeta za izbor lozinke" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Opcije prozorčeta obrazaca" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Prikazuje opcije prozorčeta obrazaca" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Ostale opcije" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Prikazuje ostale opcije" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Ova opcija nije dostupna. Molim pogledajte „--help“ za sve opcije " -"korišćenja.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Opcija „--%s“ nije podržana za ovo prozorče\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Prosleđene su dve ili više opcija prozorčeta\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Upišite vašu lozinku" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Upišite vaše korisničko ime i lozinku" - -#: src/password.c:100 -msgid "Username:" -msgstr "Korisničko ime:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Lozinka:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Preostalo vreme: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Najveća vrednost mora biti veća od najmanje vrednosti.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Vrednost je izvan opsega.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Nije određen naslov kolone za prozorče spiska.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Treba da koristite samo jednu vrstu prozorčeta spiska.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Podesite vrednosti skale" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Otkaži" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "U redu" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Tekstualni prikaz" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Izbor kalendara" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Izaberite datum." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Kalendar:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Dodajte novi unos" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Unesite novi tekst:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Greška" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Došlo je do greške." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Prozorče obrazaca" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Informacije" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Sva ažuriranja su odrađena." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Napredak" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Pokrećem..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Upitnik" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Da li ste sigurni da želite da nastavite?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Izaberite stavke sa spiska" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Izaberite stavke sa donjeg spiska." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Upozorenje" diff --git a/po/sv.po b/po/sv.po deleted file mode 100644 index 6672dce..0000000 --- a/po/sv.po +++ /dev/null @@ -1,894 +0,0 @@ -# Swedish messages for zenity. -# Copyright © 2003-2016 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Christian Rose , 2003, 2004, 2005. -# Daniel Nylander , 2006, 2007, 2008, 2009, 2010, 2011, 2012. -# Sebastian Rasmussen , 2014. -# Anders Jonsson , 2015, 2016. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-04 21:34+0100\n" -"Last-Translator: Anders Jonsson \n" -"Language-Team: Swedish \n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.4\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Detta program är fri programvara. Du kan distribuera det och/eller modifiera " -"det under villkoren i GNU Lesser General Public License, publicerad av Free " -"Software Foundation, antingen version 2 eller (om du så vill) någon senare " -"version.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Detta program distribueras i hopp om att det ska vara användbart, men UTAN " -"NÅGON SOM HELST GARANTI, även utan underförstådd garanti om SÄLJBARHET eller " -"LÄMPLIGHET FÖR NÅGOT SPECIELLT ÄNDAMÅL. Se GNU Lesser General Public License " -"för ytterligare information.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Du bör ha fått en kopia av GNU Lesser General Public License tillsammans med " -"detta program. Om inte, skriv till Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Daniel Nylander \n" -"Christian Rose\n" -"Sebastian Rasmussen \n" -"\n" -"Skicka synpunkter på översättningen till\n" -"." - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Visa dialogrutor från skalskript" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_OK" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "A_vbryt" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Du måste ange en dialogtyp. Se \"zenity --help\" för detaljer\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Nej" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Ja" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "Kunde inte tolka meddelande\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Ogiltigt värde för ett booleskt tips.\n" -"Värden som stöds är ”true” eller ”false”.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Tips saknar stöd. Hoppar över.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Okänt tipsnamn. Hoppar över.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "Kunde inte tolka kommando från standard in\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity-avisering" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Ställ in dialogtiteln" - -#: src/option.c:165 -msgid "TITLE" -msgstr "TITEL" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Ställ in fönsterikonen" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "IKONSÖKVÄG" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Ställ in bredden" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "BREDD" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Ställ in höjden" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "HÖJD" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Ställ in tidsgräns för dialogrutan i sekunder" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "TIDSGRÄNS" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Ställ in etiketten för knappen OK" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "Ställ in etiketten för knappen Avbryt" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Lägg till en extra knapp" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Ställ in modalt tips" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Ställ in föräldrafönster att fästa vid" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "FÖNSTER" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Visa kalenderdialog" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Ställ in dialogtexten" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Ställ in kalenderdagen" - -#: src/option.c:252 -msgid "DAY" -msgstr "DAG" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Ställ in kalendermånaden" - -#: src/option.c:259 -msgid "MONTH" -msgstr "MÅNAD" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Ställ in kalenderåret" - -#: src/option.c:266 -msgid "YEAR" -msgstr "ÅR" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Ställ in formatet på det returnerade datumet" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "MÖNSTER" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Visa textinmatningsdialog" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Ställ in fälttexten" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Dölj fälttexten" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Visa feldialog" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Ställ in dialogikonen" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "IKONNAMN" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Aktivera inte textradbrytning" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Aktivera inte Pango-markup" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Aktivera elliptisering i dialogrutetexten. Detta fixar den höga " -"fönsterstorleken med långa texter" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Visa informationsdialog" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Visa filväljardialog" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Ställ in filnamnet" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "FILNAMN" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Tillåt att flera filer väljs" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Aktivera markering av endast kataloger" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Aktivera sparläge" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Ställ in åtskiljartecken för utdata" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "AVGRÄNSARE" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Bekräfta filval om filnamnet redan finns" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Ställ in ett filnamnsfilter" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAMN | MÖNSTER1 MÖNSTER2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Visa listdialog" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Ställ in kolumnhuvudet" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "KOLUMN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "Använd kryssrutor i första kolumnen" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "Använd radioknappar i första kolumnen" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "Använd en bild i första kolumnen" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Tillåt att flera rader väljs" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Tillåt ändringar av text" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Skriv ut en specifik kolumn (Standardvärdet är 1. \"ALL\" kan användas för " -"att skriva ut alla kolumner)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "NUMMER" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Dölj en specifik kolumn" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Dölj kolumnhuvudena" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Ändra standardsökfunktion för listor till att söka text i mitten, inte i " -"början" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Visa avisering" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Ställ in aviseringstexten" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Lyssna efter kommandon på standard in" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Ställ in aviseringstipsen" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Visa förloppsindikatordialog" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Ställ in initialt procenttal" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "PROCENTTAL" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Pulsera förloppsindikatorn" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Stäng dialogfönstret då 100% har nåtts" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Döda föräldraprocessen om avbrytsknappen trycks" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Dölj avbrytsknapp" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Beräkna när förloppet kommer att nå 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Visa frågedialog" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Ge avbryt-knappen fokus som standard" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Visa inte knapparna OK och Avbryt" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Visa textinformationsdialog" - -#: src/option.c:715 -msgid "Open file" -msgstr "Öppna fil" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Ställ in texttypsnittet" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Aktivera en \"Jag har läst och godkänner\"-kryssruta" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "Aktivera HTML-stöd" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Aktivera inte användarinteraktion med WebView. Fungerar endast om du " -"använder flaggan --html" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Ange en URL istället för en fil. Fungerar endast om du använder flaggan --" -"html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Rulla texten automatiskt till slutet. Bara när text matas från standard in" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Visa varningsdialog" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Visa skaldialog" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Ställ in initialt värde" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "VÄRDE" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Ställ in minimivärde" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Ställ in maximivärde" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Ställ in stegstorlek" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Skriv ut partiella värden" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Dölj värde" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Visa formulärdialog" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Lägg till en ny post i formulärdialog" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Fältnamn" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Lägg till en ny lösenordsinmatning i formulärdialog" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Lägg till en ny kalender i formulärdialog" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Namn på kalenderfält" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Lägg till en ny lista i formulärdialog" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Lista fält- och rubriknamn" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Lista med värden för lista" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Lista med värden separerade med |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Lista med värden för kolumner" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Lägg till en ny listbox i formulärdialog" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Fältnamn på listbox" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Lista med värden för listbox" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Visa kolumnhuvudet" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Visa lösenordsdialog" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Visa flagga för användarnamnet" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Visa färgväljardialog" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Ställ in färgen" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Visa paletten" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Om zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Skriv ut versionsnummer" - -#: src/option.c:1913 -msgid "General options" -msgstr "Allmänna flaggor" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Visa allmänna flaggor" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Kalenderflaggor" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Visa kalenderflaggor" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Flaggor för textinmatning" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Visa flaggor för textinmatning" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Felflaggor" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Visa felflaggor" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Informationsflaggor" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Visa informationsflaggor" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Flaggor för filväljare" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Visa flaggor för filväljare" - -#: src/option.c:1985 -msgid "List options" -msgstr "Listflaggor" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Visa listflaggor" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Flaggor för aviseringsikon" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Visa flaggor för aviseringsikon" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Förloppsflaggor" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Visa förloppsflaggor" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Frågeflaggor" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Visa frågeflaggor" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Varningsflaggor" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Visa varningsflaggor" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Skalflaggor" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Visa skalflaggor" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Textinformationsflaggor" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Visa textinformationsflaggor" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Flaggor för färgväljare" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Visa flaggor för färgväljare" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Flaggor för lösenordsdialog" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Visa flaggor för lösenordsdialog" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Flaggor för formulärdialog" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Visa flaggor för formulärdialog" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Diverse flaggor" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Visa diverse flaggor" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Denna flagga är inte tillgänglig. Se --help för alla möjliga\n" -"användningsfall.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s stöds inte för denna dialog\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Två eller fler dialogflaggor angavs\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Ange ditt lösenord" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Ange ditt användarnamn och lösenord" - -#: src/password.c:100 -msgid "Username:" -msgstr "Användarnamn:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Lösenord:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Kvarstående tid: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Maximalt värde måste vara större än minimalt värde.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Värde utanför intervall.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Inga kolumntitlar angavs för listdialogfönstret.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Du bör endast använda en listdialogtyp.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Justera skalvärdet" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Avbryt" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "OK" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Textvy" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Kalendermarkering" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Välj ett datum nedan." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "K_alender:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Lägg till en ny post" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Ange ny text:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Fel" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Ett fel har inträffat." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formulärdialog" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Information" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Alla uppdateringar är färdiga." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Förlopp" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Kör..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Fråga" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Är du säker på att du vill fortsätta?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Välj objekt från listan" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Välj objekt från listan nedan." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Varning" diff --git a/po/ta.po b/po/ta.po deleted file mode 100644 index 6b0702b..0000000 --- a/po/ta.po +++ /dev/null @@ -1,815 +0,0 @@ -# translation of zenity.HEAD.po to Tamil -# Tamil translation of Tamil Zenity 2.4. -# Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. -# -# -# Dinesh Nadarajah , 2003. -# Jayaradha N , 2004. -# Felix , 2006. -# Dr.T.Vasudevan , 2007, 2008, 2009, 2010, 2011, 2012, 2013. -# Dr,T,Vasudevan , 2010, 2011. -msgid "" -msgstr "" -"Project-Id-Version: zenity.HEAD\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-23 14:24+0530\n" -"PO-Revision-Date: 2013-03-23 14:27+0530\n" -"Last-Translator: Dr.T.Vasudevan \n" -"Language-Team: American English <>\n" -"Language: ta\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"\n" -"\n" -"\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"இது இலவச மென் பொருளாகும். இலவச மென் பொருள் அமைப்பினால் வெளியிடப்பட்ட ஜிஎன்யு " -"குறைவாபொது அனுமதிக்கான விதிகளின் படி இந்த 2ம் பதிப்பையோ / அல்லது அடுத்த " -"பதிப்புகளையோ " -"நீங்கள் மாற்றலாம். அல்லது மீண்டும் பறிமாறலாம்..\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"உபயோகப்படும் என்ற எதிர்பார்ப்புடன் இந்த நிரல் வெளியிடப்படுகிறது. ஆனால் விற்க " -"தகுதி, " -"குறிப்பிட்ட செயலுக்கான தகுதி உள்பட எந்த உத்திரவாதமும் அளிக்கப்படவில்லை. மேற் " -"கொண்டு " -"விவரங்களுக்கு ஜிஎன்யு குறைந்த பொது அனுமதிக்கான விதிகளை பார்க்கவும்.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"னஇந்த நிரலுடன் ஜிஎன்யு குறைவா பொது அனுமதிக்கான விதிகளின் பிரதி உங்களுக்கு " -"கிடைத்திருக்க வேண்டும். இல்லையானால் கீழ் கண்ட முகவரிக்கு கடிதம் எழுதவும். " -"Free Software " -"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "மொழிபெயர்பாளர்-நன்றிகள்" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "ஷெல் சிறுநிரலிலிருந்து உரையாடல் பெட்டியை காட்டுகிறது" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "உரையாடம் வகையை குறிப்பிட வேண்டும்.zenity --help' ஐ பார்க்கவும்\n" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"பூலியன் தட்டச்சிய குறிப்புக்கு செல்லுபடியாகாத மதிப்பு. \n" -"ஆதரவுள்ள மதிப்புகள் 'உண்மை' அல்லது 'பொய்' \n" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "ஆதரவில்லாத குறிப்பு பெயர். தவிர்க்கிறது. \n" - -#. unknown hints -#: ../src/notification.c:150 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "தெரியாத குறிப்பு பெயர். தவிர்க்கிறது. \n" - -#: ../src/notification.c:209 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "stdinலிருந்து கட்டளையை பகுக்க முடியவில்லை\n" - -#: ../src/notification.c:241 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdinலிருந்து செய்தியை பகுக்க முடியாது\n" - -#: ../src/notification.c:323 -msgid "Zenity notification" -msgstr "Zenity அறிவிப்பு" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "உங்கள் கடவுச்சொல்லை உள்ளிடவும்" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "பயனர் பெயர்:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "கடவுச்சொல்:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "அதிகபட்ச மதிப்பு குறைந்தபட்ச மதிப்பை விட அதிகமாக இருக்க வேண்டும்.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "மதிப்பு வரையறை தாண்டியுள்ளது.\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "" -"பட்டியல் உரையாடல் பெட்டியில் நெடுவரிசை தலைப்பு எதுவும் அமைக்கப்படவில்லை\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ஒரே ஒரு பட்டியல் உரையாடல் வகையை நீங்கள் பயன்படுத்த வேண்டும்.\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "நாள்காட்டி தேர்வு" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "கீழிருந்து தேதியை தேர்வு செய்யவும்" - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "(_a)நாள்காட்டி:" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "புதிய உள்ளீட்டை சேர்" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "(_E)புதிய உரையை உள்ளிடவும்:" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "பிழை" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "பிழை நேர்ந்தது" - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "படிவங்கள் உரையாடல்" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "தகவல்" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "முடிந்தவைகளை புதுப்பி" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "முன்னேற்றம்" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "இயங்குகிறது...." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "கேள்வி" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "தொடர விருப்பமா?" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "அளவு மதிப்பினை சரிப்படுத்து" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "உரை காட்சி" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "உருப்படியை பட்டியலிலிருந்து தேர்வு செய்யவும்" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "உருப்படியை கீழுள்ள பட்டியலிலிருந்து தேர்வு செய்யவும்" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "எச்சரிக்கை" - -#: ../src/option.c:158 -msgid "Set the dialog title" -msgstr "உரையாடல் தலைப்பை அமை" - -#: ../src/option.c:159 -msgid "TITLE" -msgstr "தலைப்பு" - -#: ../src/option.c:167 -msgid "Set the window icon" -msgstr "சாளர சின்னத்தை அமை" - -#: ../src/option.c:168 -msgid "ICONPATH" -msgstr "ICONPATH" - -#: ../src/option.c:176 -msgid "Set the width" -msgstr "அகலத்தை அமை" - -#: ../src/option.c:177 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:185 -msgid "Set the height" -msgstr "உயரத்தை அமை" - -#: ../src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:194 -msgid "Set dialog timeout in seconds" -msgstr "உரையாடல் காலாவதி நேரத்தை வினாடிகளில் அமை" - -#. Timeout for closing the dialog -#: ../src/option.c:196 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: ../src/option.c:204 -msgid "Sets the label of the Ok button" -msgstr "சரி பொத்தானின் அடையாள ஒட்டை அமைக்கிறது." - -#: ../src/option.c:205 ../src/option.c:214 ../src/option.c:247 -#: ../src/option.c:307 ../src/option.c:316 ../src/option.c:350 -#: ../src/option.c:400 ../src/option.c:529 ../src/option.c:645 -#: ../src/option.c:663 ../src/option.c:689 ../src/option.c:761 -#: ../src/option.c:829 ../src/option.c:838 ../src/option.c:882 -#: ../src/option.c:932 ../src/option.c:1083 -msgid "TEXT" -msgstr "TEXT" - -#: ../src/option.c:213 -msgid "Sets the label of the Cancel button" -msgstr "ரத்து செய் பொத்தானின் அடையாள ஒட்டை அமைக்கிறது." - -#: ../src/option.c:222 -msgid "Set the modal hint" -msgstr "மாதிரி குறிப்பை அமை" - -#: ../src/option.c:237 -msgid "Display calendar dialog" -msgstr "நாள்காட்டி உரையாடலை காட்டு" - -#: ../src/option.c:246 ../src/option.c:306 ../src/option.c:349 -#: ../src/option.c:399 ../src/option.c:528 ../src/option.c:688 -#: ../src/option.c:760 ../src/option.c:881 ../src/option.c:931 -#: ../src/option.c:1082 -msgid "Set the dialog text" -msgstr "உரை உரையாடலை அமை" - -#: ../src/option.c:255 -msgid "Set the calendar day" -msgstr "நாள்காட்டி தினத்தை அமை" - -#: ../src/option.c:256 -msgid "DAY" -msgstr "DAY" - -#: ../src/option.c:264 -msgid "Set the calendar month" -msgstr "நாள்காட்டி மாதத்தை அமைநாள்காட்டி மாத்தை அம" - -#: ../src/option.c:265 -msgid "MONTH" -msgstr "MONTH" - -#: ../src/option.c:273 -msgid "Set the calendar year" -msgstr "நாள்காட்டி வருடத்தை அமை" - -#: ../src/option.c:274 -msgid "YEAR" -msgstr "YEAR" - -#: ../src/option.c:282 ../src/option.c:1100 -msgid "Set the format for the returned date" -msgstr "தருவிளைவு தேதியின் வடிவமைப்பை அமை" - -#: ../src/option.c:283 ../src/option.c:1101 -msgid "PATTERN" -msgstr "PATTERN" - -#: ../src/option.c:297 -msgid "Display text entry dialog" -msgstr "உரை உள்ளீடு உரையாடலை காட்டு" - -#: ../src/option.c:315 -msgid "Set the entry text" -msgstr "உரை உள்ளீட்டை அமை" - -#: ../src/option.c:324 -msgid "Hide the entry text" -msgstr "உரை உள்ளீட்டை மறை" - -#: ../src/option.c:340 -msgid "Display error dialog" -msgstr "பிழை உரையை காட்டு" - -#: ../src/option.c:358 ../src/option.c:408 ../src/option.c:769 -#: ../src/option.c:890 -msgid "Set the dialog icon" -msgstr "உரையாடல் சின்னத்தை அமை" - -#: ../src/option.c:359 ../src/option.c:409 ../src/option.c:770 -#: ../src/option.c:891 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: ../src/option.c:367 ../src/option.c:417 ../src/option.c:778 -#: ../src/option.c:899 -msgid "Do not enable text wrapping" -msgstr "உரை மடித்தலை செயல்படுத்த வேண்டாம்" - -#: ../src/option.c:376 ../src/option.c:426 ../src/option.c:787 -#: ../src/option.c:908 -msgid "Do not enable pango markup" -msgstr "பாங்கோ குறித்தலை செயல்படுத்த வேண்டாம்" - -#: ../src/option.c:390 -msgid "Display info dialog" -msgstr "தகவல்உரையாடலை காட்டு" - -#: ../src/option.c:440 -msgid "Display file selection dialog" -msgstr "கோப்பு தேர்வு உரையாடலை காட்டு" - -#: ../src/option.c:449 -msgid "Set the filename" -msgstr "கோப்பு பெயரை அமை" - -#: ../src/option.c:450 ../src/option.c:811 -msgid "FILENAME" -msgstr "FILENAME" - -#: ../src/option.c:458 -msgid "Allow multiple files to be selected" -msgstr "பல கோப்புகள் தேர்வு செய்யப்படுவதை அமை" - -#: ../src/option.c:467 -msgid "Activate directory-only selection" -msgstr "அடைவு-மட்டும் தேர்வினை செயல்படுத்து" - -#: ../src/option.c:476 -msgid "Activate save mode" -msgstr "சேமிப்பு முறையை செயல்படுத்து" - -#: ../src/option.c:485 ../src/option.c:573 ../src/option.c:1091 -msgid "Set output separator character" -msgstr "விளியீடு பிரிப்பான் எழுத்து" - -#: ../src/option.c:486 ../src/option.c:574 ../src/option.c:1092 -msgid "SEPARATOR" -msgstr "SEPARATOR" - -#: ../src/option.c:494 -msgid "Confirm file selection if filename already exists" -msgstr "கோப்பு பெயர் ஏற்கனவே இருந்தால் கோப்பு தேர்வினை உறுதிபடுத்தவும்" - -#: ../src/option.c:503 -msgid "Sets a filename filter" -msgstr "கோப்பு பெயர் வடிப்பியை அமைக்கிறது." - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:505 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:519 -msgid "Display list dialog" -msgstr "பட்டியல் உரையாடலை காட்டு" - -#: ../src/option.c:537 -msgid "Set the column header" -msgstr "நெடுவரிசை தலைப்பை அமை" - -#: ../src/option.c:538 -msgid "COLUMN" -msgstr "COLUMN" - -#: ../src/option.c:546 -msgid "Use check boxes for first column" -msgstr "முதல் நெடுவரிசைக்கு சோதனைப்பெட்டியை பயன்படுத்து" - -#: ../src/option.c:555 -msgid "Use radio buttons for first column" -msgstr "முதல் நெடுவரிசைக்கு ரேடியோ பட்டனை பயன்படுத்து" - -#: ../src/option.c:564 -msgid "Use an image for first column" -msgstr "முதல் நெடுவரிசைக்கு ஒரு பிம்பத்தை பயன்படுத்து" - -#: ../src/option.c:582 -msgid "Allow multiple rows to be selected" -msgstr "பல நிரைகளை தேர்ந்தெடுக்க அனுமதி" - -#: ../src/option.c:591 ../src/option.c:819 -msgid "Allow changes to text" -msgstr "உரையில் மாற்றங்களை அனுமதி" - -#: ../src/option.c:600 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"நெடுவரிசை அச்சடித்தலை குறிப்பிடு (Default is 1. 'ALL' can be used to print " -"all " -"columns)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:602 ../src/option.c:611 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:610 -msgid "Hide a specific column" -msgstr "ஒரு குறிப்பிட்ட நிரலை மறை" - -#: ../src/option.c:619 -msgid "Hides the column headers" -msgstr "நெடுவரிசை தலைப்பை ஒளித்து வைக்கிறது" - -#: ../src/option.c:635 -msgid "Display notification" -msgstr "அறிவிப்பினை காட்டு" - -#: ../src/option.c:644 -msgid "Set the notification text" -msgstr "அறிவிப்பு உரையை அமை" - -#: ../src/option.c:653 -msgid "Listen for commands on stdin" -msgstr "stdinல் கட்டளைகளை கேட்டல்" - -#: ../src/option.c:662 -msgid "Set the notification hints" -msgstr "அறிவிப்பு குறிப்புகளை அமை" - -#: ../src/option.c:679 -msgid "Display progress indication dialog" -msgstr "முன்னேற்றப்பட்டி உரையாடலை காட்டு" - -#: ../src/option.c:697 -msgid "Set initial percentage" -msgstr "துவக்க சதவிகிதத்தை அமை" - -#: ../src/option.c:698 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: ../src/option.c:706 -msgid "Pulsate progress bar" -msgstr "முன்னேற்ற பட்டியை பல்ஸேட்" - -#: ../src/option.c:716 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% முடிப்பதற்கு முன் ரத்து செய்" - -#: ../src/option.c:726 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "கைவிடு பொத்தானை அமுக்கினால் பெற்றோர் செயல்பாட்டை முடிக்கவும்" - -#: ../src/option.c:736 -#, no-c-format -msgid "Hide Cancel button" -msgstr "ரத்து பொத்தானை மறை" - -#: ../src/option.c:751 -msgid "Display question dialog" -msgstr "கேள்வி உரையாடலை காட்டு" - -#: ../src/option.c:801 -msgid "Display text information dialog" -msgstr "உரை தகவல் உரையாடலை காட்டு" - -#: ../src/option.c:810 -msgid "Open file" -msgstr "கோப்பை திற" - -#: ../src/option.c:828 -msgid "Set the text font" -msgstr "உரை எழுத்துருவை அமை" - -#: ../src/option.c:837 -msgid "Enable an I read and agree checkbox" -msgstr "நான் படித்தேன் மற்றும் ஒப்புக்கொள்கிறேன் குறி பெட்டி ஒன்றை செயலாக்கு" - -#: ../src/option.c:847 -msgid "Enable html support" -msgstr "ஹெச்டிஎம்எல் ஆதரவை செயலாக்கு" - -#: ../src/option.c:856 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" -"கோப்புக்கு பதில் ஒரு யூஆர்எல் ஐஅமைக்கிறது. நீங்கள் --html தேர்வை அமைத்தால் " -"மட்டுமே " -"பயனாகும்" - -#: ../src/option.c:857 -msgid "URL" -msgstr "யூஆர்எல்(URL)" - -#: ../src/option.c:872 -msgid "Display warning dialog" -msgstr "எச்சரிக்கை உரையாடலை காட்டு" - -#: ../src/option.c:922 -msgid "Display scale dialog" -msgstr "அளவு உரையாடலை காட்டு" - -#: ../src/option.c:940 -msgid "Set initial value" -msgstr "ஆரம்ப மதிப்பினை அமை" - -#: ../src/option.c:941 ../src/option.c:950 ../src/option.c:959 -#: ../src/option.c:968 ../src/option.c:1149 -msgid "VALUE" -msgstr "VALUE" - -#: ../src/option.c:949 -msgid "Set minimum value" -msgstr "குறைந்தபட்ச மதிப்பினை அமை" - -#: ../src/option.c:958 -msgid "Set maximum value" -msgstr "அதிகபட்ச மதிப்பினை அமை" - -#: ../src/option.c:967 -msgid "Set step size" -msgstr "நிலை அளவினை அமை" - -#: ../src/option.c:976 -msgid "Print partial values" -msgstr "பகுதி மதிப்புகளை அச்சிடு" - -#: ../src/option.c:985 -msgid "Hide value" -msgstr "மதிப்பினை மறை" - -#: ../src/option.c:1000 -msgid "Display forms dialog" -msgstr "படிவங்கள் உரையாடலை காட்டு" - -#: ../src/option.c:1009 -msgid "Add a new Entry in forms dialog" -msgstr "படிவங்கள் உரையாடலில் புதிய உள்ளீட்டை சேர்" - -#: ../src/option.c:1010 ../src/option.c:1019 -msgid "Field name" -msgstr "புலம் பெயர்" - -#: ../src/option.c:1018 -msgid "Add a new Password Entry in forms dialog" -msgstr "படிவங்கள் உரையாடலில் புதிய கடவுச்சொல்லை சேர்க்க" - -#: ../src/option.c:1027 -msgid "Add a new Calendar in forms dialog" -msgstr "படிவங்கள் உரையாடலில் புதிய நாள்காட்டியை சேர்க்க" - -#: ../src/option.c:1028 -msgid "Calendar field name" -msgstr "நாள்காட்டி புலப்பெயர்" - -#: ../src/option.c:1036 -msgid "Add a new List in forms dialog" -msgstr "படிவங்கள் உரையாடலில் புதிய பட்டியலை சேர்" - -#: ../src/option.c:1037 -msgid "List field and header name" -msgstr "பட்டியல் புலம் மற்றும் தலைப்பு பெயர்" - -#: ../src/option.c:1045 -msgid "List of values for List" -msgstr "பட்டியலுக்கு மதிப்புகளின் பட்டியல்" - -#: ../src/option.c:1046 ../src/option.c:1055 -msgid "List of values separated by |" -msgstr "| ஆல் பிரிக்கப்பட்ட மதிப்புகளின் பட்டியல்" - -#: ../src/option.c:1054 -msgid "List of values for columns" -msgstr "நெடு வரிசைகளுக்கு மதிப்புகளின் பட்டியல்" - -#: ../src/option.c:1073 -msgid "Show the columns header" -msgstr "நெடுவரிசைகள் தலைப்பை காட்டு" - -#: ../src/option.c:1115 -msgid "Display password dialog" -msgstr "கடவுச்சொல் உரையாடலை காட்டு" - -#: ../src/option.c:1124 -msgid "Display the username option" -msgstr "பயனர்பெயர் தேர்வை காட்டு" - -#: ../src/option.c:1139 -msgid "Display color selection dialog" -msgstr "நிற தேர்வு உரையாடலை காட்டு" - -#: ../src/option.c:1148 -msgid "Set the color" -msgstr "வண்ணத்தை அமை" - -#: ../src/option.c:1157 -msgid "Show the palette" -msgstr "வண்னத்தட்டை காட்டுக" - -#: ../src/option.c:1172 -msgid "About zenity" -msgstr "zenity பற்றி" - -#: ../src/option.c:1181 -msgid "Print version" -msgstr "அச்சடிக்கும் பதிப்பு" - -#: ../src/option.c:2075 -msgid "General options" -msgstr "பொது தேர்வு" - -#: ../src/option.c:2076 -msgid "Show general options" -msgstr "பொதுவான விருப்பங்களை காட்டு" - -#: ../src/option.c:2086 -msgid "Calendar options" -msgstr "நாள்காட்டி தேர்வு" - -#: ../src/option.c:2087 -msgid "Show calendar options" -msgstr "நாள்காட்டி விருப்பங்களை காட்டு" - -#: ../src/option.c:2097 -msgid "Text entry options" -msgstr "உரை உள்ளிடும் தேர்வு" - -#: ../src/option.c:2098 -msgid "Show text entry options" -msgstr "உரை உள்ளிடும் விருப்பங்களை காட்டு" - -#: ../src/option.c:2108 -msgid "Error options" -msgstr "பிழை தேர்வு" - -#: ../src/option.c:2109 -msgid "Show error options" -msgstr "பிழை விருப்பங்களை காட்டு" - -#: ../src/option.c:2119 -msgid "Info options" -msgstr "தகவல் தேர்வு" - -#: ../src/option.c:2120 -msgid "Show info options" -msgstr "தகவல் விருப்பங்களை காட்டு" - -#: ../src/option.c:2130 -msgid "File selection options" -msgstr "கோப்பு தேர்ந்தெடுக்கும் தேர்வு" - -#: ../src/option.c:2131 -msgid "Show file selection options" -msgstr "கோப்பு தேர்ந்தெடுக்கும் விருப்பங்களை காட்டு" - -#: ../src/option.c:2141 -msgid "List options" -msgstr "பட்டியல் தேர்வு" - -#: ../src/option.c:2142 -msgid "Show list options" -msgstr "பட்டியல் விருப்பங்களை காட்டு" - -#: ../src/option.c:2153 -msgid "Notification icon options" -msgstr "அறிவிப்பு சின்ன விருப்பங்கள்" - -#: ../src/option.c:2154 -msgid "Show notification icon options" -msgstr "அறிவிப்பு சின்ன விருப்பங்களை காட்டு" - -#: ../src/option.c:2165 -msgid "Progress options" -msgstr "முன்னேற்றப்பட்டி தேர்வு" - -#: ../src/option.c:2166 -msgid "Show progress options" -msgstr "முன்னேற்ற விருப்பங்களை காட்டு" - -#: ../src/option.c:2176 -msgid "Question options" -msgstr "கேள்வி தேர்வு" - -#: ../src/option.c:2177 -msgid "Show question options" -msgstr "வினா விருப்பங்களை காட்டு" - -#: ../src/option.c:2187 -msgid "Warning options" -msgstr "எச்சரிக்கை தேர்வு" - -#: ../src/option.c:2188 -msgid "Show warning options" -msgstr "எச்சரிக்கை விருப்பங்களை காட்டு" - -#: ../src/option.c:2198 -msgid "Scale options" -msgstr "அளவு விருப்பங்கள்" - -#: ../src/option.c:2199 -msgid "Show scale options" -msgstr "அளவு விருப்பங்களை காட்டு" - -#: ../src/option.c:2209 -msgid "Text information options" -msgstr "உரை தகவல் விருப்பங்கள்" - -#: ../src/option.c:2210 -msgid "Show text information options" -msgstr "உரை தகவல் விருப்பங்களை காட்டு" - -#: ../src/option.c:2220 -msgid "Color selection options" -msgstr "வண்ணம் தேர்ந்தெடுக்கும் தேர்வுகள்" - -#: ../src/option.c:2221 -msgid "Show color selection options" -msgstr "வண்ணம் தேர்ந்தெடுக்கும் விருப்பங்களை காட்டு" - -#: ../src/option.c:2231 -msgid "Password dialog options" -msgstr "கடவுச்சொல் உரையாடல் தேர்வுகள்" - -#: ../src/option.c:2232 -msgid "Show password dialog options" -msgstr "கடவுச்சொல் உரையாடல் விருப்பங்களை காட்டு" - -#: ../src/option.c:2242 -msgid "Forms dialog options" -msgstr "படிவங்கள் உரையாடல் தேர்வுகள்" - -#: ../src/option.c:2243 -msgid "Show forms dialog options" -msgstr "படிவங்கள் உரையாடல் விருப்பங்களை காட்டு" - -#: ../src/option.c:2253 -msgid "Miscellaneous options" -msgstr "மற்ற தேர்வுகள்" - -#: ../src/option.c:2254 -msgid "Show miscellaneous options" -msgstr "இதர விருப்பங்களை காட்டு" - -#: ../src/option.c:2279 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "இந்த விருப்பம் இல்லை. அனைத்து பயன்பாடுகளுக்கும் உதவியை பார்க்கவும்.\n" - -#: ../src/option.c:2283 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s இந்த உரையாடலுக்கு துணையில்லை\n" - -#: ../src/option.c:2287 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "இரண்டுக்கும் மேற்பட்ட உரையாடல் தேர்வுசெய்யப்பட்டது\n" - -#~ msgid "Select a file" -#~ msgstr "கோப்பை தேர்வு செய்யவும்" diff --git a/po/te.po b/po/te.po deleted file mode 100644 index 69f8cae..0000000 --- a/po/te.po +++ /dev/null @@ -1,776 +0,0 @@ -# translation of zenity.gnome-2-28.te.po to Telugu -# Telugu translation of zenity. -# Copyright (C) 2007,2011,2012 Swecha Telugu Localisation Team . -# This file is distributed under the same license as the zenity package. -# -# Matapathi Pramod , 2007. -# Krishna Babu K , 2009. -# Krishna Babu K , 2011, 2012. -# Hari Krishna , 2011, 2012. -# Sasi Bhushan Boddepalli , 2012. -#రహ్మానుద్దీన్ షేక్ , 2012. -msgid "" -msgstr "" -"Project-Id-Version: zenity.gnome-2-28.te\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2012-07-20 23:12+0000\n" -"PO-Revision-Date: 2012-09-13 13:22+0530\n" -"Last-Translator: Krishnababu Krothapalli \n" -"Language-Team: Telugu \n" -"Language: te\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n!=1);\n" -"\n" -"\n" -"X-Generator: Lokalize 1.4\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"ఈ ప్రోగ్రామ్ ఉచిత సాఫ్టువేర్; ఫ్రీ సాఫ్ట్‍వేర్ ఫౌండేషన్ తరుపున ప్రచురితమైనGNU " -"జనరల్ పబ్లిక్ లైసెన్సు కు " -"లోబడి దీనిని మీరు పునఃపంపిణీ మరియు/లేదాసవరణ చేయవచ్చు; మీరు అనుసరించవలిసినది " -"లైసెన్సు యొక్క వర్షన్ 2, " -"లేదా(మీ ఐచ్ఛికం) దాని తరువాతి వర్షన్ కాని.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"ఈ ప్రోగ్రామ్ అది ఉపయోగపడుతుందనే నమ్మకం తో పంపిణీ చేయబడింది,అయితే, " -"వ్యాపారసంబంధితంగా కాని లేదా " -"ప్రతిపాదిత ప్రయోజనం కొరకుకాని హామీ లేదు. అధికవివరములకొరకు GNU అనగా జనరల్ " -"పబ్లిక్ లైసెన్సు నుచూడండి.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"ఈ ప్రోగ్రామ్ తో మీరు GNU అనగా జనరల్ పబ్లిక్ లైసెన్సు నకలు ను పొంది " -"ఉంటారు;పొందకపోతే, Free " -"Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston. " -"MA02110-1301, USA కు వ్రాయండి." - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" -"Pramod " -"కృష్ణబాబు క్రొత్తపల్లి " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "షెల్‍స్క్రిప్టుల నుండి సంవాదాలను ప్రదర్శించు" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "సంవాద రకమును తెలియచేయి. వివరాల కోసం 'zenity --help' చూడు\n" - -#: ../src/notification.c:95 -#, c-format -msgid "could not parse command from stdin\n" -msgstr "stdin నుండి ఆదేశము ముదింపుకు వీలుకాలేదు\n" - -#: ../src/notification.c:122 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "stdin నుండి సందేశము ముదింపుకు వీలుకాలేదు\n" - -#: ../src/notification.c:198 -msgid "Zenity notification" -msgstr "జెనిటీ ప్రకటన" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "సంకేతపదము టైప్ చేయి " - -#: ../src/password.c:99 -msgid "Username:" -msgstr "వాడుకరి పేరు" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "సంకేతపదము" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "అత్యల్ప విలువ కంటే అత్యథిక విలువ పెద్దదై ఉండాలి.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "విలువ శ్రేణికి మించి ఉంది.\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "జాబితా సంవాదం కొరకు ఎటువంటి నిలువువరుస శీర్షికలు నిర్దేశించలేదు.\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "ఒక జాబితా సంవాదాన్ని మాత్రమే వాడాలి.\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "క్యాలెండర్ ఎంపిక" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "క్రింద నుండి ఒక తేదీని ఎంచుకొను." - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "క్యాలెండర్: (_a)" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "ఒక కొత్త చేర్పును చేర్చు" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "కొత్త పాఠ్యం చేర్చు: (_E)" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "దోషము" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "ఒక దోషం ఏర్పడినది." - -#: ../src/zenity.ui.h:8 -#| msgid "Forms dialog" -msgid "Forms dialog" -msgstr "ఫారముల సంవాదం" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "సమాచారము" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "అన్ని తాజాకరణలు ముగిసినవి." - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "ప్రగతి" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "నడుస్తోంది..." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "ప్రశ్న" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "నీవు కొనసాగించుట కొరకు నిశ్చయించుకొన్నావా?" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "కొలబద్ద విలువను పొసగుము" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "పాఠ్య వీక్షణం" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "జాబితా నుండి వస్తువులను ఎంచుకో" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "క్రింద జాబితా నుండి వస్తువులను ఎంచుకో." - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "హెచ్చరిక" - -#: ../src/option.c:155 -msgid "Set the dialog title" -msgstr "సంవాదం శీర్షికను అమర్చు" - -#: ../src/option.c:156 -msgid "TITLE" -msgstr "శీర్షిక" - -#: ../src/option.c:164 -msgid "Set the window icon" -msgstr "కిటికీ ప్రతీకను అమర్చు" - -#: ../src/option.c:165 -msgid "ICONPATH" -msgstr "ప్రతీకదారి" - -#: ../src/option.c:173 -msgid "Set the width" -msgstr "వెడల్పు అమర్చు" - -#: ../src/option.c:174 -msgid "WIDTH" -msgstr "వెడల్పు" - -#: ../src/option.c:182 -msgid "Set the height" -msgstr "పొడవు అమర్చు" - -#: ../src/option.c:183 -msgid "HEIGHT" -msgstr "పొడవు" - -#: ../src/option.c:191 -msgid "Set dialog timeout in seconds" -msgstr "సంవాద కాలగడువు పూర్తిని క్షణములలో అమర్చు" - -#. Timeout for closing the dialog -#: ../src/option.c:193 -msgid "TIMEOUT" -msgstr "కాలగడువు పూర్తి" - -#: ../src/option.c:201 -msgid "Sets the label of the Ok button" -msgstr "సరే బటన్‌యొక్క నామాంకాన్ని అమర్చుతుంది" - -#: ../src/option.c:202 ../src/option.c:211 ../src/option.c:235 -#: ../src/option.c:295 ../src/option.c:304 ../src/option.c:338 -#: ../src/option.c:379 ../src/option.c:499 ../src/option.c:615 -#: ../src/option.c:650 ../src/option.c:722 ../src/option.c:781 -#: ../src/option.c:790 ../src/option.c:834 ../src/option.c:875 -#: ../src/option.c:1026 -msgid "TEXT" -msgstr "పాఠ్యం" - -#: ../src/option.c:210 -msgid "Sets the label of the Cancel button" -msgstr "రద్దుచేయి బటన్‌యొక్క నామాంకాన్ని అమర్చుతుంది" - -#: ../src/option.c:225 -msgid "Display calendar dialog" -msgstr "క్యాలెండర్ సంవాదాన్ని ప్రదర్శించు" - -#: ../src/option.c:234 ../src/option.c:294 ../src/option.c:337 -#: ../src/option.c:378 ../src/option.c:498 ../src/option.c:649 -#: ../src/option.c:721 ../src/option.c:833 ../src/option.c:874 -#: ../src/option.c:1025 -msgid "Set the dialog text" -msgstr "సంవాద పాఠ్యం అమర్చు" - -#: ../src/option.c:243 -msgid "Set the calendar day" -msgstr "క్యాలెండర్ రోజు అమర్చు" - -#: ../src/option.c:244 -msgid "DAY" -msgstr "రోజు" - -#: ../src/option.c:252 -msgid "Set the calendar month" -msgstr "క్యాలెండర్ నెలను అమర్చు" - -#: ../src/option.c:253 -msgid "MONTH" -msgstr "నెల" - -#: ../src/option.c:261 -msgid "Set the calendar year" -msgstr "క్యాలెండర్ సంవత్సరమును అమర్చు" - -#: ../src/option.c:262 -msgid "YEAR" -msgstr "సంవత్సరము" - -#: ../src/option.c:270 ../src/option.c:1043 -msgid "Set the format for the returned date" -msgstr "రాబడి తేదీకి ఆకృతిని అమర్చు" - -#: ../src/option.c:271 ../src/option.c:1044 -msgid "PATTERN" -msgstr "సరళి" - -#: ../src/option.c:285 -msgid "Display text entry dialog" -msgstr "పాఠ్యం చేర్పు సంవాదం పదర్శించు" - -#: ../src/option.c:303 -msgid "Set the entry text" -msgstr "పాఠ్యం చేర్పు అమర్చు" - -#: ../src/option.c:312 -msgid "Hide the entry text" -msgstr "పాఠ్యం చేర్పు మరగుపరచు" - -#: ../src/option.c:328 -msgid "Display error dialog" -msgstr "దోష సంవాదం ప్రదర్శించు" - -#: ../src/option.c:346 ../src/option.c:387 ../src/option.c:730 -#: ../src/option.c:842 -msgid "Do not enable text wrapping" -msgstr "పాఠ్యపు చుట్టివేతను చేతనము చేయవద్దు" - -#: ../src/option.c:355 ../src/option.c:396 ../src/option.c:739 -#: ../src/option.c:851 -msgid "Do not enable pango markup" -msgstr "పాంగో మార్కప్ ను చేతనము చేయవద్దు" - -#: ../src/option.c:369 -msgid "Display info dialog" -msgstr "సమాచార సంవాదం ప్రదర్శించు" - -#: ../src/option.c:410 -msgid "Display file selection dialog" -msgstr "ఫైలు ఎంచుకొను సంవాదం ప్రదర్శించు" - -#: ../src/option.c:419 -msgid "Set the filename" -msgstr "ఫైలు పేరు అమర్చు" - -#: ../src/option.c:420 ../src/option.c:763 -msgid "FILENAME" -msgstr "ఫైలుపేరు" - -#: ../src/option.c:428 -msgid "Allow multiple files to be selected" -msgstr "అనేక ఫైళ్ళు ఎంచుకొనుటకు అనుమతించు" - -#: ../src/option.c:437 -msgid "Activate directory-only selection" -msgstr "వివరము-మాత్రమే ఎంపిక క్రియాశీలించు" - -#: ../src/option.c:446 -msgid "Activate save mode" -msgstr "భద్రపరుచు విధానం క్రియాశీలించు" - -#: ../src/option.c:455 ../src/option.c:543 ../src/option.c:1034 -msgid "Set output separator character" -msgstr "దిగుబడి వేరుచేయు అక్షరం అమర్చు" - -#: ../src/option.c:456 ../src/option.c:544 ../src/option.c:1035 -msgid "SEPARATOR" -msgstr "వేరుచేయునది" - -#: ../src/option.c:464 -msgid "Confirm file selection if filename already exists" -msgstr "ఫైలుపేరు యిప్పటికే వుంటే ఫైలు ఎంపికను నిర్ధారించు" - -#: ../src/option.c:473 -msgid "Sets a filename filter" -msgstr "ఫైలుపేరు ఫిల్టర్‌ను అమర్చుతుంది" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:475 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: ../src/option.c:489 -msgid "Display list dialog" -msgstr "జాబితా సంవాదం ప్రదర్శించు" - -#: ../src/option.c:507 -msgid "Set the column header" -msgstr "నిలువవరుస పీఠిక అమర్చు" - -#: ../src/option.c:508 -msgid "COLUMN" -msgstr "నిలువవరుస" - -#: ../src/option.c:516 -msgid "Use check boxes for first column" -msgstr "మొదటి నిలువవరుస కొరకు తనిఖీపేటికలు వాడు" - -#: ../src/option.c:525 -msgid "Use radio buttons for first column" -msgstr "మొదటి నిలువవరుస కొరకు రేడియో బొత్తములు వాడు" - -#: ../src/option.c:534 -#| msgid "Use check boxes for first column" -msgid "Use an image for first column" -msgstr "మొదటి నిలువవరుస కొరకు ప్రతిరూపం వాడు" - -#: ../src/option.c:552 -msgid "Allow multiple rows to be selected" -msgstr "అనేక అడ్డవరుసలు ఎంచుకొనుటకు అనుమతించు" - -#: ../src/option.c:561 ../src/option.c:771 -msgid "Allow changes to text" -msgstr "పాఠ్యానికి మార్పులను అనుమతించు" - -#: ../src/option.c:570 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"నిర్దిష్ట నిలువువరుసను ముద్రించుము (1 అప్రమేయం. అన్ని నిలువువరుసలను " -"ముద్రించుటకు 'ALL' " -"ఉపయోగించవచ్చును)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:572 ../src/option.c:581 -msgid "NUMBER" -msgstr "సంఖ్య" - -#: ../src/option.c:580 -msgid "Hide a specific column" -msgstr "ఒక నిర్థేశిత నిలువవరుస దాచు" - -#: ../src/option.c:589 -msgid "Hides the column headers" -msgstr "నిలువవరుస పీఠికలను దాచు" - -#: ../src/option.c:605 -msgid "Display notification" -msgstr "ప్రకటన ప్రదర్శించు" - -#: ../src/option.c:614 -msgid "Set the notification text" -msgstr "ప్రకటన పాఠ్యాన్ని అమర్చు" - -#: ../src/option.c:623 -msgid "Listen for commands on stdin" -msgstr "stdin పై ఆదేశముల కొరకు వినుము" - -#: ../src/option.c:640 -msgid "Display progress indication dialog" -msgstr "ప్రగతి చూపు సంవాదం ప్రదర్శించు" - -#: ../src/option.c:658 -msgid "Set initial percentage" -msgstr "ప్రారంభ శాతమును అమర్చు" - -#: ../src/option.c:659 -msgid "PERCENTAGE" -msgstr "శాతం" - -#: ../src/option.c:667 -msgid "Pulsate progress bar" -msgstr "Pulsate ప్రకటన పట్టీ" - -#: ../src/option.c:677 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% చేరుకోగానే డైలాగును మూసివేయి" - -#: ../src/option.c:687 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "రద్దుచేయి బటన్ వత్తబడితే పేరెంట్ ప్రోసెస్‌ను అంతంచేయి" - -#: ../src/option.c:697 -#, no-c-format -msgid "Hide Cancel button" -msgstr "రద్దుచేయు బటన్ ను దాచు" - -#: ../src/option.c:712 -msgid "Display question dialog" -msgstr "ప్రశ్న సంవాదం ప్రదర్శించు" - -#: ../src/option.c:753 -msgid "Display text information dialog" -msgstr "పాఠ్య సమాచార సంవాద ప్రదర్శించు" - -#: ../src/option.c:762 -msgid "Open file" -msgstr "ఫైలు తెరువు" - -#: ../src/option.c:780 -msgid "Set the text font" -msgstr "పాఠ్య ఖతిని అమర్చు" - -#: ../src/option.c:789 -msgid "Enable an I read and agree checkbox" -msgstr "నేను చదివి అంగీకరిస్తున్నాను అన్న చెక్ బాక్స్ ను క్రియాశీలించు" - -#: ../src/option.c:799 -msgid "Enable html support" -msgstr "html తోడ్పాటును క్రియాశీలించు" - -#: ../src/option.c:808 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" -"ఫైల్ బదులుగా URL ను ఏర్పాటు చేస్తుంది.--html ఐచ్ఛికాన్ని ఉపియోగించిన తరువాతనే " -"పని చేస్తుంది" - -#: ../src/option.c:809 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:824 -msgid "Display warning dialog" -msgstr "హెచ్చరిక సంవాదం ప్రదర్శించు" - -#: ../src/option.c:865 -msgid "Display scale dialog" -msgstr "కొలబద్ద సంవాదం ప్రదర్శించు" - -#: ../src/option.c:883 -msgid "Set initial value" -msgstr "ప్రారంభ విలువను అమర్చు" - -#: ../src/option.c:884 ../src/option.c:893 ../src/option.c:902 -#: ../src/option.c:911 ../src/option.c:1092 -msgid "VALUE" -msgstr "విలువ" - -#: ../src/option.c:892 -msgid "Set minimum value" -msgstr "అత్యల్ప విలువను అమర్చు" - -#: ../src/option.c:901 -msgid "Set maximum value" -msgstr "అత్యథిక విలువను అమర్చు" - -#: ../src/option.c:910 -msgid "Set step size" -msgstr "సోపాన పరిమాణం అమర్చు" - -#: ../src/option.c:919 -msgid "Print partial values" -msgstr "పాక్షిక విలువలను ముద్రించు" - -#: ../src/option.c:928 -msgid "Hide value" -msgstr "విలువ దాయు" - -#: ../src/option.c:943 -msgid "Display forms dialog" -msgstr "ఫారముల సంవాదం ప్రదర్శించు" - -#: ../src/option.c:952 -msgid "Add a new Entry in forms dialog" -msgstr "ఫారముల సంవాదంలో ఒక కొత్త చేర్పును చేర్చు" - -#: ../src/option.c:953 ../src/option.c:962 -msgid "Field name" -msgstr "క్షేత్రం పేరు" - -#: ../src/option.c:961 -msgid "Add a new Password Entry in forms dialog" -msgstr "ఫారము సంవాదంకు ఒక కొత్త సంకేతపదమును జతపరుచు" - -#: ../src/option.c:970 -msgid "Add a new Calendar in forms dialog" -msgstr "ఫారము సంవాదంకు ఒక కొత్త క్యాలెండర్ జతపరుచు" - -#: ../src/option.c:971 -msgid "Calendar field name" -msgstr "క్యాలెండర్ క్షేత్రం పేరు" - -#: ../src/option.c:979 -msgid "Add a new List in forms dialog" -msgstr "ఫారముల సంవాదంలో ఒక కొత్త జాబితాను చేర్చు" - -#: ../src/option.c:980 -msgid "List field and header name" -msgstr "జాబితా ఫీల్డ్ మరియు శీర్షిక పేరు" - -#: ../src/option.c:988 -msgid "List of values for List" -msgstr "జాబితా కోసం విలువలు జాబితా" - -#: ../src/option.c:989 ../src/option.c:998 -msgid "List of values separated by |" -msgstr "విలువలు జాబితా | ద్వారా వేరు చేయబడినది." - -#: ../src/option.c:997 -msgid "List of values for columns" -msgstr "నిలువ వరుసల కొరకు విలువల జాబితా" - -#: ../src/option.c:1016 -msgid "Show the columns header" -msgstr "నిలువవరుస పీఠిక చూపించు" - -#: ../src/option.c:1058 -msgid "Display password dialog" -msgstr "సంకేతపదము సంవాదం ప్రదర్శించు" - -#: ../src/option.c:1067 -msgid "Display the username option" -msgstr "వాడుకరి పేరు ఎంపిక ప్రదర్శించు" - -#: ../src/option.c:1082 -msgid "Display color selection dialog" -msgstr "రంగు ఎంచుకొను సంవాదం ప్రదర్శించు" - -#: ../src/option.c:1091 -msgid "Set the color" -msgstr "రంగును అమర్చు" - -#: ../src/option.c:1100 -msgid "Show the palette" -msgstr "పాలెట్ట్ ను అమర్చుము" - -#: ../src/option.c:1115 -msgid "About zenity" -msgstr "జెనిటీ గురించి" - -#: ../src/option.c:1124 -msgid "Print version" -msgstr "ముద్రణ సంవాదము" - -#: ../src/option.c:2006 -msgid "General options" -msgstr "సాధారణ ఐచ్ఛికాలు" - -#: ../src/option.c:2007 -msgid "Show general options" -msgstr "సాధారణ ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2017 -msgid "Calendar options" -msgstr "క్యాలెండర్ ఐచ్ఛికాలు" - -#: ../src/option.c:2018 -msgid "Show calendar options" -msgstr "క్యాలెండర్ ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2028 -msgid "Text entry options" -msgstr "పాఠ్యం చేర్పు ఐచ్ఛికాలు" - -#: ../src/option.c:2029 -msgid "Show text entry options" -msgstr "పాఠ్యం చేర్పు ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2039 -msgid "Error options" -msgstr "దోషము ఐచ్ఛికాలు" - -#: ../src/option.c:2040 -msgid "Show error options" -msgstr "దోషము ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2050 -msgid "Info options" -msgstr "సమాచార ఐచ్ఛికాలు" - -#: ../src/option.c:2051 -msgid "Show info options" -msgstr "సమాచార ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2061 -msgid "File selection options" -msgstr "ఫైలు ఎంపిక ఐచ్ఛికాలు" - -#: ../src/option.c:2062 -msgid "Show file selection options" -msgstr "ఫైలు ఎంపిక ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2072 -msgid "List options" -msgstr "జాబితా ఐచ్ఛికాలు" - -#: ../src/option.c:2073 -msgid "Show list options" -msgstr "జాబితా ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2084 -msgid "Notification icon options" -msgstr "ప్రకటన ప్రతీక ఐచ్ఛికాలు" - -#: ../src/option.c:2085 -msgid "Show notification icon options" -msgstr "ప్రకటన ప్రతీక ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2096 -msgid "Progress options" -msgstr "ప్రగతి ఐచ్ఛికాలు" - -#: ../src/option.c:2097 -msgid "Show progress options" -msgstr "ప్రగతి ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2107 -msgid "Question options" -msgstr "ప్రశ్న ఐచ్ఛికాలు" - -#: ../src/option.c:2108 -msgid "Show question options" -msgstr "ప్రశ్న ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2118 -msgid "Warning options" -msgstr "హెచ్చరిక ఐచ్ఛికాలు" - -#: ../src/option.c:2119 -msgid "Show warning options" -msgstr "హెచ్చరిక ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2129 -msgid "Scale options" -msgstr "కొలబద్ద ఐచ్ఛికాలు" - -#: ../src/option.c:2130 -msgid "Show scale options" -msgstr "కొలబద్ద ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2140 -msgid "Text information options" -msgstr "పాఠ్య సమాచార ఐచ్ఛికాలు" - -#: ../src/option.c:2141 -msgid "Show text information options" -msgstr "పాఠ్య సమాచార ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2151 -msgid "Color selection options" -msgstr "రంగు ఎంపిక ఐచ్ఛికాలు" - -#: ../src/option.c:2152 -msgid "Show color selection options" -msgstr "రంగు ఎంపిక ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2162 -msgid "Password dialog options" -msgstr "సంకేతపద సంవాదపు ఐచ్ఛికాలు" - -#: ../src/option.c:2163 -msgid "Show password dialog options" -msgstr "సంకేతపద సంవాదపు ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2173 -msgid "Forms dialog options" -msgstr "ఫారముల సంవాదం ఐచ్ఛికాలు " - -#: ../src/option.c:2174 -msgid "Show forms dialog options" -msgstr "ఫారముల సంవాదం ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2184 -msgid "Miscellaneous options" -msgstr "వివిధమైన ఐచ్ఛికాలు" - -#: ../src/option.c:2185 -msgid "Show miscellaneous options" -msgstr "వివిధమైన ఐచ్ఛికాలు చూపించు" - -#: ../src/option.c:2210 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "ఈ ఐచ్చికము అందుబాటులోలేదు. అన్ని సాధ్యమగు వినియోగములకు --help చూడు.\n" - -#: ../src/option.c:2214 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ఈ సంవాదం కొరకు సహకరించదు\n" - -#: ../src/option.c:2218 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "రెండు లేదా చాలా సంవాద ఐచ్ఛికాలు నిర్దేశింపబడినవి\n" - diff --git a/po/tg.po b/po/tg.po deleted file mode 100644 index eda5c1d..0000000 --- a/po/tg.po +++ /dev/null @@ -1,781 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Victor Ibragimov , 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: Tajik Gnome\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-02-25 23:13+0000\n" -"PO-Revision-Date: 2013-03-29 22:47+0500\n" -"Last-Translator: Victor Ibragimov \n" -"Language-Team: \n" -"Language: tg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "" - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "" - -#. unknown hints -#: ../src/notification.c:150 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "" - -#: ../src/notification.c:209 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "" - -#: ../src/notification.c:241 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "" - -#: ../src/notification.c:323 -msgid "Zenity notification" -msgstr "" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "Номи корбар:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "Парол:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "" - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "Илова кардани воридаи нав" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "Хато" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "Хатогӣ ба вуҷуд омад." - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "Маълумот" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "" - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "Ҳолати иҷро" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "Иҷро шуда истодааст..." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "Савол" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "Намуди матн" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "Огоҳӣ" - -#: ../src/option.c:158 -msgid "Set the dialog title" -msgstr "" - -#: ../src/option.c:159 -msgid "TITLE" -msgstr "САРЛАВҲА" - -#: ../src/option.c:167 -msgid "Set the window icon" -msgstr "" - -#: ../src/option.c:168 -msgid "ICONPATH" -msgstr "" - -#: ../src/option.c:176 -msgid "Set the width" -msgstr "" - -#: ../src/option.c:177 -msgid "WIDTH" -msgstr "БАР" - -#: ../src/option.c:185 -msgid "Set the height" -msgstr "" - -#: ../src/option.c:186 -msgid "HEIGHT" -msgstr "БАЛАНДӢ" - -#: ../src/option.c:194 -msgid "Set dialog timeout in seconds" -msgstr "" - -#. Timeout for closing the dialog -#: ../src/option.c:196 -msgid "TIMEOUT" -msgstr "" - -#: ../src/option.c:204 -msgid "Sets the label of the Ok button" -msgstr "" - -#: ../src/option.c:205 ../src/option.c:214 ../src/option.c:247 -#: ../src/option.c:307 ../src/option.c:316 ../src/option.c:350 -#: ../src/option.c:400 ../src/option.c:529 ../src/option.c:645 -#: ../src/option.c:663 ../src/option.c:689 ../src/option.c:761 -#: ../src/option.c:829 ../src/option.c:838 ../src/option.c:882 -#: ../src/option.c:932 ../src/option.c:1083 -msgid "TEXT" -msgstr "МАТН" - -#: ../src/option.c:213 -msgid "Sets the label of the Cancel button" -msgstr "" - -#: ../src/option.c:222 -msgid "Set the modal hint" -msgstr "" - -#: ../src/option.c:237 -msgid "Display calendar dialog" -msgstr "" - -#: ../src/option.c:246 ../src/option.c:306 ../src/option.c:349 -#: ../src/option.c:399 ../src/option.c:528 ../src/option.c:688 -#: ../src/option.c:760 ../src/option.c:881 ../src/option.c:931 -#: ../src/option.c:1082 -msgid "Set the dialog text" -msgstr "" - -#: ../src/option.c:255 -msgid "Set the calendar day" -msgstr "" - -#: ../src/option.c:256 -msgid "DAY" -msgstr "РӮЗ" - -#: ../src/option.c:264 -msgid "Set the calendar month" -msgstr "" - -#: ../src/option.c:265 -msgid "MONTH" -msgstr "МОҲ" - -#: ../src/option.c:273 -msgid "Set the calendar year" -msgstr "" - -#: ../src/option.c:274 -msgid "YEAR" -msgstr "СОЛ" - -#: ../src/option.c:282 ../src/option.c:1100 -msgid "Set the format for the returned date" -msgstr "" - -#: ../src/option.c:283 ../src/option.c:1101 -msgid "PATTERN" -msgstr "ШАКЛВОРА" - -#: ../src/option.c:297 -msgid "Display text entry dialog" -msgstr "" - -#: ../src/option.c:315 -msgid "Set the entry text" -msgstr "" - -#: ../src/option.c:324 -msgid "Hide the entry text" -msgstr "" - -#: ../src/option.c:340 -msgid "Display error dialog" -msgstr "" - -#: ../src/option.c:358 ../src/option.c:408 ../src/option.c:769 -#: ../src/option.c:890 -msgid "Set the dialog icon" -msgstr "" - -#: ../src/option.c:359 ../src/option.c:409 ../src/option.c:770 -#: ../src/option.c:891 -msgid "ICON-NAME" -msgstr "" - -#: ../src/option.c:367 ../src/option.c:417 ../src/option.c:778 -#: ../src/option.c:899 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:376 ../src/option.c:426 ../src/option.c:787 -#: ../src/option.c:908 -msgid "Do not enable pango markup" -msgstr "" - -#: ../src/option.c:390 -msgid "Display info dialog" -msgstr "" - -#: ../src/option.c:440 -msgid "Display file selection dialog" -msgstr "" - -#: ../src/option.c:449 -msgid "Set the filename" -msgstr "" - -#: ../src/option.c:450 ../src/option.c:811 -msgid "FILENAME" -msgstr "НОМИ ФАЙЛ" - -#: ../src/option.c:458 -msgid "Allow multiple files to be selected" -msgstr "" - -#: ../src/option.c:467 -msgid "Activate directory-only selection" -msgstr "Фаъол кардани интихоби танҳо феҳрастҳо" - -#: ../src/option.c:476 -msgid "Activate save mode" -msgstr "Фаъол кардани ҳолати захиракунӣ" - -#: ../src/option.c:485 ../src/option.c:573 ../src/option.c:1091 -msgid "Set output separator character" -msgstr "" - -#: ../src/option.c:486 ../src/option.c:574 ../src/option.c:1092 -msgid "SEPARATOR" -msgstr "ҶУДОСОЗ" - -#: ../src/option.c:494 -msgid "Confirm file selection if filename already exists" -msgstr "" - -#: ../src/option.c:503 -msgid "Sets a filename filter" -msgstr "" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:505 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "" - -#: ../src/option.c:519 -msgid "Display list dialog" -msgstr "" - -#: ../src/option.c:537 -msgid "Set the column header" -msgstr "" - -#: ../src/option.c:538 -msgid "COLUMN" -msgstr "СУТУН" - -#: ../src/option.c:546 -msgid "Use check boxes for first column" -msgstr "" - -#: ../src/option.c:555 -msgid "Use radio buttons for first column" -msgstr "" - -#: ../src/option.c:564 -msgid "Use an image for first column" -msgstr "" - -#: ../src/option.c:582 -msgid "Allow multiple rows to be selected" -msgstr "" - -#: ../src/option.c:591 ../src/option.c:819 -msgid "Allow changes to text" -msgstr "" - -#: ../src/option.c:600 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" - -#. Column index number to print out on a list dialog -#: ../src/option.c:602 ../src/option.c:611 -msgid "NUMBER" -msgstr "РАҚАМ" - -#: ../src/option.c:610 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:619 -msgid "Hides the column headers" -msgstr "" - -#: ../src/option.c:635 -msgid "Display notification" -msgstr "" - -#: ../src/option.c:644 -msgid "Set the notification text" -msgstr "" - -#: ../src/option.c:653 -msgid "Listen for commands on stdin" -msgstr "" - -#: ../src/option.c:662 -msgid "Set the notification hints" -msgstr "" - -#: ../src/option.c:679 -msgid "Display progress indication dialog" -msgstr "" - -#: ../src/option.c:697 -msgid "Set initial percentage" -msgstr "" - -#: ../src/option.c:698 -msgid "PERCENTAGE" -msgstr "ФОИЗ" - -#: ../src/option.c:706 -msgid "Pulsate progress bar" -msgstr "" - -#: ../src/option.c:716 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "" - -#: ../src/option.c:726 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "" - -#: ../src/option.c:736 -#, no-c-format -msgid "Hide Cancel button" -msgstr "" - -#: ../src/option.c:751 -msgid "Display question dialog" -msgstr "" - -#: ../src/option.c:801 -msgid "Display text information dialog" -msgstr "" - -#: ../src/option.c:810 -msgid "Open file" -msgstr "Файлро кушоед" - -#: ../src/option.c:828 -msgid "Set the text font" -msgstr "" - -#: ../src/option.c:837 -msgid "Enable an I read and agree checkbox" -msgstr "" - -#: ../src/option.c:847 -msgid "Enable html support" -msgstr "" - -#: ../src/option.c:856 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "" - -#: ../src/option.c:857 -msgid "URL" -msgstr "Суроғаи URL" - -#: ../src/option.c:872 -msgid "Display warning dialog" -msgstr "" - -#: ../src/option.c:922 -msgid "Display scale dialog" -msgstr "" - -#: ../src/option.c:940 -msgid "Set initial value" -msgstr "" - -#: ../src/option.c:941 ../src/option.c:950 ../src/option.c:959 -#: ../src/option.c:968 ../src/option.c:1149 -msgid "VALUE" -msgstr "ҚИМАТ" - -#: ../src/option.c:949 -msgid "Set minimum value" -msgstr "" - -#: ../src/option.c:958 -msgid "Set maximum value" -msgstr "" - -#: ../src/option.c:967 -msgid "Set step size" -msgstr "" - -#: ../src/option.c:976 -msgid "Print partial values" -msgstr "" - -#: ../src/option.c:985 -msgid "Hide value" -msgstr "" - -#: ../src/option.c:1000 -msgid "Display forms dialog" -msgstr "" - -#: ../src/option.c:1009 -msgid "Add a new Entry in forms dialog" -msgstr "Илова кардани воридаи нав дар шаклҳои диалогӣ" - -#: ../src/option.c:1010 ../src/option.c:1019 -msgid "Field name" -msgstr "" - -#: ../src/option.c:1018 -msgid "Add a new Password Entry in forms dialog" -msgstr "Илова кардани вориди проли нав дар шаклҳои диалогӣ" - -#: ../src/option.c:1027 -msgid "Add a new Calendar in forms dialog" -msgstr "Илова кардани тақвими нав дар шаклҳои диалогӣ" - -#: ../src/option.c:1028 -msgid "Calendar field name" -msgstr "" - -#: ../src/option.c:1036 -msgid "Add a new List in forms dialog" -msgstr "Илова кардани рӯйхати нав дар шаклҳои диалогӣ" - -#: ../src/option.c:1037 -msgid "List field and header name" -msgstr "" - -#: ../src/option.c:1045 -msgid "List of values for List" -msgstr "" - -#: ../src/option.c:1046 ../src/option.c:1055 -msgid "List of values separated by |" -msgstr "" - -#: ../src/option.c:1054 -msgid "List of values for columns" -msgstr "" - -#: ../src/option.c:1073 -msgid "Show the columns header" -msgstr "" - -#: ../src/option.c:1115 -msgid "Display password dialog" -msgstr "" - -#: ../src/option.c:1124 -msgid "Display the username option" -msgstr "" - -#: ../src/option.c:1139 -msgid "Display color selection dialog" -msgstr "" - -#: ../src/option.c:1148 -msgid "Set the color" -msgstr "" - -#: ../src/option.c:1157 -msgid "Show the palette" -msgstr "" - -#: ../src/option.c:1172 -msgid "About zenity" -msgstr "Дар бораи zenity" - -#: ../src/option.c:1181 -msgid "Print version" -msgstr "" - -#: ../src/option.c:2075 -msgid "General options" -msgstr "" - -#: ../src/option.c:2076 -msgid "Show general options" -msgstr "" - -#: ../src/option.c:2086 -msgid "Calendar options" -msgstr "Имконоти тақвим" - -#: ../src/option.c:2087 -msgid "Show calendar options" -msgstr "" - -#: ../src/option.c:2097 -msgid "Text entry options" -msgstr "" - -#: ../src/option.c:2098 -msgid "Show text entry options" -msgstr "" - -#: ../src/option.c:2108 -msgid "Error options" -msgstr "" - -#: ../src/option.c:2109 -msgid "Show error options" -msgstr "" - -#: ../src/option.c:2119 -msgid "Info options" -msgstr "" - -#: ../src/option.c:2120 -msgid "Show info options" -msgstr "" - -#: ../src/option.c:2130 -msgid "File selection options" -msgstr "" - -#: ../src/option.c:2131 -msgid "Show file selection options" -msgstr "" - -#: ../src/option.c:2141 -msgid "List options" -msgstr "Имконоти рӯйхат" - -#: ../src/option.c:2142 -msgid "Show list options" -msgstr "" - -#: ../src/option.c:2153 -msgid "Notification icon options" -msgstr "" - -#: ../src/option.c:2154 -msgid "Show notification icon options" -msgstr "" - -#: ../src/option.c:2165 -msgid "Progress options" -msgstr "" - -#: ../src/option.c:2166 -msgid "Show progress options" -msgstr "" - -#: ../src/option.c:2176 -msgid "Question options" -msgstr "" - -#: ../src/option.c:2177 -msgid "Show question options" -msgstr "" - -#: ../src/option.c:2187 -msgid "Warning options" -msgstr "" - -#: ../src/option.c:2188 -msgid "Show warning options" -msgstr "" - -#: ../src/option.c:2198 -msgid "Scale options" -msgstr "" - -#: ../src/option.c:2199 -msgid "Show scale options" -msgstr "" - -#: ../src/option.c:2209 -msgid "Text information options" -msgstr "" - -#: ../src/option.c:2210 -msgid "Show text information options" -msgstr "" - -#: ../src/option.c:2220 -msgid "Color selection options" -msgstr "" - -#: ../src/option.c:2221 -msgid "Show color selection options" -msgstr "" - -#: ../src/option.c:2231 -msgid "Password dialog options" -msgstr "" - -#: ../src/option.c:2232 -msgid "Show password dialog options" -msgstr "" - -#: ../src/option.c:2242 -msgid "Forms dialog options" -msgstr "" - -#: ../src/option.c:2243 -msgid "Show forms dialog options" -msgstr "" - -#: ../src/option.c:2253 -msgid "Miscellaneous options" -msgstr "" - -#: ../src/option.c:2254 -msgid "Show miscellaneous options" -msgstr "" - -#: ../src/option.c:2279 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:2283 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "" - -#: ../src/option.c:2287 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "" diff --git a/po/th.po b/po/th.po deleted file mode 100644 index f994b51..0000000 --- a/po/th.po +++ /dev/null @@ -1,894 +0,0 @@ -# Thai zenity translation. -# Copyright (C) 2005-2016 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Supranee Thirawatthanasuk , 2004. -# Paisa Seeluangsawat , only minor editing -# Theppitak Karoonboonyanan , 2005-2016. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2016-05-05 15:28+0000\n" -"PO-Revision-Date: 2016-05-25 14:02+0700\n" -"Last-Translator: Theppitak Karoonboonyanan \n" -"Language-Team: Thai \n" -"Language: th\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"โปรแกรมนี้ เป็นซอฟต์แวร์เสรี คุณสามารถแจกจ่ายต่อ และ/หรือ แก้ไขโปรแกรมได้ ภายใต้เงื่อนไขของ " -"GNU Lesser General Public License ที่เผยแพร่โดยมูลนิธิซอฟต์แวร์เสรี " -"ไม่ว่าจะเป็นสัญญาอนุญาตรุ่นที่ 2 หรือรุ่นถัดมา (ตามแต่คุณจะเลือก)\n" - -#: src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"โปรแกรมนี้ เผยแพร่ด้วยความหวังว่าโปรแกรมจะมีประโยชน์ แต่ *ไม่มีการรับประกันใดๆ* " -"ไม่มีแม้การรับประกัน *อรรถประโยชน์เชิงพาณิชย์* หรือ " -"*ความเหมาะสมสำหรับวัตถุประสงค์เฉพาะกิจใดๆ* กรุณาอ่าน GNU Lesser General Public " -"License เพื่อดูรายละเอียดเพิ่มเติม\n" - -#: src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"คุณควรจะได้รับสำเนาของ GNU Lesser General Public License มาพร้อมกับโปรแกรมนี้ " -"ถ้าคุณไม่ได้รับ กรุณาติดต่อไปที่ Free Software Foundation, Inc., 51 Franklin Street, " -"Fifth Floor, Boston, MA 02110-1301, USA" - -#: src/about.c:263 -msgid "translator-credits" -msgstr "" -"Supranee Thirawatthanasuk \n" -"Paisa Seeluangsawat \n" -"Theppitak Karoonboonyanan \n" -"\n" -"ถ้ามีเวลาโปรดมาช่วยกับแปล\n" -"http://gnome-th.sf.net" - -#: src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "แสดงกล่องโต้ตอบจากเชลล์สริปต์" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"คุณต้องกำหนดชนิดของกล่องโต้ตอบด้วย โปรดดู 'zenity --help' สำหรับรายละเอียดเพิ่มเติม\n" - -#: src/notification.c:51 -msgid "Could not parse message\n" -msgstr "ไม่สามารถแจงข้อความได้\n" - -#: src/notification.c:140 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"กำหนดค่าบูลีนไม่ถูกต้อง\n" -"ค่าที่ใช้ได้คือ 'true' หรือ 'false' เท่านั้น\n" - -#. (iibiiay) -#: src/notification.c:156 -msgid "Unsupported hint. Skipping.\n" -msgstr "พบค่ากำหนดที่ไม่รองรับ ขอข้าม\n" - -#. unknown hints -#: src/notification.c:173 -msgid "Unknown hint name. Skipping.\n" -msgstr "พบชื่อค่ากำหนดที่ไม่รู้จัก ขอข้าม\n" - -#: src/notification.c:228 -msgid "Could not parse command from stdin\n" -msgstr "ไม่สามารถแจงคำสั่งจาก stdin\n" - -#: src/notification.c:326 -msgid "Zenity notification" -msgstr "การแจ้งเหตุของ Zenity" - -#: src/password.c:55 -msgid "_Cancel" -msgstr "_ยกเลิก" - -#: src/password.c:58 -msgid "_OK" -msgstr "_ตกลง" - -#. Checks if username has been passed as a parameter -#: src/password.c:73 -msgid "Type your password" -msgstr "กรุณาป้อนรหัสผ่านของคุณ" - -#: src/password.c:76 -msgid "Type your username and password" -msgstr "กรุณาป้อนชื่อผู้ใช้และรหัสผ่านของคุณ" - -#: src/password.c:113 -msgid "Username:" -msgstr "ชื่อผู้ใช้:" - -#: src/password.c:127 -msgid "Password:" -msgstr "รหัสผ่าน:" - -#: src/scale.c:57 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ค่าสูงสุดต้องมากกว่าค่าต่ำสุด\n" - -#: src/scale.c:64 -msgid "Value out of range.\n" -msgstr "ค่าอยู่นอกขอบเขต\n" - -#: src/tree.c:376 -msgid "No column titles specified for List dialog.\n" -msgstr "ไม่ได้กำหนดชื่อของคอลัมน์ไว้สำหรับกล่องโต้ตอบเรียงรายการ\n" - -#: src/tree.c:382 -msgid "You should use only one List dialog type.\n" -msgstr "คุณควรเลือกชนิดกล่องโต้ตอบเรียงรายการเพียงชนิดเดียว\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "ปรับค่าอัตราส่วน" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "ยกเลิก" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "ตกลง" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "ข้อความ" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "เลือกวันจากปฏิทิน" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "เลือกวันที่จากข้างล่างนี้" - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_ปฏิทิน:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "เพิ่มข้อความใหม่" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_ป้อนข้อความใหม่:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "ผิดพลาด" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "เกิดข้อผิดพลาด" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "กล่องโต้ตอบแบบฟอร์ม" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "แจ้งเพื่อทราบ" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "การอัพเดตทั้งหมดเสร็จสมบูรณ์" - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "ความคืบหน้า" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "กำลังดำเนินการ..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "คำถาม" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "คุณมั่นใจว่าจะทำต่อไปหรือไม่?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "เลือกรายการจากบัญชีรายการ" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "เลือกรายการจากบัญชีรายการข้างล่าง" - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "คำเตือน" - -#: src/option.c:169 -msgid "Set the dialog title" -msgstr "ตั้งชื่อกล่องโต้ตอบ" - -#: src/option.c:170 -msgid "TITLE" -msgstr "ชื่อ" - -#: src/option.c:178 -msgid "Set the window icon" -msgstr "กำหนดไอคอนของหน้าต่าง" - -#: src/option.c:179 -msgid "ICONPATH" -msgstr "พาธของไอคอน" - -#: src/option.c:187 -msgid "Set the width" -msgstr "กำหนดความกว้าง" - -#: src/option.c:188 -msgid "WIDTH" -msgstr "ความกว้าง" - -#: src/option.c:196 -msgid "Set the height" -msgstr "กำหนดความสูง" - -#: src/option.c:197 -msgid "HEIGHT" -msgstr "ความสูง" - -#: src/option.c:205 -msgid "Set dialog timeout in seconds" -msgstr "กำหนดเวลาคอยของกล่องโต้ตอบ เป็นวินาที" - -#. Timeout for closing the dialog -#: src/option.c:207 -msgid "TIMEOUT" -msgstr "TIMEOUT" - -#: src/option.c:215 -msgid "Set the label of the OK button" -msgstr "กำหนดฉลากของปุ่ม \"ตกลง\"" - -#: src/option.c:216 src/option.c:225 src/option.c:234 src/option.c:276 -#: src/option.c:336 src/option.c:345 src/option.c:379 src/option.c:437 -#: src/option.c:574 src/option.c:699 src/option.c:717 src/option.c:743 -#: src/option.c:823 src/option.c:917 src/option.c:926 src/option.c:988 -#: src/option.c:1046 src/option.c:1215 -msgid "TEXT" -msgstr "TEXT" - -#: src/option.c:224 -msgid "Set the label of the Cancel button" -msgstr "กำหนดฉลากของปุ่ม \"ยกเลิก\"" - -#: src/option.c:233 -msgid "Add an extra button" -msgstr "เพิ่มปุ่ม" - -#: src/option.c:242 -msgid "Set the modal hint" -msgstr "กำหนดว่าเป็นกล่องโต้ตอบแบบโมดัล" - -#: src/option.c:251 -msgid "Set the parent window to attach to" -msgstr "กำหนดหน้าต่างแม่สำหรับหน้าต่างที่จะเปิด" - -#: src/option.c:252 -msgid "WINDOW" -msgstr "WINDOW" - -#: src/option.c:266 -msgid "Display calendar dialog" -msgstr "แสดงกล่องโต้ตอบปฏิทิน" - -#: src/option.c:275 src/option.c:335 src/option.c:378 src/option.c:436 -#: src/option.c:573 src/option.c:742 src/option.c:822 src/option.c:987 -#: src/option.c:1045 src/option.c:1214 -msgid "Set the dialog text" -msgstr "กำหนดข้อความของกล่องโต้ตอบ" - -#: src/option.c:284 -msgid "Set the calendar day" -msgstr "กำหนดวันของปฏิทิน" - -#: src/option.c:285 -msgid "DAY" -msgstr "DAY" - -#: src/option.c:293 -msgid "Set the calendar month" -msgstr "กำหนดเดือนของปฏิทิน" - -#: src/option.c:294 -msgid "MONTH" -msgstr "MONTH" - -#: src/option.c:302 -msgid "Set the calendar year" -msgstr "กำหนดปีของปฏิทิน" - -#: src/option.c:303 -msgid "YEAR" -msgstr "YEAR" - -#: src/option.c:311 src/option.c:1232 -msgid "Set the format for the returned date" -msgstr "กำหนดรูปแบบของวันเวลาที่รายงานกลับ" - -#: src/option.c:312 src/option.c:1233 -msgid "PATTERN" -msgstr "PATTERN" - -#: src/option.c:326 -msgid "Display text entry dialog" -msgstr "แสดงกล่องโต้ตอบรับข้อความ" - -#: src/option.c:344 -msgid "Set the entry text" -msgstr "กำหนดข้อความของกล่องรับข้อความ" - -#: src/option.c:353 -msgid "Hide the entry text" -msgstr "ซ่อนข้อความของกล่องรับข้อความ" - -#: src/option.c:369 -msgid "Display error dialog" -msgstr "แสดงกล่องโต้ตอบข้อผิดพลาด" - -#: src/option.c:387 src/option.c:445 src/option.c:831 src/option.c:996 -msgid "Set the dialog icon" -msgstr "กำหนดไอคอนของกล่องโต้ตอบ" - -#: src/option.c:388 src/option.c:446 src/option.c:832 src/option.c:997 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:396 src/option.c:454 src/option.c:840 src/option.c:1005 -msgid "Do not enable text wrapping" -msgstr "ไม่ต้องแบ่งบรรทัด" - -#: src/option.c:405 src/option.c:463 src/option.c:849 src/option.c:1014 -msgid "Do not enable Pango markup" -msgstr "ไม่เปิดใช้มาร์กอัปของ Pango" - -#: src/option.c:413 src/option.c:471 src/option.c:866 src/option.c:1022 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"เปิดใช้การละข้อความด้วยจุดไข่ปลาในข้อความของกล่องโต้ตอบ " -"เป็นการแก้ปัญหาหน้าต่างมีขนาดสูงเมื่อข้อความยาว" - -#: src/option.c:427 -msgid "Display info dialog" -msgstr "แสดงกล่องโต้ตอบแสดงข้อความ" - -#: src/option.c:485 -msgid "Display file selection dialog" -msgstr "แสดงกล่องโต้ตอบเลือกแฟ้ม" - -#: src/option.c:494 -msgid "Set the filename" -msgstr "กำหนดชื่อแฟ้ม" - -#: src/option.c:495 src/option.c:899 -msgid "FILENAME" -msgstr "ชื่อแฟ้ม" - -#: src/option.c:503 -msgid "Allow multiple files to be selected" -msgstr "อนุญาตให้เลือกได้หลายแฟ้ม" - -#: src/option.c:512 -msgid "Activate directory-only selection" -msgstr "ใช้โหมดเลือกไดเรกทอรีเท่านั้น" - -#: src/option.c:521 -msgid "Activate save mode" -msgstr "ใช้โหมดเก็บบันทึก" - -#: src/option.c:530 src/option.c:618 src/option.c:1223 -msgid "Set output separator character" -msgstr "ตั้งตัวอักษรที่ใช้แยกข้อมูลเอาท์พุต" - -#: src/option.c:531 src/option.c:619 src/option.c:1224 -msgid "SEPARATOR" -msgstr "ตัวแยก" - -#: src/option.c:539 -msgid "Confirm file selection if filename already exists" -msgstr "ยืนยันการเลือกแฟ้ม ถ้ามีแฟ้มชื่อเดียวกันอยู่ก่อนแล้ว" - -#: src/option.c:548 -msgid "Set a filename filter" -msgstr "กำหนดรูปแบบชื่อแฟ้ม" - -#. Help for file-filter argument (name and patterns for file selection) -#: src/option.c:550 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "NAME | PATTERN1 PATTERN2 ..." - -#: src/option.c:564 -msgid "Display list dialog" -msgstr "แสดงกล่องโต้ตอบเรียงรายการ" - -#: src/option.c:582 -msgid "Set the column header" -msgstr "กำหนดหัวคอลัมน์" - -#: src/option.c:583 -msgid "COLUMN" -msgstr "COLUMN" - -#: src/option.c:591 -msgid "Use check boxes for the first column" -msgstr "ใช้กล่องกากบาทสำหรับคอลัมน์แรก" - -#: src/option.c:600 -msgid "Use radio buttons for the first column" -msgstr "ใช้ปุ่มวิทยุสำหรับคอลัมน์แรก" - -#: src/option.c:609 -msgid "Use an image for the first column" -msgstr "ใช้รูปภาพสำหรับคอลัมน์แรก" - -#: src/option.c:627 -msgid "Allow multiple rows to be selected" -msgstr "อนุญาตให้เลือกได้หลายแถว" - -#: src/option.c:636 src/option.c:907 -msgid "Allow changes to text" -msgstr "อนุญาตให้แก้ไขข้อความ" - -#: src/option.c:645 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "พิมพ์เฉพาะคอลัมน์ที่ระบุ (ค่าปกติคือ 1 คุณสามารถใช้ 'ALL' เพื่อสั่งพิมพ์ทุกคอลัมน์ได้)" - -#. Column index number to print out on a list dialog -#: src/option.c:647 src/option.c:656 -msgid "NUMBER" -msgstr "NUMBER" - -#: src/option.c:655 -msgid "Hide a specific column" -msgstr "ซ่อนคอลัมน์ที่กำหนด" - -#: src/option.c:664 -msgid "Hide the column headers" -msgstr "ซ่อนหัวคอลัมน์" - -#: src/option.c:673 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "เปลี่ยนฟังก์ชันค้นหาปกติของรายการให้เป็นการค้นหากลางข้อความ ไม่ใช่ต้นข้อความ" - -#: src/option.c:689 -msgid "Display notification" -msgstr "แสดงการแจ้งเหตุ" - -#: src/option.c:698 -msgid "Set the notification text" -msgstr "กำหนดข้อความของการแจ้งเหตุ" - -#: src/option.c:707 -msgid "Listen for commands on stdin" -msgstr "รอคำสั่งจาก stdin" - -#: src/option.c:716 -msgid "Set the notification hints" -msgstr "กำหนดค่าต่างๆ ของการแจ้งเหตุ" - -#: src/option.c:733 -msgid "Display progress indication dialog" -msgstr "แสดงกล่องโต้ตอบบอกความคืบหน้า" - -#: src/option.c:751 -msgid "Set initial percentage" -msgstr "กำหนดค่าร้อยละเริ่มต้น" - -#: src/option.c:752 -msgid "PERCENTAGE" -msgstr "PERCENTAGE" - -#: src/option.c:760 -msgid "Pulsate progress bar" -msgstr "แถบความคืบหน้าแบบวิ่งไปมา" - -#: src/option.c:770 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "ปลดกล่องโต้ตอบทิ้งเมื่อไปถึงที่ 100%" - -#: src/option.c:779 -msgid "Kill parent process if Cancel button is pressed" -msgstr "ฆ่าโพรเซสแม่ถ้ามีการกดปุ่ม \"ยกเลิก\"" - -#: src/option.c:788 -msgid "Hide Cancel button" -msgstr "ซ่อนปุ่ม \"ยกเลิก\"" - -#: src/option.c:798 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "ประเมินความคืบหน้าว่าจะเสร็จ 100% เมื่อใด" - -#: src/option.c:813 -msgid "Display question dialog" -msgstr "แสดงกล่องโต้ตอบถามคำถาม" - -#: src/option.c:857 -msgid "Give Cancel button focus by default" -msgstr "ให้โฟกัสกับปุ่มยกเลิกโดยปริยาย" - -#: src/option.c:874 -msgid "Suppress OK and Cancel buttons" -msgstr "ซ่อนปุ่ม \"ตกลง\" และ\"ยกเลิก\"" - -#: src/option.c:889 -msgid "Display text information dialog" -msgstr "แสดงกล่องโต้ตอบแจ้งเพื่อทราบ" - -#: src/option.c:898 -msgid "Open file" -msgstr "เปิดแฟ้ม" - -#: src/option.c:916 -msgid "Set the text font" -msgstr "กำหนดแบบอักษรของข้อความ" - -#: src/option.c:925 -msgid "Enable an I read and agree checkbox" -msgstr "เปิดใช้กล่องกา \"ฉันได้อ่านแล้วและเห็นด้วย\"" - -#: src/option.c:935 -msgid "Enable HTML support" -msgstr "เปิดใช้การรองรับ HTML" - -#: src/option.c:944 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "ไม่เปิดการโต้ตอบกับผู้ใช้ด้วย WebView ใช้ได้กับตัวเลือก --html เท่านั้น" - -#: src/option.c:953 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "กำหนด URL แทนการใช้แฟ้ม ใช้ได้กับตัวเลือก --html เท่านั้น" - -#: src/option.c:954 -msgid "URL" -msgstr "URL" - -#: src/option.c:963 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "เลื่อนจอไปที่ท้ายข้อความโดยอัตโนมัติ ใช้เมื่อจับข้อความจาก stdin เท่านั้น" - -#: src/option.c:978 -msgid "Display warning dialog" -msgstr "แสดงกล่องโต้ตอบสำหรับเตือน" - -#: src/option.c:1036 -msgid "Display scale dialog" -msgstr "แสดงกล่องโต้ตอบปรับอัตราส่วน" - -#: src/option.c:1054 -msgid "Set initial value" -msgstr "กำหนดค่าเริ่มต้น" - -#: src/option.c:1055 src/option.c:1064 src/option.c:1073 src/option.c:1082 -#: src/option.c:1281 -msgid "VALUE" -msgstr "VALUE" - -#: src/option.c:1063 -msgid "Set minimum value" -msgstr "กำหนดค่าต่ำสุด" - -#: src/option.c:1072 -msgid "Set maximum value" -msgstr "กำหนดค่าสูงสุด" - -#: src/option.c:1081 -msgid "Set step size" -msgstr "กำหนดขนาดขั้นการปรับ" - -#: src/option.c:1090 -msgid "Print partial values" -msgstr "พิมพ์ค่าระหว่างการปรับ" - -#: src/option.c:1099 -msgid "Hide value" -msgstr "ซ่อนค่า" - -#: src/option.c:1114 -msgid "Display forms dialog" -msgstr "แสดงกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1123 -msgid "Add a new Entry in forms dialog" -msgstr "เพิ่มช่องข้อมูลในกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1124 src/option.c:1133 -msgid "Field name" -msgstr "ชื่อช่องข้อมูล" - -#: src/option.c:1132 -msgid "Add a new Password Entry in forms dialog" -msgstr "เพิ่มช่องรหัสผ่านในกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1141 -msgid "Add a new Calendar in forms dialog" -msgstr "เพิ่มปฏิทินในกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1142 -msgid "Calendar field name" -msgstr "ชื่อช่องข้อมูลปฏิทิน" - -#: src/option.c:1150 -msgid "Add a new List in forms dialog" -msgstr "เพิ่มกล่องเรียงรายการในกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1151 -msgid "List field and header name" -msgstr "ขื่อช่องข้อมูลของกล่องเรียงรายการ" - -#: src/option.c:1159 -msgid "List of values for List" -msgstr "รายการของค่าต่างๆ ในกล่องเรียงรายการ" - -#: src/option.c:1160 src/option.c:1169 src/option.c:1187 -msgid "List of values separated by |" -msgstr "รายการของค่า คั่นด้วย |" - -#: src/option.c:1168 -msgid "List of values for columns" -msgstr "รายชื่อหัวข้อของคอลัมน์ต่างๆ" - -#: src/option.c:1177 -msgid "Add a new combo box in forms dialog" -msgstr "เพิ่มกล่องคอมโบในกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:1178 -msgid "Combo box field name" -msgstr "ชื่อช่องข้อมูลของกล่องคอมโบ" - -#: src/option.c:1186 -msgid "List of values for combo box" -msgstr "รายชื่อของค่าต่างๆ ของกล่องคอมโบ" - -#: src/option.c:1205 -msgid "Show the columns header" -msgstr "กำหนดหัวคอลัมน์" - -#: src/option.c:1247 -msgid "Display password dialog" -msgstr "แสดงกล่องโต้ตอบรับรหัสผ่าน" - -#: src/option.c:1256 -msgid "Display the username option" -msgstr "แสดงตัวเลือกสำหรับชื่อผู้ใช้" - -#: src/option.c:1271 -msgid "Display color selection dialog" -msgstr "แสดงกล่องโต้ตอบเลือกสี" - -#: src/option.c:1280 -msgid "Set the color" -msgstr "กำหนดสี" - -#: src/option.c:1289 -msgid "Show the palette" -msgstr "แสดงจานสี" - -#: src/option.c:1304 -msgid "About zenity" -msgstr "เกี่ยวกับ zenity" - -#: src/option.c:1313 -msgid "Print version" -msgstr "แสดงรุ่น" - -#: src/option.c:2261 -msgid "General options" -msgstr "ตัวเลือกทั่วไป" - -#: src/option.c:2262 -msgid "Show general options" -msgstr "แสดงตัวเลือกทั่วไป" - -#: src/option.c:2272 -msgid "Calendar options" -msgstr "ตัวเลือกสำหรับปฏิทิน" - -#: src/option.c:2273 -msgid "Show calendar options" -msgstr "แสดงตัวเลือกสำหรับปฏิทิน" - -#: src/option.c:2283 -msgid "Text entry options" -msgstr "ตัวเลือกสำหรับการรับข้อความ" - -#: src/option.c:2284 -msgid "Show text entry options" -msgstr "แสดงตัวเลือกสำหรับกล่องรับข้อความ" - -#: src/option.c:2294 -msgid "Error options" -msgstr "ตัวเลือกสำหรับการแสดงข้อผิดพลาด" - -#: src/option.c:2295 -msgid "Show error options" -msgstr "แสดงตัวเลือกสำหรับการแสดงข้อผิดพลาด" - -#: src/option.c:2305 -msgid "Info options" -msgstr "ตัวเลือกสำหรับการแจ้งเพื่อทราบ" - -#: src/option.c:2306 -msgid "Show info options" -msgstr "แสดงตัวเลือกสำหรับการแจ้งเพื่อทราบ" - -#: src/option.c:2316 -msgid "File selection options" -msgstr "ตัวเลือกสำหรับการเลือกแฟ้ม" - -#: src/option.c:2317 -msgid "Show file selection options" -msgstr "แสดงตัวเลือกสำหรับการเลือกแฟ้ม" - -#: src/option.c:2327 -msgid "List options" -msgstr "ตัวเลือกสำหรับการแสดงรายการ" - -#: src/option.c:2328 -msgid "Show list options" -msgstr "แสดงตัวเลือกสำหรับการแสดงรายการ" - -#: src/option.c:2339 -msgid "Notification icon options" -msgstr "ตัวเลือกสำหรับไอคอน" - -#: src/option.c:2340 -msgid "Show notification icon options" -msgstr "แสดงตัวเลือกสำหรับไอคอนในพื้นที่แจ้งเหตุ" - -#: src/option.c:2351 -msgid "Progress options" -msgstr "ตัวเลือกสำหรับแถบแสดงความคืบหน้า" - -#: src/option.c:2352 -msgid "Show progress options" -msgstr "แสดงตัวเลือกสำหรับแถบแสดงความคืบหน้า" - -#: src/option.c:2362 -msgid "Question options" -msgstr "ตัวเลือกสำหรับคำถาม" - -#: src/option.c:2363 -msgid "Show question options" -msgstr "แสดงตัวเลือกสำหรับกล่องคำถาม" - -#: src/option.c:2373 -msgid "Warning options" -msgstr "ตัวเลือกสำหรับคำเตือน" - -#: src/option.c:2374 -msgid "Show warning options" -msgstr "แสดงตัวเลือกสำหรับกล่องคำเตือน" - -#: src/option.c:2384 -msgid "Scale options" -msgstr "ตัวเลือกสำหรับการปรับอัตราส่วน" - -#: src/option.c:2385 -msgid "Show scale options" -msgstr "แสดงตัวเลือกสำหรับการปรับอัตราส่วน" - -#: src/option.c:2395 -msgid "Text information options" -msgstr "ตัวเลือกสำหรับข้อความแจ้งเพื่อทราบ" - -#: src/option.c:2396 -msgid "Show text information options" -msgstr "แสดงตัวเลือกสำหรับข้อความแจ้งเพื่อทราบ" - -#: src/option.c:2406 -msgid "Color selection options" -msgstr "ตัวเลือกสำหรับการเลือกสี" - -#: src/option.c:2407 -msgid "Show color selection options" -msgstr "แสดงตัวเลือกสำหรับการเลือกสี" - -#: src/option.c:2417 -msgid "Password dialog options" -msgstr "ตัวเลือกสำหรับกล่องโต้ตอบรับรหัสผ่าน" - -#: src/option.c:2418 -msgid "Show password dialog options" -msgstr "แสดงตัวเลือกสำหรับกล่องโต้ตอบรับรหัสผ่าน" - -#: src/option.c:2428 -msgid "Forms dialog options" -msgstr "ตัวเลือกสำหรับกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:2429 -msgid "Show forms dialog options" -msgstr "แสดงตัวเลือกสำหรับกล่องโต้ตอบแบบฟอร์ม" - -#: src/option.c:2439 -msgid "Miscellaneous options" -msgstr "ตัวเลือกเบ็ดเตล็ด" - -#: src/option.c:2440 -msgid "Show miscellaneous options" -msgstr "แสดงตัวเลือกเบ็ดเตล็ด" - -#: src/option.c:2465 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "ไม่มีตัวเลือกนี้ กรุณาดู --help สำหรับวิธีใช้ทั้งหมดที่เป็นไปได้\n" - -#: src/option.c:2469 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "ไม่รองรับ --%s สำหรับกล่องโต้ตอบนี้\n" - -#: src/option.c:2473 -msgid "Two or more dialog options specified\n" -msgstr "กรุณาระบุชนิดของกล่องโต้ตอบที่จะใช้เพียงชนิดเดียว\n" - -#~ msgid "Select a file" -#~ msgstr "เลือกแฟ้ม" - -#~ msgid "Orientation" -#~ msgstr "แนววาง" - -#~ msgid "The orientation of the tray." -#~ msgstr "แนววางของถาด" - -#~ msgid "Adjust the scale value." -#~ msgstr "ปรับค่าอัตราส่วน" - -#~ msgid "Credits" -#~ msgstr "เครดิต" - -#~ msgid "Written by" -#~ msgstr "เขียนโดย" - -#~ msgid "Translated by" -#~ msgstr "แปลโดย" - -#~ msgid "About Zenity" -#~ msgstr "เกี่ยวกับ Zenity" - -#~ msgid "_Credits" -#~ msgstr "เ_ครดิต" diff --git a/po/tr.po b/po/tr.po deleted file mode 100644 index df0303f..0000000 --- a/po/tr.po +++ /dev/null @@ -1,896 +0,0 @@ -# translation of zenity to Turkish -# Copyright (C) 2005, 2006, 2007, 2008, 2009 the Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# -# Baris Cicek , 2005, 2007, 2008. -# Fatih Ergüven , 2006, 2007. -# Volkan, 2011. -# Necdet Yücel , 2014, 2015. -# Muhammet Kara , 2011, 2012, 2014, 2015, 2017. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2017-11-26 20:40+0000\n" -"PO-Revision-Date: 2017-12-03 17:13+0300\n" -"Last-Translator: Muhammet Kara \n" -"Language-Team: Türkçe \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" -"X-POOTLE-MTIME: 1433335499.000000\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Bu program bir özgür yazılmdır; Özgür Yazılım Vakfı tarafından yayınlanan " -"GNU Kısıtlı Genel Kamu Lisansı'nın 2. sürümü ya da (tercihinize bağlı) " -"sonraki sürümleri koşulları altında yeniden dağıtabilir ve/veya " -"değiştirebilirsiniz.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Bu program, faydalı olacağı umut edilerek dağıtılmaktadır, fakat HİÇBİR " -"GARANTİSİ YOKTUR; hatta ÜRÜN DEĞERİ ya da BİR AMACA UYGUNLUK gibi garantiler " -"de vermez. Ayrıntılar için lütfen GNU Kısıtlı Genel Kamu Lisansı'nı " -"inceleyiniz.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Bu program ile birlikte GNU Kısıtlı Genel Kamu Lisansı'nın bir kopyasını " -"almış olmalısınız; eğer almadıysanız, lütfen Free Software Foundation, Inc., " -"51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA adresine yazın." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Burçin Dönmez \n" -"Fatih Ergüven \n" -"Muhammet Kara " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Kabuk betiklerinden pencere kutularını görüntüle" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Tamam" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_İptal" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "Pencere çeşidi girmelisiniz. Detaylar için 'zenity --help'e bakınız.\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Hayır" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Evet" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "İleti ayrıştırılamadı\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Bir mantıksal ipucu için geçersiz değer.\n" -"Desteklenen değerler 'doğru' veya 'yanlış'tır.\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Desteklenmeyen ipucu. Atlanıyor.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Bilinmeyen ipucu adı. Atlanıyor.\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "stdin'den gelen komut ayrıştırılamadı\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity uyarısı" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Pencere başlığını ayarla" - -#: src/option.c:165 -msgid "TITLE" -msgstr "BAŞLIK" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Pencere simgesini ayarla" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "SİMGEYOLU" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Genişliği ayarla" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "GENİŞLİK" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Yüksekliği ayarla" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "YÜKSEKLİK" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Pencere zaman aşımını olabildiğince kısa tut" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ZAMANAŞIMI" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "Tamam düğmesinin etiketini ayarla" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "METİN" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "İptal düğmesinin etiketini ayarla" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "Fazladan bir düğme ekle" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Kalıcı ipucu ayarlayın" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "Eklenecek üst pencereyi ayarlayın" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "PENCERE" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Takvim penceresini görüntüle" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Pencere metnini ayarla" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Takvim gününü ayarla" - -#: src/option.c:252 -msgid "DAY" -msgstr "GÜN" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Takvim ayını ayarla" - -#: src/option.c:259 -msgid "MONTH" -msgstr "AY" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Takvim yılını ayarla" - -#: src/option.c:266 -msgid "YEAR" -msgstr "YIL" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Dönecek tarihler için tarih biçimini ayarla" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "DESEN" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Metin girişi penceresini görüntüle" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Giriş metnini ayarla" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Giriş metnini gizle" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Hata penceresini görüntüle" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "İletişim penceresi simgesini ayarla" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "SİMGE-ADI" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Metin bölmesini etkinleştirme" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "Pango imlemesini etkinleştirme" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"İletişim metinlerini elipsleştirmeyi etkinleştir. Bu uzun metinlerle yüksek " -"pencere boyutunu çözecektir" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Bilgi penceresini görüntüle" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Dosya seçme penceresini görüntüle" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Dosya adını ayarla" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "DOSYAADI" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Birden fazla dosya seçimine izin ver" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Sadece-dizin seçeneğini etkinleştir" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Saklama kipini etkinleştir" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Çıktı ayraç karakterini ayarla" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "AYRAÇ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Dosya adı zaten varsa dosya seçimini doğrula" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "Bir dosya adı süzgeci ayarla" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "İSİM | DOKU1 DOKU2 ..." - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Liste penceresini görüntüle" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Sütun başlığını ayarla" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "SÜTUN" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "İlk sütun için onay kutularını kullan" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "İlk sütun için radyo düğmelerini kullan" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "İlk sütun için bir resim kullan" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Birden fazla satır seçimine izin ver" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Metinde değişikliklere izin ver" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Belirtilen sütunu yazdır (Öntanımlı 1'dir. 'ALL' tüm sütunları yazdırmak " -"için kullanılabilir)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "SAYI" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Belirli sütuna gizle" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "Sütun başlıklarını gizle" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Listenin öntanımlı arama özelliğini metnin başından değil ortasından olacak " -"şekilde değiştir" - -#: src/option.c:557 -msgid "Display notification" -msgstr "Uyarıyı görüntüle" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Uyarı metnini ayarla" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "stdin'deki komutları dinle" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "Bildirim ipuçlarını ayarla" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "İlerleme belirtim penceresini görüntüle" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Başlangıç yüzdesini ayarla" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "YÜZDE" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "İlerleme çubuğunu sallandır" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "%100'e ulaşıldığında pencereyi kapat" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Eğer vazgeç tuşuna basılırsa üst süreci yok et" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "İptal düğmesini gizle" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "İlerlemenin ne zaman %100 olacağını tahmin et" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Soru penceresini göster" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "Öntanımlı olarak iptal düğmesine odaklan" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "Tamam ve İptal tuşlarını baskıla" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Metin bilgisi penceresini göster" - -#: src/option.c:715 -msgid "Open file" -msgstr "Dosya aç" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Metin yazı tipini ayarla" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Okudum ve Onayladım onay kutusunu etkinleştir" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "HTML desteğini etkinleştir" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Kullanıcının WebView ile etkileşimini kapat. Sadece --html seçeneğini " -"kullandığınızda işe yarar" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Bir dosya yerine bir adres ayarla. Sadece --html seçeneğini kullanırsanız " -"çalışır." - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Metnin sonuna otomatik kaydır. Sadece metin standart girdiden alındığında" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Uyarı penceresini görüntüle" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Ölçek penceresini görüntüle" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Başlangıç değerini ayarla" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "DEĞER" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "En düşük değeri ayarla" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "En yüksek değeri ayarla" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Adım boyutunu ayarla" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Kısmi değerleri yaz" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Değeri gizle" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Form iletişim penceresini görüntüle" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Form iletişim penceresine yeni bir giriş ekle" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Alan adı" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Form iletişim penceresine yeni bir Parola Girdisi ekle" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Form iletişim penceresine yeni bir Takvim ekle" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Takvim alanının adı" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Form iletişim penceresine yeni bir Liste ekle" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Liste alanı ve başlık adı" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Liste için değerler listesi" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| ile ayrılmış değerler listesi" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Sütunlar için değerler listesi" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "Form iletişim penceresine yeni bir açılan kutu ekle" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "Açılan kutu alan adı" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "Açılan kutu için değerler listesi" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Sütun başlığını göster" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Parola penceresini görüntüle" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Kullanıcı adı seçeneğini göster" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Renk seçme penceresini görüntüle" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Rengi düzenle" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Paleti göster" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Zenity hakkında" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Sürümü yazdır" - -#: src/option.c:1913 -msgid "General options" -msgstr "Genel seçenekler" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Genel seçenekleri göster" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Takvim seçenekleri" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Takvim seçeneklerini göster" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Metin giriş seçenekleri" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Metin giriş seçeneklerini göster" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Hata seçenekleri" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Hata seçeneklerini göster" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Bilgi seçenekleri" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Bilgi seçeneklerini göster" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Dosya seçme özellikleri" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Dosya seçme seçeneklerini göster" - -#: src/option.c:1985 -msgid "List options" -msgstr "Liste seçenekleri" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Liste seçeneklerini göster" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Uyarı simgesi seçenekleri" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Uyarı simgesi seçeneklerini göster" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "İlerleme seçenekleri" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "İlerleme seçeneklerini göster" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Soru seçenekleri" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Soru seçeneklerini göster" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Uyarı seçenekleri" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Uyarı seçeneklerini göster" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Ölçek seçenekleri" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Ölçek seçeneklerini göster" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Metin bilgi seçenekleri" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Metin bilgi seçeneklerini göster" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Renk seçme özellikleri" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Renk seçme seçeneklerini göster" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Parola seçenekleri penceresi" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Parola seçenekleri penceresini göster" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Form iletişim penceresi seçenekleri" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Form iletişim penceresi seçeneklerini göster" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Çeşitli seçenekler" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Çeşitli seçenekleri göster" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Bu seçenek mevcut değil. Mevcut kullanımlar için lütfen --help'e bakınız.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s bu pencere için desteklenmiyor\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "İki veya daha fazla pencere seçeneği belirtildi\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Parolanızı giriniz" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "Kullanıcı adınızı ve parolanızı yazın" - -#: src/password.c:100 -msgid "Username:" -msgstr "Kullanıcı adı:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Parola:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Kalan zaman: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "En yüksek değer en düşük değerden büyük olmalıdır.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Değer aralık dışında.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Liste penceresi için başlık belirtilmedi.\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Sadece tek bit Liste diyalog çeşidi kullanabilirsiniz.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Ölçek değerini ayarla" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "İptal" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Tamam" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Metin Görünümü" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Takvim seçimi" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Aşağıdan bir tarih seçin." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "T_akvim:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Yeni bir giriş ekle" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Yeni metin girişi:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Hata" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Hata oluştu." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Formlar iletişim penceresi" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Bilgi" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Bütün güncellemeler tamam." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "İlerleme" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Çalışıyor..." - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Soru" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Devam etmek istediğinize emin misiniz?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Öğeleri listeden seçiniz" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Aşağıdaki listeden öğeleri seçiniz." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Uyarı" - -#~ msgid "Select a file" -#~ msgstr "Bir dosya seçiniz" diff --git a/po/ug.po b/po/ug.po deleted file mode 100644 index a1c77ec..0000000 --- a/po/ug.po +++ /dev/null @@ -1,786 +0,0 @@ -# translation of zenity.po to Uighur -# This file is distributed under the same license as the PACKAGE package. -# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER -# Abduxukur Abdurixit 2005 -# Gheyret Kenji , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2013-03-31 13:27+0000\n" -"PO-Revision-Date: 2013-04-06 18:40+0900\n" -"Last-Translator: Gheyret Kenji \n" -"Language-Team: GNOME Uighur Translation Project \n" -"Language: ug\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-31 08:11+0000\n" -"X-Generator: Launchpad (build 15887)\n" - -#: ../src/about.c:64 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "بۇ پروگرامما ئەركىن يۇمشاق دېتال؛ سىز ئەركىن يۇمشاق دېتال ۋەخپىسى تارقاتقان GNU ئادەتتىكى ئاممىۋى ئىجازەتنامە بويىچە ئۇنى قايتا تارقىتىپ ياكى ئۆزگەرتەلەيسىز؛ سىز شۇ ئىجازەت كېلىشىمىنىڭ ئىككىنچى نەشرى ياكى يۇقىرى نەشرىنى ئىشلەتسىڭىز بولىدۇ.\n" - -#: ../src/about.c:68 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "بۇ پروگراممىنى تارقىتىشتىكى مەقسەت سىزگە قۇلايلىق ئېلىپ كېلىش، ئەمما ھېچقانداق كاپالەت يوق. ھەمدە خالىغان مەقسەتتە ئۇنى ئىشلىتىپ كېلىپ چىققان بىۋاسىتە ياكى ۋاسىتىلىك ھەر قانداق ئاقىۋەتكە ھېچقانداق مەسئۇلىيەتنى ئۈستىگە ئالمايدۇ. GNU ئادەتتىكى ئاممىۋى ئىجازەت كېلىشىمىنى كۆرۈپ تېخىمۇ كۆپ تەپسىلاتقا ئېرىشىڭ.\n" - -#: ../src/about.c:72 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "مەزكۇر پروگرامما بىلەن بىرگە GNU ئادەتتىكى ئاممىۋى ئىجازەت كېلىشىمىدىن بىر نۇسخا تاپشۇرۇۋالىسىز؛ ئۇنداق بولمىسا بۇ ئادرېسقا خەت يېزىڭ: Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA" - -#: ../src/about.c:265 -msgid "translator-credits" -msgstr "Gheyret Kenji \n" -"Sahran\n" -"Muhemmed Erdem " - -#: ../src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "shell قوليازمىدا سۆزلەشكۈ كۆرسەت" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "سۆزلەشكۈ تۈرىنى بەلگىلىشىڭىز لازىم. تەپسىلاتىنى 'zenity --help' دىن كۆرۈڭ.\n" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "بۇلىن تىپىغا نىسبەتەن ئىناۋەتسىز.\n" -"بۇنىڭغا پەقەت ‹true› ياكى ‹false› دېگەن قىممەتلەرنىلا ئىشلىتىشكە بولىدۇ.\n" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "بۇ كۆرسەتمە(hint) نى قوللىمايدۇ. ئۆتۈپ كەتتى.\n" - -#. unknown hints -#: ../src/notification.c:150 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "بۇ كۆرسەتمە(hint) ئاتىنى قوللىمايدۇ. ئۆتۈپ كەتتى.\n" - -#: ../src/notification.c:209 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "ئۆلچەملىك كىرگۈزگۈچ(stdin) نىڭ بۇيرۇقىنى تەھلىل قىلالمىدى\n" - -#: ../src/notification.c:241 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "ئۆلچەملىك كىرگۈزگۈچ(stdin) نىڭ ئۇچۇرىنى تەھلىل قىلالمىدى\n" - -#: ../src/notification.c:323 -msgid "Zenity notification" -msgstr "Zenity نىڭ ئۇقتۇرۇشى" - -#: ../src/password.c:64 -msgid "Type your password" -msgstr "ئىم كىرگۈزۈڭ" - -#: ../src/password.c:99 -msgid "Username:" -msgstr "ئىشلەتكۈچى ئاتى:" - -#: ../src/password.c:115 -msgid "Password:" -msgstr "ئىم:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "ئەڭ چوڭ قىممىتى ئەڭ كىچىك قىممىتىدىن چوڭ بولۇشى كېرەك.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "قىممىتى دائىرىدىن ئېشىپ كەتتى.\n" - -#: ../src/tree.c:365 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "تىزىم سۆزلەشكۈسىدە ئىستون تېمىسى بەلگىلەنمىگەن.\n" - -#: ../src/tree.c:371 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "سىز پەقەت بىرلا تىزىم سۆزلەشكۈ تىپىنى ئىشلىتەلەيسىز.\n" - -#: ../src/zenity.ui.h:1 -msgid "Calendar selection" -msgstr "يىلنامە تاللاش" - -#: ../src/zenity.ui.h:2 -msgid "Select a date from below." -msgstr "تۆۋەندىكى چېسلادىن بىرنى تاللاڭ." - -#: ../src/zenity.ui.h:3 -msgid "C_alendar:" -msgstr "يىلنامە(_A):" - -#: ../src/zenity.ui.h:4 -msgid "Add a new entry" -msgstr "يېڭى تۈر قوش" - -#: ../src/zenity.ui.h:5 -msgid "_Enter new text:" -msgstr "يېڭى تېكىست كىرگۈزۈڭ(_E):" - -#: ../src/zenity.ui.h:6 -msgid "Error" -msgstr "خاتالىق" - -#: ../src/zenity.ui.h:7 -msgid "An error has occurred." -msgstr "خاتالىق يۈز بەردى." - -#: ../src/zenity.ui.h:8 -msgid "Forms dialog" -msgstr "جەدۋەل سۆزلەشكۈ" - -#: ../src/zenity.ui.h:9 -msgid "Information" -msgstr "ئۇچۇر" - -#: ../src/zenity.ui.h:10 -msgid "All updates are complete." -msgstr "ھەممە يېڭىلاش تاماملاندى." - -#: ../src/zenity.ui.h:11 -msgid "Progress" -msgstr "سۈرئەت" - -#: ../src/zenity.ui.h:12 -msgid "Running..." -msgstr "ئىجرا قىلىنىۋاتىدۇ..." - -#: ../src/zenity.ui.h:13 -msgid "Question" -msgstr "سوئال" - -#: ../src/zenity.ui.h:14 -msgid "Are you sure you want to proceed?" -msgstr "راستىنىلا داۋاملاشتۇرامسىز؟" - -#: ../src/zenity.ui.h:15 -msgid "Adjust the scale value" -msgstr "دائىرە قىممەت تەڭشىكى" - -#: ../src/zenity.ui.h:16 -msgid "Text View" -msgstr "تېكىست كۆرۈنۈش" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "تىزىمدىن تۈرلەرنى تاللاڭ" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "تۆۋەندىكى تىزىمدىن تۈرلەرنى تاللاڭ" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "ئاگاھلاندۇرۇش" - -#: ../src/option.c:158 -msgid "Set the dialog title" -msgstr "سۆزلەشكۈ تېما تەڭشىكى" - -#: ../src/option.c:159 -msgid "TITLE" -msgstr "تېما" - -#: ../src/option.c:167 -msgid "Set the window icon" -msgstr "كۆزنەك سىنبەلگە تەڭشىكى" - -#: ../src/option.c:168 -msgid "ICONPATH" -msgstr "سىنبەلگە يولى" - -#: ../src/option.c:176 -msgid "Set the width" -msgstr "كەڭلىك تەڭشىكى" - -#: ../src/option.c:177 -msgid "WIDTH" -msgstr "WIDTH" - -#: ../src/option.c:185 -msgid "Set the height" -msgstr "ئېگىزلىك تەڭشىكى" - -#: ../src/option.c:186 -msgid "HEIGHT" -msgstr "HEIGHT" - -#: ../src/option.c:194 -msgid "Set dialog timeout in seconds" -msgstr "سۆزلەشكۈنىڭ مۆھلەتتىن ھالقىش ۋاقتى(سېكۇنت) تەڭشىكى" - -#. Timeout for closing the dialog -#: ../src/option.c:196 -msgid "TIMEOUT" -msgstr "مۆھلەتتىن ھالقىش ۋاقتى" - -#: ../src/option.c:204 -msgid "Sets the label of the Ok button" -msgstr "جەزملە توپچىنىڭ ئەنىنى بەلگىلە" - -#: ../src/option.c:205 ../src/option.c:214 ../src/option.c:247 -#: ../src/option.c:307 ../src/option.c:316 ../src/option.c:350 -#: ../src/option.c:400 ../src/option.c:529 ../src/option.c:645 -#: ../src/option.c:663 ../src/option.c:689 ../src/option.c:761 -#: ../src/option.c:829 ../src/option.c:838 ../src/option.c:882 -#: ../src/option.c:932 ../src/option.c:1083 -msgid "TEXT" -msgstr "تېكىست" - -#: ../src/option.c:213 -msgid "Sets the label of the Cancel button" -msgstr "ۋاز كەچ توپچىنىڭ ئەنىنى بەلگىلە" - -#: ../src/option.c:222 -msgid "Set the modal hint" -msgstr "سۆزلەشكۈنى modal غا قىلىدىغان كۆرسەتمە(hint) نى بەلگىلەيدۇ" - -#: ../src/option.c:237 -msgid "Display calendar dialog" -msgstr "يىلنامە سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:246 ../src/option.c:306 ../src/option.c:349 -#: ../src/option.c:399 ../src/option.c:528 ../src/option.c:688 -#: ../src/option.c:760 ../src/option.c:881 ../src/option.c:931 -#: ../src/option.c:1082 -msgid "Set the dialog text" -msgstr "سۆزلەشكۈ تېكىست تەڭشىكى" - -#: ../src/option.c:255 -msgid "Set the calendar day" -msgstr "يىلنامىدىكى كۈن تەڭشىكى" - -#: ../src/option.c:256 -msgid "DAY" -msgstr "كۈن" - -#: ../src/option.c:264 -msgid "Set the calendar month" -msgstr "يىلنامىدىكى ئاي تەڭشىكى" - -#: ../src/option.c:265 -msgid "MONTH" -msgstr "ئاي" - -#: ../src/option.c:273 -msgid "Set the calendar year" -msgstr "يىلنامىدىكى يىل تەڭشىكى" - -#: ../src/option.c:274 -msgid "YEAR" -msgstr "يىل" - -#: ../src/option.c:282 ../src/option.c:1100 -msgid "Set the format for the returned date" -msgstr "قايتۇرىدىغان چېسلا فورمات تەڭشىكى" - -#: ../src/option.c:283 ../src/option.c:1101 -msgid "PATTERN" -msgstr "قېلىپ" - -#: ../src/option.c:297 -msgid "Display text entry dialog" -msgstr "تېكىست كىرگۈزۈش سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:315 -msgid "Set the entry text" -msgstr "كىرگۈزۈش تېكىست تەڭشىكى" - -#: ../src/option.c:324 -msgid "Hide the entry text" -msgstr "كىرگۈزۈش تېكىستىنى يوشۇر" - -#: ../src/option.c:340 -msgid "Display error dialog" -msgstr "خاتالىق سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:358 ../src/option.c:408 ../src/option.c:769 -#: ../src/option.c:890 -msgid "Set the dialog icon" -msgstr "سۆزلەشكۈ سىنبەلگىسىنى بەلگىلە" - -#: ../src/option.c:359 ../src/option.c:409 ../src/option.c:770 -#: ../src/option.c:891 -msgid "ICON-NAME" -msgstr "سىنبەلگە ئاتى" - -#: ../src/option.c:367 ../src/option.c:417 ../src/option.c:778 -#: ../src/option.c:899 -msgid "Do not enable text wrapping" -msgstr "تېكىست چۆرىدەشنى قوزغاتما" - -#: ../src/option.c:376 ../src/option.c:426 ../src/option.c:787 -#: ../src/option.c:908 -msgid "Do not enable pango markup" -msgstr "pango بەلگە قويۇشنى قوزغاتما" - -#: ../src/option.c:390 -msgid "Display info dialog" -msgstr "ئۇچۇر سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:440 -msgid "Display file selection dialog" -msgstr "ھۆججەت تاللاش سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:449 -msgid "Set the filename" -msgstr "ھۆججەت ئات تەڭشىكى" - -#: ../src/option.c:450 ../src/option.c:811 -msgid "FILENAME" -msgstr "ھۆججەت ئاتى" - -#: ../src/option.c:458 -msgid "Allow multiple files to be selected" -msgstr "بىر نەچچە ھۆججەتنى تاللاشقا يول قويۇلىدۇ" - -#: ../src/option.c:467 -msgid "Activate directory-only selection" -msgstr "مۇندەرىجىنىلا تاللاشنى ئاكتىپلا" - -#: ../src/option.c:476 -msgid "Activate save mode" -msgstr "ساقلاش شەكلىنى ئاكتىپلا" - -#: ../src/option.c:485 ../src/option.c:573 ../src/option.c:1091 -msgid "Set output separator character" -msgstr "نەتىجىنى ئايرىغۇچى ھەرپ تەڭشىكى" - -#: ../src/option.c:486 ../src/option.c:574 ../src/option.c:1092 -msgid "SEPARATOR" -msgstr "ئايرىغۇچ" - -#: ../src/option.c:494 -msgid "Confirm file selection if filename already exists" -msgstr "ھۆججەت مەۋجۇت بولسا قاپلايدىغان چاغدا جەزملە" - -#: ../src/option.c:503 -msgid "Sets a filename filter" -msgstr "ھۆججەت ئاتى سۈزگۈچ تەڭشىكى" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:505 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "ئات | نۇسخا1 نۇسخا2 …" - -#: ../src/option.c:519 -msgid "Display list dialog" -msgstr "تىزىم سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:537 -msgid "Set the column header" -msgstr "ئىستون تېما تەڭشىكى" - -#: ../src/option.c:538 -msgid "COLUMN" -msgstr "ئىستون" - -#: ../src/option.c:546 -msgid "Use check boxes for first column" -msgstr "بىرىنچى ئىستون ئۈچۈن تاللاش كاتەكچىسىنى ئىشلەت" - -#: ../src/option.c:555 -msgid "Use radio buttons for first column" -msgstr "بىرىنچى ئىستون ئۈچۈن تاق تاللاش توپچىسىنى ئىشلەت" - -#: ../src/option.c:564 -msgid "Use an image for first column" -msgstr "بىرىنچى ئىستون ئۈچۈن بىر سۈرەت ئىشلەت" - -#: ../src/option.c:582 -msgid "Allow multiple rows to be selected" -msgstr "كۆپ قۇر تاللاشقا يول قوي" - -#: ../src/option.c:591 ../src/option.c:819 -msgid "Allow changes to text" -msgstr "تېكىستنى ئۆزگەرتىشكە يول قوي" - -#: ../src/option.c:600 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "بەلگىلەنگەن ئىستوننى باسىدۇ (ئادەتتە بىر ئىستوننىلا باسىدۇ. 'ALL' ھەممىسى تاللانسا ھەممە ئىستوننى باسىدۇ)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:602 ../src/option.c:611 -msgid "NUMBER" -msgstr "NUMBER" - -#: ../src/option.c:610 -msgid "Hide a specific column" -msgstr "بەلگىلەنگەن ئىستوننى يوشۇر" - -#: ../src/option.c:619 -msgid "Hides the column headers" -msgstr "ئىستون بەشىنى يوشۇر" - -#: ../src/option.c:635 -msgid "Display notification" -msgstr "ئۇقتۇرۇشنى كۆرسەت" - -#: ../src/option.c:644 -msgid "Set the notification text" -msgstr "ئۇقتۇرۇش تېكىست تەڭشىكى" - -#: ../src/option.c:653 -msgid "Listen for commands on stdin" -msgstr "stdin دىن بۇيرۇق تىڭشا" - -#: ../src/option.c:662 -#| msgid "Set the notification text" -msgid "Set the notification hints" -msgstr "ئۇقتۇرۇش كۆرسەتمىلىرى(hints)نى بەلگىلەيدۇ" - -#: ../src/option.c:679 -msgid "Display progress indication dialog" -msgstr "سۈرئەت بەلگە سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:697 -msgid "Set initial percentage" -msgstr "دەسلەپكى پىرسەنت تەڭشىكى" - -#: ../src/option.c:698 -msgid "PERCENTAGE" -msgstr "پىرسەنت" - -#: ../src/option.c:706 -msgid "Pulsate progress bar" -msgstr "تەۋرەنمە سۈرئەت بالداق" - -#: ../src/option.c:716 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "100% گە يەتكەندە سۆزلەشكۈنى ياپ" - -#: ../src/option.c:726 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "«ۋاز كەچ» توپچىسى بېسىلسا ئاتا ئىجرا يوقالسۇن" - -#: ../src/option.c:736 -#, no-c-format -msgid "Hide Cancel button" -msgstr "ۋاز كەچ توپچىنى يوشۇر" - -#: ../src/option.c:751 -msgid "Display question dialog" -msgstr "سوئال سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:801 -msgid "Display text information dialog" -msgstr "تېكىست ئۇچۇر سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:810 -msgid "Open file" -msgstr "ھۆججەت ئاچ" - -#: ../src/option.c:828 -msgid "Set the text font" -msgstr "تېكىست خەت نۇسخىسىنى بەلگىلەيدۇ" - -#: ../src/option.c:837 -msgid "Enable an I read and agree checkbox" -msgstr "قوزغات، ئوقۇدۇم تاللاشقا قوشۇلىمەن" - -#: ../src/option.c:847 -msgid "Enable html support" -msgstr "html قوللاشنى قوزغات" - -#: ../src/option.c:856 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "ھۆججەت ئەمەس html تەڭشەيدۇ. --html تاللانما ئىشلەتسىڭىزلا ئاندىن خىزمەت قىلىدۇ" - -#: ../src/option.c:857 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:872 -msgid "Display warning dialog" -msgstr "ئاگاھلاندۇرۇش سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:922 -msgid "Display scale dialog" -msgstr "ئۆلچەك سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:940 -msgid "Set initial value" -msgstr "دەسلەپكى قىممەت تەڭشىكى" - -#: ../src/option.c:941 ../src/option.c:950 ../src/option.c:959 -#: ../src/option.c:968 ../src/option.c:1149 -msgid "VALUE" -msgstr "قىممىتى" - -#: ../src/option.c:949 -msgid "Set minimum value" -msgstr "ئەڭ كىچىك قىممەت تەڭشىكى" - -#: ../src/option.c:958 -msgid "Set maximum value" -msgstr "ئەڭ چوڭ قىممەت تەڭشىكى" - -#: ../src/option.c:967 -msgid "Set step size" -msgstr "قەدەم چوڭلۇق تەڭشىكى" - -#: ../src/option.c:976 -msgid "Print partial values" -msgstr "قىسمەن قىممەتنى باس" - -#: ../src/option.c:985 -msgid "Hide value" -msgstr "قىممىتىنى يوشۇر" - -#: ../src/option.c:1000 -msgid "Display forms dialog" -msgstr "جەدۋەل سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:1009 -msgid "Add a new Entry in forms dialog" -msgstr "جەدۋەل سۆزلەشكۈسىگە يېڭى بىر تۈر قوش" - -#: ../src/option.c:1010 ../src/option.c:1019 -msgid "Field name" -msgstr "سۆز بۆلەك ئاتى" - -#: ../src/option.c:1018 -msgid "Add a new Password Entry in forms dialog" -msgstr "جەدۋەل سۆزلەشكۈسىگە يېڭى بىر ئىم تۈرى قوش" - -#: ../src/option.c:1027 -msgid "Add a new Calendar in forms dialog" -msgstr "جەدۋەل سۆزلەشكۈسىگە يېڭى بىر يىلنامە قوش" - -#: ../src/option.c:1028 -msgid "Calendar field name" -msgstr "يىلنامىنىڭ ئاتى" - -#: ../src/option.c:1036 -msgid "Add a new List in forms dialog" -msgstr "جەدۋەل سۆزلەشكۈسىگە يېڭى بىر تىزىم قوش" - -#: ../src/option.c:1037 -msgid "List field and header name" -msgstr "تىزىم سۆز بۆلىكى ۋە ماۋزۇ ئاتى" - -#: ../src/option.c:1045 -msgid "List of values for List" -msgstr "تىزىم قىممىتىنىڭ تىزىمى" - -#: ../src/option.c:1046 ../src/option.c:1055 -msgid "List of values separated by |" -msgstr "تىزىم قىممىتى | بىلەن ئايرىلغان" - -#: ../src/option.c:1054 -msgid "List of values for columns" -msgstr "رەت قىممىتىنىڭ تىزىمى" - -#: ../src/option.c:1073 -msgid "Show the columns header" -msgstr "ئىستون ماۋزۇسىنى كۆرسەت" - -#: ../src/option.c:1115 -msgid "Display password dialog" -msgstr "ئىم سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:1124 -msgid "Display the username option" -msgstr "ئىشلەتكۈچى ئاتى سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:1139 -msgid "Display color selection dialog" -msgstr "رەڭ تاللاش سۆزلەشكۈسىنى كۆرسەت" - -#: ../src/option.c:1148 -msgid "Set the color" -msgstr "رەڭ تەڭشىكى" - -#: ../src/option.c:1157 -msgid "Show the palette" -msgstr "رەڭ تاختىنى كۆرسەت" - -#: ../src/option.c:1172 -msgid "About zenity" -msgstr "Zenity ھەققىدە" - -#: ../src/option.c:1181 -msgid "Print version" -msgstr "نەشرىنى باس" - -#: ../src/option.c:2075 -msgid "General options" -msgstr "ئادەتتىكى تاللانما" - -#: ../src/option.c:2076 -msgid "Show general options" -msgstr "ئادەتتىكى تاللانمىنى كۆرسەت" - -#: ../src/option.c:2086 -msgid "Calendar options" -msgstr "يىلنامە تاللانما" - -#: ../src/option.c:2087 -msgid "Show calendar options" -msgstr "يىلنامە تاللانمىنى كۆرسەت" - -#: ../src/option.c:2097 -msgid "Text entry options" -msgstr "تېكىست كىرگۈزۈش تاللانما" - -#: ../src/option.c:2098 -msgid "Show text entry options" -msgstr "تېكىست كىرگۈزۈش تاللانمىنى كۆرسەت" - -#: ../src/option.c:2108 -msgid "Error options" -msgstr "خاتالىق تاللانما" - -#: ../src/option.c:2109 -msgid "Show error options" -msgstr "خاتالىق تاللانما كۆرسەت" - -#: ../src/option.c:2119 -msgid "Info options" -msgstr "ئۇچۇر تاللانما" - -#: ../src/option.c:2120 -msgid "Show info options" -msgstr "ئۇچۇر تاللانما كۆرسەت" - -#: ../src/option.c:2130 -msgid "File selection options" -msgstr "ھۆججەت تاللاش تاللانما" - -#: ../src/option.c:2131 -msgid "Show file selection options" -msgstr "ھۆججەت تاللاش تاللانمىنى كۆرسەت" - -#: ../src/option.c:2141 -msgid "List options" -msgstr "تىزىم تاللانمىلىرى" - -#: ../src/option.c:2142 -msgid "Show list options" -msgstr "تىزىم تاللانمىلىرىنى كۆرسەت" - -#: ../src/option.c:2153 -msgid "Notification icon options" -msgstr "ئۇقتۇرۇش سىنبەلگە تاللانما" - -#: ../src/option.c:2154 -msgid "Show notification icon options" -msgstr "ئۇقتۇرۇش سىنبەلگە تاللانما كۆرسەت" - -#: ../src/option.c:2165 -msgid "Progress options" -msgstr "سۈرئەت تاللانما" - -#: ../src/option.c:2166 -msgid "Show progress options" -msgstr "سۈرئەت تاللانما كۆرسەت" - -#: ../src/option.c:2176 -msgid "Question options" -msgstr "سوئال تاللانما" - -#: ../src/option.c:2177 -msgid "Show question options" -msgstr "سوئال تاللانما كۆرسەت" - -#: ../src/option.c:2187 -msgid "Warning options" -msgstr "ئاگاھلاندۇرۇش تاللانما" - -#: ../src/option.c:2188 -msgid "Show warning options" -msgstr "ئاگاھلاندۇرۇش تاللانما كۆرسەت" - -#: ../src/option.c:2198 -msgid "Scale options" -msgstr "دائىرە تاللانما" - -#: ../src/option.c:2199 -msgid "Show scale options" -msgstr "دائىرە تاللانما كۆرسەت" - -#: ../src/option.c:2209 -msgid "Text information options" -msgstr "تېكىست ئۇچۇر تاللانما" - -#: ../src/option.c:2210 -msgid "Show text information options" -msgstr "تېكىست ئۇچۇر تاللانمىنى كۆرسەت" - -#: ../src/option.c:2220 -msgid "Color selection options" -msgstr "رەڭ تاللاش تاللانما" - -#: ../src/option.c:2221 -msgid "Show color selection options" -msgstr "رەڭ تاللاش تاللانمىنى كۆرسەت" - -#: ../src/option.c:2231 -msgid "Password dialog options" -msgstr "ئىم سۆزلەشكۈسى تاللانمىلىرى" - -#: ../src/option.c:2232 -msgid "Show password dialog options" -msgstr "ئىم سۆزلەشكۈسى تاللانمىلىرىنى كۆرسەت" - -#: ../src/option.c:2242 -msgid "Forms dialog options" -msgstr "جەدۋەل سۆزلەشكۈسى تاللانمىلىرى" - -#: ../src/option.c:2243 -msgid "Show forms dialog options" -msgstr "جەدۋەل سۆزلەشكۈسى تاللانمىلىرى كۆرسەت" - -#: ../src/option.c:2253 -msgid "Miscellaneous options" -msgstr "قوشۇمچە تاللانمىلار" - -#: ../src/option.c:2254 -msgid "Show miscellaneous options" -msgstr "قوشۇمچە تاللانمىلارنى كۆرسەت" - -#: ../src/option.c:2279 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "بۇ تاللانمىنى ئىشلەتكىلى بولمايدۇ، --help نىڭ ئىشلىتىش ئۇسۇلىدىن كۆرۈڭ.\n" - -#: ../src/option.c:2283 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s نى بۇ سۆزلەشكۈ قوللىمايدۇ\n" - -#: ../src/option.c:2287 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "ئىككى ياكى ئۇنىڭدىن ئارتۇق سۆزلەشكۈ تاللانمىسى بەلگىلەنگەن\n" diff --git a/po/uk.po b/po/uk.po deleted file mode 100644 index a99a9e2..0000000 --- a/po/uk.po +++ /dev/null @@ -1,918 +0,0 @@ -# Ukrainian translation to zenity. -# Copyright (C) Free Software Foundation -# This file is distributed under the same license as the zenity package. -# Yuriy Syrota -# Maxim Dziumanenko , 2004-2007. -# int , 2010. -# int_ua , 2010. -# Korostil Daniel , 2011, 2012. -# Re. , 2012. -# Daniel Korostil , 2012. -# Yuri Chornoivan , 2020. -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/zenity/issues\n" -"POT-Creation-Date: 2020-02-25 16:44+0000\n" -"PO-Revision-Date: 2020-03-10 18:45+0200\n" -"Last-Translator: Yuri Chornoivan \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" -"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 20.03.70\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Це вільна програма; ви можете розповсюджувати її й/або змінювати за умовах " -"ліцензії GNU Lesser General Public, яку опублікували Free Software " -"Foundation; версії 2 цієї ліцензії, або (на вашу думку) будь-якою пізнішої " -"версії.\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Ця програма розповсюджується в сподіванні на те, що вона буде корисною, але " -"БЕЗ БУДЬ-ЯКИХ ГАРАНТІЙ, в тому числі без неявної гарантії КОМЕРЦІЙНОЇ " -"ЦІННОСТІ чи ПРИДАТНОСТІ ДЛЯ БУДЬ-ЯКИХ ЦІЛЕЙ. Докладніше про це можете " -"прочитати в GNU Lesser General Public License.\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Ви мали отримати копію GNU Lesser General Public License разом з цією " -"програмою; якщо це не так, напишіть у Free Software Foundation, Inc., 51 " -"Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"Юрій Сирота \n" -"Максим Дзюманенко \n" -"Daniel Korostil " - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "Показ діалогових вікон зі скриптів оболонки" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "_Гаразд" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "_Скасувати" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Потрібно вказати тип діалогового вікна. Скористуйтесь «zenity --help» для " -"докладнішої інформації\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "_Ні" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "_Так" - -#: src/notification.c:50 -#| msgid "Could not parse message from stdin\n" -msgid "Could not parse message\n" -msgstr "Не вдалося проаналізувати повідомлення\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Некоректне значення для типізованої булевої підказки.\n" -"Підтримувані значення — «true» або «false».\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "Непідтримувана підказка. Пропускаємо.\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "Невідома назва підказки. Пропускаємо.\n" - -#: src/notification.c:218 -#| msgid "could not parse command from stdin\n" -msgid "Could not parse command from stdin\n" -msgstr "Не вдалося проаналізувати команду зі stdin\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Сповіщення Zenity" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "Вказати заголовок діалогу" - -#: src/option.c:165 -msgid "TITLE" -msgstr "ЗАГОЛОВОК" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "Вказати піктограму вікна" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "ШЛЯХ" - -#: src/option.c:178 -msgid "Set the width" -msgstr "Вказати ширину" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "ШИРИНА" - -#: src/option.c:185 -msgid "Set the height" -msgstr "Вказати висоту" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "ВИСОТА" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "Вказати час очікування діалогу в секундах" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "ТАЙМАУТ" - -#: src/option.c:200 -#| msgid "Sets the label of the Ok button" -msgid "Set the label of the OK button" -msgstr "Вказати мітку для кнопки «Гаразд»" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "ТЕКСТ" - -#: src/option.c:207 -#| msgid "Sets the label of the Cancel button" -msgid "Set the label of the Cancel button" -msgstr "Вказати мітку для кнопки «Скасувати»" - -#: src/option.c:214 -#| msgid "Hide Cancel button" -msgid "Add an extra button" -msgstr "Додати додаткову кнопку" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "Вказати модальну підказку" - -#: src/option.c:228 -#| msgid "Set the window icon" -msgid "Set the parent window to attach to" -msgstr "Вказати батьківське вікно, до якого слід долучити віджет" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "ВІКНО" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "Показати діалог календаря" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "Вказати текст діалогу" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "Вказати день у календарі" - -#: src/option.c:252 -msgid "DAY" -msgstr "ДЕНЬ" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "Вказати місяць у календарі" - -#: src/option.c:259 -msgid "MONTH" -msgstr "МІСЯЦЬ" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "Вказати рік у календарі" - -#: src/option.c:266 -msgid "YEAR" -msgstr "РІК" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "Вказати формат дати, що повертатиметься" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "ШАБЛОН" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "Показати вікно з полем вводу" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "Вказати текст поля" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "Сховати текст поля" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "Показати помилку діалогу" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "Вказати піктограму вікна" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "Не вмикати перенесення тексту" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -#| msgid "Do not enable pango markup" -msgid "Do not enable Pango markup" -msgstr "Не вмикати розмітку Pango" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Увімкнути можливість обрізання тексту у діалоговому вікні трьома крапками." -" Так можна виправити розмір вікна за висотою для довгих фрагментів тексту." - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "Показати діалог інформації" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "Показати діалог вибору файла" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "Вказати назву файла" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "НАЗВА" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "Дозволити вибирати кілька файлів" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "Активувати виділення лише каталогів" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "Активувати режим збереження" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "Вказати символ розділення для виводу" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "ВІДОКРЕМЛЮВАЧ" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "Підтвердити вибір файла, якщо назва файла вже існує" - -#: src/option.c:448 -#| msgid "Sets a filename filter" -msgid "Set a filename filter" -msgstr "Вказати фільтр назв файлів" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "НАЗВА | ШАБЛОН1 ШАБЛОН2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "Показати діалог списку" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "Вказати заголовок стовпчика" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "СТОВПЧИК" - -#: src/option.c:481 -#| msgid "Use check boxes for first column" -msgid "Use check boxes for the first column" -msgstr "Використовувати прапорці для першого стовпчика" - -#: src/option.c:488 -#| msgid "Use radio buttons for first column" -msgid "Use radio buttons for the first column" -msgstr "Використовувати перемикачі для першого стовпчика" - -#: src/option.c:495 -#| msgid "Use an image for first column" -msgid "Use an image for the first column" -msgstr "Використовувати зображення для першого стовпця" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "Дозволити виділяти декілька рядків" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "Дозволити змінювати текст" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Вивести вказаний стовпчик (Типове значення 1. Можна використовувати 'ALL' " -"для виводу всіх стовпчиків)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "ЧИСЛО" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "Сховати вказаний стовпчик" - -#: src/option.c:539 -#| msgid "Hides the column headers" -msgid "Hide the column headers" -msgstr "Приховати заголовки стовпчиків" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Змінити типову функціональну можливість пошуку у списку так, щоб пошук" -" виконувався від середини списку, а не його початку." - -#: src/option.c:557 -msgid "Display notification" -msgstr "Показати сповіщення" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "Вказати текст сповіщення" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "Приймати команди з stdin" - -#: src/option.c:578 -#| msgid "Set the notification text" -msgid "Set the notification hints" -msgstr "Вказати підказки сповіщення" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "Показати діалог з індикатором поступу" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "Вказати початкові відсотки" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "ВІДСОТОК" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "Пульсівна панель поступу" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Прибрати діалог, коли буде досягнуто 100%" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Вбити батьківський процес, якщо натиснуто кнопку «Скасувати»" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "Сховати кнопку «Скасувати»" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Оцінка часу, який потрібен для досягнення рівня поступу 100%" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "Показати вікно запитання" - -#: src/option.c:684 -#| msgid "Hide Cancel button" -msgid "Give Cancel button focus by default" -msgstr "Передати типово фокус на кнопку «Скасувати»" - -#: src/option.c:698 -#| msgid "Hide Cancel button" -msgid "Suppress OK and Cancel buttons" -msgstr "Придушити показ кнопок «Гаразд» і «Скасувати»" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "Показати діалог текстової інформації" - -#: src/option.c:715 -msgid "Open file" -msgstr "Відкрити файл" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "Вказати шрифт тексту" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "Увімкнути позначку «Я прочитав і погоджуюсь»" - -#: src/option.c:744 -#| msgid "Enable html support" -msgid "Enable HTML support" -msgstr "Увімкнути підтримку HTML" - -#: src/option.c:751 -#| msgid "Sets an url instead of a file. Only works if you use --html option" -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Не вмикати взаємодію користувача із вікном WebView. Працює лише за" -" використання параметра --html" - -#: src/option.c:759 -#| msgid "Sets an url instead of a file. Only works if you use --html option" -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "" -"Вказати адресу замість файла. Працює лише за використання параметра --html" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Автоматично гортати текст до кінця. Лише якщо текст захоплено зі стандартного" -" джерела вхідних даних (stdin)" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "Показати діалог попередження" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "Показати діалог масштабу" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "Вказати початкове значення" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "ЗНАЧЕННЯ" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "Вказати мінімальне значення" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "Вказати максимальне значення" - -#: src/option.c:856 -msgid "Set step size" -msgstr "Вказати розмір кроку" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "Виводити часткові значення" - -#: src/option.c:870 -msgid "Hide value" -msgstr "Сховати величину" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "Показати діалог форм" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "Додати нове поле в діалог форм" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "Назва поля" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "Додати нове поле вводу пароля в діалог форм" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "Додати новий календар у діалог форм" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "Поле назви календаря" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "Додати новий список в діалог форм" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "Поле списку та назва заголовку" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "Значення списку для списку" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "Значення списку, розділені |" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "Значення списку для стовпців" - -#: src/option.c:928 -#| msgid "Add a new List in forms dialog" -msgid "Add a new combo box in forms dialog" -msgstr "Додати новий спадний список до вікна форм" - -#: src/option.c:929 -#| msgid "Calendar field name" -msgid "Combo box field name" -msgstr "Назва поля спадного списку" - -#: src/option.c:935 -#| msgid "List of values for columns" -msgid "List of values for combo box" -msgstr "Список значень для спадного списку" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "Показувати заголовки стовпців" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "Показати діалог вводу пароля" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "Показати параметри користувача" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "Показати діалог вибору кольору" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "Вказати колір" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "Показати палітру" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "Про Zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "Показати версію" - -#: src/option.c:1913 -msgid "General options" -msgstr "Загальні параметри" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "Показувати загальні параметри" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "Параметри календаря" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "Показувати параметри календаря" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "Параметри поля вводу" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "Показувати параметри поля вводу" - -#: src/option.c:1952 -msgid "Error options" -msgstr "Параметри помилки" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "Показувати параметри виводу помилки" - -#: src/option.c:1962 -msgid "Info options" -msgstr "Параметри інформації" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "Показувати параметри виводу інформації" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "Параметри вибору файла" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "Показувати параметри вибору файла" - -#: src/option.c:1985 -msgid "List options" -msgstr "Параметри списку" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "Показувати параметри списку" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "Параметри піктограми сповіщення" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "Параметри піктограми сповіщення" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "Параметри поступу" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "Показувати параметри поступу" - -#: src/option.c:2024 -msgid "Question options" -msgstr "Параметри запитання" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "Показувати параметри запитання" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "Параметри попередження" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "Показувати параметри виводу попередження" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "Параметри масштабу" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "Показувати параметри масштабу" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "Параметри текстової інформації" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "Показувати параметри текстової інформації" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "Параметри вибору кольору" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "Показувати параметри вибору кольору" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "Параметри діалогу пароля" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "Показувати параметри діалогу запиту пароля" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "Параметри діалогу форм" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "Показувати параметри діалогу форм" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "Інші параметри" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "Показувати інші параметри" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Цей параметр недоступний. Для перегляду доступних параметрів використовуйте " -"ключ --help.\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s не підтримується цим діалогом\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "Вказано два або більше параметрів діалогу\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "Введіть ваш пароль" - -#: src/password.c:73 -#| msgid "Type your password" -msgid "Type your username and password" -msgstr "Введіть ваше ім'я користувач і пароль" - -#: src/password.c:100 -msgid "Username:" -msgstr "Користувач:" - -#: src/password.c:110 -msgid "Password:" -msgstr "Пароль:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "Лишилося часу: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Максимальне значення має бути більше за мінімальне.\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "Значення за межами діапазону.\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "Не вказано заголовків стовпчиків для вікна списків».\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "Слід використовувати лише єдиний тип діалогу списків.\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "Коригувати значення масштабу" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "Скасувати" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "Гаразд" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "Перегляд тексту" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "Вибір дати" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "Виберіть дату нижче." - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "_Календар:" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "Додати нове поле" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "_Введіть новий текст:" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "Помилка" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "Виникла помилка." - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "Діалог форм" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "Інформація" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "Всі оновлення завершено." - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "Поступ" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "Виконання…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "Запитання" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "Продовжити?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "Виберіть пункти зі списку" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "Виберіть пункти зі списку нижче." - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "Попередження" diff --git a/po/vi.po b/po/vi.po deleted file mode 100644 index c2ebed2..0000000 --- a/po/vi.po +++ /dev/null @@ -1,873 +0,0 @@ -# Vietnamese translation for Zenity. -# Bản dịch tiếng Việt dành cho for Zenity. -# Copyright © 2015 GNOME i18n Project for Vietnamese. -# This file is distributed under the same license as the zenity package. -# Trinh Minh Thanh , 2003. -# Nguyen Thai Ngoc Duy , 2003, 2012. -# Clytie Siddall , 2005-2008. -# Lê Trường An , 2011. -# Trần Ngọc Quân , 2014, 2015. -# -msgid "" -msgstr "" -"Project-Id-Version: Zenity master\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-09-28 13:05+0000\n" -"PO-Revision-Date: 2015-09-29 08:02+0700\n" -"Last-Translator: Trần Ngọc Quân \n" -"Language-Team: Vietnamese \n" -"Language: vi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: ../src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"Chương trình này là phần mềm tự do; bạn có thể phát hành lại nó và/hoặc sửa " -"đổi nó với điều kiện của Giấy Phép Công Cộng GNU (LGPL) được xuất bản bởi Tổ " -"chức Phần mềm Tự do; hoặc phiên bản 2 của Giấy Phép này, hoặc (tùy chọn) bất " -"kỳ phiên bản mới hơn.\n" - -#: ../src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"Chương trình này được phát hành vì mong muốn nó có ích, nhưng KHÔNG CÓ BẢO " -"HÀNH GÌ CẢ, THẬM CHÍ KHÔNG CÓ BẢO ĐẢM ĐƯỢC NGỤ Ý KHẢ NĂNG BÁN HAY KHẢ NĂNG " -"LÀM ĐƯỢC VIỆC DỨT KHOÁT. Xem Giấy phép Công cộng GNU (LGPL) để biết thêm chi " -"tiết.\n" - -#: ../src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"Bạn đã nhận một bản sao của Giấy phép Công cộng GNU (LGPL) cùng với chương " -"trình này; nếu không, hãy viết thư cho Tổ chức Phần mềm Tự do (Free Software " -"Foundation, Inc.), 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " -"USA." - -#: ../src/about.c:263 -msgid "translator-credits" -msgstr "Nhóm Việt hóa GNOME " - -#: ../src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "Hiển thị các hộp thoại từ các tập lệnh kịch bản" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Bạn cần phải xác định kiểu hộp thoại. Xem “zenity --help” để biết thêm thông " -"tin\n" - -#: ../src/notification.c:51 -#, c-format -msgid "Could not parse message\n" -msgstr "Không thể phân tích thông điệp\n" - -#: ../src/notification.c:140 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"Giá trị dạng lô-gíc cho phần gợi ý không hợp lệ.\n" -"Giá chỉ chỉ có thể là “true” hoặc “false”.\n" - -#. (iibiiay) -#: ../src/notification.c:156 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "Không hỗ trợ gợi ý. Bỏ qua.\n" - -#. unknown hints -#: ../src/notification.c:173 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "Không biết tên gợi ý. Bỏ qua.\n" - -#: ../src/notification.c:228 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "không thể phân tích lệnh từ đầu vào tiêu chuẩn\n" - -#: ../src/notification.c:326 -msgid "Zenity notification" -msgstr "Thông báo Zenity" - -#: ../src/password.c:55 -msgid "_Cancel" -msgstr "T_hôi" - -#: ../src/password.c:58 -msgid "_OK" -msgstr "Đồn_g ý" - -#. Checks if username has been passed as a parameter -#: ../src/password.c:73 -msgid "Type your password" -msgstr "Nhập mật khẩu của bạn" - -#: ../src/password.c:76 -msgid "Type your username and password" -msgstr "Nhập tài khoản và mật khẩu của bạn" - -#: ../src/password.c:113 -msgid "Username:" -msgstr "Tài khoản:" - -#: ../src/password.c:127 -msgid "Password:" -msgstr "Mật khẩu:" - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "Giá trị tối đa phải lớn hơn giá trị tối thiểu.\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "Giá trị nằm ngoài phạm vi.\n" - -#: ../src/tree.c:376 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "Không có tiêu đề cột được xác định cho hộp thoại Danh sách.\n" - -#: ../src/tree.c:382 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "Bạn nên dùng chỉ một kiểu hộp thoại Danh sách.\n" - -#: ../src/option.c:169 -msgid "Set the dialog title" -msgstr "Đặt tựa đề cho hộp thoại" - -#: ../src/option.c:170 -msgid "TITLE" -msgstr "TỰA_ĐỀ" - -#: ../src/option.c:178 -msgid "Set the window icon" -msgstr "Đặt biểu tượng cửa sổ" - -#: ../src/option.c:179 -msgid "ICONPATH" -msgstr "ĐƯỜNG_DẪN_BIỂU_TƯỢNG" - -#: ../src/option.c:187 -msgid "Set the width" -msgstr "Đặt chiều rộng" - -#: ../src/option.c:188 -msgid "WIDTH" -msgstr "RỘNG" - -#: ../src/option.c:196 -msgid "Set the height" -msgstr "Đặt chiều cao" - -#: ../src/option.c:197 -msgid "HEIGHT" -msgstr "CAO" - -#: ../src/option.c:205 -msgid "Set dialog timeout in seconds" -msgstr "Đặt thời hạn hộp thoại chờ tính theo giây" - -#. Timeout for closing the dialog -#: ../src/option.c:207 -msgid "TIMEOUT" -msgstr "THỜI_HẠN" - -#: ../src/option.c:215 -msgid "Set the label of the OK button" -msgstr "Đặt nhãn cho nút OK" - -#: ../src/option.c:216 ../src/option.c:225 ../src/option.c:234 -#: ../src/option.c:276 ../src/option.c:336 ../src/option.c:345 -#: ../src/option.c:379 ../src/option.c:437 ../src/option.c:574 -#: ../src/option.c:699 ../src/option.c:717 ../src/option.c:743 -#: ../src/option.c:823 ../src/option.c:917 ../src/option.c:926 -#: ../src/option.c:988 ../src/option.c:1046 ../src/option.c:1215 -msgid "TEXT" -msgstr "VĂN_BẢN" - -#: ../src/option.c:224 -msgid "Set the label of the Cancel button" -msgstr "Đặt nhãn cho nút Thôi" - -#: ../src/option.c:233 -msgid "Add an extra button" -msgstr "Thêm nút mở rộng" - -#: ../src/option.c:242 -msgid "Set the modal hint" -msgstr "Đặt gợi ý ở trên cùng" - -#: ../src/option.c:251 -msgid "Set the parent window to attach to" -msgstr "Đặt cửa sổ mẹ để mà gắn vào" - -#: ../src/option.c:252 -msgid "WINDOW" -msgstr "CỬA_SỔ" - -#: ../src/option.c:266 -msgid "Display calendar dialog" -msgstr "Hiển thị hộp thoại về lịch" - -#: ../src/option.c:275 ../src/option.c:335 ../src/option.c:378 -#: ../src/option.c:436 ../src/option.c:573 ../src/option.c:742 -#: ../src/option.c:822 ../src/option.c:987 ../src/option.c:1045 -#: ../src/option.c:1214 -msgid "Set the dialog text" -msgstr "Đặt văn bản thoại" - -#: ../src/option.c:284 -msgid "Set the calendar day" -msgstr "Đặt ngày trong lịch" - -#: ../src/option.c:285 -msgid "DAY" -msgstr "NGÀY" - -#: ../src/option.c:293 -msgid "Set the calendar month" -msgstr "Đặt tháng của lịch" - -#: ../src/option.c:294 -msgid "MONTH" -msgstr "THÁNG" - -#: ../src/option.c:302 -msgid "Set the calendar year" -msgstr "Đặt năm của lịch" - -#: ../src/option.c:303 -msgid "YEAR" -msgstr "NĂM" - -#: ../src/option.c:311 ../src/option.c:1232 -msgid "Set the format for the returned date" -msgstr "Đặt định dạng cho ngày tháng được trả lại" - -#: ../src/option.c:312 ../src/option.c:1233 -msgid "PATTERN" -msgstr "MẪU" - -#: ../src/option.c:326 -msgid "Display text entry dialog" -msgstr "Hiển thị hộp thoại nhập văn bản" - -#: ../src/option.c:344 -msgid "Set the entry text" -msgstr "Đặt văn bản nhập" - -#: ../src/option.c:353 -msgid "Hide the entry text" -msgstr "Ẩn văn bản nhập" - -#: ../src/option.c:369 -msgid "Display error dialog" -msgstr "Hiển thị hộp thoại báo lỗi" - -#: ../src/option.c:387 ../src/option.c:445 ../src/option.c:831 -#: ../src/option.c:996 -msgid "Set the dialog icon" -msgstr "Đặt biểu tượng của hộp thoại" - -#: ../src/option.c:388 ../src/option.c:446 ../src/option.c:832 -#: ../src/option.c:997 -msgid "ICON-NAME" -msgstr "TÊN_BIỂU_TƯỢNG" - -#: ../src/option.c:396 ../src/option.c:454 ../src/option.c:840 -#: ../src/option.c:1005 -msgid "Do not enable text wrapping" -msgstr "Không ngắt dòng trong văn bản" - -#: ../src/option.c:405 ../src/option.c:463 ../src/option.c:849 -#: ../src/option.c:1014 -msgid "Do not enable Pango markup" -msgstr "Không bật đánh dấu Pango" - -#: ../src/option.c:413 ../src/option.c:471 ../src/option.c:866 -#: ../src/option.c:1022 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "" -"Bật elíp hóa trong chữ hộp thoại. Việc này sẽ cố định chiều cao của cửa sổ " -"với chiều dài của văn bản" - -#: ../src/option.c:427 -msgid "Display info dialog" -msgstr "Hiển thị hộp thoại thông tin" - -#: ../src/option.c:485 -msgid "Display file selection dialog" -msgstr "Hiển thị hộp thoại chọn tập tin" - -#: ../src/option.c:494 -msgid "Set the filename" -msgstr "Đặt tên tập tin" - -#: ../src/option.c:495 ../src/option.c:899 -msgid "FILENAME" -msgstr "TÊN_TẬP_TIN" - -#: ../src/option.c:503 -msgid "Allow multiple files to be selected" -msgstr "Cho phép chọn nhiều tập tin đồng thời" - -#: ../src/option.c:512 -msgid "Activate directory-only selection" -msgstr "Kích hoạt chỉ khả năng chọn thư mục" - -#: ../src/option.c:521 -msgid "Activate save mode" -msgstr "Kích hoạt chế độ lưu" - -#: ../src/option.c:530 ../src/option.c:618 ../src/option.c:1223 -msgid "Set output separator character" -msgstr "Đặt ký tự định giới kết xuất" - -#: ../src/option.c:531 ../src/option.c:619 ../src/option.c:1224 -msgid "SEPARATOR" -msgstr "NGĂN_CÁCH" - -#: ../src/option.c:539 -msgid "Confirm file selection if filename already exists" -msgstr "Xác nhận việc chọn tập tin nếu tên tập tin đã có" - -#: ../src/option.c:548 -msgid "Set a filename filter" -msgstr "Đặt một bộ lọc tên tập tin" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:550 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "TÊN | MẪU1 MẪU2 …" - -#: ../src/option.c:564 -msgid "Display list dialog" -msgstr "Hiển thị hộp thoại danh sách" - -#: ../src/option.c:582 -msgid "Set the column header" -msgstr "Đặt phần đầu cột" - -#: ../src/option.c:583 -msgid "COLUMN" -msgstr "CỘT" - -#: ../src/option.c:591 -msgid "Use check boxes for the first column" -msgstr "Dùng các hộp kiểm cho cột đầu tiên" - -#: ../src/option.c:600 -msgid "Use radio buttons for the first column" -msgstr "Dùng các nút chọn một cho cột đầu tiên" - -#: ../src/option.c:609 -msgid "Use an image for the first column" -msgstr "Dùng một ảnh cho cột đầu tiên" - -#: ../src/option.c:627 -msgid "Allow multiple rows to be selected" -msgstr "Cho phép chọn nhiều hàng đồng thời" - -#: ../src/option.c:636 ../src/option.c:907 -msgid "Allow changes to text" -msgstr "Cho phép sửa đổi văn bản" - -#: ../src/option.c:645 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "In cột riêng (Mặc định là 1. Có thể dùng “ALL” để in tất cả các cột)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:647 ../src/option.c:656 -msgid "NUMBER" -msgstr "SỐ" - -#: ../src/option.c:655 -msgid "Hide a specific column" -msgstr "Ẩn cột chỉ định" - -#: ../src/option.c:664 -msgid "Hide the column headers" -msgstr "Ẩn phần đầu cột" - -#: ../src/option.c:673 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "" -"Thay đổi danh sách hàm tìm kiếm mặc định để tìm kiếm văn bản ở giữa, không " -"phải ở đầu" - -#: ../src/option.c:689 -msgid "Display notification" -msgstr "Hiển thị thông báo" - -#: ../src/option.c:698 -msgid "Set the notification text" -msgstr "Đặt văn bản thông báo" - -#: ../src/option.c:707 -msgid "Listen for commands on stdin" -msgstr "Chờ lệnh từ đầu vào tiêu chuẩn" - -#: ../src/option.c:716 -msgid "Set the notification hints" -msgstr "Đặt gợi ý thông báo" - -#: ../src/option.c:733 -msgid "Display progress indication dialog" -msgstr "Hiển thị hộp thoại chỉ diễn biến" - -#: ../src/option.c:751 -msgid "Set initial percentage" -msgstr "Đặt phần trăm ban đầu" - -#: ../src/option.c:752 -msgid "PERCENTAGE" -msgstr "PHẦN_TRĂM" - -#: ../src/option.c:760 -msgid "Pulsate progress bar" -msgstr "Đập theo nhịp thanh diễn biến" - -#: ../src/option.c:770 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Bỏ hộp thoại khi tiến đến 100%" - -#: ../src/option.c:779 -msgid "Kill parent process if Cancel button is pressed" -msgstr "Chấm dứt tiến trình cha nếu nhấn nút Thôi" - -#: ../src/option.c:788 -msgid "Hide Cancel button" -msgstr "Ẩn nút Thôi" - -#: ../src/option.c:798 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "Ước đoán khi tiến trình đạt 100%" - -#: ../src/option.c:813 -msgid "Display question dialog" -msgstr "Hiển thị thoại câu hỏi" - -#: ../src/option.c:857 -msgid "Give Cancel button focus by default" -msgstr "Để nút bấm Thôi được đưa vào tầm ngắm theo mặc định" - -#: ../src/option.c:874 -msgid "Suppress OK and Cancel buttons" -msgstr "Cấm nút Đồng ý và Thôi" - -#: ../src/option.c:889 -msgid "Display text information dialog" -msgstr "Hiển thị thoại thông tin chữ" - -#: ../src/option.c:898 -msgid "Open file" -msgstr "Mở tập tin" - -#: ../src/option.c:916 -msgid "Set the text font" -msgstr "Đặt phông chữ cho văn bản" - -#: ../src/option.c:925 -msgid "Enable an I read and agree checkbox" -msgstr "Bật ô đánh dấu \"Tôi đọc và đồng ý\"" - -#: ../src/option.c:935 -msgid "Enable HTML support" -msgstr "Bật hỗ trợ HTML" - -#: ../src/option.c:944 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "" -"Không thể bật người dùng tương tác với WebView. Chỉ hoạt động với tùy chọn --" -"html" - -#: ../src/option.c:953 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "Đặt URL thay vì tập tin. Chỉ hoạt động với tùy chọn --html" - -#: ../src/option.c:954 -msgid "URL" -msgstr "URL" - -#: ../src/option.c:963 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "" -"Tự động cuộn văn bản đến cuối. Chỉ khi văn bản được lấy từ đầu vào tiêu chuẩn" - -#: ../src/option.c:978 -msgid "Display warning dialog" -msgstr "Hiển thị hộp thoại cảnh báo" - -#: ../src/option.c:1036 -msgid "Display scale dialog" -msgstr "Hiển thị hộp thoại thanh trượt" - -#: ../src/option.c:1054 -msgid "Set initial value" -msgstr "Đặt giá trị ban đầu" - -#: ../src/option.c:1055 ../src/option.c:1064 ../src/option.c:1073 -#: ../src/option.c:1082 ../src/option.c:1281 -msgid "VALUE" -msgstr "GIÁ_TRỊ" - -#: ../src/option.c:1063 -msgid "Set minimum value" -msgstr "Đặt giá trị tối thiểu" - -#: ../src/option.c:1072 -msgid "Set maximum value" -msgstr "Đặt giá trị tối đa" - -#: ../src/option.c:1081 -msgid "Set step size" -msgstr "Đặt kích cỡ bước" - -#: ../src/option.c:1090 -msgid "Print partial values" -msgstr "In giá trị riêng" - -#: ../src/option.c:1099 -msgid "Hide value" -msgstr "Ẩn giá trị" - -#: ../src/option.c:1114 -msgid "Display forms dialog" -msgstr "Hiển thị hộp thoại biểu mẫu" - -#: ../src/option.c:1123 -msgid "Add a new Entry in forms dialog" -msgstr "Thêm ô nhập mới trong hộp thoại biểu mẫu" - -#: ../src/option.c:1124 ../src/option.c:1133 -msgid "Field name" -msgstr "Tên trường" - -#: ../src/option.c:1132 -msgid "Add a new Password Entry in forms dialog" -msgstr "Thêm ô nhập mật khẩu vào hộp thoại biểu mẫu" - -#: ../src/option.c:1141 -msgid "Add a new Calendar in forms dialog" -msgstr "Thêm Lịch mới vào hộp thoại biểu mẫu" - -#: ../src/option.c:1142 -msgid "Calendar field name" -msgstr "Tên trường của lịch" - -#: ../src/option.c:1150 -msgid "Add a new List in forms dialog" -msgstr "Thêm danh sách mới trong hộp thoại biểu mẫu" - -#: ../src/option.c:1151 -msgid "List field and header name" -msgstr "Trường và tên tiêu đề danh sách" - -#: ../src/option.c:1159 -msgid "List of values for List" -msgstr "Danh sách giá trị cho danh sách" - -#: ../src/option.c:1160 ../src/option.c:1169 ../src/option.c:1187 -msgid "List of values separated by |" -msgstr "Các giá trị ngăn cách bằng dấu |" - -#: ../src/option.c:1168 -msgid "List of values for columns" -msgstr "Danh sách giá trị cho cột" - -#: ../src/option.c:1177 -msgid "Add a new combo box in forms dialog" -msgstr "Thêm hộp chọn mới vào biểu mẫu" - -#: ../src/option.c:1178 -msgid "Combo box field name" -msgstr "Tên trường của hộp chọn" - -#: ../src/option.c:1186 -msgid "List of values for combo box" -msgstr "Danh sách giá trị cho hộp chọn lựa" - -#: ../src/option.c:1205 -msgid "Show the columns header" -msgstr "Hiện phần đầu cột" - -#: ../src/option.c:1247 -msgid "Display password dialog" -msgstr "Hiển thị hộp thoại mật khẩu" - -#: ../src/option.c:1256 -msgid "Display the username option" -msgstr "Hiển thị tùy chọn tên người dùng" - -#: ../src/option.c:1271 -msgid "Display color selection dialog" -msgstr "Hiển thị hộp thoại chọn màu sắc" - -#: ../src/option.c:1280 -msgid "Set the color" -msgstr "Cài đặt màu sắc" - -#: ../src/option.c:1289 -msgid "Show the palette" -msgstr "Hiện bảng màu" - -#: ../src/option.c:1304 -msgid "About zenity" -msgstr "Giới thiệu Zenity" - -#: ../src/option.c:1313 -msgid "Print version" -msgstr "Hiển thị phiên bản" - -#: ../src/option.c:2256 -msgid "General options" -msgstr "Tùy chọn chung" - -#: ../src/option.c:2257 -msgid "Show general options" -msgstr "Hiện tùy chọn chung" - -#: ../src/option.c:2267 -msgid "Calendar options" -msgstr "Tùy chọn lịch" - -#: ../src/option.c:2268 -msgid "Show calendar options" -msgstr "Hiển thị tùy chọn về lịch" - -#: ../src/option.c:2278 -msgid "Text entry options" -msgstr "Tùy chọn nhập văn bản" - -#: ../src/option.c:2279 -msgid "Show text entry options" -msgstr "Hiển thị tùy chọn về nhập văn bản" - -#: ../src/option.c:2289 -msgid "Error options" -msgstr "Tùy chọn báo lỗi" - -#: ../src/option.c:2290 -msgid "Show error options" -msgstr "Hiển thị tùy chọn về cách báo lỗi" - -#: ../src/option.c:2300 -msgid "Info options" -msgstr "Tùy chọn thông tin" - -#: ../src/option.c:2301 -msgid "Show info options" -msgstr "Hiển thị tùy chọn về thông tin" - -#: ../src/option.c:2311 -msgid "File selection options" -msgstr "Tùy chọn việc chọn tập tin" - -#: ../src/option.c:2312 -msgid "Show file selection options" -msgstr "Hiển thị tùy chọn về chọn tập tin" - -#: ../src/option.c:2322 -msgid "List options" -msgstr "Tùy chọn danh sách" - -#: ../src/option.c:2323 -msgid "Show list options" -msgstr "Hiển thị tùy chọn về danh sách" - -#: ../src/option.c:2334 -msgid "Notification icon options" -msgstr "Tùy chọn biểu tượng thông báo" - -#: ../src/option.c:2335 -msgid "Show notification icon options" -msgstr "Hiển thị tùy chọn về biểu tượng thông báo" - -#: ../src/option.c:2346 -msgid "Progress options" -msgstr "Tùy chọn thanh diễn biến" - -#: ../src/option.c:2347 -msgid "Show progress options" -msgstr "Hiển thị tùy chọn về thanh diễn biến" - -#: ../src/option.c:2357 -msgid "Question options" -msgstr "Tùy chọn câu hỏi" - -#: ../src/option.c:2358 -msgid "Show question options" -msgstr "Hiển thị tùy chọn về câu hỏi" - -#: ../src/option.c:2368 -msgid "Warning options" -msgstr "Tùy chọn cảnh báo" - -#: ../src/option.c:2369 -msgid "Show warning options" -msgstr "Hiển thị tùy chọn về cảnh báo" - -#: ../src/option.c:2379 -msgid "Scale options" -msgstr "Tùy chọn thanh trượt" - -#: ../src/option.c:2380 -msgid "Show scale options" -msgstr "Hiển thị tùy chọn về thanh trượt" - -#: ../src/option.c:2390 -msgid "Text information options" -msgstr "Tùy chọn thông tin văn bản" - -#: ../src/option.c:2391 -msgid "Show text information options" -msgstr "Hiển thị tùy chọn về thông tin văn bản" - -#: ../src/option.c:2401 -msgid "Color selection options" -msgstr "Tùy chọn về chọn màu sắc" - -#: ../src/option.c:2402 -msgid "Show color selection options" -msgstr "Hiện tùy chọn về lựa chọn màu sắc" - -#: ../src/option.c:2412 -msgid "Password dialog options" -msgstr "Tùy chọn hộp thoại mật khẩu" - -#: ../src/option.c:2413 -msgid "Show password dialog options" -msgstr "Hiển thị tùy chọn hộp thoại mật khẩu" - -#: ../src/option.c:2423 -msgid "Forms dialog options" -msgstr "Tùy chọn hộp thoại biểu mẫu" - -#: ../src/option.c:2424 -msgid "Show forms dialog options" -msgstr "Hiện tùy chọn cho hộp thoại biểu mẫu" - -#: ../src/option.c:2434 -msgid "Miscellaneous options" -msgstr "Tùy chọn khác" - -#: ../src/option.c:2435 -msgid "Show miscellaneous options" -msgstr "Hiển thị các tùy chọn khác" - -#: ../src/option.c:2460 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" -"Không có tùy chọn này. Vui lòng chạy lệnh --help để xem mọi cách có thể " -"dùng.\n" - -#: ../src/option.c:2464 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "Không hỗ trợ tùy chọn --%s ở kiểu hộp thoại này\n" - -#: ../src/option.c:2468 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "Bạn đã đưa ra ít nhất hai tùy chọn hộp thoại\n" - -#~ msgid "Adjust the scale value" -#~ msgstr "Kéo con trượt để chọn giá trị" - -#~ msgid "Cancel" -#~ msgstr "Thôi" - -#~ msgid "OK" -#~ msgstr "Đồng ý" - -#~ msgid "Text View" -#~ msgstr "Xem văn bản" - -#~ msgid "Calendar selection" -#~ msgstr "Chọn ngày" - -#~ msgid "Select a date from below." -#~ msgstr "Chọn một ngày ở phía dưới." - -#~ msgid "C_alendar:" -#~ msgstr "_Lịch:" - -#~ msgid "Add a new entry" -#~ msgstr "Thêm ô nhập mới" - -#~ msgid "_Enter new text:" -#~ msgstr "_Nhập văn bản mới:" - -#~ msgid "Error" -#~ msgstr "Lỗi" - -#~ msgid "An error has occurred." -#~ msgstr "Đã có lỗi xảy ra." - -#~ msgid "Forms dialog" -#~ msgstr "Hộp thoại biểu mẫu" - -#~ msgid "Information" -#~ msgstr "Thông tin" - -#~ msgid "All updates are complete." -#~ msgstr "Mọi cập nhật đã hoàn tất." - -#~ msgid "Progress" -#~ msgstr "Diễn biến" - -#~ msgid "Running..." -#~ msgstr "Đang chạy…" - -#~ msgid "Question" -#~ msgstr "Câu hỏi" - -#~ msgid "Are you sure you want to proceed?" -#~ msgstr "Bạn có chắc là muốn tiếp tục không?" - -#~ msgid "Select items from the list" -#~ msgstr "Chọn các mục từ danh sách" - -#~ msgid "Select items from the list below." -#~ msgstr "Chọn các mục từ danh sách bên dưới." - -#~ msgid "Warning" -#~ msgstr "Cảnh báo" - -#~ msgid "Select a file" -#~ msgstr "Chọn tập tin" diff --git a/po/xh.po b/po/xh.po deleted file mode 100644 index e945e6f..0000000 --- a/po/xh.po +++ /dev/null @@ -1,488 +0,0 @@ -# Xhosa translation of zenity -# Copyright (C) 2005 Canonical Ltd. -# This file is distributed under the same license as the zenity package. -# Translation by Canonical Ltd with thanks to -# Translation World CC in South Africa, 2005. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-24 17:41+0200\n" -"PO-Revision-Date: 2005-03-31 00:02+0200\n" -"Last-Translator: Canonical Ltd \n" -"Language-Team: Xhosa \n" -"Language: xh\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Translators: This is a special message that shouldn't be translated -#. literally. It is used in the about box to give credits to -#. the translators. -#. Thus, you should translate it to your name and email address. -#. You can also include other translators who have contributed to -#. this translation; in that case, please write them on separate -#. lines seperated by newlines (\n). -#: ../src/about.c:403 -msgid "translator-credits" -msgstr "Canonical Ltd " - -#: ../src/about.c:433 -msgid "Display dialog boxes from shell scripts" -msgstr "" -"Bonisa iibhokisi zonxibelelwano eziphuma kwizikripti zetoliki yemiyalelo" - -#: ../src/about.c:437 -msgid "(C) 2003 Sun Microsystems" -msgstr "(C) 2003 I-Sun Microsystems" - -#: ../src/about.c:521 -msgid "Credits" -msgstr "Izincomo" - -#: ../src/about.c:548 -msgid "Written by" -msgstr "Ibhalwe ngu-" - -#: ../src/about.c:561 -msgid "Translated by" -msgstr "Iguqulelwe ngu-" - -#: ../src/eggtrayicon.c:118 -msgid "Orientation" -msgstr "Imbonakalo" - -#: ../src/eggtrayicon.c:119 -msgid "The orientation of the tray." -msgstr "Imbonakalo yetreyi." - -#: ../src/main.c:90 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "" -"Kufuneka uchaze uhlobo lonxibelelwano. Khangela ku- 'zenity --help' malunga " -"neenkcukacha\n" - -#: ../src/notification.c:161 -msgid "could not parse command from stdin\n" -msgstr "Akukwazekanga ukwahlula ngezijungqe umyalelo ovela kwi-stdin\n" - -#: ../src/notification.c:230 ../src/notification.c:259 -msgid "Zenity notification" -msgstr "Isaziso se-Zenity" - -#: ../src/tree.c:320 -msgid "No column titles specified for List dialog.\n" -msgstr "Akukho zihloko zoluhlu ezichaziweyo zoLudwe lonxibelelwano.\n" - -#: ../src/tree.c:326 -msgid "You should use only one List dialog type.\n" -msgstr "" - -#: ../src/zenity.glade.h:1 -msgid "*" -msgstr "*" - -#: ../src/zenity.glade.h:2 -msgid "About Zenity" -msgstr "Malunga ne-Zenity" - -#: ../src/zenity.glade.h:3 -msgid "Add a new entry" -msgstr "Yongeza ukungena okutsha" - -#: ../src/zenity.glade.h:4 -msgid "All updates are complete." -msgstr "Konke okuhlaziywayo kugqityiwe." - -#: ../src/zenity.glade.h:5 -msgid "An error has occurred." -msgstr "Kwenzeke impazamo." - -#: ../src/zenity.glade.h:6 -msgid "Are you sure you want to proceed?" -msgstr "Ingaba uqinisekile ukufuna ukuqhubeka?" - -#: ../src/zenity.glade.h:7 -msgid "C_alendar:" -msgstr "Ikh_alenda:" - -#: ../src/zenity.glade.h:8 -msgid "Calendar selection" -msgstr "Ukhetho lwekhalenda" - -#: ../src/zenity.glade.h:9 -msgid "Error" -msgstr "Impazamo" - -#: ../src/zenity.glade.h:10 -msgid "Information" -msgstr "Ulwazi" - -#: ../src/zenity.glade.h:11 -msgid "Progress" -msgstr "Inkqubela" - -#: ../src/zenity.glade.h:12 -msgid "Question" -msgstr "Umbuzo" - -#: ../src/zenity.glade.h:13 -msgid "Running..." -msgstr "Ukuphumeza inkqubo..." - -#: ../src/zenity.glade.h:14 -msgid "Select a date from below." -msgstr "Khetha umhla kwevela ngaphantsi." - -#: ../src/zenity.glade.h:15 -msgid "Select a file" -msgstr "Khetha ifayili" - -#: ../src/zenity.glade.h:16 -msgid "Select items from the list" -msgstr "Khetha imicimbi kuludwe" - -#: ../src/zenity.glade.h:17 -msgid "Select items from the list below." -msgstr "Khetha imicimbi kuludwe olungaphantsi." - -#: ../src/zenity.glade.h:18 -msgid "Text View" -msgstr "Umbono woMbhalo" - -#: ../src/zenity.glade.h:19 -msgid "Warning" -msgstr "Isilumkiso" - -#: ../src/zenity.glade.h:20 -msgid "_Credits" -msgstr "_Izincomo" - -#: ../src/zenity.glade.h:21 -msgid "_Enter new text:" -msgstr "_Faka umbhalo omtsha:" - -#: ../src/option.c:105 -msgid "Set the dialog title" -msgstr "Misela isihloko sonxibelelwano" - -#: ../src/option.c:106 -msgid "TITLE" -msgstr "ISIHLOKO" - -#: ../src/option.c:114 -msgid "Set the window icon" -msgstr "Misela umfanekiso ongumqondiso wefestile" - -#: ../src/option.c:115 -msgid "ICONPATH" -msgstr "INDLELA YOMFANEKISO ONGUMQONDISO" - -#: ../src/option.c:123 -msgid "Set the width" -msgstr "Misela ububanzi" - -#: ../src/option.c:124 -msgid "WIDTH" -msgstr "UBUBANZI" - -#: ../src/option.c:132 -msgid "Set the height" -msgstr "Misela ukuphakama" - -#: ../src/option.c:133 -msgid "HEIGHT" -msgstr "UKUPHAKAMA" - -#: ../src/option.c:147 -msgid "Display calendar dialog" -msgstr "Bonisa ikhalenda yonxibelelwano" - -#: ../src/option.c:156 ../src/option.c:216 ../src/option.c:259 -#: ../src/option.c:292 ../src/option.c:385 ../src/option.c:514 -#: ../src/option.c:566 ../src/option.c:632 -msgid "Set the dialog text" -msgstr "Misela umbhalo wonxibelelwano" - -#: ../src/option.c:165 -msgid "Set the calendar day" -msgstr "Misela usuku lwekhalenda" - -#: ../src/option.c:174 -msgid "Set the calendar month" -msgstr "Misela inyanga yekhalenda" - -#: ../src/option.c:183 -msgid "Set the calendar year" -msgstr "Misela unyaka wekhalenda" - -#: ../src/option.c:192 -msgid "Set the format for the returned date" -msgstr "Misela ulungiselelo lomhla obuyisiweyo" - -#: ../src/option.c:207 -msgid "Display text entry dialog" -msgstr "Bonisa umbhalo wokungena konxibelelwano" - -#: ../src/option.c:225 -msgid "Set the entry text" -msgstr "Misela umbhalo wokungena" - -#: ../src/option.c:234 -msgid "Hide the entry text" -msgstr "Fihla umbhalo wokungena" - -#: ../src/option.c:250 -msgid "Display error dialog" -msgstr "Bonisa impazamo yonxibelelwano" - -#: ../src/option.c:268 ../src/option.c:301 ../src/option.c:575 -#: ../src/option.c:641 -msgid "Do not enable text wrapping" -msgstr "" - -#: ../src/option.c:283 -msgid "Display info dialog" -msgstr "Bonisa ulwazi lonxibelelwano" - -#: ../src/option.c:316 -msgid "Display file selection dialog" -msgstr "Bonisa unxibelelwano lokukhetha ifayili" - -#: ../src/option.c:325 -msgid "Set the filename" -msgstr "Misela igama lefayili" - -#: ../src/option.c:326 ../src/option.c:600 -msgid "FILENAME" -msgstr "IGAMA LEFAYILI" - -#: ../src/option.c:334 -msgid "Allow multiple files to be selected" -msgstr "Vumela ukukhethwa kweefayili ezininzi" - -#: ../src/option.c:343 -msgid "Activate directory-only selection" -msgstr "Yenza kusebenze ukhetho lovimba weefayili kuphela" - -#: ../src/option.c:352 -msgid "Activate save mode" -msgstr "Yenza kusebenze inkqubo yokugcina" - -#: ../src/option.c:361 ../src/option.c:421 -msgid "Set output separator character" -msgstr "Misela uphawu lwesahlukanisi sesiphumo" - -#: ../src/option.c:362 ../src/option.c:422 -msgid "SEPARATOR" -msgstr "ISAHLUKANISI" - -#: ../src/option.c:376 -msgid "Display list dialog" -msgstr "Bonisa uludwe lonxibelelwano" - -#: ../src/option.c:394 -msgid "Set the column header" -msgstr "Misela umbhalo ongentla woluhlu" - -#: ../src/option.c:403 -msgid "Use check boxes for first column" -msgstr "Sebenzisa amabhokisi okuqinisekisa kuluhlu lokuqala" - -#: ../src/option.c:412 -msgid "Use radio buttons for first column" -msgstr "Sebenzisa amaqhosha erediyo kuluhlu lokuqala" - -#: ../src/option.c:430 -#, fuzzy -msgid "Allow multiple rows to be selected" -msgstr "Vumela ukukhethwa kweefayili ezininzi" - -#: ../src/option.c:439 ../src/option.c:608 -msgid "Allow changes to text" -msgstr "Vumela iinguqu kumbhalo" - -#: ../src/option.c:448 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "" -"Shicilela uluhlu oluthile (Emiselweyo ngu- 1. 'ALL' anasetyenziswa " -"ukushicilela zonke izintlu)" - -#: ../src/option.c:457 -msgid "Hide a specific column" -msgstr "" - -#: ../src/option.c:472 -msgid "Display notification" -msgstr "Bonisa isaziso" - -#: ../src/option.c:481 -msgid "Set the notification text" -msgstr "Misela umbhalo wesaziso" - -#: ../src/option.c:490 -msgid "Listen for commands on stdin" -msgstr "Phula-phula imiyalelo kwi-stdin" - -#: ../src/option.c:505 -msgid "Display progress indication dialog" -msgstr "Bonisa unxibelelwano lomqondiso wenkqubela" - -#: ../src/option.c:523 -msgid "Set initial percentage" -msgstr "Misela ipesenti yokuqalisa" - -#: ../src/option.c:532 -msgid "Pulsate progress bar" -msgstr "Shukumisa umgca wenkqubela" - -#: ../src/option.c:542 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "Cima unxibelelwano xa kufikelelwe kwi- 100%" - -#: ../src/option.c:557 -msgid "Display question dialog" -msgstr "Bonisa unxibelelwano lombuzo" - -#: ../src/option.c:590 -msgid "Display text information dialog" -msgstr "Bonisa unxibelelwano lolwazi lombhalo" - -#: ../src/option.c:599 -msgid "Open file" -msgstr "Vula ifayili" - -#: ../src/option.c:623 -msgid "Display warning dialog" -msgstr "Bonisa unxibelelwano lwesilumkiso" - -#: ../src/option.c:656 -msgid "About zenity" -msgstr "Malunga ne-zenity" - -#: ../src/option.c:665 -msgid "Print version" -msgstr "Shicilela uhlobo" - -#: ../src/option.c:1259 -msgid "General options" -msgstr "Ezinokukhethwa ngokubanzi" - -#: ../src/option.c:1260 -msgid "Show general options" -msgstr "Bonisa ezinokukhethwa ngokubanzi" - -#: ../src/option.c:1270 -msgid "Calendar options" -msgstr "Ezinokukhethwa kwikhalenda" - -#: ../src/option.c:1271 -msgid "Show calendar options" -msgstr "Bonisa ezinokukhethwa kwikhalenda" - -#: ../src/option.c:1281 -msgid "Text entry options" -msgstr "Ezinokukhethwa kumbhalo ofakwayo" - -#: ../src/option.c:1282 -msgid "Show text entry options" -msgstr "Bonisa ezinokukhethwa kumbhalo ofakwayo" - -#: ../src/option.c:1292 -msgid "Error options" -msgstr "Ezinokukhethwa eziyimpazamo" - -#: ../src/option.c:1293 -msgid "Show error options" -msgstr "Bonisa ezinokukhethwa eziyimpazamo" - -#: ../src/option.c:1303 -msgid "Info options" -msgstr "Ezinokukhethwa kulwazi" - -#: ../src/option.c:1304 -msgid "Show info options" -msgstr "Bonisa ezinokukhethwa kulwazi" - -#: ../src/option.c:1314 -msgid "File selection options" -msgstr "Ezinokukhethwa kukhetho lwefayili" - -#: ../src/option.c:1315 -msgid "Show file selection options" -msgstr "Bonisa ezinokukhethwa kukhetho lwefayili" - -#: ../src/option.c:1325 -msgid "List options" -msgstr "Ezinokukhethwa kuludwe" - -#: ../src/option.c:1326 -msgid "Show list options" -msgstr "Bonisa ezinokukhethwa kuludwe" - -#: ../src/option.c:1336 -msgid "Notification icon options" -msgstr "Ezinokukhethwa kumfanekiso wesaziso" - -#: ../src/option.c:1337 -msgid "Show notification icon options" -msgstr "Bonisa ezinokukhethwa kumfanekiso wesaziso" - -#: ../src/option.c:1347 -msgid "Progress options" -msgstr "Ezinokukhethwa kwinkqubela" - -#: ../src/option.c:1348 -msgid "Show progress options" -msgstr "Bonisa ezinokukhethwa kwinkqubela" - -#: ../src/option.c:1358 -msgid "Question options" -msgstr "Ezinokukhethwa kumbuzo" - -#: ../src/option.c:1359 -msgid "Show question options" -msgstr "Bonisa ezinokukhethwa kumbuzo" - -#: ../src/option.c:1369 -msgid "Warning options" -msgstr "Ezinokukhethwa kwisilumkiso" - -#: ../src/option.c:1370 -msgid "Show warning options" -msgstr "Bonisa ezinokukhethwa kwisilumkiso" - -#: ../src/option.c:1380 -msgid "Text information options" -msgstr "Ezinokukhethwa kulwazi lombhalo" - -#: ../src/option.c:1381 -msgid "Show text information options" -msgstr "Bonisa ezinokukhethwa kulwazi lombhalo" - -#: ../src/option.c:1391 -msgid "Miscellaneous options" -msgstr "Ezinokukhethwa eziziintlobo ngeentlobo" - -#: ../src/option.c:1392 -msgid "Show miscellaneous options" -msgstr "Bonisa ezinokukhethwa eziziintlobo ngeentlobo" - -#: ../src/option.c:1417 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "" - -#: ../src/option.c:1421 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "--%s ayixhaswanga malunga nolu nxibelelwano\n" - -#: ../src/option.c:1425 -msgid "Two or more dialog options specified\n" -msgstr "" -"Ezimbini okanye ezingaphezulu ezinokukhethwa kunxibelelwano oluchaziweyo\n" diff --git a/po/zh_CN.po b/po/zh_CN.po deleted file mode 100644 index 597feca..0000000 --- a/po/zh_CN.po +++ /dev/null @@ -1,876 +0,0 @@ -# Chinese (simplified) translation of zenity. -# Copyright (C) 2003, 2009, 2010 Free Software Foundation, Inc. -# This file is distributed under the same license as the zenity package. -# Funda Wang , 2003. -# Tao Wei , 2009. -# Yinghua Wang , 2011. -# ben , 2011. -# YunQiang Su , 2012. -# Mingcong Bai , 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity master\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2018-03-11 08:56+0000\n" -"PO-Revision-Date: 2018-05-10 12:07-0500\n" -"Last-Translator: Mingcong Bai \n" -"Language-Team: Chinese (simplified) \n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.0.6\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"本程序是自由软件;您可以按照自由软件基金会所发表的 GNU GPL 协议自由发放和/或" -"修改它;GPL 协议应该采用第二版或以后的任何版本。\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"本程序发表的目的是希望它能够对您有用,但我们没有任何保证;对于以任何用途使用" -"它所造成的任何直接或间接后果都不承担任何责任。请参看 GNU GPL 协议中的细节。\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"您应该在收到本程序的同时收到了 GNU GPL 协议的副本;如果您没有收到的话,请给自" -"由软件基金会写信,地址是 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA" - -#: src/about.c:260 -msgid "translator-credits" -msgstr "GNOME 简体中文翻译组" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "在 Shell 脚本中显示对话框" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "确定(_O)" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "取消(_C)" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "您必须指定对话框类型。请参看“zenity --help”获得更多细节\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "否(_N)" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "是(_Y)" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "无法解析消息\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"布尔类型的提示值无效。\n" -"支持的值为“true”或“false”。\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "不支持的提示。将跳过。\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "未知的提示名。将跳过。\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "无法从 stdin 解析命令\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity 通知" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "设置对话框标题" - -#: src/option.c:165 -msgid "TITLE" -msgstr "标题" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "设置窗口图标" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "图标路径" - -#: src/option.c:178 -msgid "Set the width" -msgstr "设置宽度" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "宽度" - -#: src/option.c:185 -msgid "Set the height" -msgstr "设置高度" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "高度" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "设置对话框超时秒数" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "超时" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "设定“确定”按钮标签" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "文字" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "设定“取消”按钮标签" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "添加新按钮" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "设置模态提示" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "设定要吸附的窗口" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "窗口" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "显示日历对话框" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "设置对话框文字" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "设置日" - -#: src/option.c:252 -msgid "DAY" -msgstr "日" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "设置月份" - -#: src/option.c:259 -msgid "MONTH" -msgstr "月份" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "设置年份" - -#: src/option.c:266 -msgid "YEAR" -msgstr "年份" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "设置返回日期的格式" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "模式" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "显示文本输入对话框" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "设置输入文字" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "隐藏输入文字" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "显示错误对话框" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "设置对话框图标" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "图标名" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "不启用文本自动换行" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "不启用 pango 标记" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "在对话框文本中启用简略显示。这可以修复带有长文本的窗口的尺寸过大。" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "显示信息对话框" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "显示文件选择对话框" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "设置文件名" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "文件名" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "允许选中多个文件" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "允许只选择文件夹" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "激活保存模式" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "设置输出分隔符" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "分隔符" - -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "若文件名已存在则确认是否覆盖文件" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "设置文件名过滤器" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "名称 | 模式1 模式2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "显示列表对话框" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "设置列标题" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "列" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "第一列使用复选框" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "第一列使用单选钮" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "第一列使用图像" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "允许选中多行" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "允许更改文字" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "打印指定列(默认为 1。“全部”可用于打印全部列)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "序号" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "隐藏指定列" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "隐藏列头" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "改变默认列表文本搜索模式为从中间开始,而不是从头开始" - -#: src/option.c:557 -msgid "Display notification" -msgstr "显示通知" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "设定通知文字" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "在 stdin 上监听命令" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "设定通知提示" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "显示进度指示对话框" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "设定初始百分比" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "百分比" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "跳动进度条" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "达到 100% 时关闭对话框" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "若按下取消按钮则终止父进程" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "隐藏取消按钮" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "在进度快到 100% 时进行预估" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "显示问题对话框" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "\"取消\"按钮默认取得焦点" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "隐藏确定和取消按钮" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "显示文本信息对话框" - -#: src/option.c:715 -msgid "Open file" -msgstr "打开文件" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "设置文本字体" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "启用 我已阅读并同意 复选框" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "启用 HTML 支持" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "不让用户与 WebView 进行交互。只在使用 --html 选项时有效" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "设置一个 URL 而非一个文件。只在使用 --html 选项时有效" - -#: src/option.c:761 -msgid "URL" -msgstr "URL" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "自动滚动文本到末尾。只适于文本从标准输入获取的情况" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "显示警告对话框" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "显示范围对话框" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "设置初始值" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "数值" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "设置最小值" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "设置最大值" - -#: src/option.c:856 -msgid "Set step size" -msgstr "设置步进大小" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "打印部分值" - -#: src/option.c:870 -msgid "Hide value" -msgstr "隐藏值" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "显示表单对话框" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "在表单对话框中添加新条目" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "域名称" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "在表单对话框中添加新密码条目" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "在表单对话框中添加一个新日历" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "日历域名称" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "在表单对话框中添加列表" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "列表域和标题名" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "列表值的列表" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "| 分隔的列表值" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "列值的列表" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "在表单对话框中添加新组合框" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "组合框域名称" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "组合框值列表" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "显示列标题" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "显示口令对话框" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "显示用户名选项" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "显示颜色选择对话框" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "设定颜色" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "显示调色板" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "关于 zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "打印版本" - -#: src/option.c:1913 -msgid "General options" -msgstr "常规选项" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "显示常规选项" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "日历选项" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "显示日历选项" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "文字输入选项" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "显示文字输入选项" - -#: src/option.c:1952 -msgid "Error options" -msgstr "错误选项" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "显示错误选项" - -#: src/option.c:1962 -msgid "Info options" -msgstr "信息选项" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "显示信息选项" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "文件选择选项" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "显示文件选择选项" - -#: src/option.c:1985 -msgid "List options" -msgstr "列表选项" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "显示列表选项" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "通知图标选项" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "显示通知图标选项" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "进度选项" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "显示进度选项" - -#: src/option.c:2024 -msgid "Question options" -msgstr "问题选项" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "显示问题选项" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "警告选项" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "显示警告选项" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "范围选项" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "显示范围选项" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "文本信息选项" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "显示文本信息选项" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "颜色选择选项" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "显示颜色选择选项" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "口令对话框选项。" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "显示口令对话框选项" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "表单对话框选项" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "显示表单对话框选项" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "杂类选项" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "显示杂类选项" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "此选项不可用。请参看 --help 了解所有能用的用法。\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "此对话框不支持 --%s\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "指定了两个或更多对话框选项\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "输入您的密码" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "输入您的用户名和密码" - -#: src/password.c:100 -msgid "Username:" -msgstr "用户名:" - -#: src/password.c:110 -msgid "Password:" -msgstr "密码:" - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "剩余时间:%lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "最大值必须大于最小值。\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "超出范围。\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "列表对话框未指定列标题。\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "您应该只使用一种列表对话框类型。\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "调整范围值" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "取消" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "确定" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "文字视图" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "日历选择" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "从下面选择一个日期。" - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "日历(_A):" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "添加新项" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "输入新文字(_E):" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "错误" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "发生了错误。" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "表单对话框" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "信息" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "所有更新都已完成。" - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "进度" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "正在运行…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "问题" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "您确定要继续吗?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "从列表中选择项目" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "从下面的列表中选择项目。" - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "警告" - -#~ msgid "Select a file" -#~ msgstr "选择文件" diff --git a/po/zh_HK.po b/po/zh_HK.po deleted file mode 100644 index 96e72b8..0000000 --- a/po/zh_HK.po +++ /dev/null @@ -1,832 +0,0 @@ -# Chinese (Hong Kong) translation of zenity. -# Copyright (C) 2003-2006 Free Software Foundation, Inc. -# Abel Cheung , 2003-2004. -# Woodman Tuen , 2005-2006. -# Chao-Hsiung Liao , 2010. -# Wei-Lun Chao , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity 3.2.0\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2014-08-25 11:03+0000\n" -"PO-Revision-Date: 2014-08-30 18:46+0800\n" -"Last-Translator: Chao-Hsiung Liao \n" -"Language-Team: Chinese (Hong Kong) \n" -"Language: zh_HK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.5\n" - -#: ../src/about.c:63 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "本程式為自由軟件,你可根據據自由軟件基金會所發表的 GNU 通用公共授權條款 (可選用第二版或以後的任何版本) 規定,將本程式再散布或修改,或兩者同時進行。\n" - -#: ../src/about.c:67 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "本程式係基於使用目的而加以散布,然而不負任何擔保責任;亦無對適售性或特定目的適用性所為的默示性擔保。詳情請參照 GNU 較寬鬆通用公共授權。\n" - -#: ../src/about.c:71 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "你應該已收到附於本程式的 GNU 通用公共授權的副本;如果沒有,請寫信至:the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." - -#: ../src/about.c:263 -msgid "translator-credits" -msgstr "" -"如對翻譯有任何意見,請送一封電子郵件給\n" -"以下地址,GNOME 翻譯隊伍會盡快回覆你:\n" -"zh-l10n@lists.linux.org.tw\n" -"\n" -"Woodman , 2005-06\n" -"Abel Cheung , 2003-04" - -#: ../src/about.c:275 -msgid "Display dialog boxes from shell scripts" -msgstr "透過 shell scripts 來顯示對話方塊" - -#: ../src/main.c:105 -#, c-format -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "你必須指定對話方塊的類型。請輸入‘zenity --help’來顯示所有選項\n" - -#: ../src/notification.c:121 -#, c-format -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"邏輯值類型提示有無效的數值。\n" -"支援的數值為「true」或「false」。\n" - -#. (iibiiay) -#: ../src/notification.c:137 -#, c-format -msgid "Unsupported hint. Skipping.\n" -msgstr "不支援的提示。略過。\n" - -#. unknown hints -#: ../src/notification.c:150 -#, c-format -msgid "Unknown hint name. Skipping.\n" -msgstr "不明的提示名稱。略過。\n" - -#: ../src/notification.c:209 -#, c-format -msgid "Could not parse command from stdin\n" -msgstr "無法分析來自標準輸入的指令\n" - -#: ../src/notification.c:241 -#, c-format -msgid "Could not parse message from stdin\n" -msgstr "無法分析來自標準輸入的訊息\n" - -#: ../src/notification.c:323 -msgid "Zenity notification" -msgstr "Zenity 通知" - -#. Checks if username has been passed as a parameter -#: ../src/password.c:66 -msgid "Type your password" -msgstr "輸入你的密碼" - -#: ../src/password.c:69 -msgid "Type your username and password" -msgstr "輸入你的使用者名稱與密碼" - -#: ../src/password.c:107 -msgid "Username:" -msgstr "使用者名稱:" - -#: ../src/password.c:123 -msgid "Password:" -msgstr "密碼: " - -#: ../src/scale.c:57 -#, c-format -msgid "Maximum value must be greater than minimum value.\n" -msgstr "最大值必須大於最小值。\n" - -#: ../src/scale.c:64 -#, c-format -msgid "Value out of range.\n" -msgstr "數值超過界限。\n" - -#: ../src/tree.c:364 -#, c-format -msgid "No column titles specified for List dialog.\n" -msgstr "在清單對話方塊中沒有指定該欄清單的標題。\n" - -#: ../src/tree.c:370 -#, c-format -msgid "You should use only one List dialog type.\n" -msgstr "你應該只使用一個清單對話方塊類型。\n" - -#: ../src/zenity.ui.h:1 -msgid "Adjust the scale value" -msgstr "調整比例數值" - -#: ../src/zenity.ui.h:2 -msgid "Text View" -msgstr "文字檢視" - -#: ../src/zenity.ui.h:3 -msgid "Calendar selection" -msgstr "日曆選擇模式" - -#: ../src/zenity.ui.h:4 -msgid "Select a date from below." -msgstr "請從以下的日曆選取日期。" - -#: ../src/zenity.ui.h:5 -msgid "C_alendar:" -msgstr "日曆(_A):" - -#: ../src/zenity.ui.h:6 -msgid "Add a new entry" -msgstr "加入新的欄位" - -#: ../src/zenity.ui.h:7 -msgid "_Enter new text:" -msgstr "輸入新的文字(_E):" - -#: ../src/zenity.ui.h:8 -msgid "Error" -msgstr "錯誤" - -#: ../src/zenity.ui.h:9 -msgid "An error has occurred." -msgstr "發生錯誤。" - -#: ../src/zenity.ui.h:10 -msgid "Forms dialog" -msgstr "表單對話盒" - -#: ../src/zenity.ui.h:11 -msgid "Information" -msgstr "資訊" - -#: ../src/zenity.ui.h:12 -msgid "All updates are complete." -msgstr "全部更新完成。" - -#: ../src/zenity.ui.h:13 -msgid "Progress" -msgstr "進度" - -#: ../src/zenity.ui.h:14 -msgid "Running..." -msgstr "執行中…" - -#: ../src/zenity.ui.h:15 -msgid "Question" -msgstr "問題" - -#: ../src/zenity.ui.h:16 -msgid "Are you sure you want to proceed?" -msgstr "是否確定要繼續?" - -#: ../src/zenity.ui.h:17 -msgid "Select items from the list" -msgstr "請在清單中選取項目" - -#: ../src/zenity.ui.h:18 -msgid "Select items from the list below." -msgstr "請在以下的清單中選取項目。" - -#: ../src/zenity.ui.h:19 -msgid "Warning" -msgstr "警告" - -#: ../src/option.c:164 -msgid "Set the dialog title" -msgstr "設定對話方塊的標題" - -#: ../src/option.c:165 -msgid "TITLE" -msgstr "標題" - -#: ../src/option.c:173 -msgid "Set the window icon" -msgstr "設定視窗圖示" - -#: ../src/option.c:174 -msgid "ICONPATH" -msgstr "圖示路徑" - -#: ../src/option.c:182 -msgid "Set the width" -msgstr "設定闊度" - -#: ../src/option.c:183 -msgid "WIDTH" -msgstr "闊度" - -#: ../src/option.c:191 -msgid "Set the height" -msgstr "設定高度" - -#: ../src/option.c:192 -msgid "HEIGHT" -msgstr "高度" - -#: ../src/option.c:200 -msgid "Set dialog timeout in seconds" -msgstr "設定對話方塊的逾時時間(秒)" - -#. Timeout for closing the dialog -#: ../src/option.c:202 -msgid "TIMEOUT" -msgstr "逾時" - -#: ../src/option.c:210 -msgid "Sets the label of the Ok button" -msgstr "設定確定按鈕的標籤" - -#: ../src/option.c:211 ../src/option.c:220 ../src/option.c:262 -#: ../src/option.c:322 ../src/option.c:331 ../src/option.c:365 -#: ../src/option.c:423 ../src/option.c:560 ../src/option.c:676 -#: ../src/option.c:694 ../src/option.c:720 ../src/option.c:792 -#: ../src/option.c:877 ../src/option.c:886 ../src/option.c:939 -#: ../src/option.c:997 ../src/option.c:1166 -msgid "TEXT" -msgstr "文字" - -#: ../src/option.c:219 -msgid "Sets the label of the Cancel button" -msgstr "設定取消按鈕的標籤" - -#: ../src/option.c:228 -msgid "Set the modal hint" -msgstr "設定強制對話盒的提示" - -#: ../src/option.c:237 -msgid "Set the parent window to attach to" -msgstr "設定要附加的上層視窗" - -#: ../src/option.c:238 -msgid "WINDOW" -msgstr "視窗" - -#: ../src/option.c:252 -msgid "Display calendar dialog" -msgstr "顯示日曆對話方塊" - -#: ../src/option.c:261 ../src/option.c:321 ../src/option.c:364 -#: ../src/option.c:422 ../src/option.c:559 ../src/option.c:719 -#: ../src/option.c:791 ../src/option.c:938 ../src/option.c:996 -#: ../src/option.c:1165 -msgid "Set the dialog text" -msgstr "設定對話方塊中的文字" - -#: ../src/option.c:270 -msgid "Set the calendar day" -msgstr "設定日曆中的日期" - -#: ../src/option.c:271 -msgid "DAY" -msgstr "天" - -#: ../src/option.c:279 -msgid "Set the calendar month" -msgstr "設定日曆中的月份" - -#: ../src/option.c:280 -msgid "MONTH" -msgstr "月" - -#: ../src/option.c:288 -msgid "Set the calendar year" -msgstr "設定日曆中的年份" - -#: ../src/option.c:289 -msgid "YEAR" -msgstr "年" - -#: ../src/option.c:297 ../src/option.c:1183 -msgid "Set the format for the returned date" -msgstr "設定回傳的日期格式" - -#: ../src/option.c:298 ../src/option.c:1184 -msgid "PATTERN" -msgstr "樣式" - -#: ../src/option.c:312 -msgid "Display text entry dialog" -msgstr "顯示文字輸入欄對話方塊" - -#: ../src/option.c:330 -msgid "Set the entry text" -msgstr "設定輸入欄中的文字" - -#: ../src/option.c:339 -msgid "Hide the entry text" -msgstr "隱藏輸入欄中的文字" - -#: ../src/option.c:355 -msgid "Display error dialog" -msgstr "顯示錯誤訊息對話方塊" - -#: ../src/option.c:373 ../src/option.c:431 ../src/option.c:800 -#: ../src/option.c:947 -msgid "Set the dialog icon" -msgstr "設定對話盒的圖示" - -#: ../src/option.c:374 ../src/option.c:432 ../src/option.c:801 -#: ../src/option.c:948 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: ../src/option.c:382 ../src/option.c:440 ../src/option.c:809 -#: ../src/option.c:956 -msgid "Do not enable text wrapping" -msgstr "文字不要斷行" - -#: ../src/option.c:391 ../src/option.c:449 ../src/option.c:818 -#: ../src/option.c:965 -msgid "Do not enable pango markup" -msgstr "不要啟用 pango 標記" - -#: ../src/option.c:399 ../src/option.c:457 ../src/option.c:835 -#: ../src/option.c:973 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "啟用對話盒文字的省略功能。這可以修正視窗尺寸與過長文字的問題" - -#: ../src/option.c:413 -msgid "Display info dialog" -msgstr "顯示資訊對話方塊" - -#: ../src/option.c:471 -msgid "Display file selection dialog" -msgstr "顯示檔案選擇對話方塊" - -#: ../src/option.c:480 -msgid "Set the filename" -msgstr "設定檔案名稱" - -#: ../src/option.c:481 ../src/option.c:859 -msgid "FILENAME" -msgstr "檔案名稱" - -#: ../src/option.c:489 -msgid "Allow multiple files to be selected" -msgstr "允許同時選擇多個檔案" - -#: ../src/option.c:498 -msgid "Activate directory-only selection" -msgstr "只選取目錄" - -#: ../src/option.c:507 -msgid "Activate save mode" -msgstr "啟用安全模式" - -#: ../src/option.c:516 ../src/option.c:604 ../src/option.c:1174 -msgid "Set output separator character" -msgstr "設定分隔輸出結果的字符" - -#: ../src/option.c:517 ../src/option.c:605 ../src/option.c:1175 -msgid "SEPARATOR" -msgstr "分隔字符" - -# (Abel) --confirm-overwrite -#: ../src/option.c:525 -msgid "Confirm file selection if filename already exists" -msgstr "如果檔案已經存在,確認是否覆寫檔案" - -#: ../src/option.c:534 -msgid "Sets a filename filter" -msgstr "設定檔案過濾條件" - -#. Help for file-filter argument (name and patterns for file selection) -#: ../src/option.c:536 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "名稱 | 模式1 模式2 …" - -#: ../src/option.c:550 -msgid "Display list dialog" -msgstr "顯示清單對話方塊" - -#: ../src/option.c:568 -msgid "Set the column header" -msgstr "設定欄位標題" - -#: ../src/option.c:569 -msgid "COLUMN" -msgstr "欄" - -#: ../src/option.c:577 -msgid "Use check boxes for first column" -msgstr "第一欄使用獨立選擇按鈕" - -#: ../src/option.c:586 -msgid "Use radio buttons for first column" -msgstr "第一欄使用多項選擇按鈕" - -#: ../src/option.c:595 -msgid "Use an image for first column" -msgstr "第一欄使用影像" - -#: ../src/option.c:613 -msgid "Allow multiple rows to be selected" -msgstr "允許同時選擇多列" - -#: ../src/option.c:622 ../src/option.c:867 -msgid "Allow changes to text" -msgstr "允許更改文字" - -#: ../src/option.c:631 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "指定印出其中一欄(預設為第 1 欄,可以用‘ALL’來表示所有欄位)" - -#. Column index number to print out on a list dialog -#: ../src/option.c:633 ../src/option.c:642 -msgid "NUMBER" -msgstr "序號" - -#: ../src/option.c:641 -msgid "Hide a specific column" -msgstr "隱藏指定的欄位" - -#: ../src/option.c:650 -msgid "Hides the column headers" -msgstr "隱藏欄位標題" - -#: ../src/option.c:666 -msgid "Display notification" -msgstr "顯示通知" - -#: ../src/option.c:675 -msgid "Set the notification text" -msgstr "設定通知文字" - -#: ../src/option.c:684 -msgid "Listen for commands on stdin" -msgstr "監聽在標準輸入中的指令" - -#: ../src/option.c:693 -msgid "Set the notification hints" -msgstr "設定通知提示" - -#: ../src/option.c:710 -msgid "Display progress indication dialog" -msgstr "顯示進度指示窗" - -#: ../src/option.c:728 -msgid "Set initial percentage" -msgstr "設定開始時的百份比數值" - -#: ../src/option.c:729 -msgid "PERCENTAGE" -msgstr "百分比" - -#: ../src/option.c:737 -msgid "Pulsate progress bar" -msgstr "令進度列內的方塊來回移動" - -#: ../src/option.c:747 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "當進度達到 100% 時關閉對話方塊" - -#: ../src/option.c:757 -#, no-c-format -msgid "Kill parent process if Cancel button is pressed" -msgstr "若按下取消按鈕則中止父程序" - -#: ../src/option.c:767 -#, no-c-format -msgid "Hide Cancel button" -msgstr "隱藏取消按鈕" - -#: ../src/option.c:782 -msgid "Display question dialog" -msgstr "顯示提問訊息對話方塊" - -#: ../src/option.c:826 -msgid "Give cancel button focus by default" -msgstr "預設聚焦於「取消」按鈕" - -#: ../src/option.c:849 -msgid "Display text information dialog" -msgstr "顯示文字資訊對話方塊" - -#: ../src/option.c:858 -msgid "Open file" -msgstr "開啟檔案" - -#: ../src/option.c:876 -msgid "Set the text font" -msgstr "設定文字字型" - -#: ../src/option.c:885 -msgid "Enable an I read and agree checkbox" -msgstr "啟用一個「我已閱讀並同意」核取方塊" - -#: ../src/option.c:895 -msgid "Enable html support" -msgstr "啟用 html 支援" - -#: ../src/option.c:904 -msgid "Sets an url instead of a file. Only works if you use --html option" -msgstr "設定網址代替檔案。只有在你使用 --html 選項時有用" - -#: ../src/option.c:905 -msgid "URL" -msgstr "網址" - -#: ../src/option.c:914 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "自動捲動文字到結尾。只有當文字是從 stdin 擷取時。" - -#: ../src/option.c:929 -msgid "Display warning dialog" -msgstr "顯示警告訊息對話方塊" - -#: ../src/option.c:987 -msgid "Display scale dialog" -msgstr "顯示比例對話視窗" - -#: ../src/option.c:1005 -msgid "Set initial value" -msgstr "設定初始值" - -#: ../src/option.c:1006 ../src/option.c:1015 ../src/option.c:1024 -#: ../src/option.c:1033 ../src/option.c:1232 -msgid "VALUE" -msgstr "數值" - -#: ../src/option.c:1014 -msgid "Set minimum value" -msgstr "設定最小值" - -#: ../src/option.c:1023 -msgid "Set maximum value" -msgstr "設定最大值" - -#: ../src/option.c:1032 -msgid "Set step size" -msgstr "設定刻度大小" - -#: ../src/option.c:1041 -msgid "Print partial values" -msgstr "列出每段數值" - -#: ../src/option.c:1050 -msgid "Hide value" -msgstr "隱藏數值" - -#: ../src/option.c:1065 -msgid "Display forms dialog" -msgstr "顯示表單對話盒" - -#: ../src/option.c:1074 -msgid "Add a new Entry in forms dialog" -msgstr "在表單對話盒中加入新的項目" - -#: ../src/option.c:1075 ../src/option.c:1084 -msgid "Field name" -msgstr "欄位名稱" - -#: ../src/option.c:1083 -msgid "Add a new Password Entry in forms dialog" -msgstr "在表單對話盒中加入新的密碼項目" - -#: ../src/option.c:1092 -msgid "Add a new Calendar in forms dialog" -msgstr "在表單對話盒中加入新的日曆項目" - -#: ../src/option.c:1093 -msgid "Calendar field name" -msgstr "日曆欄位名稱" - -#: ../src/option.c:1101 -msgid "Add a new List in forms dialog" -msgstr "在表單對話盒中加入新的清單" - -#: ../src/option.c:1102 -msgid "List field and header name" -msgstr "列出欄位與標頭名稱" - -#: ../src/option.c:1110 -msgid "List of values for List" -msgstr "清單的數值列表" - -#: ../src/option.c:1111 ../src/option.c:1120 ../src/option.c:1138 -msgid "List of values separated by |" -msgstr "以 | 分隔的數值清單" - -#: ../src/option.c:1119 -msgid "List of values for columns" -msgstr "欄位的數值清單" - -#: ../src/option.c:1128 -msgid "Add a new combo box in forms dialog" -msgstr "在表單對話盒中加入新的組合方塊" - -#: ../src/option.c:1129 -msgid "Combo box field name" -msgstr "組合方塊欄位名稱" - -#: ../src/option.c:1137 -msgid "List of values for combo box" -msgstr "組合方塊的數值清單" - -#: ../src/option.c:1156 -msgid "Show the columns header" -msgstr "顯示欄位標頭" - -#: ../src/option.c:1198 -msgid "Display password dialog" -msgstr "顯示密碼對話盒" - -#: ../src/option.c:1207 -msgid "Display the username option" -msgstr "顯示使用者名稱選項" - -#: ../src/option.c:1222 -msgid "Display color selection dialog" -msgstr "顯示顏色選擇對話盒" - -#: ../src/option.c:1231 -msgid "Set the color" -msgstr "設定顏色" - -#: ../src/option.c:1240 -msgid "Show the palette" -msgstr "設定調色盤" - -#: ../src/option.c:1255 -msgid "About zenity" -msgstr "關於 zenity" - -#: ../src/option.c:1264 -msgid "Print version" -msgstr "顯示版本" - -#: ../src/option.c:2184 -msgid "General options" -msgstr "一般選項" - -#: ../src/option.c:2185 -msgid "Show general options" -msgstr "顯示一般選項" - -#: ../src/option.c:2195 -msgid "Calendar options" -msgstr "日曆選項" - -#: ../src/option.c:2196 -msgid "Show calendar options" -msgstr "顯示有關日曆的選項" - -#: ../src/option.c:2206 -msgid "Text entry options" -msgstr "文字輸入欄選項" - -#: ../src/option.c:2207 -msgid "Show text entry options" -msgstr "顯示有關文字輸入欄的選項" - -#: ../src/option.c:2217 -msgid "Error options" -msgstr "錯誤訊息選項" - -#: ../src/option.c:2218 -msgid "Show error options" -msgstr "顯示有關錯誤訊息的選項" - -#: ../src/option.c:2228 -msgid "Info options" -msgstr "資訊選項" - -#: ../src/option.c:2229 -msgid "Show info options" -msgstr "顯示資訊選項" - -#: ../src/option.c:2239 -msgid "File selection options" -msgstr "有關檔案選擇的選項" - -#: ../src/option.c:2240 -msgid "Show file selection options" -msgstr "顯示有關檔案選擇的選項" - -#: ../src/option.c:2250 -msgid "List options" -msgstr "清單選項" - -#: ../src/option.c:2251 -msgid "Show list options" -msgstr "顯示有關清單的選項" - -#: ../src/option.c:2262 -msgid "Notification icon options" -msgstr "有關通知區圖示的選項" - -#: ../src/option.c:2263 -msgid "Show notification icon options" -msgstr "顯示有關通知區圖示的選項" - -#: ../src/option.c:2274 -msgid "Progress options" -msgstr "進度列選項" - -#: ../src/option.c:2275 -msgid "Show progress options" -msgstr "顯示有關進度列的選項" - -#: ../src/option.c:2285 -msgid "Question options" -msgstr "提問選項" - -#: ../src/option.c:2286 -msgid "Show question options" -msgstr "顯示有關提問的選項" - -#: ../src/option.c:2296 -msgid "Warning options" -msgstr "警告訊息選項" - -#: ../src/option.c:2297 -msgid "Show warning options" -msgstr "顯示有關警告訊息的選項" - -#: ../src/option.c:2307 -msgid "Scale options" -msgstr "比例選項" - -#: ../src/option.c:2308 -msgid "Show scale options" -msgstr "顯示比例選項" - -#: ../src/option.c:2318 -msgid "Text information options" -msgstr "有關文字輸入欄的選項" - -#: ../src/option.c:2319 -msgid "Show text information options" -msgstr "顯示有關文字輸入欄的選項" - -#: ../src/option.c:2329 -msgid "Color selection options" -msgstr "有關顏色選擇的選項" - -#: ../src/option.c:2330 -msgid "Show color selection options" -msgstr "顯示有關顏色選擇的選項" - -#: ../src/option.c:2340 -msgid "Password dialog options" -msgstr "密碼對話盒選項" - -#: ../src/option.c:2341 -msgid "Show password dialog options" -msgstr "顯示密碼對話盒的選項" - -#: ../src/option.c:2351 -msgid "Forms dialog options" -msgstr "表單對話盒選項" - -#: ../src/option.c:2352 -msgid "Show forms dialog options" -msgstr "顯示表單對話盒的選項" - -#: ../src/option.c:2362 -msgid "Miscellaneous options" -msgstr "其它選項" - -#: ../src/option.c:2363 -msgid "Show miscellaneous options" -msgstr "顯示其它選項" - -#: ../src/option.c:2388 -#, c-format -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "本選項不存在,請參考 --help 以取得有關用法的資料。\n" - -#: ../src/option.c:2392 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "本類型的對話方塊不支援 %s 選項\n" - -#: ../src/option.c:2396 -#, c-format -msgid "Two or more dialog options specified\n" -msgstr "使用了兩個或以上的對話方塊選項\n" diff --git a/po/zh_TW.po b/po/zh_TW.po deleted file mode 100644 index 7259e80..0000000 --- a/po/zh_TW.po +++ /dev/null @@ -1,876 +0,0 @@ -# Chinese (Taiwan) translation of zenity. -# Copyright (C) 2003-2006 Free Software Foundation, Inc. -# Abel Cheung , 2003-2004. -# Woodman Tuen , 2005-2006. -# Chao-Hsiung Liao , 2010. -# Wei-Lun Chao , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: zenity 3.2.0\n" -"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?" -"product=zenity&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2018-02-25 14:50+0000\n" -"PO-Revision-Date: 2018-03-10 20:16+0800\n" -"Last-Translator: Chao-Hsiung Liao \n" -"Language-Team: Chinese (Taiwan) \n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" - -#: src/about.c:60 -msgid "" -"This program is free software; you can redistribute it and/or modify it " -"under the terms of the GNU Lesser General Public License as published by the " -"Free Software Foundation; either version 2 of the License, or (at your " -"option) any later version.\n" -msgstr "" -"本程式為自由軟體,您可依據自由軟體基金會所發表的 GNU 通用公共授權條款 (可選用" -"第二版或以後的任何版本) 規定,將本程式再散布或修改,或兩者同時進行。\n" - -#: src/about.c:65 -msgid "" -"This program is distributed in the hope that it will be useful, but WITHOUT " -"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " -"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License " -"for more details.\n" -msgstr "" -"本程式係基於使用目的而加以散布,然而不負任何擔保責任;亦無對適售性或特定目的" -"適用性所為的默示性擔保。詳情請參照 GNU 較寬鬆通用公共授權。\n" - -#: src/about.c:69 -msgid "" -"You should have received a copy of the GNU Lesser General Public License " -"along with this program; if not, write to the Free Software Foundation, " -"Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." -msgstr "" -"您應該已收到附於本程式的 GNU 通用公共授權的副本;如果沒有,請寫信至:the " -"Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " -"02110-1301, USA." - -#: src/about.c:260 -msgid "translator-credits" -msgstr "" -"如對翻譯有任何意見,請送一封電子郵件給\n" -"以下地址,GNOME 翻譯團隊會盡快回覆您:\n" -"zh-l10n@lists.linux.org.tw\n" -"\n" -"Woodman , 2005-06\n" -"Abel Cheung , 2003-04" - -#: src/about.c:277 -msgid "Display dialog boxes from shell scripts" -msgstr "透過 shell scripts 來顯示對話方塊" - -#: src/fileselection.c:62 src/fileselection.c:76 src/password.c:60 -msgid "_OK" -msgstr "確定(_O)" - -#: src/fileselection.c:63 src/fileselection.c:74 src/password.c:57 -msgid "_Cancel" -msgstr "取消(_C)" - -#: src/main.c:105 -msgid "You must specify a dialog type. See 'zenity --help' for details\n" -msgstr "您必須指定對話方塊的類型。請輸入‘zenity --help’來顯示所有選項\n" - -#: src/msg.c:38 -msgid "_No" -msgstr "否(_N)" - -#: src/msg.c:40 -msgid "_Yes" -msgstr "是(_Y)" - -#: src/notification.c:50 -msgid "Could not parse message\n" -msgstr "無法分析訊息\n" - -#: src/notification.c:132 -msgid "" -"Invalid value for a boolean typed hint.\n" -"Supported values are 'true' or 'false'.\n" -msgstr "" -"布林值類型提示有無效的數值。\n" -"支援的數值為「true」或「false」。\n" - -#. (iibiiay) -#: src/notification.c:149 -msgid "Unsupported hint. Skipping.\n" -msgstr "不支援的提示。略過。\n" - -#. unknown hints -#: src/notification.c:166 -msgid "Unknown hint name. Skipping.\n" -msgstr "不明的提示名稱。略過。\n" - -#: src/notification.c:218 -msgid "Could not parse command from stdin\n" -msgstr "無法分析來自標準輸入的指令\n" - -#: src/notification.c:318 -msgid "Zenity notification" -msgstr "Zenity 通知" - -#: src/option.c:164 -msgid "Set the dialog title" -msgstr "設定對話方塊的標題" - -#: src/option.c:165 -msgid "TITLE" -msgstr "標題" - -#: src/option.c:171 -msgid "Set the window icon" -msgstr "設定視窗圖示" - -#: src/option.c:172 -msgid "ICONPATH" -msgstr "圖示路徑" - -#: src/option.c:178 -msgid "Set the width" -msgstr "設定寬度" - -#: src/option.c:179 -msgid "WIDTH" -msgstr "寬度" - -#: src/option.c:185 -msgid "Set the height" -msgstr "設定高度" - -#: src/option.c:186 -msgid "HEIGHT" -msgstr "高度" - -#: src/option.c:192 -msgid "Set dialog timeout in seconds" -msgstr "設定對話方塊的逾時時間(秒)" - -#. Timeout for closing the dialog -#: src/option.c:194 -msgid "TIMEOUT" -msgstr "逾時" - -#: src/option.c:200 -msgid "Set the label of the OK button" -msgstr "設定確定按鈕的標籤" - -#: src/option.c:201 src/option.c:208 src/option.c:215 src/option.c:245 -#: src/option.c:289 src/option.c:296 src/option.c:319 src/option.c:362 -#: src/option.c:468 src/option.c:565 src/option.c:579 src/option.c:598 -#: src/option.c:658 src/option.c:730 src/option.c:737 src/option.c:786 -#: src/option.c:829 src/option.c:960 -msgid "TEXT" -msgstr "文字" - -#: src/option.c:207 -msgid "Set the label of the Cancel button" -msgstr "設定取消按鈕的標籤" - -#: src/option.c:214 -msgid "Add an extra button" -msgstr "加入額外按鈕" - -#: src/option.c:221 -msgid "Set the modal hint" -msgstr "設定強制對話盒的提示" - -#: src/option.c:228 -msgid "Set the parent window to attach to" -msgstr "設定要附加的上層視窗" - -#: src/option.c:229 -msgid "WINDOW" -msgstr "視窗" - -#: src/option.c:237 -msgid "Display calendar dialog" -msgstr "顯示日曆對話方塊" - -#: src/option.c:244 src/option.c:288 src/option.c:318 src/option.c:361 -#: src/option.c:467 src/option.c:597 src/option.c:657 src/option.c:785 -#: src/option.c:828 src/option.c:959 -msgid "Set the dialog text" -msgstr "設定對話方塊中的文字" - -#: src/option.c:251 -msgid "Set the calendar day" -msgstr "設定日曆中的日期" - -#: src/option.c:252 -msgid "DAY" -msgstr "天" - -#: src/option.c:258 -msgid "Set the calendar month" -msgstr "設定日曆中的月份" - -#: src/option.c:259 -msgid "MONTH" -msgstr "月" - -#: src/option.c:265 -msgid "Set the calendar year" -msgstr "設定日曆中的年份" - -#: src/option.c:266 -msgid "YEAR" -msgstr "年" - -#: src/option.c:272 src/option.c:973 -msgid "Set the format for the returned date" -msgstr "設定回傳的日期格式" - -#: src/option.c:273 src/option.c:974 -msgid "PATTERN" -msgstr "樣式" - -#: src/option.c:281 -msgid "Display text entry dialog" -msgstr "顯示文字輸入欄對話方塊" - -#: src/option.c:295 -msgid "Set the entry text" -msgstr "設定輸入欄中的文字" - -#: src/option.c:302 -msgid "Hide the entry text" -msgstr "隱藏輸入欄中的文字" - -#: src/option.c:311 -msgid "Display error dialog" -msgstr "顯示錯誤訊息對話方塊" - -#: src/option.c:325 src/option.c:368 src/option.c:664 src/option.c:792 -msgid "Set the dialog icon" -msgstr "設定對話盒的圖示" - -#: src/option.c:326 src/option.c:369 src/option.c:665 src/option.c:793 -msgid "ICON-NAME" -msgstr "ICON-NAME" - -#: src/option.c:332 src/option.c:375 src/option.c:671 src/option.c:799 -msgid "Do not enable text wrapping" -msgstr "文字不要斷行" - -#: src/option.c:339 src/option.c:382 src/option.c:678 src/option.c:806 -msgid "Do not enable Pango markup" -msgstr "不要啟用 Pango 標記" - -#: src/option.c:345 src/option.c:388 src/option.c:691 src/option.c:812 -msgid "" -"Enable ellipsizing in the dialog text. This fixes the high window size with " -"long texts" -msgstr "啟用對話盒文字的省略功能。這可以修正視窗尺寸與過長文字的問題" - -#: src/option.c:354 -msgid "Display info dialog" -msgstr "顯示資訊對話方塊" - -#: src/option.c:398 -msgid "Display file selection dialog" -msgstr "顯示檔案選擇對話方塊" - -#: src/option.c:405 -msgid "Set the filename" -msgstr "設定檔案名稱" - -#: src/option.c:406 src/option.c:716 -msgid "FILENAME" -msgstr "檔案名稱" - -#: src/option.c:412 -msgid "Allow multiple files to be selected" -msgstr "允許同時選擇多個檔案" - -#: src/option.c:419 -msgid "Activate directory-only selection" -msgstr "只選取目錄" - -#: src/option.c:426 -msgid "Activate save mode" -msgstr "啟用安全模式" - -#: src/option.c:433 src/option.c:502 src/option.c:966 -msgid "Set output separator character" -msgstr "設定分隔輸出結果的字元" - -#: src/option.c:434 src/option.c:503 src/option.c:967 -msgid "SEPARATOR" -msgstr "分隔字元" - -# (Abel) --confirm-overwrite -#: src/option.c:440 -msgid "Confirm file selection if filename already exists" -msgstr "如果檔案已經存在,確認是否覆寫檔案" - -#: src/option.c:448 -msgid "Set a filename filter" -msgstr "設定檔案名稱過濾器" - -#. Help for file-filter argument (name and patterns for file -#. selection) -#: src/option.c:451 -msgid "NAME | PATTERN1 PATTERN2 ..." -msgstr "名稱 | 模式1 模式2 …" - -#: src/option.c:460 -msgid "Display list dialog" -msgstr "顯示清單對話方塊" - -#: src/option.c:474 -msgid "Set the column header" -msgstr "設定欄位標題" - -#: src/option.c:475 -msgid "COLUMN" -msgstr "欄" - -#: src/option.c:481 -msgid "Use check boxes for the first column" -msgstr "第一欄使用勾選盒" - -#: src/option.c:488 -msgid "Use radio buttons for the first column" -msgstr "第一欄使用單選按鈕" - -#: src/option.c:495 -msgid "Use an image for the first column" -msgstr "第一欄使用影像" - -#: src/option.c:509 -msgid "Allow multiple rows to be selected" -msgstr "允許同時選擇多列" - -#: src/option.c:516 src/option.c:722 -msgid "Allow changes to text" -msgstr "允許更改文字" - -#: src/option.c:523 -msgid "" -"Print a specific column (Default is 1. 'ALL' can be used to print all " -"columns)" -msgstr "指定印出其中一欄(預設為第 1 欄,可以用‘ALL’來表示所有欄位)" - -#. Column index number to print out on a list dialog -#: src/option.c:526 src/option.c:533 -msgid "NUMBER" -msgstr "序號" - -#: src/option.c:532 -msgid "Hide a specific column" -msgstr "隱藏指定的欄位" - -#: src/option.c:539 -msgid "Hide the column headers" -msgstr "隱藏欄位標題" - -#: src/option.c:546 -msgid "" -"Change list default search function searching for text in the middle, not on " -"the beginning" -msgstr "改變清單預設的搜尋功能為從中間開始搜尋文字,而非從開頭" - -#: src/option.c:557 -msgid "Display notification" -msgstr "顯示通知" - -#: src/option.c:564 -msgid "Set the notification text" -msgstr "設定通知文字" - -#: src/option.c:571 -msgid "Listen for commands on stdin" -msgstr "監聽在標準輸入中的指令" - -#: src/option.c:578 -msgid "Set the notification hints" -msgstr "設定通知提示" - -#: src/option.c:590 -msgid "Display progress indication dialog" -msgstr "顯示進度指示窗" - -#: src/option.c:604 -msgid "Set initial percentage" -msgstr "設定開始時的百份比數值" - -#: src/option.c:605 -msgid "PERCENTAGE" -msgstr "百分比" - -#: src/option.c:611 -msgid "Pulsate progress bar" -msgstr "令進度列內的方塊來回移動" - -#: src/option.c:619 -#, no-c-format -msgid "Dismiss the dialog when 100% has been reached" -msgstr "當進度達到 100% 時關閉對話方塊" - -#: src/option.c:626 -msgid "Kill parent process if Cancel button is pressed" -msgstr "若按下取消按鈕則中止父程序" - -#: src/option.c:633 -msgid "Hide Cancel button" -msgstr "隱藏取消按鈕" - -#: src/option.c:641 -#, no-c-format -msgid "Estimate when progress will reach 100%" -msgstr "估計當進度到達 100% 的時間" - -#: src/option.c:650 -msgid "Display question dialog" -msgstr "顯示提問訊息對話方塊" - -#: src/option.c:684 -msgid "Give Cancel button focus by default" -msgstr "預設聚焦於「取消」按鈕" - -#: src/option.c:698 -msgid "Suppress OK and Cancel buttons" -msgstr "禁用確定與取消按鈕" - -#: src/option.c:708 -msgid "Display text information dialog" -msgstr "顯示文字資訊對話方塊" - -#: src/option.c:715 -msgid "Open file" -msgstr "開啟檔案" - -#: src/option.c:729 -msgid "Set the text font" -msgstr "設定文字字型" - -#: src/option.c:736 -msgid "Enable an I read and agree checkbox" -msgstr "啟用一個「我已閱讀並同意」勾選盒" - -#: src/option.c:744 -msgid "Enable HTML support" -msgstr "啟用 HTML 支援" - -#: src/option.c:751 -msgid "" -"Do not enable user interaction with the WebView. Only works if you use --" -"html option" -msgstr "不要啟用 WebView 的使用者互動模式。只有在您使用 --html 選項時有用" - -#: src/option.c:759 -msgid "Set an URL instead of a file. Only works if you use --html option" -msgstr "設定 URL 代替檔案。只有在您使用 --html 選項時有用" - -#: src/option.c:761 -msgid "URL" -msgstr "網址" - -#: src/option.c:768 -msgid "Auto scroll the text to the end. Only when text is captured from stdin" -msgstr "自動捲動文字到結尾。只有當文字是從 stdin 擷取時。" - -#: src/option.c:778 -msgid "Display warning dialog" -msgstr "顯示警告訊息對話方塊" - -#: src/option.c:821 -msgid "Display scale dialog" -msgstr "顯示比例對話視窗" - -#: src/option.c:835 -msgid "Set initial value" -msgstr "設定初始值" - -#: src/option.c:836 src/option.c:843 src/option.c:850 src/option.c:857 -#: src/option.c:1008 -msgid "VALUE" -msgstr "數值" - -#: src/option.c:842 -msgid "Set minimum value" -msgstr "設定最小值" - -#: src/option.c:849 -msgid "Set maximum value" -msgstr "設定最大值" - -#: src/option.c:856 -msgid "Set step size" -msgstr "設定刻度大小" - -#: src/option.c:863 -msgid "Print partial values" -msgstr "列出每段數值" - -#: src/option.c:870 -msgid "Hide value" -msgstr "隱藏數值" - -#: src/option.c:879 -msgid "Display forms dialog" -msgstr "顯示表單對話盒" - -#: src/option.c:886 -msgid "Add a new Entry in forms dialog" -msgstr "在表單對話盒中加入新的項目" - -#: src/option.c:887 src/option.c:894 -msgid "Field name" -msgstr "欄位名稱" - -#: src/option.c:893 -msgid "Add a new Password Entry in forms dialog" -msgstr "在表單對話盒中加入新的密碼項目" - -#: src/option.c:900 -msgid "Add a new Calendar in forms dialog" -msgstr "在表單對話盒中加入新的日曆項目" - -#: src/option.c:901 -msgid "Calendar field name" -msgstr "日曆欄位名稱" - -#: src/option.c:907 -msgid "Add a new List in forms dialog" -msgstr "在表單對話盒中加入新的清單" - -#: src/option.c:908 -msgid "List field and header name" -msgstr "列出欄位與標頭名稱" - -#: src/option.c:914 -msgid "List of values for List" -msgstr "清單的數值列表" - -#: src/option.c:915 src/option.c:922 src/option.c:936 -msgid "List of values separated by |" -msgstr "以 | 分隔的數值清單" - -#: src/option.c:921 -msgid "List of values for columns" -msgstr "欄位的數值清單" - -#: src/option.c:928 -msgid "Add a new combo box in forms dialog" -msgstr "在表單對話盒中加入新的組合方塊" - -#: src/option.c:929 -msgid "Combo box field name" -msgstr "組合方塊欄位名稱" - -#: src/option.c:935 -msgid "List of values for combo box" -msgstr "組合方塊的數值清單" - -#: src/option.c:952 -msgid "Show the columns header" -msgstr "顯示欄位標頭" - -#: src/option.c:983 -msgid "Display password dialog" -msgstr "顯示密碼對話盒" - -#: src/option.c:990 -msgid "Display the username option" -msgstr "顯示使用者名稱選項" - -#: src/option.c:1000 -msgid "Display color selection dialog" -msgstr "顯示顏色選擇對話盒" - -#: src/option.c:1007 -msgid "Set the color" -msgstr "設定顏色" - -#: src/option.c:1014 -msgid "Show the palette" -msgstr "設定調色盤" - -#: src/option.c:1023 -msgid "About zenity" -msgstr "關於 zenity" - -#: src/option.c:1030 -msgid "Print version" -msgstr "顯示版本" - -#: src/option.c:1913 -msgid "General options" -msgstr "一般選項" - -#: src/option.c:1914 -msgid "Show general options" -msgstr "顯示一般選項" - -#: src/option.c:1926 -msgid "Calendar options" -msgstr "日曆選項" - -#: src/option.c:1927 -msgid "Show calendar options" -msgstr "顯示有關日曆的選項" - -#: src/option.c:1939 -msgid "Text entry options" -msgstr "文字輸入欄選項" - -#: src/option.c:1940 -msgid "Show text entry options" -msgstr "顯示有關文字輸入欄的選項" - -#: src/option.c:1952 -msgid "Error options" -msgstr "錯誤訊息選項" - -#: src/option.c:1952 -msgid "Show error options" -msgstr "顯示有關錯誤訊息的選項" - -#: src/option.c:1962 -msgid "Info options" -msgstr "資訊選項" - -#: src/option.c:1962 -msgid "Show info options" -msgstr "顯示資訊選項" - -#: src/option.c:1972 -msgid "File selection options" -msgstr "有關檔案選擇的選項" - -#: src/option.c:1973 -msgid "Show file selection options" -msgstr "顯示有關檔案選擇的選項" - -#: src/option.c:1985 -msgid "List options" -msgstr "清單選項" - -#: src/option.c:1985 -msgid "Show list options" -msgstr "顯示有關清單的選項" - -#: src/option.c:1996 -msgid "Notification icon options" -msgstr "有關通知區圖示的選項" - -#: src/option.c:1997 -msgid "Show notification icon options" -msgstr "顯示有關通知區圖示的選項" - -#: src/option.c:2011 -msgid "Progress options" -msgstr "進度列選項" - -#: src/option.c:2012 -msgid "Show progress options" -msgstr "顯示有關進度列的選項" - -#: src/option.c:2024 -msgid "Question options" -msgstr "提問選項" - -#: src/option.c:2025 -msgid "Show question options" -msgstr "顯示有關提問的選項" - -#: src/option.c:2037 -msgid "Warning options" -msgstr "警告訊息選項" - -#: src/option.c:2038 -msgid "Show warning options" -msgstr "顯示有關警告訊息的選項" - -#: src/option.c:2050 -msgid "Scale options" -msgstr "比例選項" - -#: src/option.c:2050 -msgid "Show scale options" -msgstr "顯示比例選項" - -#: src/option.c:2060 -msgid "Text information options" -msgstr "有關文字輸入欄的選項" - -#: src/option.c:2061 -msgid "Show text information options" -msgstr "顯示有關文字輸入欄的選項" - -#: src/option.c:2073 -msgid "Color selection options" -msgstr "有關顏色選擇的選項" - -#: src/option.c:2074 -msgid "Show color selection options" -msgstr "顯示有關顏色選擇的選項" - -#: src/option.c:2086 -msgid "Password dialog options" -msgstr "密碼對話盒選項" - -#: src/option.c:2087 -msgid "Show password dialog options" -msgstr "顯示密碼對話盒的選項" - -#: src/option.c:2099 -msgid "Forms dialog options" -msgstr "表單對話盒選項" - -#: src/option.c:2100 -msgid "Show forms dialog options" -msgstr "顯示表單對話盒的選項" - -#: src/option.c:2112 -msgid "Miscellaneous options" -msgstr "其它選項" - -#: src/option.c:2113 -msgid "Show miscellaneous options" -msgstr "顯示其它選項" - -#: src/option.c:2139 -msgid "" -"This option is not available. Please see --help for all possible usages.\n" -msgstr "本選項不存在,請參考 --help 以取得有關用法的資料。\n" - -#: src/option.c:2144 -#, c-format -msgid "--%s is not supported for this dialog\n" -msgstr "本類型的對話方塊不支援 %s 選項\n" - -#: src/option.c:2148 -msgid "Two or more dialog options specified\n" -msgstr "使用了兩個或以上的對話方塊選項\n" - -#. Checks if username has been passed as a parameter -#: src/password.c:70 -msgid "Type your password" -msgstr "輸入您的密碼" - -#: src/password.c:73 -msgid "Type your username and password" -msgstr "輸入您的使用者名稱與密碼" - -#: src/password.c:100 -msgid "Username:" -msgstr "使用者名稱:" - -#: src/password.c:110 -msgid "Password:" -msgstr "密碼: " - -#: src/progress.c:102 -#, c-format -msgid "Time remaining: %lu:%02lu:%02lu" -msgstr "剩餘時間: %lu:%02lu:%02lu" - -#: src/scale.c:62 -msgid "Maximum value must be greater than minimum value.\n" -msgstr "最大值必須大於最小值。\n" - -#: src/scale.c:69 -msgid "Value out of range.\n" -msgstr "數值超過界限。\n" - -#: src/tree.c:393 -msgid "No column titles specified for List dialog.\n" -msgstr "在清單對話方塊中沒有指定該欄清單的標題。\n" - -#: src/tree.c:399 -msgid "You should use only one List dialog type.\n" -msgstr "您應該只使用一個清單對話方塊類型。\n" - -#: src/zenity.ui:14 src/zenity.ui:76 -msgid "Adjust the scale value" -msgstr "調整比例數值" - -#: src/zenity.ui:30 src/zenity.ui:135 src/zenity.ui:247 src/zenity.ui:378 -#: src/zenity.ui:578 src/zenity.ui:784 src/zenity.ui:970 -msgid "Cancel" -msgstr "取消" - -#: src/zenity.ui:44 src/zenity.ui:148 src/zenity.ui:261 src/zenity.ui:392 -#: src/zenity.ui:481 src/zenity.ui:591 src/zenity.ui:697 src/zenity.ui:798 -#: src/zenity.ui:984 src/zenity.ui:1080 -msgid "OK" -msgstr "確定" - -#: src/zenity.ui:117 -msgid "Text View" -msgstr "文字檢視" - -#: src/zenity.ui:231 -msgid "Calendar selection" -msgstr "日曆選擇模式" - -#: src/zenity.ui:298 -msgid "Select a date from below." -msgstr "請從以下的日曆選取日期。" - -#: src/zenity.ui:319 -msgid "C_alendar:" -msgstr "日曆(_A):" - -#: src/zenity.ui:361 -msgid "Add a new entry" -msgstr "加入新的欄位" - -#: src/zenity.ui:428 -msgid "_Enter new text:" -msgstr "輸入新的文字(_E):" - -#: src/zenity.ui:465 -msgid "Error" -msgstr "錯誤" - -#: src/zenity.ui:530 -msgid "An error has occurred." -msgstr "發生錯誤。" - -#: src/zenity.ui:658 -msgid "Forms dialog" -msgstr "表單對話盒" - -#: src/zenity.ui:681 -msgid "Information" -msgstr "資訊" - -#: src/zenity.ui:741 -msgid "All updates are complete." -msgstr "全部更新完成。" - -#: src/zenity.ui:768 -msgid "Progress" -msgstr "進度" - -#: src/zenity.ui:831 -msgid "Running..." -msgstr "執行中…" - -#: src/zenity.ui:882 -msgid "Question" -msgstr "問題" - -#: src/zenity.ui:929 src/zenity.ui:1126 -msgid "Are you sure you want to proceed?" -msgstr "是否確定要繼續?" - -#: src/zenity.ui:953 -msgid "Select items from the list" -msgstr "請在清單中選取項目" - -#: src/zenity.ui:1015 -msgid "Select items from the list below." -msgstr "請在以下的清單中選取項目。" - -#: src/zenity.ui:1064 -msgid "Warning" -msgstr "警告" diff --git a/src/.cvsignore b/src/.cvsignore deleted file mode 100644 index 76bab18..0000000 --- a/src/.cvsignore +++ /dev/null @@ -1,5 +0,0 @@ -zenity.gladep -zenity -Makefile.in -Makefile -gdialog diff --git a/src/.gresource.xml b/src/.gresource.xml new file mode 100644 index 0000000..8f0760b --- /dev/null +++ b/src/.gresource.xml @@ -0,0 +1,6 @@ + + + + zenity.ui + + diff --git a/src/about.c b/src/about.c deleted file mode 100644 index c0baa9e..0000000 --- a/src/about.c +++ /dev/null @@ -1,140 +0,0 @@ -/* - * about.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * Copyright (C) 2001 CodeFactory AB - * Copyright (C) 2001, 2002 Anders Carlsson - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - * Anders Carlsson - */ - -#include "config.h" -#include "util.h" -#include "zenity.h" -#include -#include - -#define GTK_RESPONSE_CREDITS 0 -#define ZENITY_HELP_PATH ZENITY_DATADIR "/help/" - -static GtkWidget *dialog; - -static void zenity_about_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -/* Sync with the people in the THANKS file */ -static const gchar *const authors[] = {"Glynn Foster ", - "Lucas Rocha ", - "Mike Newman ", - NULL}; - -static const char *documenters[] = {"Glynn Foster ", - "Lucas Rocha ", - "Java Desktop System Documentation Team", - "GNOME Documentation Project", - NULL}; - -static gchar *translators; - -static const char *license[] = { - N_ ("This program is free software; you can redistribute it and/or modify " - "it under the terms of the GNU Lesser General Public License as " - "published by " - "the Free Software Foundation; either version 2 of the License, or " - "(at your option) any later version.\n"), - N_ ("This program is distributed in the hope that it will be useful, " - "but WITHOUT ANY WARRANTY; without even the implied warranty of " - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " - "GNU Lesser General Public License for more details.\n"), - N_ ("You should have received a copy of the GNU Lesser General Public " - "License " - "along with this program; if not, write to the Free Software " - "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA " - "02110-1301, USA.")}; - -void -zenity_about (ZenityData *data) { - GdkPixbuf *logo; - char *license_trans; - - translators = _ ("translator-credits"); - logo = - gdk_pixbuf_new_from_file (ZENITY_IMAGE_FULLPATH ("zenity.png"), NULL); - - license_trans = g_strconcat ( - _ (license[0]), "\n", _ (license[1]), "\n", _ (license[2]), "\n", NULL); - - dialog = gtk_about_dialog_new (); - - g_object_set (G_OBJECT (dialog), - "name", - "Zenity", - "version", - VERSION, - "copyright", - "Copyright \xc2\xa9 2003 Sun Microsystems", - "comments", - _ ("Display dialog boxes from shell scripts"), - "authors", - authors, - "documenters", - documenters, - "translator-credits", - translators, - "website", - "http://live.gnome.org/Zenity", - "logo", - logo, - "wrap-license", - TRUE, - "license", - license_trans, - NULL); - - g_free (license_trans); - - zenity_util_set_window_icon ( - dialog, NULL, ZENITY_IMAGE_FULLPATH ("zenity.png")); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_about_dialog_response), - data); - - zenity_util_show_dialog (dialog, data->attach); - gtk_main (); -} - -static void -zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data) { - ZenityData *zen_data = data; - - switch (response) { - case GTK_RESPONSE_CLOSE: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - break; - - default: - /* Esc dialog */ - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - - gtk_main_quit (); -} diff --git a/src/calendar.c b/src/calendar.c deleted file mode 100644 index 9aaf927..0000000 --- a/src/calendar.c +++ /dev/null @@ -1,180 +0,0 @@ -/* - * calendar.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" -#include - -static GtkWidget *calendar; -static ZenityCalendarData *zen_cal_data; - -static void zenity_calendar_dialog_response ( - GtkWidget *widget, int response, gpointer data); -static void zenity_calendar_double_click (GtkCalendar *calendar, gpointer data); - -void -zenity_calendar (ZenityData *data, ZenityCalendarData *cal_data) { - GtkBuilder *builder; - GtkWidget *dialog; - GtkWidget *button; - GObject *text; - - zen_cal_data = cal_data; - - builder = zenity_util_load_ui_file ("zenity_calendar_dialog", NULL); - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - gtk_builder_connect_signals (builder, NULL); - - dialog = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_calendar_dialog")); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_calendar_dialog_response), - data); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - zenity_util_set_window_icon (dialog, - data->window_icon, - ZENITY_IMAGE_FULLPATH ("zenity-calendar.png")); - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - text = gtk_builder_get_object (builder, "zenity_calendar_text"); - - if (cal_data->dialog_text) - gtk_label_set_markup ( - GTK_LABEL (text), g_strcompress (cal_data->dialog_text)); - - calendar = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_calendar")); - - if (cal_data->month > 0 || cal_data->year > 0) - gtk_calendar_select_month ( - GTK_CALENDAR (calendar), cal_data->month - 1, cal_data->year); - if (cal_data->day > 0) - gtk_calendar_select_day (GTK_CALENDAR (calendar), cal_data->day); - - g_signal_connect (calendar, - "day-selected-double-click", - G_CALLBACK (zenity_calendar_double_click), - data); - - gtk_label_set_mnemonic_widget (GTK_LABEL (text), calendar); - zenity_util_show_dialog (dialog, data->attach); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_calendar_ok_button")); - gtk_button_set_label (GTK_BUTTON (button), data->ok_label); - } - - if (data->cancel_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_calendar_cancel_button")); - gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); - } - - g_object_unref (builder); - - gtk_main (); -} -static void -zenity_calendar_dialog_output (void) { - guint day, month, year; - gchar time_string[128]; - GDate *date = NULL; - - gtk_calendar_get_date (GTK_CALENDAR (calendar), &day, &month, &year); - date = g_date_new_dmy (year, month + 1, day); - g_date_strftime (time_string, 127, zen_cal_data->date_format, date); - g_print ("%s\n", time_string); - - if (date != NULL) - g_date_free (date); -} - -static void -zenity_calendar_dialog_response ( - GtkWidget *widget, int response, gpointer data) { - ZenityData *zen_data; - - zen_data = data; - - switch (response) { - case GTK_RESPONSE_OK: - zenity_calendar_dialog_output (); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - case ZENITY_TIMEOUT: - zenity_calendar_dialog_output (); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_TIMEOUT); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - gtk_main_quit (); -} - -static void -zenity_calendar_double_click (GtkCalendar *cal, gpointer data) { - zenity_calendar_dialog_response (NULL, GTK_RESPONSE_OK, data); -} diff --git a/src/color.c b/src/color.c deleted file mode 100644 index 9ef233e..0000000 --- a/src/color.c +++ /dev/null @@ -1,118 +0,0 @@ -/* - * color.c - * - * Copyright (C) 2010 Berislav Kovacki - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Berislav Kovacki - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" -#include - -static ZenityData *zen_data; - -static void zenity_colorselection_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -void -zenity_colorselection (ZenityData *data, ZenityColorData *color_data) { - GtkWidget *dialog; - GtkWidget *button; - GdkRGBA color; - - zen_data = data; - - dialog = gtk_color_chooser_dialog_new (data->dialog_title, NULL); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_colorselection_dialog_response), - color_data); - - if (color_data->color) { - if (gdk_rgba_parse (&color, color_data->color)) { - gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (dialog), &color); - } - } - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - g_object_get (G_OBJECT (dialog), "ok-button", &button, NULL); - gtk_button_set_label (GTK_BUTTON (button), data->ok_label); - g_object_unref (G_OBJECT (button)); - } - - if (data->cancel_label) { - g_object_get (G_OBJECT (dialog), "cancel-button", &button, NULL); - gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); - g_object_unref (G_OBJECT (button)); - } - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - g_object_set (dialog, "show-editor", !color_data->show_palette, NULL); - - zenity_util_show_dialog (dialog, data->attach); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - gtk_main (); -} - -static void -zenity_colorselection_dialog_response ( - GtkWidget *widget, int response, gpointer data) { - GdkRGBA color; - - switch (response) { - case GTK_RESPONSE_OK: - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (widget), &color); - g_print ("%s\n", gdk_rgba_to_string (&color)); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - - gtk_main_quit (); -} diff --git a/src/entry.c b/src/entry.c index bf3db71..44b91bd 100644 --- a/src/entry.c +++ b/src/entry.c @@ -21,8 +21,6 @@ * Authors: Glynn Foster */ -#include "config.h" - #include "util.h" #include "zenity.h" @@ -77,9 +75,6 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data) { if (data->dialog_title) gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - zenity_util_set_window_icon ( - dialog, data->window_icon, ZENITY_IMAGE_FULLPATH ("zenity-entry.png")); - if (data->width > -1 || data->height > -1) gtk_window_set_default_size ( GTK_WINDOW (dialog), data->width, data->height); diff --git a/src/fileselection.c b/src/fileselection.c deleted file mode 100644 index 465f08a..0000000 --- a/src/fileselection.c +++ /dev/null @@ -1,238 +0,0 @@ -/* - * fileselection.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" -#include - -static ZenityData *zen_data; - -static void zenity_fileselection_dialog_response ( - gpointer obj, int response, gpointer data); - -void -zenity_fileselection (ZenityData *data, ZenityFileData *file_data) { - gchar *dir; - gchar *basename; - GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_OPEN; -#if GTK_CHECK_VERSION(3, 20, 0) - GtkFileChooserNative *dialog; -#else - GtkWidget *dialog; -#endif - - zen_data = data; - - if (file_data->directory) { - if (file_data->save) - action = GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER; - else - action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER; - } else { - if (file_data->save) - action = GTK_FILE_CHOOSER_ACTION_SAVE; - } - -#if GTK_CHECK_VERSION(3, 20, 0) - dialog = gtk_file_chooser_native_new (data->dialog_title, - NULL, /* TODO: Get parent from xid */ - action, - _ ("_OK"), - _ ("_Cancel")); - - if (data->modal) - gtk_native_dialog_set_modal (GTK_NATIVE_DIALOG (dialog), TRUE); - - if (data->extra_label) - g_warning ("Cannot add extra labels to GtkFileChooserNative"); -#else - dialog = gtk_file_chooser_dialog_new (NULL, - NULL, - action, - _ ("_Cancel"), - GTK_RESPONSE_CANCEL, - _ ("_OK"), - GTK_RESPONSE_ACCEPT, - NULL); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - zenity_util_set_window_icon ( - dialog, data->window_icon, ZENITY_IMAGE_FULLPATH ("zenity-file.png")); - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } -#endif - - gtk_file_chooser_set_do_overwrite_confirmation ( - GTK_FILE_CHOOSER (dialog), file_data->confirm_overwrite); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_fileselection_dialog_response), - file_data); - - if (file_data->uri) { - dir = g_path_get_dirname (file_data->uri); - - if (g_path_is_absolute (file_data->uri) == TRUE) - gtk_file_chooser_set_current_folder ( - GTK_FILE_CHOOSER (dialog), dir); - - if (file_data->uri[strlen (file_data->uri) - 1] != '/') { - basename = g_path_get_basename (file_data->uri); - if (file_data->save) - gtk_file_chooser_set_current_name ( - GTK_FILE_CHOOSER (dialog), basename); - else - (void) gtk_file_chooser_set_filename ( - GTK_FILE_CHOOSER (dialog), file_data->uri); - g_free (basename); - } - g_free (dir); - } - - if (file_data->multi) - gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (dialog), TRUE); - - if (file_data->filter) { - /* Filter format: Executables | *.exe *.bat *.com */ - gint filter_i; - - for (filter_i = 0; file_data->filter[filter_i]; filter_i++) { - GtkFileFilter *filter = gtk_file_filter_new (); - gchar *filter_str = file_data->filter[filter_i]; - gchar **pattern, **patterns; - gchar *name = NULL; - gint i; - - /* Set name */ - for (i = 0; filter_str[i] != '\0'; i++) - if (filter_str[i] == '|') - break; - - if (filter_str[i] == '|') { - name = g_strndup (filter_str, i); - g_strstrip (name); - } - - if (name) { - gtk_file_filter_set_name (filter, name); - - /* Point i to the right position for split */ - for (++i; filter_str[i] == ' '; i++) - ; - } else { - gtk_file_filter_set_name (filter, filter_str); - i = 0; - } - - /* Get patterns */ - patterns = g_strsplit_set (filter_str + i, " ", -1); - - for (pattern = patterns; *pattern; pattern++) - gtk_file_filter_add_pattern (filter, *pattern); - - if (name) - g_free (name); - - g_strfreev (patterns); - - gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter); - } - } - -#if GTK_CHECK_VERSION(3, 20, 0) - gtk_native_dialog_show (GTK_NATIVE_DIALOG (dialog)); -#else - zenity_util_show_dialog (dialog, data->attach); -#endif - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - gtk_main (); -} - -static void -zenity_fileselection_dialog_output ( - GtkFileChooser *chooser, ZenityFileData *file_data) { - GSList *selections, *iter; - selections = gtk_file_chooser_get_filenames (chooser); - for (iter = selections; iter != NULL; iter = iter->next) { - g_print ("%s", - g_filename_to_utf8 ((gchar *) iter->data, -1, NULL, NULL, NULL)); - g_free (iter->data); - if (iter->next != NULL) - g_print ("%s", file_data->separator); - } - g_print ("\n"); - g_slist_free (selections); -} - -static void -zenity_fileselection_dialog_response ( - gpointer obj, int response, gpointer data) { - ZenityFileData *file_data = data; - - GtkFileChooser *chooser = GTK_FILE_CHOOSER (obj); - - switch (response) { - case GTK_RESPONSE_ACCEPT: - zenity_fileselection_dialog_output (chooser, file_data); - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - case ZENITY_TIMEOUT: - zenity_fileselection_dialog_output (chooser, file_data); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_TIMEOUT); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - gtk_main_quit (); -} diff --git a/src/forms.c b/src/forms.c deleted file mode 100644 index 15df718..0000000 --- a/src/forms.c +++ /dev/null @@ -1,422 +0,0 @@ -/* - * forms.c - * - * Copyright (C) 2010 Arx Cruz - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 121 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Arx Cruz - */ - -#include "config.h" -#include "util.h" -#include "zenity.h" -#include - -static ZenityData *zen_data; -static GSList *selected; -static void zenity_forms_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -static void -zenity_forms_dialog_get_selected (GtkTreeModel *model, GtkTreePath *path_buf, - GtkTreeIter *iter, GtkTreeView *tree_view) { - gint n_columns = 0; - gint i = 0; - GValue value = { - 0, - }; - - n_columns = gtk_tree_model_get_n_columns (model); - for (i = 0; i < n_columns; i++) { - gtk_tree_model_get_value (model, iter, i, &value); - selected = g_slist_append (selected, g_value_dup_string (&value)); - g_value_unset (&value); - } -} - -static GtkWidget * -zenity_forms_create_and_fill_combo ( - ZenityFormsData *forms_data, int combo_number) { - GtkListStore *list_store; - GtkWidget *combo_box; - GtkCellRenderer *renderer; - gchar *combo_values; - - list_store = gtk_list_store_new (1, G_TYPE_STRING); - - if (forms_data->combo_values) { - combo_values = - g_slist_nth_data (forms_data->combo_values, combo_number); - if (combo_values) { - gchar **row_values = g_strsplit_set (combo_values, "|", -1); - if (row_values) { - gint i = 0; - GtkTreeIter iter; - gchar *row = row_values[i]; - - while (row != NULL) { - gtk_list_store_append (list_store, &iter); - gtk_list_store_set (list_store, &iter, 0, row, -1); - row = row_values[++i]; - } - g_strfreev (row_values); - } - g_free (combo_values); - } - } - - combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL (list_store)); - g_object_unref (G_OBJECT (list_store)); - - renderer = gtk_cell_renderer_text_new (); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE); - gtk_cell_layout_set_attributes ( - GTK_CELL_LAYOUT (combo_box), renderer, "text", 0, NULL); - - return combo_box; -} - -static GtkWidget * -zenity_forms_create_and_fill_list ( - ZenityFormsData *forms_data, int list_number, gchar *header) { - GtkListStore *list_store; - GtkWidget *tree_view; - GtkWidget *scrolled_window; - GtkCellRenderer *renderer; - GtkTreeViewColumn *column; - GType *column_types = NULL; - gchar *list_values; - gchar *column_values; - - gint i = 0; - /* If no column names available, default is one */ - gint n_columns = 1; - gint column_index = 0; - - tree_view = gtk_tree_view_new (); - - if (forms_data->column_values) { - int columns_values_count = - g_slist_length (forms_data->column_values); - int column_number = 0; - if (list_number < columns_values_count) { - column_number = list_number; - } - - column_values = - g_slist_nth_data (forms_data->column_values, column_number); - if (column_values) { - gchar **values = g_strsplit_set (column_values, "|", -1); - if (values) { - n_columns = g_strv_length (values); - column_types = g_new (GType, n_columns); - for (i = 0; i < n_columns; i++) - column_types[i] = G_TYPE_STRING; - - for (i = 0; i < n_columns; i++) { - gchar *column_name = values[i]; - renderer = gtk_cell_renderer_text_new (); - column = gtk_tree_view_column_new_with_attributes ( - column_name, renderer, "text", column_index, NULL); - gtk_tree_view_append_column ( - GTK_TREE_VIEW (tree_view), column); - column_index++; - } - } - } else { - /* If no values available, add one with string type*/ - column_types = g_new (GType, n_columns); - column_types[0] = G_TYPE_STRING; - } - } - - list_store = g_object_new (GTK_TYPE_LIST_STORE, NULL); - - gtk_list_store_set_column_types (list_store, n_columns, column_types); - - if (forms_data->list_values) { - list_values = g_slist_nth_data (forms_data->list_values, list_number); - if (list_values) { - gchar **row_values = g_strsplit_set (list_values, "|", -1); - if (row_values) { - GtkTreeIter iter; - gchar *row = row_values[0]; - gint position = -1; - i = 0; - - while (row != NULL) { - if (position >= n_columns || position == -1) { - position = 0; - gtk_list_store_append (list_store, &iter); - } - gtk_list_store_set (list_store, &iter, position, row, -1); - position++; - row = row_values[++i]; - } - g_strfreev (row_values); - } - g_free (list_values); - } - } - - gtk_tree_view_set_model ( - GTK_TREE_VIEW (tree_view), GTK_TREE_MODEL (list_store)); - g_object_unref (list_store); - scrolled_window = gtk_scrolled_window_new (NULL, NULL); - // gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW - // (scrolled_window), - // GTK_WIDGET (tree_view)); - gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (tree_view)); - gtk_widget_set_size_request (GTK_WIDGET (scrolled_window), -1, 100); - gtk_tree_view_set_headers_visible ( - GTK_TREE_VIEW (tree_view), forms_data->show_header); - - return scrolled_window; -} - -void -zenity_forms_dialog (ZenityData *data, ZenityFormsData *forms_data) { - GtkBuilder *builder = NULL; - GtkWidget *dialog; - GtkWidget *grid; - GtkWidget *text; - GtkWidget *button; - - GSList *tmp; - - int list_count = 0; - int combo_count = 0; - int i = 0; - - zen_data = data; - - builder = zenity_util_load_ui_file ("zenity_forms_dialog", NULL); - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - gtk_builder_connect_signals (builder, NULL); - - dialog = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_forms_dialog")); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_forms_dialog_response), - forms_data); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_forms_ok_button")); - gtk_button_set_label (GTK_BUTTON (button), data->ok_label); - } - - if (data->cancel_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_forms_cancel_button")); - gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); - } - - text = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_forms_text")); - - if (forms_data->dialog_text) - gtk_label_set_markup ( - GTK_LABEL (text), g_strcompress (forms_data->dialog_text)); - - grid = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_forms_grid")); - - for (tmp = forms_data->list; tmp; tmp = tmp->next) { - ZenityFormsValue *zenity_value = (ZenityFormsValue *) tmp->data; - GtkWidget *label; - - label = gtk_label_new (zenity_value->option_value); - gtk_widget_set_halign (label, GTK_ALIGN_START); - gtk_grid_attach (GTK_GRID (grid), label, 0, i, 1, 1); - - switch (zenity_value->type) { - case ZENITY_FORMS_ENTRY: - zenity_value->forms_widget = gtk_entry_new (); - break; - case ZENITY_FORMS_PASSWORD: - zenity_value->forms_widget = gtk_entry_new (); - gtk_entry_set_visibility ( - GTK_ENTRY (zenity_value->forms_widget), FALSE); - break; - case ZENITY_FORMS_CALENDAR: - zenity_value->forms_widget = gtk_calendar_new (); - break; - case ZENITY_FORMS_LIST: - zenity_value->forms_widget = zenity_forms_create_and_fill_list ( - forms_data, list_count, zenity_value->option_value); - list_count++; - break; - case ZENITY_FORMS_COMBO: - zenity_value->forms_widget = - zenity_forms_create_and_fill_combo ( - forms_data, combo_count); - combo_count++; - break; - default: - zenity_value->forms_widget = gtk_entry_new (); - break; - } - - gtk_grid_attach_next_to (GTK_GRID (grid), - GTK_WIDGET (zenity_value->forms_widget), - label, - GTK_POS_RIGHT, - 1, - 1); - - i++; - } - - gtk_widget_show_all (GTK_WIDGET (dialog)); - - g_object_unref (builder); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - gtk_main (); -} - -static void -zenity_forms_dialog_output (ZenityFormsData *forms_data) { - GSList *tmp, *tmp2; - guint day, year, month; - GDate *date = NULL; - gchar time_string[128]; - gchar *combo_value = NULL; - GtkTreeSelection *selection; - GtkListStore *list_store; - GtkTreeIter iter; - - for (tmp = forms_data->list; tmp; tmp = tmp->next) { - ZenityFormsValue *zenity_value = (ZenityFormsValue *) tmp->data; - switch (zenity_value->type) { - case ZENITY_FORMS_PASSWORD: - case ZENITY_FORMS_ENTRY: - g_print ("%s", - gtk_entry_get_text ( - GTK_ENTRY (zenity_value->forms_widget))); - break; - case ZENITY_FORMS_LIST: - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW ( - gtk_bin_get_child (GTK_BIN (zenity_value->forms_widget)))); - gtk_tree_selection_selected_foreach (selection, - (GtkTreeSelectionForeachFunc) - zenity_forms_dialog_get_selected, - GTK_TREE_VIEW (gtk_bin_get_child ( - GTK_BIN (zenity_value->forms_widget)))); - - for (tmp2 = selected; tmp2; tmp2 = tmp2->next) { - if (tmp->next != NULL) { - g_print ("%s,", (gchar *) tmp2->data); - } else - g_print ("%s", (gchar *) tmp2->data); - } - - g_slist_foreach (selected, (GFunc) g_free, NULL); - selected = NULL; - - break; - case ZENITY_FORMS_CALENDAR: - gtk_calendar_get_date ( - GTK_CALENDAR (zenity_value->forms_widget), - &day, - &month, - &year); - date = g_date_new_dmy (year, month + 1, day); - g_date_strftime ( - time_string, 127, forms_data->date_format, date); - g_print ("%s", time_string); - break; - case ZENITY_FORMS_COMBO: - if (gtk_combo_box_get_active_iter ( - GTK_COMBO_BOX (zenity_value->forms_widget), &iter)) { - list_store = GTK_LIST_STORE (gtk_combo_box_get_model ( - GTK_COMBO_BOX (zenity_value->forms_widget))); - gtk_tree_model_get (GTK_TREE_MODEL (list_store), - &iter, - 0, - &combo_value, - -1); - g_object_unref (G_OBJECT (list_store)); - - g_print ("%s", combo_value); - g_free (combo_value); - } else - g_print (" "); - break; - } - if (tmp->next != NULL) - g_print ("%s", forms_data->separator); - } - g_print ("\n"); -} - -static void -zenity_forms_dialog_response (GtkWidget *widget, int response, gpointer data) { - ZenityFormsData *forms_data = (ZenityFormsData *) data; - - switch (response) { - case GTK_RESPONSE_OK: - zenity_forms_dialog_output (forms_data); - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - case ZENITY_TIMEOUT: - zenity_forms_dialog_output (forms_data); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_TIMEOUT); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - - gtk_main_quit (); -} diff --git a/src/gdialog.in b/src/gdialog.in deleted file mode 100755 index 2fc4633..0000000 --- a/src/gdialog.in +++ /dev/null @@ -1,353 +0,0 @@ -#!@PERL@ - -# gdialog -> zenity conversion wrapper -# -# by Mike Newman -# -# This is all, of course, horrible - but it should translate -# most commond gdialog types to zenity equivalents. It will mostly drop -# the pointless and unused (even by gdialog!) size arguments -# but hopefully will translate all the others. -# -# For testing purposes, I've used a couple of the nautilus scripts -# available at http://g-scripts.sourceforge.net - what is sometimes -# unclear is what is a gdialog/zenity translation problem, and what is -# a problem with the original script - -my @command = ("zenity"); # the command line we build up to execute -my $element = ""; # current bit of command line -my $argn = 0; # counter for walking args -my $args = $#ARGV + 1; # total number of command line arguments -my $separator = 0; # set if --separate-output is in use - - -# Additon by: Kevin C. Krinke (kck) -# -# gdialog itself supports both the X-Windows interface as well as a console -# interface. Here's a fix to use regular dialog when appropriate. -# This should probably be a more advanced test of some sort, but I don't know -# of any other easy way of detecting and X-Windows environment. If someone does -# know better, please let me know. So for now this works: "no DISPLAY; no X". - -unless (defined $ENV{'DISPLAY'} && length($ENV{'DISPLAY'})) { - - # reset the command string - - @command = (); - - # examine all the available/default paths - - my $PATHS = ($ENV{'PATH'}||'/bin:/usr/bin:/usr/local/bin:/opt/bin'); - - BIN: foreach my $PATH (split(/\:/,$PATHS)) { - - if (-x $PATH."/gdialog.real") { - - # Some GNU/Linux distributions divert binaries when - # other packages are installed. If this exists, chances - # are it's the real gdialog and not the Zenity wrapper. - # gdialog has full support for the Console medium and - # as such is the preference over using the "regular" - # dialog interface. - - @command = ($PATH."/gdialog.real"); - last BIN; - - } elsif (-x $PATH."/dialog") { - - # change the command and skip ahead! - - @command = ($PATH."/dialog"); - last BIN; - - } - - - } - - unless (@command) { - - # we didn't find the dialog binary, exit(254) with a message - # to STDERR. - - print STDERR "missing DISPLAY and a console dialog could". - " not be found.\n"; - - # exit code 254 is used because 255, 1, 2, 3 are used by Zenity - # and cDialog. This error, is a very _bad_ error so it's semi- - # non-standard at 254. - - exit(254); - - } - - # all is well if we've made it this far - - # so join the arguments double-quoting things so that proper shell - # notation is saved. - - push @command, @ARGV; - - # and fork the process - - exec(@command); - -} - -# Got DISPLAY, has X continue as normal... -# End Addtition by: KCK - -# this just loads the current arg into $element - -sub get_arg () { - $element = $ARGV[$argn]; -} - -# walk the command line - -ARG: while ($argn < $args) { - - get_arg; - -# Informational stuff - - if ($element eq "--help" || $element eq "--about") { - print ( "gdialog is a compatibility wrapper around zenity, " . - "provided to hopefully\nallow older scripts to run. " . - "If you are reading this message, you should\n" . - "probably be using zenity directly\n\n" . - "type: 'zenity --help' or 'man zenity' for more information\n"); - exit (1); - } - -# Section 1 : Args which gdialog expects BEFORE box options -# --clear, --backtitle have no obvious effect - ignored - - if ($element eq "--title") { - - # --title argument is almost analogous in gdialog and - # zenity - so pass it almost entirely as is - - $argn++; - get_arg; - push @command, "--title=$element"; - - # keep processing args - $argn++; - next ARG; - } - - if ($element eq "--separate-output") { - - # set the flag to pring list output line by line - $separator = 1; - - # keep processing args - $argn++; - next ARG; - } - -# Section 2 : Box Options and subsequent args - - if ($element eq "--msgbox" || $element eq "--infobox") { - - # This bit is common to almost all of the dialogs - # the arg following the dialog type in gdialog is usually - # equivalent to zenity's --text arg. - - $argn++; - get_arg; - push @command, "--info", "--text=$element"; - - # this also happens a lot - gdialog accepted size args - # for dialog compatability - which it pretty much ignored - # and we will do the same - - $argn+=2; - last ARG; - } - - if ($element eq "--yesno") { - - # this will silently ignore the gdialog option to set - # the default button in question dialogs - which is - # highly hig-norant anyway! - - $argn++; - get_arg; - push @command, "--question", "--text=$element"; - last ARG; - } - - if ($element eq "--inputbox") { - $argn++; - get_arg; - push @command, "--entry", "--text=$element"; - - # ignore size elements and maybe there is some - # default text to initialize the entry with? - - $argn+=3; - get_arg; - push @command, "--entry-text=$element"; - last ARG; - } - - if ($element eq "--textbox") { - push @command, "--text-info"; - - # the arg immediately following the dialog type in - # gdialog is the filename, so pass this to zenity - - $argn++; - get_arg; - push @command, "--filename=$element"; - - # width and height matter for this one, so get them - # and apply the same multipliers as used in gdialog - - $argn++; - get_arg; - $element = $element * 7; - push @command, "--height=$element"; - $argn++; - get_arg; - $element = $element * 8; - push @command, "--width=$element"; - last ARG; - } - - if ($element eq "--checklist" || $element eq "--radiolist") { - $list=$element; - $argn++; - get_arg; - - # Conveniently, zenity and gdialog use the same names - # for list types, so pass this to zenity intact along with - # an untitled column for the check or radio buttons - # and the 'text' arg as a second column header - - push @command, "--list", $list, "--column=''", "--column=''", "--column", $element; - - # should output be line by line? - if ($separator) { - push @command, "--separator=\n"; - } - - # Skip to the first 'item' arg of the list content - # bypassing height, width and list-height - # from here args run [tag] [item] [status] ... - - $argn += 4; - - # Loop over the remainder of the commandline - # discarding the 'status' args of each item - # and using the 'item' for display in our second column - # also pass a fake NULL argument since zenity can't set - # the status of a row like gdialog can - - while ($argn < $args) { - get_arg; - push @command, "NULL", $element; - $argn += 1; - get_arg; - push @command, $element; - $argn += 2; - } - last ARG; - } - - if ($element eq "--menu") { - $list=$element; - $argn++; - get_arg; - - # a gdialog --menu is just a two column zenity --list - # Leave the first column blank (not provided) - # Use the 'text' arg as a second column header - # FIXME: or should it be the dialog text, or both? - - push @command, "--list", "--column", "", "--column", $element; - - # Skip to the first 'item' arg of the list content - # after using height, width and bypassing list-height - # from here args run [tag] [item] ... - - $argn += 1; - - get_arg; - # Height and width in characters to be displayed, so adjust - # cdialog uses 6 height for non-list, zenity uses ~24 pixels - # per list entry (default font), and 103 pixels for non-list - # This appears to be almost exact - $element = $element*24 - 35; - push @command, "--height", $element; - - $argn += 1; - get_arg; - # cdialog uses 6 width for non-list, zenity uses ~7 pixels - # per character (default font), and 22 pixels for non-list - # This is not exact, but close enough - $element = $element*7 - 20; - push @command, "--width", $element; - - $argn += 2; - - # Loop over the remainder of the commandline - # keeping 'tag' args of each item (required to return) - # and using the 'item' for display in our second column - - while ($argn < $args) { - get_arg; - push @command, $element; - $argn += 1; - } - last ARG; - } - - if ($element eq "--gauge") { - $argn++; - get_arg; - push @command, "--progress", "--text=$element"; - - # discard the size args as usually, and see if - # a percentage value was supplied to initialize the - # dialog - - $argn += 3; - get_arg; - if ($element) { - push @command, "--percentage=$element"; - } - last ARG; - } - - $argn++; -} - -# save STDOUT and STDERR -open(ORG_STDOUT, ">&STDOUT"); -open(ORG_STDERR, ">&STDERR"); - -# redirect STDERR to /dev/null (GTK messages ie: -# (zenity:637): Gtk-WARNING **: Unable to locate theme engine in module_path: "mist",) -open(STDERR, ">/dev/null"); - -# redirect STDOUT to STDERR (gdialog direct output to STDERR by default) -open(STDOUT, ">&ORG_STDERR"); - -# execute the constructed zenity command line - -# perl doc: The return value of system() is the exit status of the -#program as returned by the wait() call. To get the actual exit value -# divide by 256. - -my $return = system(@command)/256; - -# restore STDOUT and STDERR -open(STDOUT, ">&ORG_STDOUT"); -open(STDERR, ">&ORG_STDERR"); -close(ORG_STDOUT); -close(ORG_STDERR); - -exit $return; diff --git a/src/main.c b/src/main.c index 18b2a72..2eb41f3 100644 --- a/src/main.c +++ b/src/main.c @@ -21,8 +21,6 @@ * Authors: Glynn Foster */ -#include - #include "option.h" #include "zenity.h" @@ -43,67 +41,22 @@ main (gint argc, gchar **argv) { setlocale (LC_ALL, ""); #endif - bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); - bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); - textdomain (GETTEXT_PACKAGE); - gtk_init (&argc, &argv); results = zenity_option_parse (argc, argv); switch (results->mode) { - case MODE_CALENDAR: - zenity_calendar (results->data, results->calendar_data); - break; case MODE_ENTRY: results->entry_data->data = (const gchar **) argv + 1; zenity_entry (results->data, results->entry_data); break; - case MODE_ERROR: - case MODE_QUESTION: - case MODE_WARNING: - case MODE_INFO: - zenity_msg (results->data, results->msg_data); - break; - case MODE_SCALE: - zenity_scale (results->data, results->scale_data); - break; - case MODE_FILE: - zenity_fileselection (results->data, results->file_data); - break; case MODE_LIST: results->tree_data->data = (const gchar **) argv + 1; zenity_tree (results->data, results->tree_data); break; -#ifdef HAVE_LIBNOTIFY - case MODE_NOTIFICATION: - zenity_notification (results->data, results->notification_data); - break; -#endif - case MODE_PROGRESS: - zenity_progress (results->data, results->progress_data); - break; - case MODE_TEXTINFO: - zenity_text (results->data, results->text_data); - break; - case MODE_COLOR: - zenity_colorselection (results->data, results->color_data); - break; - case MODE_PASSWORD: - zenity_password_dialog (results->data, results->password_data); - break; - case MODE_ABOUT: - zenity_about (results->data); - break; - case MODE_FORMS: - zenity_forms_dialog (results->data, results->forms_data); - break; - case MODE_VERSION: - g_print ("%s\n", VERSION); - break; case MODE_LAST: - g_printerr (_ ("You must specify a dialog type. See 'zenity " - "--help' for details\n")); + g_printerr ("You must specify a dialog type. See 'zenity " + "--help' for details\n"); zenity_option_free (); exit (-1); default: diff --git a/src/meson.build b/src/meson.build deleted file mode 100644 index 748fe31..0000000 --- a/src/meson.build +++ /dev/null @@ -1,51 +0,0 @@ -# for i in `ls *.c`; do echo " '${i}',"; done -zenity_sources = [ - 'about.c', - 'calendar.c', - 'color.c', - 'entry.c', - 'fileselection.c', - 'forms.c', - 'main.c', - 'msg.c', - 'notification.c', - 'option.c', - 'password.c', - 'progress.c', - 'scale.c', - 'text.c', - 'tree.c', - 'util.c' -] - -zenity_deps = [ - gtk_dep, - libnotify, - webkitgtk, - x11 -] - -zenity_c_args = [ - '-DG_LOG_DOMAIN="Zenity"' -] - -zenity = executable( - meson.project_name(), - zenity_sources, - include_directories: zenity_root_dir, - dependencies: zenity_deps, - c_args: zenity_c_args, - install: true -) - -if perl.found() - configure_file( - input: 'gdialog.in', - output: 'gdialog', - configuration: zenity_conf, - install_dir: zenity_bindir, - install: true - ) -endif - -install_data('zenity.ui') diff --git a/src/msg.c b/src/msg.c deleted file mode 100644 index 496fe18..0000000 --- a/src/msg.c +++ /dev/null @@ -1,269 +0,0 @@ -/* - * msg.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" - -static void zenity_msg_dialog_response ( - GtkWidget *widget, int response, gpointer data); -static void -zenity_msg_construct_question_dialog ( - GtkWidget *dialog, ZenityMsgData *msg_data, ZenityData *data) { - - GtkWidget *cancel_button, *ok_button; - - cancel_button = gtk_dialog_add_button ( - GTK_DIALOG (dialog), _ ("_No"), GTK_RESPONSE_CANCEL); - ok_button = gtk_dialog_add_button ( - GTK_DIALOG (dialog), _ ("_Yes"), GTK_RESPONSE_OK); - - gtk_widget_grab_focus ( - msg_data->default_cancel ? cancel_button : ok_button); - - if (data->cancel_label) { - gtk_button_set_label (GTK_BUTTON (cancel_button), data->cancel_label); - } - - if (data->ok_label) { - gtk_button_set_label (GTK_BUTTON (ok_button), data->ok_label); - } -} - -static void -zenity_label_widget_clipboard_selection (GtkWidget *widget) { - /* Workaround hotfix for suspected toolkit issue: - since focus change of the dialog's focussed widget (text) - somehow currently chooses to destroy - a pre-existing (read: foreign, user-initiated) X11 primary selection - (via gtk_label_select_region() -> ... - -> gtk_clipboard_set_contents()/gtk_clipboard_clear()), - we need to ensure - that the widget does have its gtk-label-select-on-focus property off, - in order to avoid having the label become selected automatically - and thereby having pre-existing clipboard content nullified. - Side note: this selection issue only applies to widgets - which have both - True - True - . - */ - g_object_set (gtk_widget_get_settings (widget), - "gtk-label-select-on-focus", - FALSE, - NULL); -} - -void -zenity_msg (ZenityData *data, ZenityMsgData *msg_data) { - GtkBuilder *builder; - GtkWidget *dialog; - GtkWidget *ok_button; - GObject *text; - GObject *image; - - switch (msg_data->mode) { - case ZENITY_MSG_WARNING: - builder = zenity_util_load_ui_file ("zenity_warning_dialog", NULL); - dialog = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_warning_dialog")); - text = gtk_builder_get_object (builder, "zenity_warning_text"); - image = gtk_builder_get_object (builder, "zenity_warning_image"); - ok_button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_warning_ok_button")); - break; - - case ZENITY_MSG_QUESTION: - case ZENITY_MSG_SWITCH: - builder = zenity_util_load_ui_file ("zenity_question_dialog", NULL); - dialog = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_question_dialog")); - text = gtk_builder_get_object (builder, "zenity_question_text"); - image = gtk_builder_get_object (builder, "zenity_question_image"); - ok_button = NULL; - break; - - case ZENITY_MSG_ERROR: - builder = zenity_util_load_ui_file ("zenity_error_dialog", NULL); - dialog = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_error_dialog")); - text = gtk_builder_get_object (builder, "zenity_error_text"); - image = gtk_builder_get_object (builder, "zenity_error_image"); - ok_button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_error_ok_button")); - break; - - case ZENITY_MSG_INFO: - builder = zenity_util_load_ui_file ("zenity_info_dialog", NULL); - dialog = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_info_dialog")); - text = gtk_builder_get_object (builder, "zenity_info_text"); - image = gtk_builder_get_object (builder, "zenity_info_image"); - ok_button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_info_ok_button")); - break; - - default: - builder = NULL; - dialog = NULL; - text = NULL; - image = NULL; - ok_button = NULL; - g_assert_not_reached (); - break; - } - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_msg_dialog_response), - data); - - gtk_builder_connect_signals (builder, NULL); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - if (ok_button) { - if (data->ok_label) { - gtk_button_set_label (GTK_BUTTON (ok_button), data->ok_label); - } - } - - switch (msg_data->mode) { - case ZENITY_MSG_WARNING: - zenity_util_set_window_icon_from_icon_name ( - dialog, data->window_icon, "dialog-warning"); - break; - - case ZENITY_MSG_QUESTION: - zenity_util_set_window_icon_from_icon_name ( - dialog, data->window_icon, "dialog-question"); - zenity_msg_construct_question_dialog (dialog, msg_data, data); - break; - - case ZENITY_MSG_SWITCH: - zenity_util_set_window_icon_from_icon_name ( - dialog, data->window_icon, "dialog-question"); - break; - - case ZENITY_MSG_ERROR: - zenity_util_set_window_icon_from_icon_name ( - dialog, data->window_icon, "dialog-error"); - break; - - case ZENITY_MSG_INFO: - zenity_util_set_window_icon_from_icon_name ( - dialog, data->window_icon, "dialog-information"); - break; - - default: - break; - } - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - - if (data->width > -1) - gtk_widget_set_size_request (GTK_WIDGET (text), data->width, -1); - else if (!msg_data->ellipsize && !msg_data->no_wrap) { - // the magic number 60 is picked from gtk+/gtk/ui/gtkmessagedialog.ui - // however, 60 would increase the distance between the icon and the - // text, - // decreasing to 10 fix it. - gtk_label_set_width_chars (GTK_LABEL (text), 10); - gtk_label_set_max_width_chars (GTK_LABEL (text), 10); - } - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - if (msg_data->dialog_text) { - if (msg_data->no_markup) - gtk_label_set_text (GTK_LABEL (text), msg_data->dialog_text); - else - gtk_label_set_markup ( - GTK_LABEL (text), g_strcompress (msg_data->dialog_text)); - zenity_label_widget_clipboard_selection (GTK_WIDGET (text)); - } - - if (msg_data->ellipsize) - gtk_label_set_ellipsize (GTK_LABEL (text), PANGO_ALIGN_RIGHT); - - if (msg_data->dialog_icon) - gtk_image_set_from_icon_name ( - GTK_IMAGE (image), msg_data->dialog_icon, GTK_ICON_SIZE_DIALOG); - - if (msg_data->no_wrap) - gtk_label_set_line_wrap (GTK_LABEL (text), FALSE); - - zenity_util_show_dialog (dialog, data->attach); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - NULL); - } - - g_object_unref (builder); - - gtk_main (); -} - -static void -zenity_msg_dialog_response (GtkWidget *widget, int response, gpointer data) { - ZenityData *zen_data = data; - - switch (response) { - case GTK_RESPONSE_OK: - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - gtk_main_quit (); -} diff --git a/src/notification.c b/src/notification.c deleted file mode 100644 index eb0e79e..0000000 --- a/src/notification.c +++ /dev/null @@ -1,371 +0,0 @@ -/* - * notification.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * Copyright (C) 2006 Christian Persch - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include - -#include -#include -#include -#include -#include -#ifdef HAVE_LIBNOTIFY -#include - -#include "util.h" -#include "zenity.h" - -#define MAX_HINTS 16 - -static char *icon_file; -static GHashTable *notification_hints; - -static NotifyNotification * -zenity_notification_new (gchar *message, gchar *icon_file) { - NotifyNotification *notif; - gchar **text; - - text = g_strsplit (g_strcompress (message), "\n", 2); - if (*text == NULL) { - g_printerr (_ ("Could not parse message\n")); - return NULL; - } - - notif = notify_notification_new (text[0], /* title */ - text[1], /* summary */ - icon_file); - g_strfreev (text); - return notif; -} - -static void -on_notification_default_action ( - NotifyNotification *n, const char *action, void *user_data) { - ZenityData *zen_data; - - zen_data = (ZenityData *) user_data; - notify_notification_close (n, NULL); - - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - - gtk_main_quit (); -} - -static GHashTable * -zenity_notification_parse_hints_array (gchar **hints) { - GHashTable *result; - gchar **pair; - int i; - - result = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); - - for (i = 0; i < g_strv_length (hints); i++) { - pair = g_strsplit (hints[i], ":", 2); - g_hash_table_replace (result, g_strdup (pair[0]), g_strdup (pair[1])); - g_strfreev (pair); - } - if (g_hash_table_size (result) == 0) { - g_hash_table_unref (result); - return NULL; - } else { - return result; - } -} - -static GHashTable * -zenity_notification_parse_hints (gchar *hints) { - GHashTable *result; - gchar **hint_array; - - hint_array = g_strsplit (g_strcompress (hints), "\n", MAX_HINTS); - result = zenity_notification_parse_hints_array (hint_array); - g_strfreev (hint_array); - return result; -} - -static void -zenity_notification_set_hint ( - gpointer key, gpointer value, gpointer user_data) { - NotifyNotification *notification; - gchar *hint_name; - GVariant *hint_value; - - gchar *string_value; - gboolean boolean_value; - gint32 int_value; - guchar byte_value; - - hint_name = (gchar *) key; - string_value = (gchar *) value; - notification = (NotifyNotification *) user_data; - - if ((g_ascii_strcasecmp ("action-icons", hint_name) == 0) || - (g_ascii_strcasecmp ("resident", hint_name) == 0) || - (g_ascii_strcasecmp ("suppress-sound", hint_name) == 0) || - (g_ascii_strcasecmp ("transient", hint_name) == 0)) { - /* boolean hints */ - if (g_ascii_strcasecmp ("true", string_value) == 0) { - boolean_value = TRUE; - } else if (g_ascii_strcasecmp ("false", string_value) == 0) { - boolean_value = FALSE; - } else { - g_printerr (_ ("Invalid value for a boolean typed hint.\nSupported " - "values are 'true' or 'false'.\n")); - return; - } - hint_value = g_variant_new_boolean (boolean_value); - } else if ((g_ascii_strcasecmp ("category", hint_name) == 0) || - (g_ascii_strcasecmp ("desktop-entry", hint_name) == 0) || - (g_ascii_strcasecmp ("image-path", hint_name) == 0) || - (g_ascii_strcasecmp ("image_path", hint_name) == 0) || - (g_ascii_strcasecmp ("sound-file", hint_name) == 0) || - (g_ascii_strcasecmp ("sound-name", hint_name) == 0)) { - /* string hints */ - hint_value = g_variant_new_string (string_value); - } else if ((g_ascii_strcasecmp ("image-data", hint_name) == 0) || - (g_ascii_strcasecmp ("image_data", hint_name) == 0) || - (g_ascii_strcasecmp ("icon-data", hint_name) == 0)) { - /* (iibiiay) */ - g_printerr (_ ("Unsupported hint. Skipping.\n")); - return; - } else if ((g_ascii_strcasecmp ("x", hint_name) == 0) || - (g_ascii_strcasecmp ("y", hint_name) == 0)) { - /* int hints */ - if (string_value == NULL) - string_value = ""; - int_value = (gint32) g_ascii_strtoll (string_value, NULL, 0); - hint_value = g_variant_new_int32 (int_value); - } else if ((g_ascii_strcasecmp ("urgency", hint_name) == 0)) { - /* byte hints */ - if (string_value == NULL) - string_value = ""; - byte_value = (guchar) g_ascii_strtoll (string_value, NULL, 0); - hint_value = g_variant_new_byte (byte_value); - } else { - /* unknown hints */ - g_printerr (_ ("Unknown hint name. Skipping.\n")); - return; - } - - notify_notification_set_hint (notification, hint_name, hint_value); -} - -static void -zenity_notification_set_hints ( - NotifyNotification *notification, GHashTable *hints) { - if (hints == NULL) { - return; - } - - g_hash_table_foreach (hints, zenity_notification_set_hint, notification); -} - -static gboolean -zenity_notification_handle_stdin ( - GIOChannel *channel, GIOCondition condition, gpointer user_data) { - if ((condition & G_IO_IN) != 0) { - GString *string; - GError *error = NULL; - - string = g_string_new (NULL); - while (channel->is_readable == FALSE) - ; - do { - gint status; - gchar *command, *value, *colon; - - do { - status = g_io_channel_read_line_string ( - channel, string, NULL, &error); - while (gdk_events_pending ()) - gtk_main_iteration (); - - } while (status == G_IO_STATUS_AGAIN); - - if (status != G_IO_STATUS_NORMAL) { - if (error) { - g_warning ("zenity_notification_handle_stdin () : %s", - error->message); - g_error_free (error); - error = NULL; - } - continue; - } - - zenity_util_strip_newline (string->str); - colon = strchr (string->str, ':'); - if (colon == NULL) { - g_printerr (_ ("Could not parse command from stdin\n")); - continue; - } - /* split off the command and value */ - command = g_strstrip (g_strndup (string->str, colon - string->str)); - - value = colon + 1; - while (*value && g_ascii_isspace (*value)) - value++; - - if (!g_ascii_strcasecmp (command, "icon")) { - g_free (icon_file); - icon_file = g_strdup (value); - } else if (!g_ascii_strcasecmp (command, "hints")) { - if (notification_hints != NULL) { - g_hash_table_unref (notification_hints); - } - notification_hints = zenity_notification_parse_hints (value); - } else if (!g_ascii_strcasecmp (command, "message")) { - /* display a notification bubble */ - if (!g_utf8_validate (value, -1, NULL)) { - g_warning ("Invalid UTF-8 in input!"); - } else { - NotifyNotification *notif; - error = NULL; - - notif = zenity_notification_new (value, icon_file); - if (notif == NULL) - continue; - - zenity_notification_set_hints (notif, notification_hints); - - notify_notification_show (notif, &error); - if (error) { - g_warning ( - "Error showing notification: %s", error->message); - g_error_free (error); - error = NULL; - } - - g_object_unref (notif); - } - } else if (!g_ascii_strcasecmp (command, "tooltip")) { - if (!g_utf8_validate (value, -1, NULL)) { - g_warning ("Invalid UTF-8 in input!"); - } else { - NotifyNotification *notif; - notif = zenity_notification_new (value, icon_file); - if (notif == NULL) - continue; - - zenity_notification_set_hints (notif, notification_hints); - - notify_notification_show (notif, &error); - if (error) { - g_warning ( - "Error showing notification: %s", error->message); - g_error_free (error); - error = NULL; - } - } - } else if (!g_ascii_strcasecmp (command, "visible")) { - - } else { - g_warning ("Unknown command '%s'", command); - } - g_free (command); - - } while (g_io_channel_get_buffer_condition (channel) == G_IO_IN); - g_string_free (string, TRUE); - } - - if ((condition & G_IO_HUP) != 0) { - g_io_channel_shutdown (channel, TRUE, NULL); - return FALSE; - } - - return TRUE; -} - -static void -zenity_notification_listen_on_stdin (ZenityData *data) { - GIOChannel *channel; - - channel = g_io_channel_unix_new (0); - g_io_channel_set_encoding (channel, NULL, NULL); - g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL); - g_io_add_watch ( - channel, G_IO_IN | G_IO_HUP, zenity_notification_handle_stdin, data); -} - -void -zenity_notification ( - ZenityData *data, ZenityNotificationData *notification_data) { - GError *error; - NotifyNotification *notification; - GHashTable *notification_hints; - - /* create the notification widget */ - if (!notify_is_initted ()) { - notify_init (_ ("Zenity notification")); - } - - if (notification_data->listen) { - zenity_notification_listen_on_stdin (data); - gtk_main (); - } else { - if (notification_data->notification_text == NULL) { - exit (1); - } - - notification = zenity_notification_new ( - notification_data->notification_text, data->window_icon); - - if (notification == NULL) { - exit (1); - } - - /* if we aren't listening for changes, then close on default action */ - notify_notification_add_action (notification, - "default", - "Do Default Action", - (NotifyActionCallback) on_notification_default_action, - data, - NULL); - - /* set the notification hints for the displayed notification */ - if (notification_data->notification_hints != NULL) { - notification_hints = zenity_notification_parse_hints_array ( - notification_data->notification_hints); - zenity_notification_set_hints (notification, notification_hints); - g_hash_table_unref (notification_hints); - } - - /* Show icon and wait */ - error = NULL; - if (!notify_notification_show (notification, &error)) { - if (error != NULL) { - g_warning ("Error showing notification: %s", error->message); - g_error_free (error); - } - exit (1); - } - } - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - NULL); - gtk_main (); - } -} - -#endif diff --git a/src/option.c b/src/option.c index 61df34d..8d02913 100644 --- a/src/option.c +++ b/src/option.c @@ -22,8 +22,6 @@ * Lucas Rocha */ -#include "config.h" - #include "option.h" #include #include @@ -35,7 +33,6 @@ static gchar *zenity_general_window_icon; static int zenity_general_width; static int zenity_general_height; static gchar *zenity_general_dialog_text; -static gchar *zenity_general_dialog_icon; static gchar *zenity_general_separator; static gboolean zenity_general_multiple; static gboolean zenity_general_editable; @@ -48,33 +45,12 @@ static gchar *zenity_general_cancel_button; static gchar **zenity_general_extra_buttons; static gboolean zenity_general_modal; static guintptr zenity_general_attach; -static gboolean zenity_general_dialog_ellipsize; - -/* Calendar Dialog Options */ -static gboolean zenity_calendar_active; -static int zenity_calendar_day; -static int zenity_calendar_month; -static int zenity_calendar_year; -static gchar *zenity_calendar_date_format; /* Entry Dialog Options */ static gboolean zenity_entry_active; static gchar *zenity_entry_entry_text; static gboolean zenity_entry_hide_text; -/* Error Dialog Options */ -static gboolean zenity_error_active; - -/* Info Dialog Options */ -static gboolean zenity_info_active; - -/* File Selection Dialog Options */ -static gboolean zenity_file_active; -static gboolean zenity_file_directory; -static gboolean zenity_file_save; -static gboolean zenity_file_confirm_overwrite; -static gchar **zenity_file_filter; - /* List Dialog Options */ static gboolean zenity_list_active; static gchar **zenity_list_columns; @@ -86,191 +62,77 @@ static gboolean zenity_list_hide_header; static gboolean zenity_list_imagelist; static gboolean zenity_list_mid_search; -#ifdef HAVE_LIBNOTIFY -/* Notification Dialog Options */ -static gboolean zenity_notification_active; -static gboolean zenity_notification_listen; -static gchar **zenity_notification_hints; -#endif - -/* Progress Dialog Options */ -static gboolean zenity_progress_active; -static int zenity_progress_percentage; -static gboolean zenity_progress_pulsate; -static gboolean zenity_progress_auto_close; -static gboolean zenity_progress_auto_kill; -static gboolean zenity_progress_no_cancel; -static gboolean zenity_progress_time_remaining; - -/* Question Dialog Options */ -static gboolean zenity_question_active; -static gboolean zenity_question_default_cancel; -static gboolean zenity_question_switch; - -/* Text Dialog Options */ -static gboolean zenity_text_active; -static gchar *zenity_text_font; -static gchar *zenity_text_checkbox; -static gboolean zenity_text_auto_scroll; - -#ifdef HAVE_WEBKITGTK -static gboolean zenity_text_enable_html; -static gboolean zenity_text_no_interaction; -static gchar *zenity_text_url; -#endif - -/* Warning Dialog Options */ -static gboolean zenity_warning_active; - -/* Scale Dialog Options */ -static gboolean zenity_scale_active; -static gint zenity_scale_value; -static gint zenity_scale_min_value; -static gint zenity_scale_max_value; -static gint zenity_scale_step; -static gboolean zenity_scale_print_partial; -static gboolean zenity_scale_hide_value; - -/* Color Selection Dialog Options */ -static gboolean zenity_colorsel_active; -static gchar *zenity_colorsel_color; -static gboolean zenity_colorsel_show_palette; - -/* Password Dialog Options */ -static gboolean zenity_password_active; -static gboolean zenity_password_show_username; - -/* Forms Dialog Options */ -static gboolean zenity_forms_active; -static gboolean zenity_forms_show_header; -static gchar *zenity_forms_date_format; -// static gchar *zenity_forms_hide_column; -static gchar **zenity_forms_list_values; -static gchar **zenity_forms_column_values; -static gchar **zenity_forms_combo_values; - -/* Miscelaneus Options */ -static gboolean zenity_misc_about; -static gboolean zenity_misc_version; - -static gboolean zenity_forms_callback (const gchar *option_name, - const gchar *value, gpointer data, GError **error); - static GOptionEntry general_options[] = {{"title", '\0', 0, G_OPTION_ARG_STRING, &zenity_general_dialog_title, - N_ ("Set the dialog title"), - N_ ("TITLE")}, + "Set the dialog title", + "TITLE"}, {"window-icon", '\0', 0, G_OPTION_ARG_FILENAME, &zenity_general_window_icon, - N_ ("Set the window icon"), - N_ ("ICONPATH")}, + "Set the window icon", + "ICONPATH"}, {"width", '\0', 0, G_OPTION_ARG_INT, &zenity_general_width, - N_ ("Set the width"), - N_ ("WIDTH")}, + "Set the width", + "WIDTH"}, {"height", '\0', 0, G_OPTION_ARG_INT, &zenity_general_height, - N_ ("Set the height"), - N_ ("HEIGHT")}, + "Set the height", + "HEIGHT"}, {"timeout", '\0', 0, G_OPTION_ARG_INT, &zenity_general_timeout_delay, - N_ ("Set dialog timeout in seconds"), + "Set dialog timeout in seconds", /* Timeout for closing the dialog */ - N_ ("TIMEOUT")}, + "TIMEOUT"}, {"ok-label", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_ok_button, - N_ ("Set the label of the OK button"), - N_ ("TEXT")}, + "Set the label of the OK button", + "TEXT"}, {"cancel-label", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_cancel_button, - N_ ("Set the label of the Cancel button"), - N_ ("TEXT")}, + "Set the label of the Cancel button", + "TEXT"}, {"extra-button", '\0', 0, G_OPTION_ARG_STRING_ARRAY, &zenity_general_extra_buttons, - N_ ("Add an extra button"), - N_ ("TEXT")}, + "Add an extra button", + "TEXT"}, {"modal", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_general_modal, - N_ ("Set the modal hint"), + "Set the modal hint", NULL}, {"attach", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_INT, &zenity_general_attach, - N_ ("Set the parent window to attach to"), - N_ ("WINDOW")}, - {NULL}}; - -static GOptionEntry calendar_options[] = {{"calendar", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_calendar_active, - N_ ("Display calendar dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"day", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_calendar_day, - N_ ("Set the calendar day"), - N_ ("DAY")}, - {"month", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_calendar_month, - N_ ("Set the calendar month"), - N_ ("MONTH")}, - {"year", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_calendar_year, - N_ ("Set the calendar year"), - N_ ("YEAR")}, - {"date-format", - '\0', - 0, - G_OPTION_ARG_STRING, - &zenity_calendar_date_format, - N_ ("Set the format for the returned date"), - N_ ("PATTERN")}, + "Set the parent window to attach to", + "WINDOW"}, {NULL}}; static GOptionEntry entry_options[] = {{"entry", @@ -278,756 +140,124 @@ static GOptionEntry entry_options[] = {{"entry", G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &zenity_entry_active, - N_ ("Display text entry dialog"), + "Display text entry dialog", NULL}, {"text", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, + "Set the dialog text", + "TEXT"}, {"entry-text", '\0', 0, G_OPTION_ARG_STRING, &zenity_entry_entry_text, - N_ ("Set the entry text"), - N_ ("TEXT")}, + "Set the entry text", + "TEXT"}, {"hide-text", '\0', 0, G_OPTION_ARG_NONE, &zenity_entry_hide_text, - N_ ("Hide the entry text"), + "Hide the entry text", NULL}, {NULL}}; -static GOptionEntry error_options[] = {{"error", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_error_active, - N_ ("Display error dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"icon-name", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_icon, - N_ ("Set the dialog icon"), - N_ ("ICON-NAME")}, - {"no-wrap", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_wrap, - N_ ("Do not enable text wrapping"), - NULL}, - {"no-markup", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_markup, - N_ ("Do not enable Pango markup")}, - {"ellipsize", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_ellipsize, - N_ ("Enable ellipsizing in the dialog text. This fixes the high window " - "size with long texts")}, - {NULL}}; - -static GOptionEntry info_options[] = {{"info", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_info_active, - N_ ("Display info dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"icon-name", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_icon, - N_ ("Set the dialog icon"), - N_ ("ICON-NAME")}, - {"no-wrap", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_wrap, - N_ ("Do not enable text wrapping"), - NULL}, - {"no-markup", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_markup, - N_ ("Do not enable Pango markup")}, - {"ellipsize", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_ellipsize, - N_ ("Enable ellipsizing in the dialog text. This fixes the high window " - "size with long texts")}, - {NULL}}; - -static GOptionEntry file_selection_options[] = - {{"file-selection", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_file_active, - N_ ("Display file selection dialog"), - NULL}, - {"filename", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_FILENAME, - &zenity_general_uri, - N_ ("Set the filename"), - N_ ("FILENAME")}, - {"multiple", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_multiple, - N_ ("Allow multiple files to be selected"), - NULL}, - {"directory", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_file_directory, - N_ ("Activate directory-only selection"), - NULL}, - {"save", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_file_save, - N_ ("Activate save mode"), - NULL}, - {"separator", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_separator, - N_ ("Set output separator character"), - N_ ("SEPARATOR")}, - {"confirm-overwrite", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_file_confirm_overwrite, - N_ ("Confirm file selection if filename already exists"), - NULL}, - { - "file-filter", - '\0', - 0, - G_OPTION_ARG_STRING_ARRAY, - &zenity_file_filter, - N_ ("Set a filename filter"), - /* Help for file-filter argument (name and patterns for file - selection) */ - N_ ("NAME | PATTERN1 PATTERN2 ..."), - }, - {NULL}}; - static GOptionEntry list_options[] = {{"list", '\0', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &zenity_list_active, - N_ ("Display list dialog"), + "Display list dialog", NULL}, {"text", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, + "Set the dialog text", + "TEXT"}, {"column", '\0', 0, G_OPTION_ARG_STRING_ARRAY, &zenity_list_columns, - N_ ("Set the column header"), - N_ ("COLUMN")}, + "Set the column header", + "COLUMN"}, {"checklist", '\0', 0, G_OPTION_ARG_NONE, &zenity_list_checklist, - N_ ("Use check boxes for the first column"), + "Use check boxes for the first column", NULL}, {"radiolist", '\0', 0, G_OPTION_ARG_NONE, &zenity_list_radiolist, - N_ ("Use radio buttons for the first column"), + "Use radio buttons for the first column", NULL}, {"imagelist", '\0', 0, G_OPTION_ARG_NONE, &zenity_list_imagelist, - N_ ("Use an image for the first column"), + "Use an image for the first column", NULL}, {"separator", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_separator, - N_ ("Set output separator character"), - N_ ("SEPARATOR")}, + "Set output separator character", + "SEPARATOR"}, {"multiple", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_general_multiple, - N_ ("Allow multiple rows to be selected"), + "Allow multiple rows to be selected", NULL}, {"editable", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_general_editable, - N_ ("Allow changes to text"), + "Allow changes to text", NULL}, {"print-column", '\0', 0, G_OPTION_ARG_STRING, &zenity_list_print_column, - N_ ("Print a specific column (Default is 1. 'ALL' can be used to print " - "all columns)"), + "Print a specific column (Default is 1. 'ALL' can be used to print " + "all columns)", /* Column index number to print out on a list dialog */ - N_ ("NUMBER")}, + "NUMBER"}, {"hide-column", '\0', 0, G_OPTION_ARG_STRING, &zenity_list_hide_column, - N_ ("Hide a specific column"), - N_ ("NUMBER")}, + "Hide a specific column", + "NUMBER"}, {"hide-header", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_list_hide_header, - N_ ("Hide the column headers"), + "Hide the column headers", NULL}, {"mid-search", '\0', G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_list_mid_search, - N_ ("Change list default search function searching for text in the " - "middle, not on the beginning"), - NULL}, - {NULL}}; - -#ifdef HAVE_LIBNOTIFY -static GOptionEntry notification_options[] = {{"notification", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_notification_active, - N_ ("Display notification"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the notification text"), - N_ ("TEXT")}, - {"listen", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_notification_listen, - N_ ("Listen for commands on stdin"), - NULL}, - {"hint", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING_ARRAY, - &zenity_notification_hints, - N_ ("Set the notification hints"), - N_ ("TEXT")}, - {NULL}}; - -#endif - -static GOptionEntry progress_options[] = { - {"progress", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_progress_active, - N_ ("Display progress indication dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"percentage", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_progress_percentage, - N_ ("Set initial percentage"), - N_ ("PERCENTAGE")}, - {"pulsate", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_progress_pulsate, - N_ ("Pulsate progress bar"), - NULL}, - {"auto-close", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_progress_auto_close, - /* xgettext: no-c-format */ - N_ ("Dismiss the dialog when 100% has been reached"), - NULL}, - {"auto-kill", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_progress_auto_kill, - N_ ("Kill parent process if Cancel button is pressed"), - NULL}, - {"no-cancel", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_progress_no_cancel, - N_ ("Hide Cancel button"), - NULL}, - {"time-remaining", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_progress_time_remaining, - /* xgettext: no-c-format */ - N_ ("Estimate when progress will reach 100%"), - NULL}, - {NULL}}; - -static GOptionEntry question_options[] = {{"question", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_question_active, - N_ ("Display question dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"icon-name", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_icon, - N_ ("Set the dialog icon"), - N_ ("ICON-NAME")}, - {"no-wrap", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_wrap, - N_ ("Do not enable text wrapping"), - NULL}, - {"no-markup", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_markup, - N_ ("Do not enable Pango markup")}, - {"default-cancel", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_question_default_cancel, - N_ ("Give Cancel button focus by default"), - NULL}, - {"ellipsize", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_ellipsize, - N_ ("Enable ellipsizing in the dialog text. This fixes the high window " - "size with long texts")}, - {"switch", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_question_switch, - N_ ("Suppress OK and Cancel buttons"), - NULL}, - {NULL}}; - -static GOptionEntry text_options[] = { - {"text-info", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_text_active, - N_ ("Display text information dialog"), - NULL}, - {"filename", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_FILENAME, - &zenity_general_uri, - N_ ("Open file"), - N_ ("FILENAME")}, - {"editable", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_editable, - N_ ("Allow changes to text"), - NULL}, - {"font", - '\0', - 0, - G_OPTION_ARG_STRING, - &zenity_text_font, - N_ ("Set the text font"), - N_ ("TEXT")}, - {"checkbox", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_text_checkbox, - N_ ("Enable an I read and agree checkbox"), - N_ ("TEXT")}, -#ifdef HAVE_WEBKITGTK - {"html", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_text_enable_html, - N_ ("Enable HTML support"), - NULL}, - {"no-interaction", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_text_no_interaction, - N_ ("Do not enable user interaction with the WebView. Only works if " - "you use --html option"), - NULL}, - {"url", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_text_url, - N_ ("Set an URL instead of a file. Only works if you use --html " - "option"), - N_ ("URL")}, -#endif - {"auto-scroll", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_text_auto_scroll, - N_ ("Auto scroll the text to the end. Only when text is captured from " - "stdin"), - NULL}, - {NULL}}; - -static GOptionEntry warning_options[] = {{"warning", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_warning_active, - N_ ("Display warning dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"icon-name", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_icon, - N_ ("Set the dialog icon"), - N_ ("ICON-NAME")}, - {"no-wrap", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_wrap, - N_ ("Do not enable text wrapping"), - NULL}, - {"no-markup", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_no_markup, - N_ ("Do not enable Pango markup")}, - {"ellipsize", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_NONE, - &zenity_general_dialog_ellipsize, - N_ ("Enable ellipsizing in the dialog text. This fixes the high window " - "size with long texts")}, - {NULL}}; - -static GOptionEntry scale_options[] = {{"scale", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_scale_active, - N_ ("Display scale dialog"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"value", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_scale_value, - N_ ("Set initial value"), - N_ ("VALUE")}, - {"min-value", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_scale_min_value, - N_ ("Set minimum value"), - N_ ("VALUE")}, - {"max-value", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_scale_max_value, - N_ ("Set maximum value"), - N_ ("VALUE")}, - {"step", - '\0', - 0, - G_OPTION_ARG_INT, - &zenity_scale_step, - N_ ("Set step size"), - N_ ("VALUE")}, - {"print-partial", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_scale_print_partial, - N_ ("Print partial values"), - NULL}, - {"hide-value", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_scale_hide_value, - N_ ("Hide value"), - NULL}, - {NULL}}; - -static GOptionEntry forms_dialog_options[] = {{"forms", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_forms_active, - N_ ("Display forms dialog"), - NULL}, - {"add-entry", - '\0', - 0, - G_OPTION_ARG_CALLBACK, - zenity_forms_callback, - N_ ("Add a new Entry in forms dialog"), - N_ ("Field name")}, - {"add-password", - '\0', - 0, - G_OPTION_ARG_CALLBACK, - zenity_forms_callback, - N_ ("Add a new Password Entry in forms dialog"), - N_ ("Field name")}, - {"add-calendar", - '\0', - 0, - G_OPTION_ARG_CALLBACK, - zenity_forms_callback, - N_ ("Add a new Calendar in forms dialog"), - N_ ("Calendar field name")}, - {"add-list", - '\0', - 0, - G_OPTION_ARG_CALLBACK, - zenity_forms_callback, - N_ ("Add a new List in forms dialog"), - N_ ("List field and header name")}, - {"list-values", - '\0', - 0, - G_OPTION_ARG_STRING_ARRAY, - &zenity_forms_list_values, - N_ ("List of values for List"), - N_ ("List of values separated by |")}, - {"column-values", - '\0', - 0, - G_OPTION_ARG_STRING_ARRAY, - &zenity_forms_column_values, - N_ ("List of values for columns"), - N_ ("List of values separated by |")}, - {"add-combo", - '\0', - 0, - G_OPTION_ARG_CALLBACK, - zenity_forms_callback, - N_ ("Add a new combo box in forms dialog"), - N_ ("Combo box field name")}, - {"combo-values", - '\0', - 0, - G_OPTION_ARG_STRING_ARRAY, - &zenity_forms_combo_values, - N_ ("List of values for combo box"), - N_ ("List of values separated by |")}, - /* TODO: Implement how to hide specifc column - { - "hide-column", - '\0', - 0, - G_OPTION_ARG_STRING, - &zenity_forms_hide_column, - N_("Hide a specific column"), - N_("NUMBER") - },*/ - {"show-header", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_forms_show_header, - N_ ("Show the columns header"), - NULL}, - {"text", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_dialog_text, - N_ ("Set the dialog text"), - N_ ("TEXT")}, - {"separator", - '\0', - G_OPTION_FLAG_NOALIAS, - G_OPTION_ARG_STRING, - &zenity_general_separator, - N_ ("Set output separator character"), - N_ ("SEPARATOR")}, - {"date-format", - '\0', - 0, - G_OPTION_ARG_STRING, - &zenity_forms_date_format, - N_ ("Set the format for the returned date"), - N_ ("PATTERN")}, - {NULL}}; - -static GOptionEntry password_dialog_options[] = { - {"password", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_password_active, - N_ ("Display password dialog"), - NULL}, - {"username", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_password_show_username, - N_ ("Display the username option"), - NULL}, - {NULL}}; - -static GOptionEntry color_selection_options[] = { - {"color-selection", - '\0', - G_OPTION_FLAG_IN_MAIN, - G_OPTION_ARG_NONE, - &zenity_colorsel_active, - N_ ("Display color selection dialog"), - NULL}, - {"color", - '\0', - 0, - G_OPTION_ARG_STRING, - &zenity_colorsel_color, - N_ ("Set the color"), - N_ ("VALUE")}, - {"show-palette", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_colorsel_show_palette, - N_ ("Show the palette"), - NULL}, - {NULL}}; - -static GOptionEntry miscellaneous_options[] = {{"about", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_misc_about, - N_ ("About zenity"), - NULL}, - {"version", - '\0', - 0, - G_OPTION_ARG_NONE, - &zenity_misc_version, - N_ ("Print version"), + "Change list default search function searching for text in the " + "middle, not on the beginning", NULL}, {NULL}}; @@ -1041,21 +271,9 @@ zenity_option_init (void) { /* Initialize the various dialog structures */ results->mode = MODE_LAST; - results->data = g_new0 (ZenityData, 1); - results->calendar_data = g_new0 (ZenityCalendarData, 1); - results->msg_data = g_new0 (ZenityMsgData, 1); - results->scale_data = g_new0 (ZenityScaleData, 1); - results->file_data = g_new0 (ZenityFileData, 1); - results->entry_data = g_new0 (ZenityEntryData, 1); - results->progress_data = g_new0 (ZenityProgressData, 1); - results->text_data = g_new0 (ZenityTextData, 1); - results->tree_data = g_new0 (ZenityTreeData, 1); -#ifdef HAVE_LIBNOTIFY - results->notification_data = g_new0 (ZenityNotificationData, 1); -#endif - results->color_data = g_new0 (ZenityColorData, 1); - results->password_data = g_new0 (ZenityPasswordData, 1); - results->forms_data = g_new0 (ZenityFormsData, 1); + results->data = g_new0 (ZenityData, 1); + results->entry_data = g_new0 (ZenityEntryData, 1); + results->tree_data = g_new0 (ZenityTreeData, 1); } void @@ -1076,44 +294,15 @@ zenity_option_free (void) { if (zenity_general_extra_buttons) g_strfreev (zenity_general_extra_buttons); - if (zenity_calendar_date_format) - g_free (zenity_calendar_date_format); - - if (zenity_forms_date_format) - g_free (zenity_forms_date_format); - if (zenity_forms_list_values) - g_strfreev (zenity_forms_list_values); - if (zenity_forms_combo_values) - g_strfreev (zenity_forms_combo_values); - if (zenity_forms_column_values) - g_strfreev (zenity_forms_column_values); - // if (zenity_forms_hide_column) - // g_free (zenity_forms_hide_column); if (zenity_entry_entry_text) - g_free (zenity_entry_entry_text); - - if (zenity_file_filter) - g_strfreev (zenity_file_filter); + g_free (zenity_entry_entry_text); if (zenity_list_columns) g_strfreev (zenity_list_columns); if (zenity_list_print_column) g_free (zenity_list_print_column); if (zenity_list_hide_column) - g_free (zenity_list_hide_column); - -#ifdef HAVE_LIBNOTIFY - if (zenity_notification_hints) - g_strfreev (zenity_notification_hints); -#endif - - if (zenity_text_font) - g_free (zenity_text_font); - if (zenity_text_checkbox) - g_free (zenity_text_checkbox); - - if (zenity_colorsel_color) - g_free (zenity_colorsel_color); + g_free (zenity_list_hide_column); g_option_context_free (ctx); } @@ -1139,31 +328,6 @@ zenity_option_get_name (GOptionEntry *entries, gpointer arg_data) { return NULL; } -/* Forms callback */ -static gboolean -zenity_forms_callback (const gchar *option_name, const gchar *value, - gpointer data, GError **error) { - ZenityFormsValue *forms_value = g_new0 (ZenityFormsValue, 1); - - forms_value->option_value = g_strdup (value); - - if (g_strcmp0 (option_name, "--add-entry") == 0) - forms_value->type = ZENITY_FORMS_ENTRY; - else if (g_strcmp0 (option_name, "--add-calendar") == 0) - forms_value->type = ZENITY_FORMS_CALENDAR; - else if (g_strcmp0 (option_name, "--add-password") == 0) - forms_value->type = ZENITY_FORMS_PASSWORD; - else if (g_strcmp0 (option_name, "--add-list") == 0) - forms_value->type = ZENITY_FORMS_LIST; - else if (g_strcmp0 (option_name, "--add-combo") == 0) - forms_value->type = ZENITY_FORMS_COMBO; - - results->forms_data->list = - g_slist_append (results->forms_data->list, forms_value); - - return TRUE; -} - /* Error callback */ static void zenity_option_error_callback (GOptionContext *context, GOptionGroup *group, @@ -1197,18 +361,6 @@ zenity_general_pre_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -static gboolean -zenity_calendar_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_calendar_active = FALSE; - zenity_calendar_date_format = NULL; - zenity_calendar_day = -1; - zenity_calendar_month = -1; - zenity_calendar_year = -1; - - return TRUE; -} - static gboolean zenity_entry_pre_callback (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error) { @@ -1219,34 +371,6 @@ zenity_entry_pre_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -static gboolean -zenity_error_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_error_active = FALSE; - - return TRUE; -} - -static gboolean -zenity_info_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_info_active = FALSE; - - return TRUE; -} - -static gboolean -zenity_file_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_file_active = FALSE; - zenity_file_directory = FALSE; - zenity_file_save = FALSE; - zenity_file_confirm_overwrite = FALSE; - zenity_file_filter = NULL; - - return TRUE; -} - static gboolean zenity_list_pre_callback (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error) { @@ -1263,114 +387,6 @@ zenity_list_pre_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -#ifdef HAVE_LIBNOTIFY -static gboolean -zenity_notification_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_notification_active = FALSE; - zenity_notification_listen = FALSE; - - return TRUE; -} -#endif - -static gboolean -zenity_progress_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_progress_active = FALSE; - zenity_progress_percentage = 0; - zenity_progress_pulsate = FALSE; - zenity_progress_auto_close = FALSE; - zenity_progress_auto_kill = FALSE; - zenity_progress_no_cancel = FALSE; - zenity_progress_time_remaining = FALSE; - return TRUE; -} - -static gboolean -zenity_question_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_question_active = FALSE; - zenity_question_default_cancel = FALSE; - zenity_question_switch = FALSE; - return TRUE; -} - -static gboolean -zenity_text_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_text_active = FALSE; - zenity_text_font = NULL; - zenity_text_checkbox = NULL; - zenity_text_auto_scroll = FALSE; -#ifdef HAVE_WEBKITGTK - zenity_text_enable_html = FALSE; - zenity_text_no_interaction = FALSE; - zenity_text_url = NULL; -#endif - return TRUE; -} - -static gboolean -zenity_warning_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_warning_active = FALSE; - - return TRUE; -} - -static gboolean -zenity_scale_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_scale_active = FALSE; - zenity_scale_value = 0; - zenity_scale_min_value = 0; - zenity_scale_max_value = 100; - zenity_scale_step = 1; - zenity_scale_print_partial = FALSE; - zenity_scale_hide_value = FALSE; - - return TRUE; -} - -static gboolean -zenity_color_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_colorsel_active = FALSE; - zenity_colorsel_color = NULL; - zenity_colorsel_show_palette = FALSE; - - return TRUE; -} - -static gboolean -zenity_password_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_password_active = FALSE; - zenity_password_show_username = FALSE; - - return TRUE; -} - -static gboolean -zenity_forms_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_forms_active = FALSE; - zenity_forms_show_header = FALSE; - zenity_forms_date_format = NULL; - // zenity_forms_hide_column = NULL; - return TRUE; -} - -static gboolean -zenity_misc_pre_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_misc_about = FALSE; - zenity_misc_version = FALSE; - - return TRUE; -} - /* Post parse callbacks assign the option values to parsing result and makes some post condition tests */ @@ -1391,61 +407,6 @@ zenity_general_post_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -static gboolean -zenity_calendar_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_calendar_active, MODE_CALENDAR); - - if (results->mode == MODE_CALENDAR) { - struct tm *t; - time_t current_time; - - time (¤t_time); - t = localtime (¤t_time); - - if (zenity_calendar_day < 0) - zenity_calendar_day = t->tm_mday; - if (zenity_calendar_month < 0) - zenity_calendar_month = t->tm_mon + 1; - if (zenity_calendar_year < 0) - zenity_calendar_year = t->tm_year + 1900; - - results->calendar_data->dialog_text = zenity_general_dialog_text; - results->calendar_data->day = zenity_calendar_day; - results->calendar_data->month = zenity_calendar_month; - results->calendar_data->year = zenity_calendar_year; - - if (zenity_calendar_date_format) - results->calendar_data->date_format = zenity_calendar_date_format; - else - results->calendar_data->date_format = - g_locale_to_utf8 (nl_langinfo (D_FMT), -1, NULL, NULL, NULL); - - } else { - if (zenity_calendar_day > -1) - zenity_option_error ( - zenity_option_get_name (calendar_options, &zenity_calendar_day), - ERROR_SUPPORT); - - if (zenity_calendar_month > -1) - zenity_option_error (zenity_option_get_name ( - calendar_options, &zenity_calendar_month), - ERROR_SUPPORT); - - if (zenity_calendar_year > -1) - zenity_option_error (zenity_option_get_name ( - calendar_options, &zenity_calendar_year), - ERROR_SUPPORT); - - if (zenity_calendar_date_format) - zenity_option_error (zenity_option_get_name (calendar_options, - &zenity_calendar_date_format), - ERROR_SUPPORT); - } - - return TRUE; -} - static gboolean zenity_entry_post_callback (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error) { @@ -1470,73 +431,6 @@ zenity_entry_post_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -static gboolean -zenity_error_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_error_active, MODE_ERROR); - - if (results->mode == MODE_ERROR) { - results->msg_data->dialog_text = zenity_general_dialog_text; - results->msg_data->dialog_icon = zenity_general_dialog_icon; - results->msg_data->mode = ZENITY_MSG_ERROR; - results->msg_data->no_wrap = zenity_general_dialog_no_wrap; - results->msg_data->no_markup = zenity_general_dialog_no_markup; - results->msg_data->ellipsize = zenity_general_dialog_ellipsize; - } - - return TRUE; -} - -static gboolean -zenity_info_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_info_active, MODE_INFO); - - if (results->mode == MODE_INFO) { - results->msg_data->dialog_text = zenity_general_dialog_text; - results->msg_data->dialog_icon = zenity_general_dialog_icon; - results->msg_data->mode = ZENITY_MSG_INFO; - results->msg_data->no_wrap = zenity_general_dialog_no_wrap; - results->msg_data->no_markup = zenity_general_dialog_no_markup; - results->msg_data->ellipsize = zenity_general_dialog_ellipsize; - } - - return TRUE; -} - -static gboolean -zenity_file_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_file_active, MODE_FILE); - - if (results->mode == MODE_FILE) { - results->file_data->uri = zenity_general_uri; - results->file_data->multi = zenity_general_multiple; - results->file_data->directory = zenity_file_directory; - results->file_data->save = zenity_file_save; - results->file_data->confirm_overwrite = zenity_file_confirm_overwrite; - results->file_data->separator = zenity_general_separator; - results->file_data->filter = zenity_file_filter; - } else { - if (zenity_file_directory) - zenity_option_error (zenity_option_get_name (file_selection_options, - &zenity_file_directory), - ERROR_SUPPORT); - - if (zenity_file_save) - zenity_option_error (zenity_option_get_name ( - file_selection_options, &zenity_file_save), - ERROR_SUPPORT); - - if (zenity_file_filter) - zenity_option_error (zenity_option_get_name (file_selection_options, - &zenity_file_filter), - ERROR_SUPPORT); - } - - return TRUE; -} - static gboolean zenity_list_post_callback (GOptionContext *context, GOptionGroup *group, gpointer data, GError **error) { @@ -1611,296 +505,6 @@ zenity_list_post_callback (GOptionContext *context, GOptionGroup *group, return TRUE; } -#ifdef HAVE_LIBNOTIFY -static gboolean -zenity_notification_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode ( - zenity_notification_active, MODE_NOTIFICATION); - - if (results->mode == MODE_NOTIFICATION) { - results->notification_data->notification_text = - zenity_general_dialog_text; - results->notification_data->listen = zenity_notification_listen; - results->notification_data->notification_hints = - zenity_notification_hints; - } else { - if (zenity_notification_listen) - zenity_option_error (zenity_option_get_name (notification_options, - &zenity_notification_listen), - ERROR_SUPPORT); - } - - return TRUE; -} -#endif - -static gboolean -zenity_progress_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_progress_active, MODE_PROGRESS); - if (results->mode == MODE_PROGRESS) { - results->progress_data->dialog_text = zenity_general_dialog_text; - results->progress_data->pulsate = zenity_progress_pulsate; - results->progress_data->autoclose = zenity_progress_auto_close; - results->progress_data->autokill = zenity_progress_auto_kill; - results->progress_data->percentage = zenity_progress_percentage; - results->progress_data->no_cancel = zenity_progress_no_cancel; - results->progress_data->time_remaining = zenity_progress_time_remaining; - } else { - if (zenity_progress_pulsate) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_pulsate), - ERROR_SUPPORT); - - if (zenity_progress_percentage) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_percentage), - ERROR_SUPPORT); - - if (zenity_progress_auto_close) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_auto_close), - ERROR_SUPPORT); - - if (zenity_progress_auto_kill) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_auto_kill), - ERROR_SUPPORT); - - if (zenity_progress_no_cancel) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_no_cancel), - ERROR_SUPPORT); - - if (zenity_progress_time_remaining) - zenity_option_error (zenity_option_get_name (progress_options, - &zenity_progress_time_remaining), - ERROR_SUPPORT); - } - - return TRUE; -} - -static gboolean -zenity_question_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_question_active, MODE_QUESTION); - if (results->mode == MODE_QUESTION) { - results->msg_data->dialog_text = zenity_general_dialog_text; - results->msg_data->dialog_icon = zenity_general_dialog_icon; - if (zenity_question_switch) - results->msg_data->mode = ZENITY_MSG_SWITCH; - else - results->msg_data->mode = ZENITY_MSG_QUESTION; - results->msg_data->no_wrap = zenity_general_dialog_no_wrap; - results->msg_data->no_markup = zenity_general_dialog_no_markup; - results->msg_data->ellipsize = zenity_general_dialog_ellipsize; - results->msg_data->default_cancel = zenity_question_default_cancel; - } - if (zenity_question_switch && zenity_general_extra_buttons == NULL) - zenity_option_error ( - zenity_option_get_name (question_options, &zenity_question_switch), - ERROR_SYNTAX); - - return TRUE; -} - -static gboolean -zenity_text_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_text_active, MODE_TEXTINFO); - - if (results->mode == MODE_TEXTINFO) { - results->text_data->uri = zenity_general_uri; - results->text_data->editable = zenity_general_editable; - results->text_data->no_wrap = zenity_general_dialog_no_wrap; - results->text_data->font = zenity_text_font; - results->text_data->checkbox = zenity_text_checkbox; - results->text_data->auto_scroll = zenity_text_auto_scroll; -#ifdef HAVE_WEBKITGTK - results->text_data->html = zenity_text_enable_html; - results->text_data->no_interaction = zenity_text_no_interaction; - results->text_data->url = zenity_text_url; -#endif - } else { - if (zenity_text_font) - zenity_option_error ( - zenity_option_get_name (text_options, &zenity_text_font), - ERROR_SUPPORT); -#ifdef HAVE_WEBKITGTK - if (zenity_text_enable_html) - zenity_option_error ( - zenity_option_get_name (text_options, &zenity_text_enable_html), - ERROR_SUPPORT); -#endif - } - return TRUE; -} - -static gboolean -zenity_warning_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_warning_active, MODE_WARNING); - - if (results->mode == MODE_WARNING) { - results->msg_data->dialog_text = zenity_general_dialog_text; - results->msg_data->dialog_icon = zenity_general_dialog_icon; - results->msg_data->mode = ZENITY_MSG_WARNING; - results->msg_data->no_wrap = zenity_general_dialog_no_wrap; - results->msg_data->no_markup = zenity_general_dialog_no_markup; - results->msg_data->ellipsize = zenity_general_dialog_ellipsize; - } - - return TRUE; -} - -static gboolean -zenity_scale_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_scale_active, MODE_SCALE); - - if (results->mode == MODE_SCALE) { - results->scale_data->dialog_text = zenity_general_dialog_text; - results->scale_data->value = zenity_scale_value; - results->scale_data->min_value = zenity_scale_min_value; - results->scale_data->max_value = zenity_scale_max_value; - results->scale_data->step = zenity_scale_step; - results->scale_data->print_partial = zenity_scale_print_partial; - results->scale_data->hide_value = zenity_scale_hide_value; - } - - return TRUE; -} - -static gboolean -zenity_color_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_colorsel_active, MODE_COLOR); - - if (results->mode == MODE_COLOR) { - results->color_data->color = zenity_colorsel_color; - results->color_data->show_palette = zenity_colorsel_show_palette; - } else { - if (zenity_colorsel_color) - zenity_option_error ( - zenity_option_get_name ( - color_selection_options, &zenity_colorsel_color), - ERROR_SUPPORT); - - if (zenity_colorsel_show_palette) - zenity_option_error ( - zenity_option_get_name ( - color_selection_options, &zenity_colorsel_show_palette), - ERROR_SUPPORT); - } - - return TRUE; -} - -static gboolean -zenity_forms_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - gchar *values; - int i = 0; - - zenity_option_set_dialog_mode (zenity_forms_active, MODE_FORMS); - if (results->mode == MODE_FORMS) { - results->forms_data->dialog_text = zenity_general_dialog_text; - results->forms_data->separator = zenity_general_separator; - // results->forms_data->hide_column = zenity_forms_hide_column; - results->forms_data->show_header = zenity_forms_show_header; - - if (zenity_forms_list_values) { - values = zenity_forms_list_values[0]; - while (values != NULL) { - results->forms_data->list_values = - g_slist_append (results->forms_data->list_values, values); - values = zenity_forms_list_values[++i]; - } - } - if (zenity_forms_column_values) { - i = 0; - values = zenity_forms_column_values[0]; - while (values != NULL) { - results->forms_data->column_values = - g_slist_append (results->forms_data->column_values, values); - values = zenity_forms_list_values[++i]; - } - } else - results->forms_data->column_values = - g_slist_append (NULL, "column"); - - if (zenity_forms_combo_values) { - i = 0; - values = zenity_forms_combo_values[0]; - while (values != NULL) { - results->forms_data->combo_values = - g_slist_append (results->forms_data->combo_values, values); - values = zenity_forms_combo_values[++i]; - } - } - if (zenity_forms_date_format) - results->forms_data->date_format = zenity_forms_date_format; - else - results->forms_data->date_format = - g_locale_to_utf8 (nl_langinfo (D_FMT), -1, NULL, NULL, NULL); - } else { - if (zenity_forms_date_format) - zenity_option_error (zenity_option_get_name (forms_dialog_options, - &zenity_forms_date_format), - ERROR_SUPPORT); - if (zenity_forms_list_values) - zenity_option_error (zenity_option_get_name (forms_dialog_options, - &zenity_forms_list_values), - ERROR_SUPPORT); - // if (zenity_forms_hide_column) - // zenity_option_error (zenity_option_get_name - // (forms_dialog_options, &zenity_forms_hide_column), - // ERROR_SUPPORT); - if (zenity_forms_column_values) - zenity_option_error (zenity_option_get_name (forms_dialog_options, - &zenity_forms_column_values), - ERROR_SUPPORT); - if (zenity_forms_combo_values) - zenity_option_error (zenity_option_get_name (forms_dialog_options, - &zenity_forms_combo_values), - ERROR_SUPPORT); - if (zenity_forms_show_header) - zenity_option_error (zenity_option_get_name (forms_dialog_options, - &zenity_forms_show_header), - ERROR_SUPPORT); - } - - return TRUE; -} - -static gboolean -zenity_password_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_password_active, MODE_PASSWORD); - if (results->mode == MODE_PASSWORD) { - results->password_data->username = zenity_password_show_username; - } else { - if (zenity_password_show_username) - zenity_option_error ( - zenity_option_get_name ( - password_dialog_options, &zenity_password_show_username), - ERROR_SUPPORT); - } - - return TRUE; -} - -static gboolean -zenity_misc_post_callback (GOptionContext *context, GOptionGroup *group, - gpointer data, GError **error) { - zenity_option_set_dialog_mode (zenity_misc_about, MODE_ABOUT); - zenity_option_set_dialog_mode (zenity_misc_version, MODE_VERSION); - - return TRUE; -} - static GOptionContext * zenity_create_context (void) { GOptionContext *tmp_ctx; @@ -1910,219 +514,39 @@ zenity_create_context (void) { /* Adds general option entries */ a_group = g_option_group_new ("general", - N_ ("General options"), - N_ ("Show general options"), + "General options", + "Show general options", NULL, NULL); g_option_group_add_entries (a_group, general_options); g_option_group_set_parse_hooks ( a_group, zenity_general_pre_callback, zenity_general_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds calendar option entries */ - a_group = g_option_group_new ("calendar", - N_ ("Calendar options"), - N_ ("Show calendar options"), - NULL, - NULL); - g_option_group_add_entries (a_group, calendar_options); - g_option_group_set_parse_hooks ( - a_group, zenity_calendar_pre_callback, zenity_calendar_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); + g_option_group_set_error_hook (a_group, zenity_option_error_callback); g_option_context_add_group (tmp_ctx, a_group); /* Adds entry option entries */ a_group = g_option_group_new ("entry", - N_ ("Text entry options"), - N_ ("Show text entry options"), + "Text entry options", + "Show text entry options", NULL, NULL); g_option_group_add_entries (a_group, entry_options); g_option_group_set_parse_hooks ( a_group, zenity_entry_pre_callback, zenity_entry_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds error option entries */ - a_group = g_option_group_new ( - "error", N_ ("Error options"), N_ ("Show error options"), NULL, NULL); - g_option_group_add_entries (a_group, error_options); - g_option_group_set_parse_hooks ( - a_group, zenity_error_pre_callback, zenity_error_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds info option entries */ - a_group = g_option_group_new ( - "info", N_ ("Info options"), N_ ("Show info options"), NULL, NULL); - g_option_group_add_entries (a_group, info_options); - g_option_group_set_parse_hooks ( - a_group, zenity_info_pre_callback, zenity_info_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds file selection option entries */ - a_group = g_option_group_new ("file-selection", - N_ ("File selection options"), - N_ ("Show file selection options"), - NULL, - NULL); - g_option_group_add_entries (a_group, file_selection_options); - g_option_group_set_parse_hooks ( - a_group, zenity_file_pre_callback, zenity_file_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); + g_option_group_set_error_hook (a_group, zenity_option_error_callback); g_option_context_add_group (tmp_ctx, a_group); /* Adds list option entries */ a_group = g_option_group_new ( - "list", N_ ("List options"), N_ ("Show list options"), NULL, NULL); + "list", "List options", "Show list options", NULL, NULL); g_option_group_add_entries (a_group, list_options); g_option_group_set_parse_hooks ( a_group, zenity_list_pre_callback, zenity_list_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - -#ifdef HAVE_LIBNOTIFY - /* Adds notification option entries */ - a_group = g_option_group_new ("notification", - N_ ("Notification icon options"), - N_ ("Show notification icon options"), - NULL, - NULL); - g_option_group_add_entries (a_group, notification_options); - g_option_group_set_parse_hooks (a_group, - zenity_notification_pre_callback, - zenity_notification_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); -#endif - - /* Adds progress option entries */ - a_group = g_option_group_new ("progress", - N_ ("Progress options"), - N_ ("Show progress options"), - NULL, - NULL); - g_option_group_add_entries (a_group, progress_options); - g_option_group_set_parse_hooks ( - a_group, zenity_progress_pre_callback, zenity_progress_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds question option entries */ - a_group = g_option_group_new ("question", - N_ ("Question options"), - N_ ("Show question options"), - NULL, - NULL); - g_option_group_add_entries (a_group, question_options); - g_option_group_set_parse_hooks ( - a_group, zenity_question_pre_callback, zenity_question_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds warning option entries */ - a_group = g_option_group_new ("warning", - N_ ("Warning options"), - N_ ("Show warning options"), - NULL, - NULL); - g_option_group_add_entries (a_group, warning_options); - g_option_group_set_parse_hooks ( - a_group, zenity_warning_pre_callback, zenity_warning_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds scale option entries */ - a_group = g_option_group_new ( - "scale", N_ ("Scale options"), N_ ("Show scale options"), NULL, NULL); - g_option_group_add_entries (a_group, scale_options); - g_option_group_set_parse_hooks ( - a_group, zenity_scale_pre_callback, zenity_scale_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds text option entries */ - a_group = g_option_group_new ("text-info", - N_ ("Text information options"), - N_ ("Show text information options"), - NULL, - NULL); - g_option_group_add_entries (a_group, text_options); - g_option_group_set_parse_hooks ( - a_group, zenity_text_pre_callback, zenity_text_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds color selection option entries */ - a_group = g_option_group_new ("color-selection", - N_ ("Color selection options"), - N_ ("Show color selection options"), - NULL, - NULL); - g_option_group_add_entries (a_group, color_selection_options); - g_option_group_set_parse_hooks ( - a_group, zenity_color_pre_callback, zenity_color_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds password dialog option entries */ - a_group = g_option_group_new ("password", - N_ ("Password dialog options"), - N_ ("Show password dialog options"), - NULL, - NULL); - g_option_group_add_entries (a_group, password_dialog_options); - g_option_group_set_parse_hooks ( - a_group, zenity_password_pre_callback, zenity_password_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds forms dialog option entries */ - a_group = g_option_group_new ("forms", - N_ ("Forms dialog options"), - N_ ("Show forms dialog options"), - NULL, - NULL); - g_option_group_add_entries (a_group, forms_dialog_options); - g_option_group_set_parse_hooks ( - a_group, zenity_forms_pre_callback, zenity_forms_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); - g_option_context_add_group (tmp_ctx, a_group); - - /* Adds misc option entries */ - a_group = g_option_group_new ("misc", - N_ ("Miscellaneous options"), - N_ ("Show miscellaneous options"), - NULL, - NULL); - g_option_group_add_entries (a_group, miscellaneous_options); - g_option_group_set_parse_hooks ( - a_group, zenity_misc_pre_callback, zenity_misc_post_callback); - g_option_group_set_error_hook (a_group, zenity_option_error_callback); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); + g_option_group_set_error_hook (a_group, zenity_option_error_callback); g_option_context_add_group (tmp_ctx, a_group); /* Adds gtk option entries */ - a_group = gtk_get_option_group (TRUE); - g_option_group_set_translation_domain (a_group, GETTEXT_PACKAGE); + a_group = gtk_get_option_group (TRUE); g_option_context_add_group (tmp_ctx, a_group); /* Enable help options */ @@ -2136,16 +560,16 @@ void zenity_option_error (gchar *string, ZenityError error) { switch (error) { case ERROR_SYNTAX: - g_printerr (_ ("This option is not available. Please see --help " - "for all possible usages.\n")); + g_printerr ("This option is not available. Please see --help " + "for all possible usages.\n"); zenity_option_free (); exit (-1); case ERROR_SUPPORT: - g_printerr (_ ("--%s is not supported for this dialog\n"), string); + g_printerr ("--%s is not supported for this dialog\n", string); zenity_option_free (); exit (-1); case ERROR_DIALOG: - g_printerr (_ ("Two or more dialog options specified\n")); + g_printerr ("Two or more dialog options specified\n"); zenity_option_free (); exit (-1); default: @@ -2166,64 +590,23 @@ zenity_option_parse (gint argc, gchar **argv) { /* Some option pointer a shared among more than one group and don't have their post condition tested. This test is done here. */ - if (zenity_general_dialog_text) - if (results->mode == MODE_ABOUT || results->mode == MODE_VERSION) - zenity_option_error (zenity_option_get_name (calendar_options, - &zenity_general_dialog_text), - ERROR_SUPPORT); - if (strcmp (zenity_general_separator, "|") != 0) - if (results->mode != MODE_LIST && results->mode != MODE_FILE && - results->mode != MODE_FORMS) + if (results->mode != MODE_LIST) zenity_option_error (zenity_option_get_name ( list_options, &zenity_general_separator), ERROR_SUPPORT); if (zenity_general_multiple) - if (results->mode != MODE_FILE && results->mode != MODE_LIST) + if (results->mode != MODE_LIST) zenity_option_error ( zenity_option_get_name (list_options, &zenity_general_multiple), ERROR_SUPPORT); if (zenity_general_editable) - if (results->mode != MODE_TEXTINFO && results->mode != MODE_LIST) + if (results->mode != MODE_LIST) zenity_option_error ( zenity_option_get_name (list_options, &zenity_general_editable), ERROR_SUPPORT); - if (zenity_general_uri) - if (results->mode != MODE_FILE && results->mode != MODE_TEXTINFO) - zenity_option_error ( - zenity_option_get_name (text_options, &zenity_general_uri), - ERROR_SUPPORT); - - if (zenity_general_ok_button) - if (results->mode == MODE_FILE) - zenity_option_error (zenity_option_get_name (general_options, - &zenity_general_ok_button), - ERROR_SUPPORT); - - if (zenity_general_cancel_button) - if (results->mode == MODE_FILE || results->mode == MODE_ERROR || - results->mode == MODE_WARNING || results->mode == MODE_INFO) - zenity_option_error (zenity_option_get_name (general_options, - &zenity_general_cancel_button), - ERROR_SUPPORT); - - if (zenity_general_dialog_no_wrap) - if (results->mode != MODE_INFO && results->mode != MODE_ERROR && - results->mode != MODE_QUESTION && results->mode != MODE_WARNING && - results->mode != MODE_TEXTINFO) - zenity_option_error (zenity_option_get_name (text_options, - &zenity_general_dialog_no_wrap), - ERROR_SUPPORT); - - if (zenity_general_dialog_ellipsize) - if (results->mode != MODE_INFO && results->mode != MODE_ERROR && - results->mode != MODE_QUESTION && results->mode != MODE_WARNING) - zenity_option_error (zenity_option_get_name (text_options, - &zenity_general_dialog_ellipsize), - ERROR_SUPPORT); - return results; } diff --git a/src/option.h b/src/option.h index b495e0e..8581aa9 100644 --- a/src/option.h +++ b/src/option.h @@ -31,25 +31,8 @@ #endif typedef enum { - MODE_CALENDAR, - MODE_ENTRY, - MODE_ERROR, - MODE_FILE, - MODE_LIST, - MODE_PROGRESS, - MODE_QUESTION, - MODE_TEXTINFO, - MODE_WARNING, - MODE_SCALE, - MODE_INFO, -#ifdef HAVE_LIBNOTIFY - MODE_NOTIFICATION, -#endif - MODE_COLOR, - MODE_PASSWORD, - MODE_FORMS, - MODE_ABOUT, - MODE_VERSION, + MODE_ENTRY, + MODE_LIST, MODE_LAST } ZenityDialogMode; @@ -64,20 +47,8 @@ typedef struct { ZenityDialogMode mode; ZenityData *data; - ZenityCalendarData *calendar_data; - ZenityMsgData *msg_data; - ZenityScaleData *scale_data; - ZenityFileData *file_data; - ZenityEntryData *entry_data; - ZenityProgressData *progress_data; - ZenityTextData *text_data; - ZenityTreeData *tree_data; -#ifdef HAVE_LIBNOTIFY - ZenityNotificationData *notification_data; -#endif - ZenityColorData *color_data; - ZenityPasswordData *password_data; - ZenityFormsData *forms_data; + ZenityEntryData *entry_data; + ZenityTreeData *tree_data; } ZenityParsingOptions; void zenity_option_error (gchar *string, ZenityError error); diff --git a/src/password.c b/src/password.c deleted file mode 100644 index a5490d3..0000000 --- a/src/password.c +++ /dev/null @@ -1,173 +0,0 @@ -/* - * password.c - * - * Copyright (C) 2010 Arx Cruz - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 121 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Arx Cruz - */ - -#include "config.h" -#include "util.h" -#include "zenity.h" -#include - -static ZenityData *zen_data; - -static void zenity_password_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -void -zenity_password_dialog (ZenityData *data, ZenityPasswordData *password_data) { - GtkWidget *dialog; - GtkWidget *image; - GtkWidget *hbox; - GtkWidget *vbox_labels; - GtkWidget *vbox_entries; - GtkWidget *label; - - zen_data = data; - - dialog = gtk_dialog_new (); - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - gtk_dialog_add_button (GTK_DIALOG (dialog), - data->cancel_label != NULL ? data->cancel_label : _ ("_Cancel"), - GTK_RESPONSE_CANCEL); - gtk_dialog_add_button (GTK_DIALOG (dialog), - data->ok_label != NULL ? data->ok_label : _ ("_OK"), - GTK_RESPONSE_OK); - - image = - gtk_image_new_from_icon_name ("dialog-password", GTK_ICON_SIZE_DIALOG); - gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5); - gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 12); - - /* Checks if username has been passed as a parameter */ - gchar *title_text = _ ("Type your password"); - - if (password_data->username) - title_text = _ ("Type your username and password"); - - label = gtk_label_new (title_text); - - gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 12); - gtk_box_pack_start ( - GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), - hbox, - FALSE, - TRUE, - 5); - - vbox_labels = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5); - vbox_entries = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5); - - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5); - gtk_box_pack_start ( - GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), - hbox, - FALSE, - TRUE, - 5); - - gtk_box_pack_start (GTK_BOX (hbox), vbox_labels, FALSE, TRUE, 12); - gtk_box_pack_start (GTK_BOX (hbox), vbox_entries, TRUE, TRUE, 12); - - if (password_data->username) { - label = gtk_label_new (_ ("Username:")); - gtk_box_pack_start (GTK_BOX (vbox_labels), label, TRUE, FALSE, 12); - password_data->entry_username = gtk_entry_new (); - gtk_box_pack_start (GTK_BOX (vbox_entries), - password_data->entry_username, - TRUE, - TRUE, - 12); - } - - label = gtk_label_new (_ ("Password:")); - gtk_box_pack_start (GTK_BOX (vbox_labels), label, TRUE, FALSE, 12); - password_data->entry_password = gtk_entry_new (); - gtk_entry_set_visibility (GTK_ENTRY (password_data->entry_password), FALSE); - gtk_entry_set_activates_default ( - GTK_ENTRY (password_data->entry_password), TRUE); - gtk_box_pack_start ( - GTK_BOX (vbox_entries), password_data->entry_password, TRUE, TRUE, 12); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_password_dialog_response), - password_data); - gtk_widget_show_all ( - GTK_WIDGET (gtk_dialog_get_content_area (GTK_DIALOG (dialog)))); - zenity_util_show_dialog (dialog, data->attach); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - gtk_main (); -} - -static void -zenity_password_dialog_response ( - GtkWidget *widget, int response, gpointer data) { - ZenityPasswordData *password_data = (ZenityPasswordData *) data; - switch (response) { - case GTK_RESPONSE_OK: - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - if (password_data->username) - g_print ("%s|%s\n", - gtk_entry_get_text ( - GTK_ENTRY (password_data->entry_username)), - gtk_entry_get_text ( - GTK_ENTRY (password_data->entry_password))); - else - g_print ("%s\n", - gtk_entry_get_text ( - GTK_ENTRY (password_data->entry_password))); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - - gtk_main_quit (); -} diff --git a/src/progress.c b/src/progress.c deleted file mode 100644 index 00bb8aa..0000000 --- a/src/progress.c +++ /dev/null @@ -1,450 +0,0 @@ -/* - * progress.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" -#include -#include -#include -#include -#include -#include -#include - -static GtkBuilder *builder; -static ZenityData *zen_data; -static GIOChannel *channel; - -static gint pulsate_timeout = -1; -static gboolean autokill; -static gboolean no_cancel; -static gboolean auto_close; - -gint zenity_progress_timeout (gpointer data); -gint zenity_progress_pulsate_timeout (gpointer data); - -static void zenity_progress_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -static gboolean -zenity_progress_pulsate_progress_bar (gpointer user_data) { - gtk_progress_bar_pulse (GTK_PROGRESS_BAR (user_data)); - return TRUE; -} - -static void -zenity_progress_pulsate_stop (void) { - if (pulsate_timeout > 0) { - g_source_remove (pulsate_timeout); - pulsate_timeout = -1; - } -} - -static void -zenity_progress_pulsate_start (GObject *progress_bar) { - if (pulsate_timeout == -1) { - pulsate_timeout = g_timeout_add ( - 100, zenity_progress_pulsate_progress_bar, progress_bar); - } -} - -static void -zenity_progress_update_time_remaining (ZenityProgressData *progress_data) { - static GObject *progress_time = NULL; - static time_t start_time = (time_t) (-1); - float percentage = progress_data->percentage; - - if (progress_time == NULL) - progress_time = - gtk_builder_get_object (builder, "zenity_progress_time"); - if (start_time == (time_t) (-1) || percentage <= 0.0 || - percentage >= 100.0) { - start_time = time (NULL); - gtk_label_set_text (GTK_LABEL (progress_time), ""); - } else { - time_t current_time = time (NULL); - time_t elapsed_time = current_time - start_time; - time_t total_time = - (time_t) (100.0 * elapsed_time / progress_data->percentage); - time_t remaining_time = total_time - elapsed_time; - gulong hours, minutes, seconds; - gchar *remaining_message; - - seconds = (gulong) (remaining_time % 60); - remaining_time /= 60; - minutes = (gulong) (remaining_time % 60); - remaining_time /= 60; - hours = (gulong) remaining_time; - - remaining_message = g_strdup_printf ( - _ ("Time remaining: %lu:%02lu:%02lu"), hours, minutes, seconds); - gtk_label_set_text (GTK_LABEL (progress_time), remaining_message); - g_free (remaining_message); - } -} - -static float -stof(const char* s) { - float rez = 0, fact = 1; - if (*s == '-') { - s++; - fact = -1; - } - for (int point_seen = 0; *s; s++) { - if (*s == '.' || *s == ',') { - point_seen = 1; - continue; - } - int d = *s - '0'; - if (d >= 0 && d <= 9) { - if (point_seen) fact /= 10.0f; - rez = rez * 10.0f + (float)d; - } - } - return rez * fact; -} - -static gboolean -zenity_progress_handle_stdin ( - GIOChannel *channel, GIOCondition condition, gpointer data) { - static ZenityProgressData *progress_data; - static GObject *progress_bar; - static GObject *progress_label; - float percentage = 0.0; - GIOStatus status = G_IO_STATUS_NORMAL; - - progress_data = (ZenityProgressData *) data; - progress_bar = gtk_builder_get_object (builder, "zenity_progress_bar"); - progress_label = gtk_builder_get_object (builder, "zenity_progress_text"); - - if ((condition & G_IO_IN) != 0) { - GString *string; - GError *error = NULL; - - string = g_string_new (NULL); - - while (channel->is_readable != TRUE) - ; - do { - do { - status = g_io_channel_read_line_string ( - channel, string, NULL, &error); - - while (gtk_events_pending ()) - gtk_main_iteration (); - - } while (status == G_IO_STATUS_AGAIN); - - if (status != G_IO_STATUS_NORMAL) { - if (error) { - g_warning ( - "zenity_progress_handle_stdin () : %s", error->message); - g_error_free (error); - error = NULL; - } - continue; - } - - if (!g_ascii_strncasecmp (string->str, "#", 1)) { - gchar *match; - - /* We have a comment, so let's try to change the label */ - match = g_strstr_len (string->str, strlen (string->str), "#"); - match++; - gtk_label_set_text (GTK_LABEL (progress_label), - g_strcompress (g_strchomp (g_strchug (match)))); - - } else if (g_str_has_prefix (string->str, "pulsate")) { - gchar *colon, *command, *value; - - zenity_util_strip_newline (string->str); - - colon = strchr (string->str, ':'); - if (colon == NULL) { - continue; - } - - /* split off the command and value */ - command = - g_strstrip (g_strndup (string->str, colon - string->str)); - - value = colon + 1; - while (*value && g_ascii_isspace (*value)) - value++; - - if (!g_ascii_strcasecmp (value, "false")) { - zenity_progress_pulsate_stop (); - - gtk_progress_bar_set_fraction ( - GTK_PROGRESS_BAR (progress_bar), - progress_data->percentage / 100.0); - } else { - zenity_progress_pulsate_start (progress_bar); - } - - g_free (command); - } else { - - if (!g_ascii_isdigit (*(string->str))) - continue; - - /* Now try to convert the thing to a number */ - percentage = CLAMP (stof (string->str), 0, 100); - - gtk_progress_bar_set_fraction ( - GTK_PROGRESS_BAR (progress_bar), percentage / 100.0); - - progress_data->percentage = percentage; - - if (progress_data->time_remaining == TRUE) - zenity_progress_update_time_remaining (progress_data); - - if (percentage == 100) { - GObject *button; - - button = gtk_builder_get_object ( - builder, "zenity_progress_ok_button"); - gtk_widget_set_sensitive (GTK_WIDGET (button), TRUE); - gtk_widget_grab_focus (GTK_WIDGET (button)); - - if (progress_data->autoclose) { - zen_data->exit_code = - zenity_util_return_exit_code (ZENITY_OK); - gtk_main_quit (); - } - } - } - - } while ((g_io_channel_get_buffer_condition (channel) & G_IO_IN) == - G_IO_IN && - status != G_IO_STATUS_EOF); - g_string_free (string, TRUE); - } - - if ((condition & G_IO_IN) != G_IO_IN || status == G_IO_STATUS_EOF) { - /* We assume that we are done, so stop the pulsating and de-sensitize - * the buttons */ - GtkWidget *button; - - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_progress_ok_button")); - gtk_widget_set_sensitive (button, TRUE); - gtk_widget_grab_focus (button); - - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_progress_cancel_button")); - - gtk_widget_set_sensitive (button, FALSE); - - gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 1.0); - - zenity_progress_pulsate_stop (); - - g_object_unref (builder); - - if (progress_data->autoclose) { - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - gtk_main_quit (); - } - - g_io_channel_shutdown (channel, TRUE, NULL); - return FALSE; - } - return TRUE; -} - -static void -zenity_progress_read_info (ZenityProgressData *progress_data) { - channel = g_io_channel_unix_new (0); - g_io_channel_set_encoding (channel, NULL, NULL); - g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL); - g_io_add_watch (channel, - G_IO_IN | G_IO_HUP, - zenity_progress_handle_stdin, - progress_data); - /* We need to check the pulsate state here, because, the g_io_add_watch - doesn't call the zenity_progress_handle_stdin function if there's no - input. This fix the Bug 567663 */ - if (progress_data->pulsate) { - GObject *progress_bar = - gtk_builder_get_object (builder, "zenity_progress_bar"); - zenity_progress_pulsate_start (progress_bar); - } -} - -static void -zenity_text_size_allocate ( - GtkWidget *widget, GtkAllocation *allocation, gpointer data) { - gtk_widget_set_size_request (widget, allocation->width / 2, -1); -} - -void -zenity_progress (ZenityData *data, ZenityProgressData *progress_data) { - GtkWidget *dialog; - GtkWidget *button; - GObject *text; - GObject *progress_bar; - GObject *cancel_button, *ok_button; - - zen_data = data; - builder = zenity_util_load_ui_file ("zenity_progress_dialog", NULL); - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - gtk_builder_connect_signals (builder, NULL); - - text = gtk_builder_get_object (builder, "zenity_progress_text"); - - dialog = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_progress_dialog")); - - progress_bar = gtk_builder_get_object (builder, "zenity_progress_bar"); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_progress_dialog_response), - data); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - zenity_util_set_window_icon (dialog, - data->window_icon, - ZENITY_IMAGE_FULLPATH ("zenity-progress.png")); - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - - if (data->width > -1) { - gtk_widget_set_size_request (GTK_WIDGET (text), data->width, -1); - } else { - g_signal_connect_after (G_OBJECT (text), - "size-allocate", - G_CALLBACK (zenity_text_size_allocate), - data); - g_signal_connect_after (G_OBJECT (progress_bar), - "size-allocate", - G_CALLBACK (zenity_text_size_allocate), - data); - } - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_progress_ok_button")); - gtk_button_set_label (GTK_BUTTON (button), data->ok_label); - } - - if (data->cancel_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_progress_cancel_button")); - gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); - } - - if (progress_data->dialog_text) - gtk_label_set_markup ( - GTK_LABEL (text), g_strcompress (progress_data->dialog_text)); - - if (progress_data->percentage > -1) - gtk_progress_bar_set_fraction ( - GTK_PROGRESS_BAR (progress_bar), progress_data->percentage / 100.0); - - autokill = progress_data->autokill; - - auto_close = progress_data->autoclose; - ok_button = gtk_builder_get_object (builder, "zenity_progress_ok_button"); - - no_cancel = progress_data->no_cancel; - cancel_button = - gtk_builder_get_object (builder, "zenity_progress_cancel_button"); - - if (no_cancel) { - gtk_widget_hide (GTK_WIDGET (cancel_button)); - gtk_window_set_deletable (GTK_WINDOW (dialog), FALSE); - } - - if (no_cancel && auto_close) - gtk_widget_hide (GTK_WIDGET (ok_button)); - - zenity_util_show_dialog (dialog, data->attach); - zenity_progress_read_info (progress_data); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - NULL); - } - - gtk_main (); -} - -static void -zenity_progress_dialog_response ( - GtkWidget *widget, int response, gpointer data) { - switch (response) { - case GTK_RESPONSE_OK: - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - break; - - case GTK_RESPONSE_CANCEL: - /* We do not want to kill the parent process, in order to give the - user - the ability to choose the action to be taken. See bug #310824. - But we want to give people the option to choose this behavior. - -- Monday 27, March 2006 - */ - if (autokill) { - kill (getppid (), 1); - } - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - case ZENITY_TIMEOUT: - zenity_util_exit_code_with_data (ZENITY_TIMEOUT, zen_data); - break; - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - gtk_main_quit (); -} diff --git a/src/scale.c b/src/scale.c deleted file mode 100644 index 7e6686b..0000000 --- a/src/scale.c +++ /dev/null @@ -1,173 +0,0 @@ -/* - * scale.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Lucas Rocha - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" - -static GtkWidget *scale; - -static void zenity_scale_value_changed (GtkWidget *widget, gpointer data); -static void zenity_scale_dialog_response ( - GtkWidget *widget, int response, gpointer data); - -void -zenity_scale (ZenityData *data, ZenityScaleData *scale_data) { - GtkBuilder *builder; - GtkWidget *dialog; - GtkWidget *button; - GObject *text; - - builder = - zenity_util_load_ui_file ("zenity_scale_dialog", "adjustment1", NULL); - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - dialog = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_scale_dialog")); - scale = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_scale_hscale")); - text = gtk_builder_get_object (builder, "zenity_scale_text"); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_scale_dialog_response), - data); - - if (scale_data->min_value >= scale_data->max_value) { - g_printerr (_ ("Maximum value must be greater than minimum value.\n")); - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - if (scale_data->value < scale_data->min_value || - scale_data->value > scale_data->max_value) { - g_printerr (_ ("Value out of range.\n")); - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - gtk_builder_connect_signals (builder, NULL); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - zenity_util_set_window_icon ( - dialog, data->window_icon, ZENITY_IMAGE_FULLPATH ("zenity-scale.png")); - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_scale_ok_button")); - gtk_button_set_label (GTK_BUTTON (button), data->ok_label); - } - - if (data->cancel_label) { - button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_scale_cancel_button")); - gtk_button_set_label (GTK_BUTTON (button), data->cancel_label); - } - - if (scale_data->dialog_text) - gtk_label_set_markup ( - GTK_LABEL (text), g_strcompress (scale_data->dialog_text)); - - gtk_range_set_range ( - GTK_RANGE (scale), scale_data->min_value, scale_data->max_value); - gtk_range_set_value (GTK_RANGE (scale), scale_data->value); - gtk_range_set_increments (GTK_RANGE (scale), scale_data->step, 0); - - if (scale_data->print_partial) - g_signal_connect (G_OBJECT (scale), - "value-changed", - G_CALLBACK (zenity_scale_value_changed), - data); - - if (scale_data->hide_value) - gtk_scale_set_draw_value (GTK_SCALE (scale), FALSE); - - zenity_util_show_dialog (dialog, data->attach); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - g_object_unref (builder); - - gtk_main (); -} - -static void -zenity_scale_value_changed (GtkWidget *widget, gpointer data) { - g_print ("%.0f\n", gtk_range_get_value (GTK_RANGE (widget))); -} - -static void -zenity_scale_dialog_response (GtkWidget *widget, int response, gpointer data) { - ZenityData *zen_data = data; - - switch (response) { - case GTK_RESPONSE_OK: - zenity_util_exit_code_with_data (ZENITY_OK, zen_data); - g_print ("%.0f\n", gtk_range_get_value (GTK_RANGE (scale))); - break; - - case GTK_RESPONSE_CANCEL: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_CANCEL); - break; - - case ZENITY_TIMEOUT: - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_TIMEOUT); - g_print ("%.0f\n", gtk_range_get_value (GTK_RANGE (scale))); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); - break; - } - gtk_main_quit (); -} diff --git a/src/text.c b/src/text.c deleted file mode 100644 index bbfa421..0000000 --- a/src/text.c +++ /dev/null @@ -1,450 +0,0 @@ -/* - * text.c - * - * Copyright (C) 2002 Sun Microsystems, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - * Authors: Glynn Foster - */ - -#include "config.h" - -#include "util.h" -#include "zenity.h" -#include - -#ifdef HAVE_WEBKITGTK -#include -#endif - -static ZenityTextData *zen_text_data; - -static void zenity_text_dialog_response ( - GtkWidget *widget, int response, gpointer data); -static void zenity_text_toggle_button (GtkToggleButton *button, gpointer data); - -#ifdef HAVE_WEBKITGTK -static void -zenity_configure_webkit (WebKitWebView *web_view) { - WebKitSettings *settings; - settings = webkit_web_view_get_settings (web_view); - g_object_set (G_OBJECT (settings), "auto-load-images", TRUE, NULL); - /* - Stick to the defaults - "cursive-font-family" gchar* : Read / Write / - Construct - "default-encoding" gchar* : Read / Write / - Construct - "default-font-family" gchar* : Read / Write / - Construct - "default-font-size" gint : Read / Write / - Construct - "default-monospace-font-size" gint : Read / Write / - Construct - "editing-behavior" WebKitEditingBehavior : Read / Write / - Construct - */ - g_object_set (G_OBJECT (settings), "enable-caret-browsing", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-developer-extras", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-fullscreen", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-html5-database", FALSE, NULL); - g_object_set ( - G_OBJECT (settings), "enable-html5-local-storage", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-java", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-javascript", FALSE, NULL); - g_object_set (G_OBJECT (settings), - "enable-offline-web-application-cache", - FALSE, - NULL); - g_object_set (G_OBJECT (settings), "enable-page-cache", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-plugins", FALSE, NULL); - g_object_set (G_OBJECT (settings), "enable-private-browsing", TRUE, NULL); - /* - Stick to defaults - "enforce-96-dpi" gboolean : Read / Write / - Construct - "fantasy-font-family" gchar* : Read / Write / - Construct - */ - /* - Stick to defaults - "minimum-font-size" gint : Read / Write / - Construct - "minimum-logical-font-size" gint : Read / Write / - Construct - "monospace-font-family" gchar* : Read / Write / - Construct - "print-backgrounds" gboolean : Read / Write / - Construct - "resizable-text-areas" gboolean : Read / Write / - Construct - "sans-serif-font-family" gchar* : Read / Write / - Construct - "serif-font-family" gchar* : Read / Write / - Construct - "spell-checking-languages" gchar* : Read / Write / - Construct - */ - g_object_set (G_OBJECT (settings), "enable-tabs-to-links", FALSE, NULL); - g_object_set (G_OBJECT (settings), - "user-agent", - "Zenity with WebKit (KHTML, like Gecko) support", - NULL); - /* - Stick to defaults - "user-stylesheet-uri" gchar* : Read / Write / - Construct - "zoom-step" gfloat : Read / Write / - Construct - */ -} - -static gboolean -zenity_text_webview_decision_request (WebKitWebView *web_view, - WebKitPolicyDecision *decision, WebKitPolicyDecisionType type) { - if (type == WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION) { - WebKitNavigationPolicyDecision *navigation_decision = - WEBKIT_NAVIGATION_POLICY_DECISION (decision); - WebKitNavigationAction *navigation_action = - webkit_navigation_policy_decision_get_navigation_action ( - navigation_decision); - webkit_policy_decision_ignore (decision); - if (!zen_text_data->no_interaction && - webkit_navigation_action_get_navigation_type (navigation_action) == - WEBKIT_NAVIGATION_TYPE_LINK_CLICKED) { - WebKitURIRequest *request = - webkit_navigation_action_get_request (navigation_action); - g_app_info_launch_default_for_uri ( - webkit_uri_request_get_uri (request), NULL, NULL); - } - } - return TRUE; -} - -static void -zenity_text_webview_load_changed ( - WebKitWebView *webkitwebview, WebKitLoadEvent event, gpointer user_data) { - if (event == WEBKIT_LOAD_FINISHED) { - g_signal_connect (G_OBJECT (webkitwebview), - "decide-policy", - G_CALLBACK (zenity_text_webview_decision_request), - NULL); - } -} - -#endif - -static gboolean -zenity_text_handle_stdin ( - GIOChannel *channel, GIOCondition condition, gpointer data) { - static GtkTextBuffer *buffer; - static GtkTextView *text_view; - gchar buf[1024]; - - gsize len; - - text_view = GTK_TEXT_VIEW (data); - buffer = gtk_text_view_get_buffer (text_view); - - if ((condition & G_IO_IN) || (condition & (G_IO_IN | G_IO_HUP))) { - GError *error = NULL; - gint status; - - while (channel->is_readable != TRUE) - ; - - do { - status = g_io_channel_read_chars (channel, buf, 1024, &len, &error); - - while (gtk_events_pending ()) - gtk_main_iteration (); - - } while (status == G_IO_STATUS_AGAIN); - - if (status != G_IO_STATUS_NORMAL) { - if (error) { - g_warning ("zenity_text_handle_stdin () : %s", error->message); - g_error_free (error); - error = NULL; - } - return FALSE; - } - - if (len > 0) { - GtkTextIter end; - gchar *utftext; - gsize localelen; - gsize utflen; - - gtk_text_buffer_get_end_iter (buffer, &end); - - if (!g_utf8_validate (buf, len, NULL)) { - utftext = g_convert_with_fallback (buf, - len, - "UTF-8", - "ISO-8859-1", - NULL, - &localelen, - &utflen, - NULL); - gtk_text_buffer_insert (buffer, &end, utftext, utflen); - g_free (utftext); - } else { - gtk_text_buffer_insert (buffer, &end, buf, len); - } - if (zen_text_data->auto_scroll) { - GtkTextMark *mark = NULL; - mark = gtk_text_buffer_get_insert (buffer); - if (mark != NULL) - gtk_text_view_scroll_to_mark ( - text_view, mark, 0.0, FALSE, 0, 0); - } - } - } - - return TRUE; -} - -static void -zenity_text_fill_entries_from_stdin (GtkTextView *text_view) { - GIOChannel *channel; - - channel = g_io_channel_unix_new (0); - g_io_channel_set_encoding (channel, "UTF-8", NULL); - g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL); - g_io_add_watch ( - channel, G_IO_IN | G_IO_HUP, zenity_text_handle_stdin, text_view); -} - -void -zenity_text (ZenityData *data, ZenityTextData *text_data) { - GtkBuilder *builder; - GtkWidget *dialog; - GtkWidget *ok_button; - GtkWidget *checkbox; - GtkWidget *cancel_button; - - GObject *text_view; - GtkTextBuffer *text_buffer; - -#ifdef HAVE_WEBKITGTK - GtkWidget *web_kit; - GtkWidget *scrolled_window; - GtkTextIter start_iter, end_iter; - gchar *content; -#endif - zen_text_data = text_data; - builder = - zenity_util_load_ui_file ("zenity_text_dialog", "textbuffer1", NULL); - - if (builder == NULL) { - data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); - return; - } - - gtk_builder_connect_signals (builder, NULL); - - dialog = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_text_dialog")); - - ok_button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_text_close_button")); - cancel_button = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_text_cancel_button")); - checkbox = - GTK_WIDGET (gtk_builder_get_object (builder, "zenity_text_checkbox")); - - g_signal_connect (G_OBJECT (dialog), - "response", - G_CALLBACK (zenity_text_dialog_response), - data); - - if (data->dialog_title) - gtk_window_set_title (GTK_WINDOW (dialog), data->dialog_title); - - zenity_util_set_window_icon ( - dialog, data->window_icon, ZENITY_IMAGE_FULLPATH ("zenity-text.png")); - - gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CLOSE); - - text_buffer = gtk_text_buffer_new (NULL); - text_view = gtk_builder_get_object (builder, "zenity_text_view"); - gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), text_buffer); - gtk_text_view_set_editable (GTK_TEXT_VIEW (text_view), text_data->editable); - - if (text_data->no_wrap) - gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (text_view), GTK_WRAP_NONE); - -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - if (text_data->font) { - PangoFontDescription *fontDesc = - pango_font_description_from_string (text_data->font); - gtk_widget_override_font (GTK_WIDGET (text_view), fontDesc); - } -G_GNUC_END_IGNORE_DEPRECATIONS - - if (text_data->uri) - zenity_util_fill_file_buffer (text_buffer, text_data->uri); - else - zenity_text_fill_entries_from_stdin (GTK_TEXT_VIEW (text_view)); - - if (text_data->editable) - zen_text_data->buffer = text_buffer; - - if (data->extra_label) { - gint i = 0; - while (data->extra_label[i] != NULL) { - gtk_dialog_add_button ( - GTK_DIALOG (dialog), data->extra_label[i], i); - i++; - } - } - - if (data->ok_label) { - gtk_button_set_label (GTK_BUTTON (ok_button), data->ok_label); - } - - if (data->cancel_label) { - gtk_button_set_label (GTK_BUTTON (cancel_button), data->cancel_label); - } - - if (text_data->checkbox) { - gtk_widget_set_visible (GTK_WIDGET (checkbox), TRUE); - gtk_widget_set_sensitive (GTK_WIDGET (ok_button), FALSE); - gtk_button_set_label (GTK_BUTTON (checkbox), text_data->checkbox); - - g_signal_connect (G_OBJECT (checkbox), - "toggled", - G_CALLBACK (zenity_text_toggle_button), - ok_button); - } - - if (data->width > -1 || data->height > -1) - gtk_window_set_default_size ( - GTK_WINDOW (dialog), data->width, data->height); - else - gtk_window_set_default_size (GTK_WINDOW (dialog), 300, 400); - - if (data->modal) - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); - -#ifdef HAVE_WEBKITGTK - if (text_data->html) { - web_kit = webkit_web_view_new (); - scrolled_window = GTK_WIDGET ( - gtk_builder_get_object (builder, "zenity_text_scrolled_window")); - - zenity_configure_webkit (WEBKIT_WEB_VIEW (web_kit)); - - if (text_data->url) { - if (!(g_str_has_prefix (text_data->url, "http://") || - g_str_has_prefix (text_data->url, "https://"))) - text_data->url = g_strdup_printf ("http://%s", text_data->url); - - webkit_web_view_load_uri ( - WEBKIT_WEB_VIEW (web_kit), text_data->url); - } else { - gchar *cwd; - gchar *dirname; - gchar *dirname_uri; - dirname = text_data->uri ? g_path_get_dirname (text_data->uri) - : g_strdup ("/"); - cwd = g_get_current_dir (); - dirname_uri = g_strconcat ("file://", cwd, "/", dirname, "/", NULL); - g_free (cwd); - g_free (dirname); - gtk_text_buffer_get_start_iter (text_buffer, &start_iter); - gtk_text_buffer_get_end_iter (text_buffer, &end_iter); - content = gtk_text_buffer_get_text ( - text_buffer, &start_iter, &end_iter, TRUE); - webkit_web_view_load_html ( - WEBKIT_WEB_VIEW (web_kit), content, dirname_uri); - g_free (dirname_uri); - g_free (content); - } - - // We don't want user to click on links and navigate to another page. - // So, when the page finishes loading, we take handle of the requests. - - g_signal_connect (G_OBJECT (web_kit), - "load-changed", - G_CALLBACK (zenity_text_webview_load_changed), - NULL); - - gtk_widget_destroy (GTK_WIDGET (text_view)); - gtk_container_add (GTK_CONTAINER (scrolled_window), web_kit); - gtk_widget_show (GTK_WIDGET (web_kit)); - } -#endif - - zenity_util_show_dialog (dialog, data->attach); - - g_object_unref (builder); - - if (data->timeout_delay > 0) { - g_timeout_add_seconds (data->timeout_delay, - (GSourceFunc) zenity_util_timeout_handle, - dialog); - } - - gtk_main (); -} - -static void -zenity_text_toggle_button (GtkToggleButton *button, gpointer data) { - GtkWidget *ok_button = (GtkWidget *) data; - gtk_widget_set_sensitive ( - GTK_WIDGET (ok_button), gtk_toggle_button_get_active (button)); -} - -static void -zenity_text_dialog_output (ZenityData *zen_data) { - if (zen_text_data->editable) { - GtkTextIter start, end; - gchar *text; - gtk_text_buffer_get_bounds (zen_text_data->buffer, &start, &end); - text = - gtk_text_buffer_get_text (zen_text_data->buffer, &start, &end, 0); - g_print ("%s", text); - g_free (text); - } -} - -static void -zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data) { - ZenityData *zen_data = data; - - switch (response) { - case GTK_RESPONSE_CLOSE: - zenity_text_dialog_output (zen_data); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - break; - - case ZENITY_TIMEOUT: - zenity_text_dialog_output (zen_data); - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_TIMEOUT); - break; - - default: - if (zen_data->extra_label && - response < g_strv_length (zen_data->extra_label)) - printf ("%s\n", zen_data->extra_label[response]); - zenity_util_exit_code_with_data (ZENITY_ESC, zen_data); - break; - } - gtk_main_quit (); -} diff --git a/src/tree.c b/src/tree.c index 7d98ad2..cd6af3d 100644 --- a/src/tree.c +++ b/src/tree.c @@ -23,8 +23,6 @@ * Kristian Rietveld */ -#include "config.h" - #include "util.h" #include "zenity.h" #include @@ -386,13 +384,13 @@ zenity_tree (ZenityData *data, ZenityTreeData *tree_data) { tree_data->hide_column, n_columns); if (n_columns == 0) { - g_printerr (_ ("No column titles specified for List dialog.\n")); + g_printerr ("No column titles specified for List dialog.\n"); data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); return; } if (tree_data->checkbox + tree_data->radiobox + tree_data->imagebox > 1) { - g_printerr (_ ("You should use only one List dialog type.\n")); + g_printerr ("You should use only one List dialog type.\n"); data->exit_code = zenity_util_return_exit_code (ZENITY_ERROR); return; } @@ -440,9 +438,6 @@ zenity_tree (ZenityData *data, ZenityTreeData *tree_data) { gtk_label_set_markup ( GTK_LABEL (text), g_strcompress (tree_data->dialog_text)); - zenity_util_set_window_icon ( - dialog, data->window_icon, ZENITY_IMAGE_FULLPATH ("zenity-list.png")); - if (data->width > -1 || data->height > -1) gtk_window_set_default_size ( GTK_WINDOW (dialog), data->width, data->height); @@ -774,7 +769,7 @@ zenity_tree_dialog_output (void) { g_free (print_columns); g_free (hide_columns); g_free (separator); - g_slist_foreach (selected, (GFunc) g_free, NULL); + g_slist_foreach (selected, (GFunc) (void *) g_free, NULL); selected = NULL; } diff --git a/src/util.c b/src/util.c index 2887fd9..f3cdbbc 100644 --- a/src/util.c +++ b/src/util.c @@ -27,9 +27,6 @@ * Tom Tromey */ -#include "config.h" - -#include "config.h" #include "util.h" #include "zenity.h" #include @@ -59,8 +56,6 @@ zenity_util_load_ui_file (const gchar *root_widget, ...) { gchar **objects; guint result = 0; - gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - /* We have at least the root_widget and a NULL */ ptrarray = g_ptr_array_sized_new (2); @@ -80,21 +75,13 @@ zenity_util_load_ui_file (const gchar *root_widget, ...) { g_ptr_array_add (ptrarray, NULL); objects = (gchar **) g_ptr_array_free (ptrarray, FALSE); - if (g_file_test (ZENITY_UI_FILE_RELATIVEPATH, G_FILE_TEST_EXISTS)) { - /* Try current dir, for debugging */ - result = gtk_builder_add_objects_from_file ( - builder, ZENITY_UI_FILE_RELATIVEPATH, objects, NULL); - } - - if (result == 0) - result = gtk_builder_add_objects_from_file ( - builder, ZENITY_UI_FILE_FULLPATH, objects, &error); + result = gtk_builder_add_objects_from_resource ( + builder, "/zenity.ui", objects, &error); g_strfreev (objects); if (result == 0) { - g_warning ("Could not load ui file %s: %s", - ZENITY_UI_FILE_FULLPATH, + g_warning ("Could not load ui data: %s", error->message); g_error_free (error); g_object_unref (builder); @@ -177,63 +164,6 @@ zenity_util_fill_file_buffer (GtkTextBuffer *buffer, const gchar *filename) { return TRUE; } -const gchar * -zenity_util_icon_name_from_filename (const gchar *filename) { - if (!filename || !filename[0]) - return "dialog-warning"; /* default */ - - if (!g_ascii_strcasecmp (filename, "warning")) - return "dialog-warning"; - if (!g_ascii_strcasecmp (filename, "info")) - return "dialog-information"; - if (!g_ascii_strcasecmp (filename, "question")) - return "dialog-question"; - if (!g_ascii_strcasecmp (filename, "error")) - return "dialog-error"; - return NULL; -} - -void -zenity_util_set_window_icon_from_file ( - GtkWidget *widget, const gchar *filename) { - GdkPixbuf *pixbuf; - const gchar *icon_name; - - icon_name = zenity_util_icon_name_from_filename (filename); - if (icon_name) { - gtk_window_set_icon_name (GTK_WINDOW (widget), icon_name); - } else { - pixbuf = gdk_pixbuf_new_from_file (filename, NULL); - gtk_window_set_icon (GTK_WINDOW (widget), pixbuf); - g_object_unref (pixbuf); - } -} - -void -zenity_util_set_window_icon ( - GtkWidget *widget, const gchar *filename, const gchar *default_file) { - GdkPixbuf *pixbuf; - - if (filename != NULL) { - zenity_util_set_window_icon_from_file (widget, filename); - } else { - pixbuf = gdk_pixbuf_new_from_file (default_file, NULL); - if (pixbuf != NULL) { - gtk_window_set_icon (GTK_WINDOW (widget), pixbuf); - g_object_unref (pixbuf); - } - } -} - -void -zenity_util_set_window_icon_from_icon_name ( - GtkWidget *widget, const gchar *filename, const gchar *default_icon_name) { - if (filename != NULL) - zenity_util_set_window_icon_from_file (widget, filename); - else - gtk_window_set_icon_name (GTK_WINDOW (widget), default_icon_name); -} - void zenity_util_show_help (GError **error) { gchar *tmp; diff --git a/src/util.h b/src/util.h index 3e5391b..3000e63 100644 --- a/src/util.h +++ b/src/util.h @@ -9,20 +9,11 @@ G_BEGIN_DECLS #define ZENITY_UI_FILE_FULLPATH ZENITY_DATADIR "/zenity.ui" #define ZENITY_UI_FILE_RELATIVEPATH "./zenity.ui" -#define ZENITY_IMAGE_FULLPATH(filename) (ZENITY_DATADIR "/" filename) - GtkBuilder *zenity_util_load_ui_file ( const gchar *widget_root, ...) G_GNUC_NULL_TERMINATED; gchar *zenity_util_strip_newline (gchar *string); gboolean zenity_util_fill_file_buffer ( GtkTextBuffer *buffer, const gchar *filename); -const gchar *zenity_util_icon_name_from_filename (const gchar *filename); -void zenity_util_set_window_icon ( - GtkWidget *widget, const gchar *filename, const gchar *default_file); -void zenity_util_set_window_icon_from_icon_name ( - GtkWidget *widget, const gchar *filename, const gchar *default_icon_name); -void zenity_util_set_window_icon_from_file ( - GtkWidget *widget, const gchar *filename); void zenity_util_show_help (GError **error); gint zenity_util_return_exit_code (ZenityExitCode value); void zenity_util_exit_code_with_data (ZenityExitCode value, ZenityData *data); diff --git a/src/zenity.h b/src/zenity.h index 404eec7..719a3ae 100644 --- a/src/zenity.h +++ b/src/zenity.h @@ -5,14 +5,6 @@ G_BEGIN_DECLS -#include -#define _(String) dgettext (GETTEXT_PACKAGE, String) -#ifdef gettext_noop -#define N_(String) gettext_noop (String) -#else -#define N_(String) (String) -#endif - typedef struct { gchar *dialog_title; gchar *window_icon; @@ -36,52 +28,6 @@ typedef enum { ZENITY_TIMEOUT } ZenityExitCode; -typedef struct { - gchar *dialog_text; - gint day; - gint month; - gint year; - gchar *date_format; -} ZenityCalendarData; - -typedef enum { - ZENITY_MSG_WARNING, - ZENITY_MSG_QUESTION, - ZENITY_MSG_SWITCH, - ZENITY_MSG_ERROR, - ZENITY_MSG_INFO -} MsgMode; - -typedef struct { - gchar *dialog_text; - gchar *dialog_icon; - MsgMode mode; - gboolean no_wrap; - gboolean no_markup; - gboolean default_cancel; - gboolean ellipsize; -} ZenityMsgData; - -typedef struct { - gchar *dialog_text; - gint value; - gint min_value; - gint max_value; - gint step; - gboolean print_partial; - gboolean hide_value; -} ZenityScaleData; - -typedef struct { - gchar *uri; - gboolean multi; - gboolean directory; - gboolean save; - gboolean confirm_overwrite; - gchar *separator; - gchar **filter; -} ZenityFileData; - typedef struct { gchar *dialog_text; gchar *entry_text; @@ -89,32 +35,6 @@ typedef struct { const gchar **data; } ZenityEntryData; -typedef struct { - gchar *dialog_text; - gchar *entry_text; - gboolean pulsate; - gboolean autoclose; - gboolean autokill; - gdouble percentage; - gboolean no_cancel; - gboolean time_remaining; -} ZenityProgressData; - -typedef struct { - gchar *uri; - gboolean editable; - gboolean no_wrap; - gboolean auto_scroll; - gchar *font; - GtkTextBuffer *buffer; - gchar *checkbox; -#ifdef HAVE_WEBKITGTK - gboolean html; - gboolean no_interaction; - gchar *url; -#endif -} ZenityTextData; - typedef struct { gchar *dialog_text; GSList *columns; @@ -131,73 +51,9 @@ typedef struct { const gchar **data; } ZenityTreeData; -#ifdef HAVE_LIBNOTIFY -typedef struct { - gchar *notification_text; - gboolean listen; - gchar **notification_hints; -} ZenityNotificationData; -#endif - -typedef struct { - gchar *color; - gboolean show_palette; -} ZenityColorData; - -typedef struct { - GSList *list; - GSList *list_widgets; - GSList *list_values; - GSList *column_values; - GSList *combo_values; - gchar *dialog_text; - gchar *separator; - gchar *date_format; - // gchar *hide_column; - gboolean show_header; -} ZenityFormsData; - -typedef enum { - ZENITY_FORMS_ENTRY, - ZENITY_FORMS_PASSWORD, - ZENITY_FORMS_CALENDAR, - ZENITY_FORMS_LIST, - ZENITY_FORMS_COMBO -} ZenityFormsType; - -typedef struct { - gchar *option_value; - ZenityFormsType type; - GtkWidget *forms_widget; -} ZenityFormsValue; - -typedef struct { - gboolean username; - gchar *password; - GtkWidget *entry_username; - GtkWidget *entry_password; -} ZenityPasswordData; - -void zenity_calendar (ZenityData *data, ZenityCalendarData *calendar_data); -void zenity_msg (ZenityData *data, ZenityMsgData *msg_data); -void zenity_fileselection (ZenityData *data, ZenityFileData *file_data); void zenity_entry (ZenityData *data, ZenityEntryData *entry_data); -void zenity_progress (ZenityData *data, ZenityProgressData *progress_data); -void zenity_text (ZenityData *data, ZenityTextData *text_data); void zenity_tree (ZenityData *data, ZenityTreeData *tree_data); -#ifdef HAVE_LIBNOTIFY -void zenity_notification ( - ZenityData *data, ZenityNotificationData *notification_data); -#endif -void zenity_colorselection ( - ZenityData *data, ZenityColorData *notification_data); -void zenity_scale (ZenityData *data, ZenityScaleData *scale_data); -void zenity_about (ZenityData *data); - -void zenity_password_dialog ( - ZenityData *data, ZenityPasswordData *password_data); -void zenity_forms_dialog (ZenityData *data, ZenityFormsData *forms_data); G_END_DECLS #endif /* ZENITY_H */ diff --git a/src/zenity.ui b/src/zenity.ui index 1359442..0678983 100644 --- a/src/zenity.ui +++ b/src/zenity.ui @@ -2,359 +2,6 @@ - - 100 - 1 - 1 - - - True - False - 5 - Adjust the scale value - 300 - 100 - dialog - - - - True - False - - - True - False - end - - - Cancel - True - True - True - False - - - False - False - 0 - - - - - OK - True - True - True - False - - - False - False - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - vertical - 6 - - - True - False - 4 - Adjust the scale value - 0 - - - False - False - 0 - - - - - True - True - adjustment1 - 0 - right - - - True - True - 1 - - - - - False - True - 1 - - - - - - zenity_scale_cancel_button - zenity_scale_ok_button - - - - - False - 5 - Text View - center - 300 - 200 - dialog - - - - True - False - 2 - - - True - False - end - - - Cancel - True - True - False - - - False - False - 0 - - - - - OK - True - True - True - True - right - - - - False - False - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - vertical - - - True - True - etched-in - - - True - True - 2 - 2 - False - word - 2 - 2 - textbuffer1 - - - - - True - True - 0 - - - - - True - False - 0.5 - True - - - False - False - 1 - - - - - True - True - 1 - - - - - - zenity_text_cancel_button - zenity_text_close_button - - - - False - 5 - Calendar selection - center - dialog - - - - True - False - 2 - - - True - False - end - - - Cancel - True - True - True - False - - - False - False - 0 - - - - - OK - True - True - True - True - False - - - False - False - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - vertical - 6 - - - True - False - 6 - - - True - False - Select a date from below. - True - 0 - - - False - False - 0 - - - - - True - True - 0 - - - - - True - False - C_alendar: - True - zenity_calendar - 0 - - - - - - False - False - 1 - - - - - True - True - - - False - False - 2 - - - - - False - True - 1 - - - - - - zenity_calendar_cancel_button - zenity_calendar_ok_button - - False 5 @@ -459,494 +106,6 @@ zenity_entry_ok_button - - False - 5 - Error - center - dialog - - - - True - False - 14 - - - True - False - end - - - OK - True - True - True - False - - - False - False - 0 - - - - - False - True - end - 0 - - - - - True - False - 6 - - - True - False - 5 - 12 - - - True - False - 0 - dialog-error - 6 - - - False - False - 0 - - - - - True - True - An error has occurred. - True - True - 0 - - - False - False - 1 - - - - - True - True - 0 - - - - - False - True - 1 - - - - - - zenity_error_ok_button - - - - False - 5 - center - normal - - - True - False - 2 - - - True - False - end - - - Cancel - True - True - True - - - False - False - 0 - - - - - OK - True - True - True - - - False - False - 1 - - - - - False - True - end - 0 - - - - - True - False - 0 - - - True - False - 12 - 6 - 12 - 6 - 6 - 10 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - False - Forms dialog - - - - - - - - False - True - 1 - - - - - - zenity_forms_cancel_button - zenity_forms_ok_button - - - - False - 5 - Information - center - dialog - - - - True - False - 14 - - - True - False - end - - - OK - True - True - True - False - - - False - False - 0 - - - - - False - True - end - 0 - - - - - True - False - 5 - 12 - - - True - False - 0 - dialog-information - 6 - - - False - False - 0 - - - - - True - True - All updates are complete. - True - True - 0 - - - False - False - 1 - - - - - False - True - 1 - - - - - - zenity_info_ok_button - - - - False - 5 - Progress - center - dialog - - - - True - False - 2 - - - True - False - end - - - Cancel - True - True - True - False - - - False - False - 0 - - - - - OK - True - False - True - True - True - False - - - False - False - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - vertical - 6 - - - True - False - Running... - True - 0 - - - False - False - 0 - - - - - True - False - 0.10000000149 - - - False - False - 1 - - - - - True - False - 0 - - - False - False - 2 - - - - - False - False - 1 - - - - - - zenity_progress_cancel_button - zenity_progress_ok_button - - - - False - 5 - Question - center - dialog - - - - True - False - 14 - - - True - False - end - - - False - True - end - 0 - - - - - True - False - 5 - 12 - - - True - False - 0 - 0 - dialog-question - 6 - - - False - True - 0 - - - - - True - True - Are you sure you want to proceed? - True - True - 0 - - - False - False - 1 - - - - - False - True - 1 - - - - - False 5 @@ -1058,93 +217,4 @@ zenity_tree_ok_button - - False - 5 - Warning - center - dialog - - - - True - False - 14 - - - True - False - end - - - OK - True - True - True - True - False - - - False - False - 0 - - - - - False - True - end - 0 - - - - - True - False - 5 - 12 - - - True - False - 0 - 0 - dialog-warning - 6 - - - False - True - 0 - - - - - True - True - Are you sure you want to proceed? - True - True - 0 - - - False - False - 1 - - - - - False - True - 1 - - - - - - zenity_warning_ok_button - -