From: Michael R Sweet Date: Fri, 18 Oct 2024 21:14:22 +0000 (-0400) Subject: Dump remainder of old macOS localization support. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37db6e2626959075b2a8086f0715c7f7271cace1;p=thirdparty%2Fcups.git Dump remainder of old macOS localization support. --- diff --git a/Makedefs.in b/Makedefs.in index 59e095ad3b..27de43b26f 100644 --- a/Makedefs.in +++ b/Makedefs.in @@ -77,8 +77,6 @@ CUPS_LOG_FILE_PERM = @CUPS_LOG_FILE_PERM@ # LANGUAGES = @LANGUAGES@ -INSTALL_LANGUAGES = @INSTALL_LANGUAGES@ -UNINSTALL_LANGUAGES = @UNINSTALL_LANGUAGES@ # # Cross-compilation support: "local" target is used for any tools that are @@ -216,7 +214,6 @@ top_srcdir = @top_srcdir@ BUILDROOT = $(DSTROOT)$(DESTDIR) BINDIR = $(BUILDROOT)@bindir@ -BUNDLEDIR = @CUPS_BUNDLEDIR@ CACHEDIR = $(BUILDROOT)@CUPS_CACHEDIR@ DATADIR = $(BUILDROOT)@CUPS_DATADIR@ DOCDIR = $(BUILDROOT)@CUPS_DOCROOT@ @@ -232,7 +229,6 @@ RCLEVELS = @RCLEVELS@ RCSTART = @RCSTART@ RCSTOP = @RCSTOP@ REQUESTS = $(BUILDROOT)@CUPS_REQUESTS@ -RESOURCEDIR = @CUPS_RESOURCEDIR@ SBINDIR = $(BUILDROOT)@sbindir@ SERVERBIN = $(BUILDROOT)@CUPS_SERVERBIN@ SERVERROOT = $(BUILDROOT)@CUPS_SERVERROOT@ diff --git a/config-scripts/cups-defaults.m4 b/config-scripts/cups-defaults.m4 index 27e5bc4727..c9608c5bdb 100644 --- a/config-scripts/cups-defaults.m4 +++ b/config-scripts/cups-defaults.m4 @@ -25,40 +25,6 @@ AC_ARG_WITH([languages], AS_HELP_STRING([--with-languages], [set installed langu ]) AC_SUBST([LANGUAGES]) -dnl macOS bundle-based localization support -AC_ARG_WITH([bundledir], AS_HELP_STRING([--with-bundledir], [set localization bundle directory]), [ - CUPS_BUNDLEDIR="$withval" -], [ - AS_IF([test "x$host_os_name" = xdarwin -a $host_os_version -ge 100], [ - CUPS_BUNDLEDIR="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A" - LANGUAGES="" - ], [ - CUPS_BUNDLEDIR="" - ]) -]) - -AC_SUBST([CUPS_BUNDLEDIR]) -AS_IF([test "x$CUPS_BUNDLEDIR" != x], [ - AC_DEFINE_UNQUOTED([CUPS_BUNDLEDIR], ["$CUPS_BUNDLEDIR"], [macOS bundle directory.]) -]) - -AC_ARG_WITH([bundlelang], AS_HELP_STRING([--with-bundlelang], [set localization bundle base language (English or en)]), [ - cups_bundlelang="$withval" -], [ - AS_IF([test $host_os_version -ge 190], [ - cups_bundlelang="en" - ], [ - cups_bundlelang="English" - ]) -]) - -AS_IF([test "x$cups_bundlelang" != x -a "x$CUPS_BUNDLEDIR" != x], [ - CUPS_RESOURCEDIR="$CUPS_BUNDLEDIR/Resources/$cups_bundlelang.lproj" -], [ - CUPS_RESOURCEDIR="" -]) -AC_SUBST([CUPS_RESOURCEDIR]) - dnl Default executable file permissions AC_ARG_WITH([exe_file_perm], AS_HELP_STRING([--with-exe-file-perm], [set default executable permissions value, default=0755]), [ CUPS_EXE_FILE_PERM="$withval" diff --git a/config.h.in b/config.h.in index 6dc6ef49c5..5731867913 100644 --- a/config.h.in +++ b/config.h.in @@ -558,13 +558,6 @@ #undef HAVE_SYS_VFS_H -/* - * Location of macOS localization bundle, if any. - */ - -#undef CUPS_BUNDLEDIR - - /* * Do we have XPC? */ diff --git a/configure b/configure index 19304377ac..dfcd416c8b 100755 --- a/configure +++ b/configure @@ -680,8 +680,6 @@ CUPS_LOG_FILE_PERM CUPS_CUPSD_FILE_PERM CUPS_CONFIG_FILE_PERM CUPS_EXE_FILE_PERM -CUPS_RESOURCEDIR -CUPS_BUNDLEDIR LANGUAGES XINETD RCSTOP @@ -914,8 +912,6 @@ with_rcstart with_rcstop with_xinetd with_languages -with_bundledir -with_bundlelang with_exe_file_perm with_config_file_perm with_cupsd_file_perm @@ -1648,9 +1644,6 @@ Optional Packages: --with-rcstop set stop number for rc scripts --with-xinetd set path for xinetd config files --with-languages set installed languages, default=all - --with-bundledir set localization bundle directory - --with-bundlelang set localization bundle base language (English or - en) --with-exe-file-perm set default executable permissions value, default=0755 --with-config-file-perm set default ConfigFilePerm value, default=0640 @@ -11080,75 +11073,6 @@ fi -# Check whether --with-bundledir was given. -if test ${with_bundledir+y} -then : - withval=$with_bundledir; - CUPS_BUNDLEDIR="$withval" - -else $as_nop - - if test "x$host_os_name" = xdarwin -a $host_os_version -ge 100 -then : - - CUPS_BUNDLEDIR="/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A" - LANGUAGES="" - -else $as_nop - - CUPS_BUNDLEDIR="" - -fi - -fi - - - -if test "x$CUPS_BUNDLEDIR" != x -then : - - -printf "%s\n" "#define CUPS_BUNDLEDIR \"$CUPS_BUNDLEDIR\"" >>confdefs.h - - -fi - - -# Check whether --with-bundlelang was given. -if test ${with_bundlelang+y} -then : - withval=$with_bundlelang; - cups_bundlelang="$withval" - -else $as_nop - - if test $host_os_version -ge 190 -then : - - cups_bundlelang="en" - -else $as_nop - - cups_bundlelang="English" - -fi - -fi - - -if test "x$cups_bundlelang" != x -a "x$CUPS_BUNDLEDIR" != x -then : - - CUPS_RESOURCEDIR="$CUPS_BUNDLEDIR/Resources/$cups_bundlelang.lproj" - -else $as_nop - - CUPS_RESOURCEDIR="" - -fi - - - # Check whether --with-exe_file_perm was given. if test ${with_exe_file_perm+y} then : diff --git a/locale/Dependencies b/locale/Dependencies index c48bec3293..f5334886f8 100644 --- a/locale/Dependencies +++ b/locale/Dependencies @@ -3,54 +3,5 @@ checkpo.o: checkpo.c ../cups/cups-private.h ../cups/string-private.h \ ../cups/debug-private.h ../cups/ipp-private.h ../cups/cups.h \ ../cups/file.h ../cups/ipp.h ../cups/http.h ../cups/array.h \ ../cups/language.h ../cups/pwg.h ../cups/http-private.h \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \ - ../cups/thread.h -po2strings.o: po2strings.c ../cups/cups-private.h \ - ../cups/string-private.h ../config.h ../cups/base.h \ - ../cups/debug-internal.h ../cups/debug-private.h ../cups/ipp-private.h \ - ../cups/cups.h ../cups/file.h ../cups/ipp.h ../cups/http.h \ - ../cups/array.h ../cups/language.h ../cups/pwg.h \ - ../cups/http-private.h \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \ ../cups/thread.h diff --git a/locale/Makefile b/locale/Makefile index 4fd250c5fc..a78bd651a4 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -12,8 +12,8 @@ include ../Makedefs -OBJS = checkpo.o po2strings.o -TARGETS = checkpo po2strings +OBJS = checkpo.o +TARGETS = checkpo # @@ -64,9 +64,7 @@ install: all install-data install-headers install-libs install-exec # Install data files... # -install-data: $(INSTALL_LANGUAGES) - -install-languages: +install-data: $(INSTALL_DIR) -m 755 $(LOCALEDIR) for loc in en $(LANGUAGES) ; do \ if test -f cups_$$loc.po; then \ @@ -75,10 +73,6 @@ install-languages: fi ; \ done -install-langbundle: - $(INSTALL_DIR) -m 755 "$(BUILDROOT)$(RESOURCEDIR)" - $(INSTALL_DATA) cups.strings "$(BUILDROOT)$(RESOURCEDIR)" - # # Install programs... @@ -105,16 +99,11 @@ install-libs: # Uninstall files... # -uninstall: $(UNINSTALL_LANGUAGES) - -uninstall-languages: +uninstall: -for loc in en $(LANGUAGES) ; do \ $(RM) $(LOCALEDIR)/$$loc/cups_$$loc.po ; \ done -uninstall-langbundle: - $(RM) "$(BUILDROOT)$(RESOURCEDIR)/cups.strings" - # # pot - Creates/updates the cups.pot template file, merges changes into existing @@ -143,12 +132,6 @@ pot: checkpo po2strings echo Merging changes into $$loc... ; \ msgmerge -o $$loc -s -N --no-location $$loc cups.pot ; \ done - echo Updating cups.strings... - ./po2strings cups_en.po cups.strings - -cups.strings: cups_en.po po2strings - echo Updating cups.strings... - ./po2strings cups_en.po cups.strings # @@ -168,20 +151,6 @@ checkall: checkpo ./checkpo *.po *.strings -# -# po2strings - A simple utility which uses iconv to convert GNU gettext -# message catalogs to macOS .strings files. -# -# po2strings filename.po filename.strings -# - -po2strings: po2strings.o ../cups/$(LIBCUPSSTATIC) - echo Linking $@... - $(LD_CC) $(ARCHFLAGS) $(ALL_LDFLAGS) -o po2strings po2strings.o \ - $(LINKCUPSSTATIC) - $(CODE_SIGN) -s "$(CODE_SIGN_IDENTITY)" $@ - - # # Dependencies... # diff --git a/locale/cups.strings b/locale/cups.strings deleted file mode 100644 index d17edfe8a2..0000000000 --- a/locale/cups.strings +++ /dev/null @@ -1,6316 +0,0 @@ -"\t\t(all)" = "\t\t(all)"; -"\t\t(none)" = "\t\t(none)"; -"\t%d entries" = "\t%d entries"; -"\t%s" = "\t%s"; -"\tAfter fault: continue" = "\tAfter fault: continue"; -"\tAlerts: %s" = "\tAlerts: %s"; -"\tBanner required" = "\tBanner required"; -"\tCharset sets:" = "\tCharset sets:"; -"\tConnection: direct" = "\tConnection: direct"; -"\tConnection: remote" = "\tConnection: remote"; -"\tContent types: any" = "\tContent types: any"; -"\tDefault page size:" = "\tDefault page size:"; -"\tDefault pitch:" = "\tDefault pitch:"; -"\tDefault port settings:" = "\tDefault port settings:"; -"\tDescription: %s" = "\tDescription: %s"; -"\tForm mounted:" = "\tForm mounted:"; -"\tForms allowed:" = "\tForms allowed:"; -"\tInterface: %s.ppd" = "\tInterface: %s.ppd"; -"\tInterface: %s/ppd/%s.ppd" = "\tInterface: %s/ppd/%s.ppd"; -"\tLocation: %s" = "\tLocation: %s"; -"\tOn fault: no alert" = "\tOn fault: no alert"; -"\tPrinter types: unknown" = "\tPrinter types: unknown"; -"\tStatus: %s" = "\tStatus: %s"; -"\tUsers allowed:" = "\tUsers allowed:"; -"\tUsers denied:" = "\tUsers denied:"; -"\tdaemon present" = "\tdaemon present"; -"\tno entries" = "\tno entries"; -"\tprinter is on device '%s' speed -1" = "\tprinter is on device ‘%s’ speed -1"; -"\tprinting is disabled" = "\tprinting is disabled"; -"\tprinting is enabled" = "\tprinting is enabled"; -"\tqueued for %s" = "\tqueued for %s"; -"\tqueuing is disabled" = "\tqueuing is disabled"; -"\tqueuing is enabled" = "\tqueuing is enabled"; -"\treason unknown" = "\treason unknown"; -"\n DETAILED CONFORMANCE TEST RESULTS" = "\n DETAILED CONFORMANCE TEST RESULTS"; -" REF: Page 15, section 3.1." = " REF: Page 15, section 3.1."; -" REF: Page 15, section 3.2." = " REF: Page 15, section 3.2."; -" REF: Page 19, section 3.3." = " REF: Page 19, section 3.3."; -" REF: Page 20, section 3.4." = " REF: Page 20, section 3.4."; -" REF: Page 27, section 3.5." = " REF: Page 27, section 3.5."; -" REF: Page 42, section 5.2." = " REF: Page 42, section 5.2."; -" REF: Pages 16-17, section 3.2." = " REF: Pages 16-17, section 3.2."; -" REF: Pages 42-45, section 5.2." = " REF: Pages 42-45, section 5.2."; -" REF: Pages 45-46, section 5.2." = " REF: Pages 45-46, section 5.2."; -" REF: Pages 48-49, section 5.2." = " REF: Pages 48-49, section 5.2."; -" REF: Pages 52-54, section 5.2." = " REF: Pages 52-54, section 5.2."; -" %-39.39s %.0f bytes" = " %-39.39s %.0f bytes"; -" PASS Default%s" = " PASS Default%s"; -" PASS DefaultImageableArea" = " PASS DefaultImageableArea"; -" PASS DefaultPaperDimension" = " PASS DefaultPaperDimension"; -" PASS FileVersion" = " PASS FileVersion"; -" PASS FormatVersion" = " PASS FormatVersion"; -" PASS LanguageEncoding" = " PASS LanguageEncoding"; -" PASS LanguageVersion" = " PASS LanguageVersion"; -" PASS Manufacturer" = " PASS Manufacturer"; -" PASS ModelName" = " PASS ModelName"; -" PASS NickName" = " PASS NickName"; -" PASS PCFileName" = " PASS PCFileName"; -" PASS PSVersion" = " PASS PSVersion"; -" PASS PageRegion" = " PASS PageRegion"; -" PASS PageSize" = " PASS PageSize"; -" PASS Product" = " PASS Product"; -" PASS ShortNickName" = " PASS ShortNickName"; -" WARN %s has no corresponding options." = " WARN %s has no corresponding options."; -" WARN %s shares a common prefix with %s\n REF: Page 15, section 3.2." = " WARN %s shares a common prefix with %s\n REF: Page 15, section 3.2."; -" WARN Duplex option keyword %s may not work as expected and should be named Duplex.\n REF: Page 122, section 5.17" = " WARN Duplex option keyword %s may not work as expected and should be named Duplex.\n REF: Page 122, section 5.17"; -" WARN File contains a mix of CR, LF, and CR LF line endings." = " WARN File contains a mix of CR, LF, and CR LF line endings."; -" WARN LanguageEncoding required by PPD 4.3 spec.\n REF: Pages 56-57, section 5.3." = " WARN LanguageEncoding required by PPD 4.3 spec.\n REF: Pages 56-57, section 5.3."; -" WARN Line %d only contains whitespace." = " WARN Line %d only contains whitespace."; -" WARN Manufacturer required by PPD 4.3 spec.\n REF: Pages 58-59, section 5.3." = " WARN Manufacturer required by PPD 4.3 spec.\n REF: Pages 58-59, section 5.3."; -" WARN Non-Windows PPD files should use lines ending with only LF, not CR LF." = " WARN Non-Windows PPD files should use lines ending with only LF, not CR LF."; -" WARN Obsolete PPD version %.1f.\n REF: Page 42, section 5.2." = " WARN Obsolete PPD version %.1f.\n REF: Page 42, section 5.2."; -" WARN PCFileName longer than 8.3 in violation of PPD spec.\n REF: Pages 61-62, section 5.3." = " WARN PCFileName longer than 8.3 in violation of PPD spec.\n REF: Pages 61-62, section 5.3."; -" WARN PCFileName should contain a unique filename.\n REF: Pages 61-62, section 5.3." = " WARN PCFileName should contain a unique filename.\n REF: Pages 61-62, section 5.3."; -" WARN Protocols contains PJL but JCL attributes are not set.\n REF: Pages 78-79, section 5.7." = " WARN Protocols contains PJL but JCL attributes are not set.\n REF: Pages 78-79, section 5.7."; -" WARN Protocols contains both PJL and BCP; expected TBCP.\n REF: Pages 78-79, section 5.7." = " WARN Protocols contains both PJL and BCP; expected TBCP.\n REF: Pages 78-79, section 5.7."; -" WARN ShortNickName required by PPD 4.3 spec.\n REF: Pages 64-65, section 5.3." = " WARN ShortNickName required by PPD 4.3 spec.\n REF: Pages 64-65, section 5.3."; -" %s \"%s %s\" conflicts with \"%s %s\"\n (constraint=\"%s %s %s %s\")." = " %s “%s %s” conflicts with “%s %s”\n (constraint=“%s %s %s %s”)."; -" %s %s %s does not exist." = " %s %s %s does not exist."; -" %s %s file \"%s\" has the wrong capitalization." = " %s %s file “%s” has the wrong capitalization."; -" %s Bad %s choice %s.\n REF: Page 122, section 5.17" = " %s Bad %s choice %s.\n REF: Page 122, section 5.17"; -" %s Bad UTF-8 \"%s\" translation string for option %s, choice %s." = " %s Bad UTF-8 “%s” translation string for option %s, choice %s."; -" %s Bad UTF-8 \"%s\" translation string for option %s." = " %s Bad UTF-8 “%s” translation string for option %s."; -" %s Bad cupsFilter value \"%s\"." = " %s Bad cupsFilter value “%s”."; -" %s Bad cupsFilter2 value \"%s\"." = " %s Bad cupsFilter2 value “%s”."; -" %s Bad cupsICCProfile %s." = " %s Bad cupsICCProfile %s."; -" %s Bad cupsPreFilter value \"%s\"." = " %s Bad cupsPreFilter value “%s”."; -" %s Bad cupsUIConstraints %s: \"%s\"" = " %s Bad cupsUIConstraints %s: “%s”"; -" %s Bad language \"%s\"." = " %s Bad language “%s”."; -" %s Bad permissions on %s file \"%s\"." = " %s Bad permissions on %s file “%s”."; -" %s Bad spelling of %s - should be %s." = " %s Bad spelling of %s - should be %s."; -" %s Cannot provide both APScanAppPath and APScanAppBundleID." = " %s Cannot provide both APScanAppPath and APScanAppBundleID."; -" %s Default choices conflicting." = " %s Default choices conflicting."; -" %s Empty cupsUIConstraints %s" = " %s Empty cupsUIConstraints %s"; -" %s Missing \"%s\" translation string for option %s, choice %s." = " %s Missing “%s” translation string for option %s, choice %s."; -" %s Missing \"%s\" translation string for option %s." = " %s Missing “%s” translation string for option %s."; -" %s Missing %s file \"%s\"." = " %s Missing %s file “%s”."; -" %s Missing REQUIRED PageRegion option.\n REF: Page 100, section 5.14." = " %s Missing REQUIRED PageRegion option.\n REF: Page 100, section 5.14."; -" %s Missing REQUIRED PageSize option.\n REF: Page 99, section 5.14." = " %s Missing REQUIRED PageSize option.\n REF: Page 99, section 5.14."; -" %s Missing choice *%s %s in UIConstraints \"*%s %s *%s %s\"." = " %s Missing choice *%s %s in UIConstraints “*%s %s *%s %s”."; -" %s Missing choice *%s %s in cupsUIConstraints %s: \"%s\"" = " %s Missing choice *%s %s in cupsUIConstraints %s: “%s”"; -" %s Missing cupsUIResolver %s" = " %s Missing cupsUIResolver %s"; -" %s Missing option %s in UIConstraints \"*%s %s *%s %s\"." = " %s Missing option %s in UIConstraints “*%s %s *%s %s”."; -" %s Missing option %s in cupsUIConstraints %s: \"%s\"" = " %s Missing option %s in cupsUIConstraints %s: “%s”"; -" %s No base translation \"%s\" is included in file." = " %s No base translation “%s” is included in file."; -" %s REQUIRED %s does not define choice None.\n REF: Page 122, section 5.17" = " %s REQUIRED %s does not define choice None.\n REF: Page 122, section 5.17"; -" %s Size \"%s\" defined for %s but not for %s." = " %s Size “%s” defined for %s but not for %s."; -" %s Size \"%s\" has unexpected dimensions (%gx%g)." = " %s Size “%s” has unexpected dimensions (%gx%g)."; -" %s Size \"%s\" should be \"%s\"." = " %s Size “%s” should be “%s”."; -" %s Size \"%s\" should be the Adobe standard name \"%s\"." = " %s Size “%s” should be the Adobe standard name “%s”."; -" %s cupsICCProfile %s hash value collides with %s." = " %s cupsICCProfile %s hash value collides with %s."; -" %s cupsUIResolver %s causes a loop." = " %s cupsUIResolver %s causes a loop."; -" %s cupsUIResolver %s does not list at least two different options." = " %s cupsUIResolver %s does not list at least two different options."; -" **FAIL** %s must be 1284DeviceID\n REF: Page 72, section 5.5" = " **FAIL** %s must be 1284DeviceID\n REF: Page 72, section 5.5"; -" **FAIL** Bad Default%s %s\n REF: Page 40, section 4.5." = " **FAIL** Bad Default%s %s\n REF: Page 40, section 4.5."; -" **FAIL** Bad DefaultImageableArea %s\n REF: Page 102, section 5.15." = " **FAIL** Bad DefaultImageableArea %s\n REF: Page 102, section 5.15."; -" **FAIL** Bad DefaultPaperDimension %s\n REF: Page 103, section 5.15." = " **FAIL** Bad DefaultPaperDimension %s\n REF: Page 103, section 5.15."; -" **FAIL** Bad FileVersion \"%s\"\n REF: Page 56, section 5.3." = " **FAIL** Bad FileVersion “%s”\n REF: Page 56, section 5.3."; -" **FAIL** Bad FormatVersion \"%s\"\n REF: Page 56, section 5.3." = " **FAIL** Bad FormatVersion “%s”\n REF: Page 56, section 5.3."; -" **FAIL** Bad JobPatchFile attribute in file\n REF: Page 24, section 3.4." = " **FAIL** Bad JobPatchFile attribute in file\n REF: Page 24, section 3.4."; -" **FAIL** Bad LanguageEncoding %s - must be ISOLatin1." = " **FAIL** Bad LanguageEncoding %s - must be ISOLatin1."; -" **FAIL** Bad LanguageVersion %s - must be English." = " **FAIL** Bad LanguageVersion %s - must be English."; -" **FAIL** Bad Manufacturer (should be \"%s\")\n REF: Page 211, table D.1." = " **FAIL** Bad Manufacturer (should be “%s”)\n REF: Page 211, table D.1."; -" **FAIL** Bad ModelName - \"%c\" not allowed in string.\n REF: Pages 59-60, section 5.3." = " **FAIL** Bad ModelName - “%c” not allowed in string.\n REF: Pages 59-60, section 5.3."; -" **FAIL** Bad PSVersion - not \"(string) int\".\n REF: Pages 62-64, section 5.3." = " **FAIL** Bad PSVersion - not “(string) int”.\n REF: Pages 62-64, section 5.3."; -" **FAIL** Bad Product - not \"(string)\".\n REF: Page 62, section 5.3." = " **FAIL** Bad Product - not “(string)”.\n REF: Page 62, section 5.3."; -" **FAIL** Bad ShortNickName - longer than 31 chars.\n REF: Pages 64-65, section 5.3." = " **FAIL** Bad ShortNickName - longer than 31 chars.\n REF: Pages 64-65, section 5.3."; -" **FAIL** Bad option %s choice %s\n REF: Page 84, section 5.9" = " **FAIL** Bad option %s choice %s\n REF: Page 84, section 5.9"; -" **FAIL** Default option code cannot be interpreted: %s" = " **FAIL** Default option code cannot be interpreted: %s"; -" **FAIL** Default translation string for option %s choice %s contains 8-bit characters." = " **FAIL** Default translation string for option %s choice %s contains 8-bit characters."; -" **FAIL** Default translation string for option %s contains 8-bit characters." = " **FAIL** Default translation string for option %s contains 8-bit characters."; -" **FAIL** Group names %s and %s differ only by case." = " **FAIL** Group names %s and %s differ only by case."; -" **FAIL** Multiple occurrences of option %s choice name %s." = " **FAIL** Multiple occurrences of option %s choice name %s."; -" **FAIL** Option %s choice names %s and %s differ only by case." = " **FAIL** Option %s choice names %s and %s differ only by case."; -" **FAIL** Option names %s and %s differ only by case." = " **FAIL** Option names %s and %s differ only by case."; -" **FAIL** REQUIRED Default%s\n REF: Page 40, section 4.5." = " **FAIL** REQUIRED Default%s\n REF: Page 40, section 4.5."; -" **FAIL** REQUIRED DefaultImageableArea\n REF: Page 102, section 5.15." = " **FAIL** REQUIRED DefaultImageableArea\n REF: Page 102, section 5.15."; -" **FAIL** REQUIRED DefaultPaperDimension\n REF: Page 103, section 5.15." = " **FAIL** REQUIRED DefaultPaperDimension\n REF: Page 103, section 5.15."; -" **FAIL** REQUIRED FileVersion\n REF: Page 56, section 5.3." = " **FAIL** REQUIRED FileVersion\n REF: Page 56, section 5.3."; -" **FAIL** REQUIRED FormatVersion\n REF: Page 56, section 5.3." = " **FAIL** REQUIRED FormatVersion\n REF: Page 56, section 5.3."; -" **FAIL** REQUIRED ImageableArea for PageSize %s\n REF: Page 41, section 5.\n REF: Page 102, section 5.15." = " **FAIL** REQUIRED ImageableArea for PageSize %s\n REF: Page 41, section 5.\n REF: Page 102, section 5.15."; -" **FAIL** REQUIRED LanguageEncoding\n REF: Pages 56-57, section 5.3." = " **FAIL** REQUIRED LanguageEncoding\n REF: Pages 56-57, section 5.3."; -" **FAIL** REQUIRED LanguageVersion\n REF: Pages 57-58, section 5.3." = " **FAIL** REQUIRED LanguageVersion\n REF: Pages 57-58, section 5.3."; -" **FAIL** REQUIRED Manufacturer\n REF: Pages 58-59, section 5.3." = " **FAIL** REQUIRED Manufacturer\n REF: Pages 58-59, section 5.3."; -" **FAIL** REQUIRED ModelName\n REF: Pages 59-60, section 5.3." = " **FAIL** REQUIRED ModelName\n REF: Pages 59-60, section 5.3."; -" **FAIL** REQUIRED NickName\n REF: Page 60, section 5.3." = " **FAIL** REQUIRED NickName\n REF: Page 60, section 5.3."; -" **FAIL** REQUIRED PCFileName\n REF: Pages 61-62, section 5.3." = " **FAIL** REQUIRED PCFileName\n REF: Pages 61-62, section 5.3."; -" **FAIL** REQUIRED PSVersion\n REF: Pages 62-64, section 5.3." = " **FAIL** REQUIRED PSVersion\n REF: Pages 62-64, section 5.3."; -" **FAIL** REQUIRED PageRegion\n REF: Page 100, section 5.14." = " **FAIL** REQUIRED PageRegion\n REF: Page 100, section 5.14."; -" **FAIL** REQUIRED PageSize\n REF: Page 41, section 5.\n REF: Page 99, section 5.14." = " **FAIL** REQUIRED PageSize\n REF: Page 41, section 5.\n REF: Page 99, section 5.14."; -" **FAIL** REQUIRED PageSize\n REF: Pages 99-100, section 5.14." = " **FAIL** REQUIRED PageSize\n REF: Pages 99-100, section 5.14."; -" **FAIL** REQUIRED PaperDimension for PageSize %s\n REF: Page 41, section 5.\n REF: Page 103, section 5.15." = " **FAIL** REQUIRED PaperDimension for PageSize %s\n REF: Page 41, section 5.\n REF: Page 103, section 5.15."; -" **FAIL** REQUIRED Product\n REF: Page 62, section 5.3." = " **FAIL** REQUIRED Product\n REF: Page 62, section 5.3."; -" **FAIL** REQUIRED ShortNickName\n REF: Page 64-65, section 5.3." = " **FAIL** REQUIRED ShortNickName\n REF: Page 64-65, section 5.3."; -" **FAIL** Unable to open PPD file - %s on line %d." = " **FAIL** Unable to open PPD file - %s on line %d."; -" %d ERRORS FOUND" = " %d ERRORS FOUND"; -" NO ERRORS FOUND" = " NO ERRORS FOUND"; -" --cr End lines with CR (Mac OS 9)." = " --cr End lines with CR (Mac OS 9)."; -" --crlf End lines with CR + LF (Windows)." = " --crlf End lines with CR + LF (Windows)."; -" --lf End lines with LF (UNIX/Linux/macOS)." = " --lf End lines with LF (UNIX/Linux/macOS)."; -" --list-all List all filters with the MIME media types." = " --list-all List all filters with the MIME media types."; -" --list-filters List filters that will be used." = " --list-filters List filters that will be used."; -" -D Remove the input file when finished." = " -D Remove the input file when finished."; -" -D name=value Set named variable to value." = " -D name=value Set named variable to value."; -" -I include-dir Add include directory to search path." = " -I include-dir Add include directory to search path."; -" -P FILENAME.ppd Set PPD file." = " -P FILENAME.ppd Set PPD file."; -" -U USERNAME Specify username." = " -U USERNAME Specify username."; -" -c catalog.po Load the specified message catalog." = " -c catalog.po Load the specified message catalog."; -" -c cups-files.conf Set cups-files.conf file to use." = " -c cups-files.conf Set cups-files.conf file to use."; -" -d PRINTER Use the named printer." = " -d PRINTER Use the named printer."; -" -d output-dir Specify the output directory." = " -d output-dir Specify the output directory."; -" -e Use every filter from the PPD file." = " -e Use every filter from the PPD file."; -" -i MIME/TYPE Set input MIME type (otherwise auto-typed)." = " -i MIME/TYPE Set input MIME type (otherwise auto-typed)."; -" -j JOB-ID[,N] Filter file N from the specified job (default is file 1)." = " -j JOB-ID[,N] Filter file N from the specified job (default is file 1)."; -" -l lang[,lang,...] Specify the output language(s) (locale)." = " -l lang[,lang,…] Specify the output language(s) (locale)."; -" -m Use the ModelName value as the filename." = " -m Use the ModelName value as the filename."; -" -m MIME/TYPE Set output MIME type (otherwise application/pdf)." = " -m MIME/TYPE Set output MIME type (otherwise application/pdf)."; -" -n COPIES Set number of copies." = " -n COPIES Set number of copies."; -" -o NAME=VALUE Set option(s)." = " -o NAME=VALUE Set option(s)."; -" -o filename.drv Set driver information file (otherwise ppdi.drv)." = " -o filename.drv Set driver information file (otherwise ppdi.drv)."; -" -o filename.ppd[.gz] Set output file (otherwise stdout)." = " -o filename.ppd[.gz] Set output file (otherwise stdout)."; -" -p FILENAME.ppd Set PPD file." = " -p FILENAME.ppd Set PPD file."; -" -t Test PPDs instead of generating them." = " -t Test PPDs instead of generating them."; -" -t TITLE Set title." = " -t TITLE Set title."; -" -u Remove the PPD file when finished." = " -u Remove the PPD file when finished."; -" -v Be verbose." = " -v Be verbose."; -" -z Compress PPD files using GNU zip." = " -z Compress PPD files using GNU zip."; -" FAIL" = " FAIL"; -" PASS" = " PASS"; -"! expression Unary NOT of expression" = "! expression Unary NOT of expression"; -"\"%s\": Bad URI value \"%s\" - %s (RFC 8011 section 5.1.6)." = "“%s”: Bad URI value “%s” - %s (RFC 8011 section 5.1.6)."; -"\"%s\": Bad URI value \"%s\" - bad length %d (RFC 8011 section 5.1.6)." = "“%s”: Bad URI value “%s” - bad length %d (RFC 8011 section 5.1.6)."; -"\"%s\": Bad attribute name - bad length %d (RFC 8011 section 5.1.4)." = "“%s”: Bad attribute name - bad length %d (RFC 8011 section 5.1.4)."; -"\"%s\": Bad attribute name - invalid character (RFC 8011 section 5.1.4)." = "“%s”: Bad attribute name - invalid character (RFC 8011 section 5.1.4)."; -"\"%s\": Bad boolean value %d (RFC 8011 section 5.1.21)." = "“%s”: Bad boolean value %d (RFC 8011 section 5.1.21)."; -"\"%s\": Bad charset value \"%s\" - bad characters (RFC 8011 section 5.1.8)." = "“%s”: Bad charset value “%s” - bad characters (RFC 8011 section 5.1.8)."; -"\"%s\": Bad charset value \"%s\" - bad length %d (RFC 8011 section 5.1.8)." = "“%s”: Bad charset value “%s” - bad length %d (RFC 8011 section 5.1.8)."; -"\"%s\": Bad dateTime UTC hours %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime UTC hours %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime UTC minutes %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime UTC minutes %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime UTC sign '%c' (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime UTC sign ‘%c’ (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime day %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime day %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime deciseconds %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime deciseconds %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime hours %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime hours %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime minutes %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime minutes %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime month %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime month %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad dateTime seconds %u (RFC 8011 section 5.1.15)." = "“%s”: Bad dateTime seconds %u (RFC 8011 section 5.1.15)."; -"\"%s\": Bad enum value %d - out of range (RFC 8011 section 5.1.5)." = "“%s”: Bad enum value %d - out of range (RFC 8011 section 5.1.5)."; -"\"%s\": Bad keyword value \"%s\" - bad length %d (RFC 8011 section 5.1.4)." = "“%s”: Bad keyword value “%s” - bad length %d (RFC 8011 section 5.1.4)."; -"\"%s\": Bad keyword value \"%s\" - invalid character (RFC 8011 section 5.1.4)." = "“%s”: Bad keyword value “%s” - invalid character (RFC 8011 section 5.1.4)."; -"\"%s\": Bad mimeMediaType value \"%s\" - bad characters (RFC 8011 section 5.1.10)." = "“%s”: Bad mimeMediaType value “%s” - bad characters (RFC 8011 section 5.1.10)."; -"\"%s\": Bad mimeMediaType value \"%s\" - bad length %d (RFC 8011 section 5.1.10)." = "“%s”: Bad mimeMediaType value “%s” - bad length %d (RFC 8011 section 5.1.10)."; -"\"%s\": Bad name value \"%s\" - bad UTF-8 sequence (RFC 8011 section 5.1.3)." = "“%s”: Bad name value “%s” - bad UTF-8 sequence (RFC 8011 section 5.1.3)."; -"\"%s\": Bad name value \"%s\" - bad control character (PWG 5100.14 section 8.1)." = "“%s”: Bad name value “%s” - bad control character (PWG 5100.14 section 8.1)."; -"\"%s\": Bad name value \"%s\" - bad length %d (RFC 8011 section 5.1.3)." = "“%s”: Bad name value “%s” - bad length %d (RFC 8011 section 5.1.3)."; -"\"%s\": Bad naturalLanguage value \"%s\" - bad characters (RFC 8011 section 5.1.9)." = "“%s”: Bad naturalLanguage value “%s” - bad characters (RFC 8011 section 5.1.9)."; -"\"%s\": Bad naturalLanguage value \"%s\" - bad length %d (RFC 8011 section 5.1.9)." = "“%s”: Bad naturalLanguage value “%s” - bad length %d (RFC 8011 section 5.1.9)."; -"\"%s\": Bad octetString value - bad length %d (RFC 8011 section 5.1.20)." = "“%s”: Bad octetString value - bad length %d (RFC 8011 section 5.1.20)."; -"\"%s\": Bad rangeOfInteger value %d-%d - lower greater than upper (RFC 8011 section 5.1.14)." = "“%s”: Bad rangeOfInteger value %d-%d - lower greater than upper (RFC 8011 section 5.1.14)."; -"\"%s\": Bad resolution value %dx%d%s - bad units value (RFC 8011 section 5.1.16)." = "“%s”: Bad resolution value %dx%d%s - bad units value (RFC 8011 section 5.1.16)."; -"\"%s\": Bad resolution value %dx%d%s - cross feed resolution must be positive (RFC 8011 section 5.1.16)." = "“%s”: Bad resolution value %dx%d%s - cross feed resolution must be positive (RFC 8011 section 5.1.16)."; -"\"%s\": Bad resolution value %dx%d%s - feed resolution must be positive (RFC 8011 section 5.1.16)." = "“%s”: Bad resolution value %dx%d%s - feed resolution must be positive (RFC 8011 section 5.1.16)."; -"\"%s\": Bad text value \"%s\" - bad UTF-8 sequence (RFC 8011 section 5.1.2)." = "“%s”: Bad text value “%s” - bad UTF-8 sequence (RFC 8011 section 5.1.2)."; -"\"%s\": Bad text value \"%s\" - bad control character (PWG 5100.14 section 8.3)." = "“%s”: Bad text value “%s” - bad control character (PWG 5100.14 section 8.3)."; -"\"%s\": Bad text value \"%s\" - bad length %d (RFC 8011 section 5.1.2)." = "“%s”: Bad text value “%s” - bad length %d (RFC 8011 section 5.1.2)."; -"\"%s\": Bad uriScheme value \"%s\" - bad characters (RFC 8011 section 5.1.7)." = "“%s”: Bad uriScheme value “%s” - bad characters (RFC 8011 section 5.1.7)."; -"\"%s\": Bad uriScheme value \"%s\" - bad length %d (RFC 8011 section 5.1.7)." = "“%s”: Bad uriScheme value “%s” - bad length %d (RFC 8011 section 5.1.7)."; -"\"requesting-user-name\" attribute in wrong group." = "“requesting-user-name” attribute in wrong group."; -"\"requesting-user-name\" attribute with wrong syntax." = "“requesting-user-name” attribute with wrong syntax."; -"%-7s %-7.7s %-7d %-31.31s %.0f bytes" = "%-7s %-7.7s %-7d %-31.31s %.0f bytes"; -"%d x %d mm" = "%d x %d mm"; -"%g x %g \"" = "%g x %g ″"; -"%s (%s)" = "%s (%s)"; -"%s (%s, %s)" = "%s (%s, %s)"; -"%s (Borderless)" = "%s (Borderless)"; -"%s (Borderless, %s)" = "%s (Borderless, %s)"; -"%s (Borderless, %s, %s)" = "%s (Borderless, %s, %s)"; -"%s accepting requests since %s" = "%s accepting requests since %s"; -"%s cannot be changed." = "%s cannot be changed."; -"%s is not implemented by the CUPS version of lpc." = "%s is not implemented by the CUPS version of lpc."; -"%s is not ready" = "%s is not ready"; -"%s is ready" = "%s is ready"; -"%s is ready and printing" = "%s is ready and printing"; -"%s job-id user title copies options [file]" = "%s job-id user title copies options [file]"; -"%s not accepting requests since %s -" = "%s not accepting requests since %s -"; -"%s not supported." = "%s not supported."; -"%s/%s accepting requests since %s" = "%s/%s accepting requests since %s"; -"%s/%s not accepting requests since %s -" = "%s/%s not accepting requests since %s -"; -"%s: %-33.33s [job %d localhost]" = "%s: %-33.33s [job %d localhost]"; -// TRANSLATORS: Message is "subject: error" -"%s: %s" = "%s: %s"; -"%s: %s failed: %s" = "%s: %s failed: %s"; -"%s: Bad version %s for \"-V\"." = "%s: Bad version %s for “-V”."; -"%s: Don't know what to do." = "%s: Don’t know what to do."; -"%s: Error - %s" = "%s: Error - %s"; -"%s: Error - %s environment variable names non-existent destination \"%s\"." = "%s: Error - %s environment variable names non-existent destination “%s”."; -"%s: Error - The printer or class does not exist." = "%s: Error - The printer or class does not exist."; -"%s: Error - add '/version=1.1' to server name." = "%s: Error - add ‘/version=1.1’ to server name."; -"%s: Error - bad job ID." = "%s: Error - bad job ID."; -"%s: Error - cannot print files and alter jobs simultaneously." = "%s: Error - cannot print files and alter jobs simultaneously."; -"%s: Error - cannot print from stdin if files or a job ID are provided." = "%s: Error - cannot print from stdin if files or a job ID are provided."; -"%s: Error - copies must be 1 or more." = "%s: Error - copies must be 1 or more."; -"%s: Error - expected \"username\" after \"-U\" option." = "%s: Error - expected “username” after “-U” option."; -"%s: Error - expected PPD file after \"-%c\" option." = "%s: Error - expected PPD file after “-%c” option."; -"%s: Error - expected character set after \"-S\" option." = "%s: Error - expected character set after “-S” option."; -"%s: Error - expected content type after \"-T\" option." = "%s: Error - expected content type after “-T” option."; -"%s: Error - expected copies after \"-#\" option." = "%s: Error - expected copies after “-#” option."; -"%s: Error - expected copies after \"-n\" option." = "%s: Error - expected copies after “-n” option."; -"%s: Error - expected destination MIME type after \"-m\" option." = "%s: Error - expected destination MIME type after “-m” option."; -"%s: Error - expected destination after \"-P\" option." = "%s: Error - expected destination after “-P” option."; -"%s: Error - expected destination after \"-d\" option." = "%s: Error - expected destination after “-d” option."; -"%s: Error - expected filename after \"-c\" option." = "%s: Error - expected filename after “-c” option."; -"%s: Error - expected form after \"-f\" option." = "%s: Error - expected form after “-f” option."; -"%s: Error - expected hold name after \"-H\" option." = "%s: Error - expected hold name after “-H” option."; -"%s: Error - expected hostname after \"-H\" option." = "%s: Error - expected hostname after “-H” option."; -"%s: Error - expected hostname after \"-h\" option." = "%s: Error - expected hostname after “-h” option."; -"%s: Error - expected input file after \"-f\" option." = "%s: Error - expected input file after “-f” option."; -"%s: Error - expected job-id after \"-j\" option." = "%s: Error - expected job-id after “-j” option."; -"%s: Error - expected mode list after \"-y\" option." = "%s: Error - expected mode list after “-y” option."; -"%s: Error - expected name after \"-%c\" option." = "%s: Error - expected name after “-%c” option."; -"%s: Error - expected name=value after \"-a\" option." = "%s: Error - expected name=value after “-a” option."; -"%s: Error - expected name=value after \"-o\" option." = "%s: Error - expected name=value after “-o” option."; -"%s: Error - expected number of copies after \"-n\" option." = "%s: Error - expected number of copies after “-n” option."; -"%s: Error - expected option=value after \"-o\" option." = "%s: Error - expected option=value after “-o” option."; -"%s: Error - expected page list after \"-P\" option." = "%s: Error - expected page list after “-P” option."; -"%s: Error - expected printer name after \"-d\" option." = "%s: Error - expected printer name after “-d” option."; -"%s: Error - expected priority after \"-%c\" option." = "%s: Error - expected priority after “-%c” option."; -"%s: Error - expected reason text after \"-r\" option." = "%s: Error - expected reason text after “-r” option."; -"%s: Error - expected source MIME type after \"-i\" option." = "%s: Error - expected source MIME type after “-i” option."; -"%s: Error - expected title after \"-%c\" option." = "%s: Error - expected title after “-%c” option."; -"%s: Error - expected title after \"-t\" option." = "%s: Error - expected title after “-t” option."; -"%s: Error - expected username after \"-U\" option." = "%s: Error - expected username after “-U” option."; -"%s: Error - expected username after \"-u\" option." = "%s: Error - expected username after “-u” option."; -"%s: Error - expected value after \"-%c\" option." = "%s: Error - expected value after “-%c” option."; -"%s: Error - need \"completed\", \"not-completed\", \"successful\", or \"all\" after \"-W\" option." = "%s: Error - need “completed”, “not-completed”, “successful”, or “all” after “-W” option."; -"%s: Error - no default destination available." = "%s: Error - no default destination available."; -"%s: Error - priority must be between 1 and 100." = "%s: Error - priority must be between 1 and 100."; -"%s: Error - scheduler not responding." = "%s: Error - scheduler not responding."; -"%s: Error - too many files - \"%s\"." = "%s: Error - too many files - “%s”."; -"%s: Error - unable to access \"%s\" - %s" = "%s: Error - unable to access “%s” - %s"; -"%s: Error - unable to queue from stdin - %s." = "%s: Error - unable to queue from stdin - %s."; -"%s: Error - unknown destination \"%s\"." = "%s: Error - unknown destination “%s”."; -"%s: Error - unknown destination \"%s/%s\"." = "%s: Error - unknown destination “%s/%s”."; -"%s: Error - unknown option \"%c\"." = "%s: Error - unknown option “%c”."; -"%s: Error - unknown option \"%s\"." = "%s: Error - unknown option “%s”."; -"%s: Error - unknown option \"-%c\"." = "%s: Error - unknown option “-%c”."; -"%s: Expected job ID after \"-i\" option." = "%s: Expected job ID after “-i” option."; -"%s: Invalid destination name in list \"%s\"." = "%s: Invalid destination name in list “%s”."; -"%s: Invalid filter string \"%s\"." = "%s: Invalid filter string “%s”."; -"%s: Missing filename for \"-P\"." = "%s: Missing filename for “-P”."; -"%s: Missing timeout for \"-T\"." = "%s: Missing timeout for “-T”."; -"%s: Missing version for \"-V\"." = "%s: Missing version for “-V”."; -"%s: Need job ID (\"-i jobid\") before \"-H restart\"." = "%s: Need job ID (“-i jobid”) before “-H restart”."; -"%s: No filter to convert from %s/%s to %s/%s." = "%s: No filter to convert from %s/%s to %s/%s."; -"%s: Operation failed: %s" = "%s: Operation failed: %s"; -"%s: Scheduler is not running." = "%s: Scheduler is not running."; -"%s: Unable to connect to server." = "%s: Unable to connect to server."; -"%s: Unable to contact server." = "%s: Unable to contact server."; -"%s: Unable to determine MIME type of \"%s\"." = "%s: Unable to determine MIME type of “%s”."; -"%s: Unable to open \"%s\": %s" = "%s: Unable to open “%s”: %s"; -"%s: Unable to open %s: %s" = "%s: Unable to open %s: %s"; -"%s: Unable to open PPD file: %s on line %d." = "%s: Unable to open PPD file: %s on line %d."; -"%s: Unable to read MIME database from \"%s\" or \"%s\"." = "%s: Unable to read MIME database from “%s” or “%s”."; -"%s: Unknown argument \"%s\"." = "%s: Unknown argument “%s”."; -"%s: Unknown destination \"%s\"." = "%s: Unknown destination “%s”."; -"%s: Unknown destination MIME type %s/%s." = "%s: Unknown destination MIME type %s/%s."; -"%s: Unknown option \"%c\"." = "%s: Unknown option “%c”."; -"%s: Unknown option \"%s\"." = "%s: Unknown option “%s”."; -"%s: Unknown option \"-%c\"." = "%s: Unknown option “-%c”."; -"%s: Unknown source MIME type %s/%s." = "%s: Unknown source MIME type %s/%s."; -"%s: Warning - \"%c\" format modifier not supported - output may not be correct." = "%s: Warning - “%c” format modifier not supported - output may not be correct."; -"%s: Warning - character set option ignored." = "%s: Warning - character set option ignored."; -"%s: Warning - content type option ignored." = "%s: Warning - content type option ignored."; -"%s: Warning - form option ignored." = "%s: Warning - form option ignored."; -"%s: Warning - mode option ignored." = "%s: Warning - mode option ignored."; -"( expressions ) Group expressions" = "( expressions ) Group expressions"; -"- Cancel all jobs" = "- Cancel all jobs"; -"-# num-copies Specify the number of copies to print" = "-# num-copies Specify the number of copies to print"; -"--[no-]debug-logging Turn debug logging on/off" = "--[no-]debug-logging Turn debug logging on/off"; -"--[no-]remote-admin Turn remote administration on/off" = "--[no-]remote-admin Turn remote administration on/off"; -"--[no-]remote-any Allow/prevent access from the Internet" = "--[no-]remote-any Allow/prevent access from the Internet"; -"--[no-]share-printers Turn printer sharing on/off" = "--[no-]share-printers Turn printer sharing on/off"; -"--[no-]user-cancel-any Allow/prevent users to cancel any job" = "--[no-]user-cancel-any Allow/prevent users to cancel any job"; -"--device-id device-id Show models matching the given IEEE 1284 device ID" = "--device-id device-id Show models matching the given IEEE 1284 device ID"; -"--domain regex Match domain to regular expression" = "--domain regex Match domain to regular expression"; -"--exclude-schemes scheme-list\n Exclude the specified URI schemes" = "--exclude-schemes scheme-list\n Exclude the specified URI schemes"; -"--exec utility [argument ...] ;\n Execute program if true" = "--exec utility [argument …] ;\n Execute program if true"; -"--false Always false" = "--false Always false"; -"--help Show program help" = "--help Show program help"; -"--hold Hold new jobs" = "--hold Hold new jobs"; -"--host regex Match hostname to regular expression" = "--host regex Match hostname to regular expression"; -"--include-schemes scheme-list\n Include only the specified URI schemes" = "--include-schemes scheme-list\n Include only the specified URI schemes"; -"--ippserver filename Produce ippserver attribute file" = "--ippserver filename Produce ippserver attribute file"; -"--language locale Show models matching the given locale" = "--language locale Show models matching the given locale"; -"--literal-name name Match service name to literal name value" = "--literal-name name Match service name to literal name value"; -"--local True if service is local" = "--local True if service is local"; -"--ls List attributes" = "--ls List attributes"; -"--make-and-model name Show models matching the given make and model name" = "--make-and-model name Show models matching the given make and model name"; -"--name regex Match service name to regular expression" = "--name regex Match service name to regular expression"; -"--no-web-forms Disable web forms for media and supplies" = "--no-web-forms Disable web forms for media and supplies"; -"--not expression Unary NOT of expression" = "--not expression Unary NOT of expression"; -"--pam-service service Use the named PAM service" = "--pam-service service Use the named PAM service"; -"--path regex Match resource path to regular expression" = "--path regex Match resource path to regular expression"; -"--port number[-number] Match port to number or range" = "--port number[-number] Match port to number or range"; -"--print Print URI if true" = "--print Print URI if true"; -"--print-name Print service name if true" = "--print-name Print service name if true"; -"--product name Show models matching the given PostScript product" = "--product name Show models matching the given PostScript product"; -"--quiet Quietly report match via exit code" = "--quiet Quietly report match via exit code"; -"--release Release previously held jobs" = "--release Release previously held jobs"; -"--remote True if service is remote" = "--remote True if service is remote"; -"--stop-after-include-error\n Stop tests after a failed INCLUDE" = "--stop-after-include-error\n Stop tests after a failed INCLUDE"; -"--timeout seconds Specify the maximum number of seconds to discover devices" = "--timeout seconds Specify the maximum number of seconds to discover devices"; -"--true Always true" = "--true Always true"; -"--txt key True if the TXT record contains the key" = "--txt key True if the TXT record contains the key"; -"--txt-* regex Match TXT record key to regular expression" = "--txt-* regex Match TXT record key to regular expression"; -"--uri regex Match URI to regular expression" = "--uri regex Match URI to regular expression"; -"--version Show program version" = "--version Show program version"; -"--version Show version" = "--version Show version"; -"-1" = "-1"; -"-10" = "-10"; -"-100" = "-100"; -"-105" = "-105"; -"-11" = "-11"; -"-110" = "-110"; -"-115" = "-115"; -"-12" = "-12"; -"-120" = "-120"; -"-13" = "-13"; -"-14" = "-14"; -"-15" = "-15"; -"-2" = "-2"; -"-2 Set 2-sided printing support (default=1-sided)" = "-2 Set 2-sided printing support (default=1-sided)"; -"-20" = "-20"; -"-25" = "-25"; -"-3" = "-3"; -"-30" = "-30"; -"-35" = "-35"; -"-4" = "-4"; -"-4 Connect using IPv4" = "-4 Connect using IPv4"; -"-40" = "-40"; -"-45" = "-45"; -"-5" = "-5"; -"-50" = "-50"; -"-55" = "-55"; -"-6" = "-6"; -"-6 Connect using IPv6" = "-6 Connect using IPv6"; -"-60" = "-60"; -"-65" = "-65"; -"-7" = "-7"; -"-70" = "-70"; -"-75" = "-75"; -"-8" = "-8"; -"-80" = "-80"; -"-85" = "-85"; -"-9" = "-9"; -"-90" = "-90"; -"-95" = "-95"; -"-A Enable authentication" = "-A Enable authentication"; -"-C Send requests using chunking (default)" = "-C Send requests using chunking (default)"; -"-D description Specify the textual description of the printer" = "-D description Specify the textual description of the printer"; -"-D device-uri Set the device URI for the printer" = "-D device-uri Set the device URI for the printer"; -"-E Enable and accept jobs on the printer (after -p)" = "-E Enable and accept jobs on the printer (after -p)"; -"-E Encrypt the connection to the server" = "-E Encrypt the connection to the server"; -"-E Test with encryption using HTTP Upgrade to TLS" = "-E Test with encryption using HTTP Upgrade to TLS"; -"-F Run in the foreground but detach from console." = "-F Run in the foreground but detach from console."; -"-F output-type/subtype Set the output format for the printer" = "-F output-type/subtype Set the output format for the printer"; -"-H Show the default server and port" = "-H Show the default server and port"; -"-H HH:MM Hold the job until the specified UTC time" = "-H HH:MM Hold the job until the specified UTC time"; -"-H hold Hold the job until released/resumed" = "-H hold Hold the job until released/resumed"; -"-H immediate Print the job as soon as possible" = "-H immediate Print the job as soon as possible"; -"-H restart Reprint the job" = "-H restart Reprint the job"; -"-H resume Resume a held job" = "-H resume Resume a held job"; -"-H server[:port] Connect to the named server and port" = "-H server[:port] Connect to the named server and port"; -"-I Ignore errors" = "-I Ignore errors"; -"-I {filename,filters,none,profiles}\n Ignore specific warnings" = "-I {filename,filters,none,profiles}\n Ignore specific warnings"; -"-K keypath Set location of server X.509 certificates and keys." = "-K keypath Set location of server X.509 certificates and keys."; -"-L Send requests using content-length" = "-L Send requests using content-length"; -"-L location Specify the textual location of the printer" = "-L location Specify the textual location of the printer"; -"-M manufacturer Set manufacturer name (default=Test)" = "-M manufacturer Set manufacturer name (default=Test)"; -"-N name Match service name to literal name value" = "-N name Match service name to literal name value"; -"-P destination Show status for the specified destination" = "-P destination Show status for the specified destination"; -"-P destination Specify the destination" = "-P destination Specify the destination"; -"-P filename.plist Produce XML plist to a file and test report to standard output" = "-P filename.plist Produce XML plist to a file and test report to standard output"; -"-P number[-number] Match port to number or range" = "-P number[-number] Match port to number or range"; -"-P page-list Specify a list of pages to print" = "-P page-list Specify a list of pages to print"; -"-R Repeat tests on server-error-busy" = "-R Repeat tests on server-error-busy"; -"-R Show the ranking of jobs" = "-R Show the ranking of jobs"; -"-R name-default Remove the default value for the named option" = "-R name-default Remove the default value for the named option"; -"-R root-directory Set alternate root" = "-R root-directory Set alternate root"; -"-S Test with encryption using HTTPS" = "-S Test with encryption using HTTPS"; -"-S filename.strings Set strings file" = "-S filename.strings Set strings file"; -"-T seconds Set the browse timeout in seconds" = "-T seconds Set the browse timeout in seconds"; -"-T seconds Set the receive/send timeout in seconds" = "-T seconds Set the receive/send timeout in seconds"; -"-T title Specify the job title" = "-T title Specify the job title"; -"-U username Specify the username to use for authentication" = "-U username Specify the username to use for authentication"; -"-U username Specify username to use for authentication" = "-U username Specify username to use for authentication"; -"-V version Set default IPP version" = "-V version Set default IPP version"; -"-W completed Show completed jobs" = "-W completed Show completed jobs"; -"-W not-completed Show pending jobs" = "-W not-completed Show pending jobs"; -"-W {all,none,constraints,defaults,duplex,filters,profiles,sizes,translations}\n Issue warnings instead of errors" = "-W {all,none,constraints,defaults,duplex,filters,profiles,sizes,translations}\n Issue warnings instead of errors"; -"-X Produce XML plist instead of plain text" = "-X Produce XML plist instead of plain text"; -"-a Cancel all jobs" = "-a Cancel all jobs"; -"-a Show jobs on all destinations" = "-a Show jobs on all destinations"; -"-a [destination(s)] Show the accepting state of destinations" = "-a [destination(s)] Show the accepting state of destinations"; -"-a filename.conf Load printer attributes from conf file" = "-a filename.conf Load printer attributes from conf file"; -"-c Make a copy of the print file(s)" = "-c Make a copy of the print file(s)"; -"-c Produce CSV output" = "-c Produce CSV output"; -"-c [class(es)] Show classes and their member printers" = "-c [class(es)] Show classes and their member printers"; -"-c class Add the named destination to a class" = "-c class Add the named destination to a class"; -"-c command Set print command" = "-c command Set print command"; -"-c cupsd.conf Set cupsd.conf file to use." = "-c cupsd.conf Set cupsd.conf file to use."; -"-d Show the default destination" = "-d Show the default destination"; -"-d destination Set default destination" = "-d destination Set default destination"; -"-d destination Set the named destination as the server default" = "-d destination Set the named destination as the server default"; -"-d destination Specify the destination" = "-d destination Specify the destination"; -"-d name=value Set named variable to value" = "-d name=value Set named variable to value"; -"-d regex Match domain to regular expression" = "-d regex Match domain to regular expression"; -"-d spool-directory Set spool directory" = "-d spool-directory Set spool directory"; -"-e Show available destinations on the network" = "-e Show available destinations on the network"; -"-f Run in the foreground." = "-f Run in the foreground."; -"-f filename Set default request filename" = "-f filename Set default request filename"; -"-f type/subtype[,...] Set supported file types" = "-f type/subtype[,…] Set supported file types"; -"-h Show this usage message." = "-h Show this usage message."; -"-h Validate HTTP response headers" = "-h Validate HTTP response headers"; -"-h regex Match hostname to regular expression" = "-h regex Match hostname to regular expression"; -"-h server[:port] Connect to the named server and port" = "-h server[:port] Connect to the named server and port"; -"-i iconfile.png[,...] Set icon file(s)" = "-i iconfile.png[,…] Set icon file(s)"; -"-i id Specify an existing job ID to modify" = "-i id Specify an existing job ID to modify"; -"-i ppd-file Specify a PPD file for the printer" = "-i ppd-file Specify a PPD file for the printer"; -"-i seconds Repeat the last file with the given time interval" = "-i seconds Repeat the last file with the given time interval"; -"-k Keep job spool files" = "-k Keep job spool files"; -"-l List attributes" = "-l List attributes"; -"-l Produce plain text output" = "-l Produce plain text output"; -"-l Run cupsd on demand." = "-l Run cupsd on demand."; -"-l Show supported options and values" = "-l Show supported options and values"; -"-l Show verbose (long) output" = "-l Show verbose (long) output"; -"-l location Set location of printer" = "-l location Set location of printer"; -"-m Send an email notification when the job completes" = "-m Send an email notification when the job completes"; -"-m Show models" = "-m Show models"; -"-m everywhere Specify the printer is compatible with IPP Everywhere" = "-m everywhere Specify the printer is compatible with IPP Everywhere"; -"-m model Set model name (default=Printer)" = "-m model Set model name (default=Printer)"; -"-m model Specify a standard model/PPD file for the printer" = "-m model Specify a standard model/PPD file for the printer"; -"-n count Repeat the last file the given number of times" = "-n count Repeat the last file the given number of times"; -"-n hostname Set hostname for printer" = "-n hostname Set hostname for printer"; -"-n num-copies Specify the number of copies to print" = "-n num-copies Specify the number of copies to print"; -"-n regex Match service name to regular expression" = "-n regex Match service name to regular expression"; -"-o Name=Value Specify the default value for the named PPD option " = "-o Name=Value Specify the default value for the named PPD option "; -"-o [destination(s)] Show jobs" = "-o [destination(s)] Show jobs"; -"-o cupsIPPSupplies=false\n Disable supply level reporting via IPP" = "-o cupsIPPSupplies=false\n Disable supply level reporting via IPP"; -"-o cupsSNMPSupplies=false\n Disable supply level reporting via SNMP" = "-o cupsSNMPSupplies=false\n Disable supply level reporting via SNMP"; -"-o job-k-limit=N Specify the kilobyte limit for per-user quotas" = "-o job-k-limit=N Specify the kilobyte limit for per-user quotas"; -"-o job-page-limit=N Specify the page limit for per-user quotas" = "-o job-page-limit=N Specify the page limit for per-user quotas"; -"-o job-quota-period=N Specify the per-user quota period in seconds" = "-o job-quota-period=N Specify the per-user quota period in seconds"; -"-o job-sheets=standard Print a banner page with the job" = "-o job-sheets=standard Print a banner page with the job"; -"-o media=size Specify the media size to use" = "-o media=size Specify the media size to use"; -"-o name-default=value Specify the default value for the named option" = "-o name-default=value Specify the default value for the named option"; -"-o name[=value] Set default option and value" = "-o name[=value] Set default option and value"; -"-o number-up=N Specify that input pages should be printed N-up (1, 2, 4, 6, 9, and 16 are supported)" = "-o number-up=N Specify that input pages should be printed N-up (1, 2, 4, 6, 9, and 16 are supported)"; -"-o option[=value] Specify a printer-specific option" = "-o option[=value] Specify a printer-specific option"; -"-o orientation-requested=N\n Specify portrait (3) or landscape (4) orientation" = "-o orientation-requested=N\n Specify portrait (3) or landscape (4) orientation"; -"-o print-quality=N Specify the print quality - draft (3), normal (4), or best (5)" = "-o print-quality=N Specify the print quality - draft (3), normal (4), or best (5)"; -"-o printer-error-policy=name\n Specify the printer error policy" = "-o printer-error-policy=name\n Specify the printer error policy"; -"-o printer-is-shared=true\n Share the printer" = "-o printer-is-shared=true\n Share the printer"; -"-o printer-op-policy=name\n Specify the printer operation policy" = "-o printer-op-policy=name\n Specify the printer operation policy"; -"-o sides=one-sided Specify 1-sided printing" = "-o sides=one-sided Specify 1-sided printing"; -"-o sides=two-sided-long-edge\n Specify 2-sided portrait printing" = "-o sides=two-sided-long-edge\n Specify 2-sided portrait printing"; -"-o sides=two-sided-short-edge\n Specify 2-sided landscape printing" = "-o sides=two-sided-short-edge\n Specify 2-sided landscape printing"; -"-p Print URI if true" = "-p Print URI if true"; -"-p [printer(s)] Show the processing state of destinations" = "-p [printer(s)] Show the processing state of destinations"; -"-p destination Specify a destination" = "-p destination Specify a destination"; -"-p destination Specify/add the named destination" = "-p destination Specify/add the named destination"; -"-p port Set port number for printer" = "-p port Set port number for printer"; -"-q Quietly report match via exit code" = "-q Quietly report match via exit code"; -"-q Run silently" = "-q Run silently"; -"-q Specify the job should be held for printing" = "-q Specify the job should be held for printing"; -"-q priority Specify the priority from low (1) to high (100)" = "-q priority Specify the priority from low (1) to high (100)"; -"-r Remove the file(s) after submission" = "-r Remove the file(s) after submission"; -"-r Show whether the CUPS server is running" = "-r Show whether the CUPS server is running"; -"-r True if service is remote" = "-r True if service is remote"; -"-r Use 'relaxed' open mode" = "-r Use ‘relaxed’ open mode"; -"-r class Remove the named destination from a class" = "-r class Remove the named destination from a class"; -"-r reason Specify a reason message that others can see" = "-r reason Specify a reason message that others can see"; -"-r subtype,[subtype] Set DNS-SD service subtype" = "-r subtype,[subtype] Set DNS-SD service subtype"; -"-s Be silent" = "-s Be silent"; -"-s Print service name if true" = "-s Print service name if true"; -"-s Show a status summary" = "-s Show a status summary"; -"-s cups-files.conf Set cups-files.conf file to use." = "-s cups-files.conf Set cups-files.conf file to use."; -"-s speed[,color-speed] Set speed in pages per minute" = "-s speed[,color-speed] Set speed in pages per minute"; -"-t Produce a test report" = "-t Produce a test report"; -"-t Show all status information" = "-t Show all status information"; -"-t Test the configuration file." = "-t Test the configuration file."; -"-t key True if the TXT record contains the key" = "-t key True if the TXT record contains the key"; -"-t title Specify the job title" = "-t title Specify the job title"; -"-u [user(s)] Show jobs queued by the current or specified users" = "-u [user(s)] Show jobs queued by the current or specified users"; -"-u allow:all Allow all users to print" = "-u allow:all Allow all users to print"; -"-u allow:list Allow the list of users or groups (@name) to print" = "-u allow:list Allow the list of users or groups (@name) to print"; -"-u deny:list Prevent the list of users or groups (@name) to print" = "-u deny:list Prevent the list of users or groups (@name) to print"; -"-u owner Specify the owner to use for jobs" = "-u owner Specify the owner to use for jobs"; -"-u regex Match URI to regular expression" = "-u regex Match URI to regular expression"; -"-v Be verbose" = "-v Be verbose"; -"-v Show devices" = "-v Show devices"; -"-v [printer(s)] Show the devices for each destination" = "-v [printer(s)] Show the devices for each destination"; -"-v device-uri Specify the device URI for the printer" = "-v device-uri Specify the device URI for the printer"; -"-vv Be very verbose" = "-vv Be very verbose"; -"-x Purge jobs rather than just canceling" = "-x Purge jobs rather than just canceling"; -"-x destination Remove default options for destination" = "-x destination Remove default options for destination"; -"-x destination Remove the named destination" = "-x destination Remove the named destination"; -"-x utility [argument ...] ;\n Execute program if true" = "-x utility [argument …] ;\n Execute program if true"; -"/etc/cups/lpoptions file names default destination that does not exist." = "/etc/cups/lpoptions file names default destination that does not exist."; -"0" = "0"; -"1" = "1"; -"1 inch/sec." = "1 inch/sec."; -"1.25x0.25\"" = "1.25x0.25″"; -"1.25x2.25\"" = "1.25x2.25″"; -"1.5 inch/sec." = "1.5 inch/sec."; -"1.50x0.25\"" = "1.50x0.25″"; -"1.50x0.50\"" = "1.50x0.50″"; -"1.50x1.00\"" = "1.50x1.00″"; -"1.50x2.00\"" = "1.50x2.00″"; -"10" = "10"; -"10 inches/sec." = "10 inches/sec."; -"10 x 11" = "10 x 11"; -"10 x 13" = "10 x 13"; -"10 x 14" = "10 x 14"; -"100" = "100"; -"100 mm/sec." = "100 mm/sec."; -"105" = "105"; -"11" = "11"; -"11 inches/sec." = "11 inches/sec."; -"110" = "110"; -"115" = "115"; -"12" = "12"; -"12 inches/sec." = "12 inches/sec."; -"12 x 11" = "12 x 11"; -"120" = "120"; -"120 mm/sec." = "120 mm/sec."; -"120x60dpi" = "120x60dpi"; -"120x72dpi" = "120x72dpi"; -"13" = "13"; -"136dpi" = "136dpi"; -"14" = "14"; -"15" = "15"; -"15 mm/sec." = "15 mm/sec."; -"15 x 11" = "15 x 11"; -"150 mm/sec." = "150 mm/sec."; -"150dpi" = "150dpi"; -"16" = "16"; -"17" = "17"; -"18" = "18"; -"180dpi" = "180dpi"; -"19" = "19"; -"2" = "2"; -"2 inches/sec." = "2 inches/sec."; -"2-Sided Printing" = "2-Sided Printing"; -"2.00x0.37\"" = "2.00x0.37″"; -"2.00x0.50\"" = "2.00x0.50″"; -"2.00x1.00\"" = "2.00x1.00″"; -"2.00x1.25\"" = "2.00x1.25″"; -"2.00x2.00\"" = "2.00x2.00″"; -"2.00x3.00\"" = "2.00x3.00″"; -"2.00x4.00\"" = "2.00x4.00″"; -"2.00x5.50\"" = "2.00x5.50″"; -"2.25x0.50\"" = "2.25x0.50″"; -"2.25x1.25\"" = "2.25x1.25″"; -"2.25x4.00\"" = "2.25x4.00″"; -"2.25x5.50\"" = "2.25x5.50″"; -"2.38x5.50\"" = "2.38x5.50″"; -"2.5 inches/sec." = "2.5 inches/sec."; -"2.50x1.00\"" = "2.50x1.00″"; -"2.50x2.00\"" = "2.50x2.00″"; -"2.75x1.25\"" = "2.75x1.25″"; -"2.9 x 1\"" = "2.9 x 1″"; -"20" = "20"; -"20 mm/sec." = "20 mm/sec."; -"200 mm/sec." = "200 mm/sec."; -"203dpi" = "203dpi"; -"21" = "21"; -"22" = "22"; -"23" = "23"; -"24" = "24"; -"24-Pin Series" = "24-Pin Series"; -"240x72dpi" = "240x72dpi"; -"25" = "25"; -"250 mm/sec." = "250 mm/sec."; -"26" = "26"; -"27" = "27"; -"28" = "28"; -"29" = "29"; -"3" = "3"; -"3 inches/sec." = "3 inches/sec."; -"3 x 5" = "3 x 5"; -"3.00x1.00\"" = "3.00x1.00″"; -"3.00x1.25\"" = "3.00x1.25″"; -"3.00x2.00\"" = "3.00x2.00″"; -"3.00x3.00\"" = "3.00x3.00″"; -"3.00x4.00\"" = "3.00x4.00″"; -"3.00x5.00\"" = "3.00x5.00″"; -"3.00x6.00\"" = "3.00x6.00″"; -"3.00x8.00\"" = "3.00x8.00″"; -"3.25x2.00\"" = "3.25x2.00″"; -"3.25x5.00\"" = "3.25x5.00″"; -"3.25x5.50\"" = "3.25x5.50″"; -"3.25x5.83\"" = "3.25x5.83″"; -"3.25x7.83\"" = "3.25x7.83″"; -"3.5 x 5" = "3.5 x 5"; -"3.5\" Disk" = "3.5″ Disk"; -"3.50x1.00\"" = "3.50x1.00″"; -"30" = "30"; -"30 mm/sec." = "30 mm/sec."; -"300 mm/sec." = "300 mm/sec."; -"300dpi" = "300dpi"; -"30859 Paint Can Label" = "30859 Paint Can Label"; -"35" = "35"; -"360dpi" = "360dpi"; -"360x180dpi" = "360x180dpi"; -"4" = "4"; -"4 inches/sec." = "4 inches/sec."; -"4.00x1.00\"" = "4.00x1.00″"; -"4.00x13.00\"" = "4.00x13.00″"; -"4.00x2.00\"" = "4.00x2.00″"; -"4.00x2.50\"" = "4.00x2.50″"; -"4.00x3.00\"" = "4.00x3.00″"; -"4.00x4.00\"" = "4.00x4.00″"; -"4.00x5.00\"" = "4.00x5.00″"; -"4.00x6.00\"" = "4.00x6.00″"; -"4.00x6.50\"" = "4.00x6.50″"; -"4.00x8.00\"" = "4.00x8.00″"; -"40" = "40"; -"40 mm/sec." = "40 mm/sec."; -"45" = "45"; -"5" = "5"; -"5 inches/sec." = "5 inches/sec."; -"5 x 7" = "5 x 7"; -"50" = "50"; -"55" = "55"; -"6" = "6"; -"6 inches/sec." = "6 inches/sec."; -"6.00x1.00\"" = "6.00x1.00″"; -"6.00x2.00\"" = "6.00x2.00″"; -"6.00x3.00\"" = "6.00x3.00″"; -"6.00x4.00\"" = "6.00x4.00″"; -"6.00x5.00\"" = "6.00x5.00″"; -"6.00x6.00\"" = "6.00x6.00″"; -"6.00x6.50\"" = "6.00x6.50″"; -"6.00x8.00\"" = "6.00x8.00″"; -"60" = "60"; -"60 mm/sec." = "60 mm/sec."; -"600dpi" = "600dpi"; -"60dpi" = "60dpi"; -"60x72dpi" = "60x72dpi"; -"65" = "65"; -"7" = "7"; -"7 inches/sec." = "7 inches/sec."; -"7 x 9" = "7 x 9"; -"70" = "70"; -"75" = "75"; -"8" = "8"; -"8 inches/sec." = "8 inches/sec."; -"8 x 10" = "8 x 10"; -"8.00x1.00\"" = "8.00x1.00″"; -"8.00x2.00\"" = "8.00x2.00″"; -"8.00x3.00\"" = "8.00x3.00″"; -"8.00x4.00\"" = "8.00x4.00″"; -"8.00x5.00\"" = "8.00x5.00″"; -"8.00x6.00\"" = "8.00x6.00″"; -"8.00x6.50\"" = "8.00x6.50″"; -"8.26x1.00\"" = "8.26x1.00″"; -"80" = "80"; -"80 mm/sec." = "80 mm/sec."; -"80x50mm" = "80x50mm"; -"85" = "85"; -"9" = "9"; -"9 inches/sec." = "9 inches/sec."; -"9 x 11" = "9 x 11"; -"9 x 12" = "9 x 12"; -"9-Pin Series" = "9-Pin Series"; -"90" = "90"; -"95" = "95"; -"?Invalid help command unknown." = "?Invalid help command unknown."; -"A class named \"%s\" already exists." = "A class named “%s” already exists."; -"A printer named \"%s\" already exists." = "A printer named “%s” already exists."; -"A0" = "A0"; -"A0 Long Edge" = "A0 Long Edge"; -"A1" = "A1"; -"A1 Long Edge" = "A1 Long Edge"; -"A10" = "A10"; -"A2" = "A2"; -"A2 Long Edge" = "A2 Long Edge"; -"A3" = "A3"; -"A3 Long Edge" = "A3 Long Edge"; -"A3 Oversize" = "A3 Oversize"; -"A3 Oversize Long Edge" = "A3 Oversize Long Edge"; -"A4" = "A4"; -"A4 Long Edge" = "A4 Long Edge"; -"A4 Oversize" = "A4 Oversize"; -"A4 Small" = "A4 Small"; -"A5" = "A5"; -"A5 Long Edge" = "A5 Long Edge"; -"A5 Oversize" = "A5 Oversize"; -"A6" = "A6"; -"A6 Long Edge" = "A6 Long Edge"; -"A7" = "A7"; -"A8" = "A8"; -"A9" = "A9"; -"ANSI A" = "ANSI A"; -"ANSI B" = "ANSI B"; -"ANSI C" = "ANSI C"; -"ANSI D" = "ANSI D"; -"ANSI E" = "ANSI E"; -"ARCH C" = "ARCH C"; -"ARCH C Long Edge" = "ARCH C Long Edge"; -"ARCH D" = "ARCH D"; -"ARCH D Long Edge" = "ARCH D Long Edge"; -"ARCH E" = "ARCH E"; -"ARCH E Long Edge" = "ARCH E Long Edge"; -"Accept Jobs" = "Accept Jobs"; -"Accepted" = "Accepted"; -"Add Class" = "Add Class"; -"Add Printer" = "Add Printer"; -"Address" = "Address"; -"Administration" = "Administration"; -"Always" = "Always"; -"AppSocket/HP JetDirect" = "AppSocket/HP JetDirect"; -"Applicator" = "Applicator"; -"Attempt to set %s printer-state to bad value %d." = "Attempt to set %s printer-state to bad value %d."; -"Attribute \"%s\" has empty value." = "Attribute “%s” has empty value."; -"Attribute \"%s\" is in the wrong group." = "Attribute “%s” is in the wrong group."; -"Attribute \"%s\" is the wrong value type." = "Attribute “%s” is the wrong value type."; -"Attribute groups are out of order (%x < %x)." = "Attribute groups are out of order (%x < %x)."; -"B0" = "B0"; -"B1" = "B1"; -"B10" = "B10"; -"B2" = "B2"; -"B3" = "B3"; -"B4" = "B4"; -"B5" = "B5"; -"B5 Oversize" = "B5 Oversize"; -"B6" = "B6"; -"B7" = "B7"; -"B8" = "B8"; -"B9" = "B9"; -"Bad \"printer-id\" value %d." = "Bad “printer-id” value %d."; -"Bad '%s' value." = "Bad ‘%s’ value."; -"Bad 'document-format' value \"%s\"." = "Bad ‘document-format’ value “%s”."; -"Bad CloseUI/JCLCloseUI" = "Bad CloseUI/JCLCloseUI"; -"Bad NULL dests pointer" = "Bad NULL dests pointer"; -"Bad OpenGroup" = "Bad OpenGroup"; -"Bad OpenUI/JCLOpenUI" = "Bad OpenUI/JCLOpenUI"; -"Bad OrderDependency" = "Bad OrderDependency"; -"Bad PPD cache file." = "Bad PPD cache file."; -"Bad PPD file." = "Bad PPD file."; -"Bad Request" = "Bad Request"; -"Bad SNMP version number" = "Bad SNMP version number"; -"Bad UIConstraints" = "Bad UIConstraints"; -"Bad URI." = "Bad URI."; -"Bad arguments to function" = "Bad arguments to function"; -"Bad copies value %d." = "Bad copies value %d."; -"Bad custom parameter" = "Bad custom parameter"; -"Bad device URI \"%s\"." = "Bad device URI “%s”."; -"Bad device-uri \"%s\"." = "Bad device-uri “%s”."; -"Bad device-uri scheme \"%s\"." = "Bad device-uri scheme “%s”."; -"Bad document-format \"%s\"." = "Bad document-format “%s”."; -"Bad document-format-default \"%s\"." = "Bad document-format-default “%s”."; -"Bad extKeyUsage extension in X.509 certificate request." = "Bad extKeyUsage extension in X.509 certificate request."; -"Bad filename buffer" = "Bad filename buffer"; -"Bad hostname/address in URI" = "Bad hostname/address in URI"; -"Bad job-name value: %s" = "Bad job-name value: %s"; -"Bad job-name value: Wrong type or count." = "Bad job-name value: Wrong type or count."; -"Bad job-priority value." = "Bad job-priority value."; -"Bad job-sheets value \"%s\"." = "Bad job-sheets value “%s”."; -"Bad job-sheets value type." = "Bad job-sheets value type."; -"Bad job-state value." = "Bad job-state value."; -"Bad job-uri \"%s\"." = "Bad job-uri “%s”."; -"Bad keyUsage extension in X.509 certificate request." = "Bad keyUsage extension in X.509 certificate request."; -"Bad notify-pull-method \"%s\"." = "Bad notify-pull-method “%s”."; -"Bad notify-recipient-uri \"%s\"." = "Bad notify-recipient-uri “%s”."; -"Bad notify-user-data \"%s\"." = "Bad notify-user-data “%s”."; -"Bad number-up value %d." = "Bad number-up value %d."; -"Bad page-ranges values %d-%d." = "Bad page-ranges values %d-%d."; -"Bad port number in URI" = "Bad port number in URI"; -"Bad port-monitor \"%s\"." = "Bad port-monitor “%s”."; -"Bad printer-state value %d." = "Bad printer-state value %d."; -"Bad printer-uri." = "Bad printer-uri."; -"Bad request ID %d." = "Bad request ID %d."; -"Bad request version number %d.%d." = "Bad request version number %d.%d."; -"Bad resource in URI" = "Bad resource in URI"; -"Bad scheme in URI" = "Bad scheme in URI"; -"Bad subjectAltName extension in X.509 certificate request." = "Bad subjectAltName extension in X.509 certificate request."; -"Bad username in URI" = "Bad username in URI"; -"Bad value string" = "Bad value string"; -"Bad/empty URI" = "Bad/empty URI"; -"Banners" = "Banners"; -"Bond Paper" = "Bond Paper"; -"Boolean expected for waiteof option \"%s\"." = "Boolean expected for waiteof option “%s”."; -"Buffer overflow detected, aborting." = "Buffer overflow detected, aborting."; -"CMYK" = "CMYK"; -"CPCL Label Printer" = "CPCL Label Printer"; -"Cancel Jobs" = "Cancel Jobs"; -"Canceling print job." = "Canceling print job."; -"Cannot change printer-is-shared for remote queues." = "Cannot change printer-is-shared for remote queues."; -"Cannot share a remote Kerberized printer." = "Cannot share a remote Kerberized printer."; -"Cassette" = "Cassette"; -"Change Settings" = "Change Settings"; -"Character set \"%s\" not supported." = "Character set “%s” not supported."; -"Classes" = "Classes"; -"Clean Print Heads" = "Clean Print Heads"; -"Close-Job doesn't support the job-uri attribute." = "Close-Job doesn’t support the job-uri attribute."; -"Color" = "Color"; -"Color Mode" = "Color Mode"; -"Commands may be abbreviated. Commands are:\n\nexit help quit status ?" = "Commands may be abbreviated. Commands are:\n\nexit help quit status ?"; -"Community name uses indefinite length" = "Community name uses indefinite length"; -"Connected to printer." = "Connected to printer."; -"Connecting to printer." = "Connecting to printer."; -"Continue" = "Continue"; -"Continuous" = "Continuous"; -"Control file sent successfully." = "Control file sent successfully."; -"Copying print data." = "Copying print data."; -"Couldn't resolve mDNS URI \"%s\"." = "Couldn’t resolve mDNS URI “%s”."; -"Created" = "Created"; -"Credentials are not CA-signed." = "Credentials are not CA-signed."; -"Credentials do not validate against site CA certificate." = "Credentials do not validate against site CA certificate."; -"Credentials have expired." = "Credentials have expired."; -"Custom" = "Custom"; -"CustominCutInterval" = "CustominCutInterval"; -"CustominTearInterval" = "CustominTearInterval"; -"Cut" = "Cut"; -"Cutter" = "Cutter"; -"DYMO" = "DYMO"; -"Dark" = "Dark"; -"Darkness" = "Darkness"; -"Data file sent successfully." = "Data file sent successfully."; -"Deep Color" = "Deep Color"; -"Deep Gray" = "Deep Gray"; -"Delete Class" = "Delete Class"; -"Delete Printer" = "Delete Printer"; -"DeskJet Series" = "DeskJet Series"; -"Destination \"%s\" is not accepting jobs." = "Destination “%s” is not accepting jobs."; -"Device CMYK" = "Device CMYK"; -"Device Gray" = "Device Gray"; -"Device RGB" = "Device RGB"; -"Device: uri = %s\n class = %s\n info = %s\n make-and-model = %s\n device-id = %s\n location = %s" = "Device: uri = %s\n class = %s\n info = %s\n make-and-model = %s\n device-id = %s\n location = %s"; -"Direct Thermal Media" = "Direct Thermal Media"; -"Directory \"%s\" contains a relative path." = "Directory “%s” contains a relative path."; -"Directory \"%s\" has insecure permissions (0%o/uid=%d/gid=%d)." = "Directory “%s” has insecure permissions (0%o/uid=%d/gid=%d)."; -"Directory \"%s\" is a file." = "Directory “%s” is a file."; -"Directory \"%s\" not available: %s" = "Directory “%s” not available: %s"; -"Directory \"%s\" permissions OK (0%o/uid=%d/gid=%d)." = "Directory “%s” permissions OK (0%o/uid=%d/gid=%d)."; -"Disabled" = "Disabled"; -"Document #%d does not exist in job #%d." = "Document #%d does not exist in job #%d."; -"Duplexer" = "Duplexer"; -"EPL1 Label Printer" = "EPL1 Label Printer"; -"EPL2 Label Printer" = "EPL2 Label Printer"; -"Edit Configuration File" = "Edit Configuration File"; -"Encryption is not supported." = "Encryption is not supported."; -// TRANSLATORS: Banner/cover sheet after the print job. -"Ending Banner" = "Ending Banner"; -"English" = "English"; -"Enter your username and password or the root username and password to access this page. If you are using Kerberos authentication, make sure you have a valid Kerberos ticket." = "Enter your username and password or the root username and password to access this page. If you are using Kerberos authentication, make sure you have a valid Kerberos ticket."; -"Envelope #10" = "Envelope #10"; -"Envelope #11" = "Envelope #11"; -"Envelope #12" = "Envelope #12"; -"Envelope #14" = "Envelope #14"; -"Envelope #9" = "Envelope #9"; -"Envelope B4" = "Envelope B4"; -"Envelope B5" = "Envelope B5"; -"Envelope B6" = "Envelope B6"; -"Envelope C0" = "Envelope C0"; -"Envelope C1" = "Envelope C1"; -"Envelope C2" = "Envelope C2"; -"Envelope C3" = "Envelope C3"; -"Envelope C4" = "Envelope C4"; -"Envelope C5" = "Envelope C5"; -"Envelope C6" = "Envelope C6"; -"Envelope C65" = "Envelope C65"; -"Envelope C7" = "Envelope C7"; -"Envelope Choukei 3" = "Envelope Choukei 3"; -"Envelope Choukei 3 Long Edge" = "Envelope Choukei 3 Long Edge"; -"Envelope Choukei 4" = "Envelope Choukei 4"; -"Envelope Choukei 4 Long Edge" = "Envelope Choukei 4 Long Edge"; -"Envelope DL" = "Envelope DL"; -"Envelope Feed" = "Envelope Feed"; -"Envelope Invite" = "Envelope Invite"; -"Envelope Italian" = "Envelope Italian"; -"Envelope Kaku2" = "Envelope Kaku2"; -"Envelope Kaku2 Long Edge" = "Envelope Kaku2 Long Edge"; -"Envelope Kaku3" = "Envelope Kaku3"; -"Envelope Kaku3 Long Edge" = "Envelope Kaku3 Long Edge"; -"Envelope Monarch" = "Envelope Monarch"; -"Envelope PRC1" = "Envelope PRC1"; -"Envelope PRC1 Long Edge" = "Envelope PRC1 Long Edge"; -"Envelope PRC10" = "Envelope PRC10"; -"Envelope PRC10 Long Edge" = "Envelope PRC10 Long Edge"; -"Envelope PRC2" = "Envelope PRC2"; -"Envelope PRC2 Long Edge" = "Envelope PRC2 Long Edge"; -"Envelope PRC3" = "Envelope PRC3"; -"Envelope PRC3 Long Edge" = "Envelope PRC3 Long Edge"; -"Envelope PRC4" = "Envelope PRC4"; -"Envelope PRC4 Long Edge" = "Envelope PRC4 Long Edge"; -"Envelope PRC5 Long Edge" = "Envelope PRC5 Long Edge"; -"Envelope PRC5PRC5" = "Envelope PRC5PRC5"; -"Envelope PRC6" = "Envelope PRC6"; -"Envelope PRC6 Long Edge" = "Envelope PRC6 Long Edge"; -"Envelope PRC7" = "Envelope PRC7"; -"Envelope PRC7 Long Edge" = "Envelope PRC7 Long Edge"; -"Envelope PRC8" = "Envelope PRC8"; -"Envelope PRC8 Long Edge" = "Envelope PRC8 Long Edge"; -"Envelope PRC9" = "Envelope PRC9"; -"Envelope PRC9 Long Edge" = "Envelope PRC9 Long Edge"; -"Envelope Personal" = "Envelope Personal"; -"Envelope You4" = "Envelope You4"; -"Envelope You4 Long Edge" = "Envelope You4 Long Edge"; -"Environment Variables:" = "Environment Variables:"; -"Epson" = "Epson"; -"Error Policy" = "Error Policy"; -"Error reading raster data." = "Error reading raster data."; -"Error sending raster data." = "Error sending raster data."; -"Error: need hostname after \"-h\" option." = "Error: need hostname after “-h” option."; -"European Fanfold" = "European Fanfold"; -"European Fanfold Legal" = "European Fanfold Legal"; -"Every 10 Labels" = "Every 10 Labels"; -"Every 2 Labels" = "Every 2 Labels"; -"Every 3 Labels" = "Every 3 Labels"; -"Every 4 Labels" = "Every 4 Labels"; -"Every 5 Labels" = "Every 5 Labels"; -"Every 6 Labels" = "Every 6 Labels"; -"Every 7 Labels" = "Every 7 Labels"; -"Every 8 Labels" = "Every 8 Labels"; -"Every 9 Labels" = "Every 9 Labels"; -"Every Label" = "Every Label"; -"Executive" = "Executive"; -"Expectation Failed" = "Expectation Failed"; -"Expressions:" = "Expressions:"; -"Fast Grayscale" = "Fast Grayscale"; -"File \"%s\" contains a relative path." = "File “%s” contains a relative path."; -"File \"%s\" has insecure permissions (0%o/uid=%d/gid=%d)." = "File “%s” has insecure permissions (0%o/uid=%d/gid=%d)."; -"File \"%s\" is a directory." = "File “%s” is a directory."; -"File \"%s\" not available: %s" = "File “%s” not available: %s"; -"File \"%s\" permissions OK (0%o/uid=%d/gid=%d)." = "File “%s” permissions OK (0%o/uid=%d/gid=%d)."; -"File Folder" = "File Folder"; -"File device URIs have been disabled. To enable, see the FileDevice directive in \"%s/cups-files.conf\"." = "File device URIs have been disabled. To enable, see the FileDevice directive in “%s/cups-files.conf”."; -"Finished page %d." = "Finished page %d."; -"Folio" = "Folio"; -"Forbidden" = "Forbidden"; -"Form data too large." = "Form data too large."; -"Found" = "Found"; -"General" = "General"; -"Generic" = "Generic"; -"Get-Response-PDU uses indefinite length" = "Get-Response-PDU uses indefinite length"; -"Glossy Paper" = "Glossy Paper"; -"Got a printer-uri attribute but no job-id." = "Got a printer-uri attribute but no job-id."; -"GrayScale" = "GrayScale"; -"Grayscale" = "Grayscale"; -"HP" = "HP"; -"Hanging Folder" = "Hanging Folder"; -"Hash buffer too small." = "Hash buffer too small."; -"Help file not in index." = "Help file not in index."; -"IP address is not allowed as hostname when using Negotiate - use FQDN." = "IP address is not allowed as hostname when using Negotiate - use FQDN."; -"IPP 1setOf attribute with incompatible value tags." = "IPP 1setOf attribute with incompatible value tags."; -"IPP Everywhere driver requires an IPP connection." = "IPP Everywhere driver requires an IPP connection."; -"IPP attribute has no name." = "IPP attribute has no name."; -"IPP attribute is not a member of the message." = "IPP attribute is not a member of the message."; -"IPP begCollection value not 0 bytes." = "IPP begCollection value not 0 bytes."; -"IPP boolean value not 1 byte." = "IPP boolean value not 1 byte."; -"IPP date value not 11 bytes." = "IPP date value not 11 bytes."; -"IPP endCollection value not 0 bytes." = "IPP endCollection value not 0 bytes."; -"IPP enum value not 4 bytes." = "IPP enum value not 4 bytes."; -"IPP integer value not 4 bytes." = "IPP integer value not 4 bytes."; -"IPP language length overflows value." = "IPP language length overflows value."; -"IPP language length too large." = "IPP language length too large."; -"IPP member attribute outside of collection." = "IPP member attribute outside of collection."; -"IPP member name is not empty." = "IPP member name is not empty."; -"IPP memberName value is empty." = "IPP memberName value is empty."; -"IPP memberName with no attribute." = "IPP memberName with no attribute."; -"IPP name larger than 32767 bytes." = "IPP name larger than 32767 bytes."; -"IPP nameWithLanguage value less than minimum 4 bytes." = "IPP nameWithLanguage value less than minimum 4 bytes."; -"IPP octetString length too large." = "IPP octetString length too large."; -"IPP rangeOfInteger value not 8 bytes." = "IPP rangeOfInteger value not 8 bytes."; -"IPP resolution value not 9 bytes." = "IPP resolution value not 9 bytes."; -"IPP string length overflows value." = "IPP string length overflows value."; -"IPP textWithLanguage value less than minimum 4 bytes." = "IPP textWithLanguage value less than minimum 4 bytes."; -"IPP value larger than 32767 bytes." = "IPP value larger than 32767 bytes."; -"IPPFIND_SERVICE_DOMAIN Domain name" = "IPPFIND_SERVICE_DOMAIN Domain name"; -"IPPFIND_SERVICE_HOSTNAME\n Fully-qualified domain name" = "IPPFIND_SERVICE_HOSTNAME\n Fully-qualified domain name"; -"IPPFIND_SERVICE_NAME Service instance name" = "IPPFIND_SERVICE_NAME Service instance name"; -"IPPFIND_SERVICE_PORT Port number" = "IPPFIND_SERVICE_PORT Port number"; -"IPPFIND_SERVICE_REGTYPE DNS-SD registration type" = "IPPFIND_SERVICE_REGTYPE DNS-SD registration type"; -"IPPFIND_SERVICE_SCHEME URI scheme" = "IPPFIND_SERVICE_SCHEME URI scheme"; -"IPPFIND_SERVICE_URI URI" = "IPPFIND_SERVICE_URI URI"; -"IPPFIND_TXT_* Value of TXT record key" = "IPPFIND_TXT_* Value of TXT record key"; -"ISOLatin1" = "ISOLatin1"; -"Illegal control character" = "Illegal control character"; -"Illegal main keyword string" = "Illegal main keyword string"; -"Illegal option keyword string" = "Illegal option keyword string"; -"Illegal translation string" = "Illegal translation string"; -"Illegal whitespace character" = "Illegal whitespace character"; -"Installable Options" = "Installable Options"; -"Installed" = "Installed"; -"IntelliBar Label Printer" = "IntelliBar Label Printer"; -"Intellitech" = "Intellitech"; -"Internal Server Error" = "Internal Server Error"; -"Internal error" = "Internal error"; -"Internet Postage 2-Part" = "Internet Postage 2-Part"; -"Internet Postage 3-Part" = "Internet Postage 3-Part"; -"Internet Printing Protocol" = "Internet Printing Protocol"; -"Invalid JSON data." = "Invalid JSON data."; -"Invalid JSON web token." = "Invalid JSON web token."; -"Invalid form data." = "Invalid form data."; -"Invalid group tag." = "Invalid group tag."; -"Invalid media name arguments." = "Invalid media name arguments."; -"Invalid media size." = "Invalid media size."; -"Invalid named IPP attribute in collection." = "Invalid named IPP attribute in collection."; -"Invalid ppd-name value." = "Invalid ppd-name value."; -"Invalid printer command \"%s\"." = "Invalid printer command “%s”."; -"JCL" = "JCL"; -"JIS B0" = "JIS B0"; -"JIS B1" = "JIS B1"; -"JIS B10" = "JIS B10"; -"JIS B2" = "JIS B2"; -"JIS B3" = "JIS B3"; -"JIS B4" = "JIS B4"; -"JIS B4 Long Edge" = "JIS B4 Long Edge"; -"JIS B5" = "JIS B5"; -"JIS B5 Long Edge" = "JIS B5 Long Edge"; -"JIS B6" = "JIS B6"; -"JIS B6 Long Edge" = "JIS B6 Long Edge"; -"JIS B7" = "JIS B7"; -"JIS B8" = "JIS B8"; -"JIS B9" = "JIS B9"; -"JSON file too large." = "JSON file too large."; -"Job #%d cannot be restarted - no files." = "Job #%d cannot be restarted - no files."; -"Job #%d does not exist." = "Job #%d does not exist."; -"Job #%d is already aborted - can't cancel." = "Job #%d is already aborted - can’t cancel."; -"Job #%d is already canceled - can't cancel." = "Job #%d is already canceled - can’t cancel."; -"Job #%d is already completed - can't cancel." = "Job #%d is already completed - can’t cancel."; -"Job #%d is finished and cannot be altered." = "Job #%d is finished and cannot be altered."; -"Job #%d is not complete." = "Job #%d is not complete."; -"Job #%d is not held for authentication." = "Job #%d is not held for authentication."; -"Job #%d is not held." = "Job #%d is not held."; -"Job Completed" = "Job Completed"; -"Job Created" = "Job Created"; -"Job Options Changed" = "Job Options Changed"; -"Job Stopped" = "Job Stopped"; -"Job is completed and cannot be changed." = "Job is completed and cannot be changed."; -"Job operation failed" = "Job operation failed"; -"Job state cannot be changed." = "Job state cannot be changed."; -"Job subscriptions cannot be renewed." = "Job subscriptions cannot be renewed."; -"Jobs" = "Jobs"; -"LPD/LPR Host or Printer" = "LPD/LPR Host or Printer"; -"LPDEST environment variable names default destination that does not exist." = "LPDEST environment variable names default destination that does not exist."; -"Label Printer" = "Label Printer"; -"Label Top" = "Label Top"; -"Language \"%s\" not supported." = "Language “%s” not supported."; -"Large Address" = "Large Address"; -"LaserJet Series PCL 4/5" = "LaserJet Series PCL 4/5"; -"Letter Oversize" = "Letter Oversize"; -"Letter Oversize Long Edge" = "Letter Oversize Long Edge"; -"Light" = "Light"; -"Line longer than the maximum allowed (255 characters)" = "Line longer than the maximum allowed (255 characters)"; -"List Available Printers" = "List Available Printers"; -"Listening on port %d." = "Listening on port %d."; -"Local printer created." = "Local printer created."; -"Long-Edge (Portrait)" = "Long-Edge (Portrait)"; -"Main Roll" = "Main Roll"; -"Manual Feed" = "Manual Feed"; -"Media Size" = "Media Size"; -"Media Source" = "Media Source"; -"Media Tracking" = "Media Tracking"; -"Media Type" = "Media Type"; -"Medium" = "Medium"; -"Memory allocation error" = "Memory allocation error"; -"Missing CloseGroup" = "Missing CloseGroup"; -"Missing CloseUI/JCLCloseUI" = "Missing CloseUI/JCLCloseUI"; -"Missing PPD-Adobe-4.x header" = "Missing PPD-Adobe-4.x header"; -"Missing asterisk in column 1" = "Missing asterisk in column 1"; -"Missing document-number attribute." = "Missing document-number attribute."; -"Missing form variable" = "Missing form variable"; -"Missing last-document attribute in request." = "Missing last-document attribute in request."; -"Missing media or media-col." = "Missing media or media-col."; -"Missing media-size in media-col." = "Missing media-size in media-col."; -"Missing notify-subscription-ids attribute." = "Missing notify-subscription-ids attribute."; -"Missing option keyword" = "Missing option keyword"; -"Missing requesting-user-name attribute." = "Missing requesting-user-name attribute."; -"Missing required attribute \"%s\"." = "Missing required attribute “%s”."; -"Missing required attributes." = "Missing required attributes."; -"Missing resource in URI" = "Missing resource in URI"; -"Missing scheme in URI" = "Missing scheme in URI"; -"Missing value string" = "Missing value string"; -"Missing x-dimension in media-size." = "Missing x-dimension in media-size."; -"Missing y-dimension in media-size." = "Missing y-dimension in media-size."; -"Model: name = %s\n natural_language = %s\n make-and-model = %s\n device-id = %s" = "Model: name = %s\n natural_language = %s\n make-and-model = %s\n device-id = %s"; -"Modifiers:" = "Modifiers:"; -"Modify Class" = "Modify Class"; -"Modify Printer" = "Modify Printer"; -"Move All Jobs" = "Move All Jobs"; -"Move Job" = "Move Job"; -"Moved Permanently" = "Moved Permanently"; -"NULL PPD file pointer" = "NULL PPD file pointer"; -"Name OID uses indefinite length" = "Name OID uses indefinite length"; -"Nested classes are not allowed." = "Nested classes are not allowed."; -"Never" = "Never"; -"New credentials are not valid for name." = "New credentials are not valid for name."; -"New credentials are older than stored credentials." = "New credentials are older than stored credentials."; -"No" = "No"; -"No Content" = "No Content"; -"No IPP attributes." = "No IPP attributes."; -"No PPD name" = "No PPD name"; -"No VarBind SEQUENCE" = "No VarBind SEQUENCE"; -"No active connection" = "No active connection"; -"No active connection." = "No active connection."; -"No active jobs on %s." = "No active jobs on %s."; -"No attributes in request." = "No attributes in request."; -"No authentication information provided." = "No authentication information provided."; -"No community name" = "No community name"; -"No default destination." = "No default destination."; -"No default printer." = "No default printer."; -"No destinations added." = "No destinations added."; -"No device URI found in argv[0] or in DEVICE_URI environment variable." = "No device URI found in argv[0] or in DEVICE_URI environment variable."; -"No error-index" = "No error-index"; -"No error-status" = "No error-status"; -"No file in print request." = "No file in print request."; -"No modification time" = "No modification time"; -"No name OID" = "No name OID"; -"No pages were found." = "No pages were found."; -"No printer name" = "No printer name"; -"No printer-uri found" = "No printer-uri found"; -"No printer-uri found for class" = "No printer-uri found for class"; -"No printer-uri in request." = "No printer-uri in request."; -"No printer-uri-supported attribute." = "No printer-uri-supported attribute."; -"No request URI." = "No request URI."; -"No request protocol version." = "No request protocol version."; -"No request sent." = "No request sent."; -"No request-id" = "No request-id"; -"No stored credentials, not valid for name." = "No stored credentials, not valid for name."; -"No subscription attributes in request." = "No subscription attributes in request."; -"No subscriptions found." = "No subscriptions found."; -"No variable-bindings SEQUENCE" = "No variable-bindings SEQUENCE"; -"No version number" = "No version number"; -"Non-continuous (Mark sensing)" = "Non-continuous (Mark sensing)"; -"Non-continuous (Web sensing)" = "Non-continuous (Web sensing)"; -"Normal" = "Normal"; -"Not Found" = "Not Found"; -"Not Implemented" = "Not Implemented"; -"Not Installed" = "Not Installed"; -"Not Modified" = "Not Modified"; -"Not Supported" = "Not Supported"; -"Not allowed to print." = "Not allowed to print."; -"Note" = "Note"; -"OK" = "OK"; -"Off (1-Sided)" = "Off (1-Sided)"; -"Oki" = "Oki"; -"Online Help" = "Online Help"; -"Only WGS-84 coordinates are supported." = "Only WGS-84 coordinates are supported."; -"Only local users can create a local printer." = "Only local users can create a local printer."; -"Open of %s failed: %s" = "Open of %s failed: %s"; -"OpenGroup without a CloseGroup first" = "OpenGroup without a CloseGroup first"; -"OpenUI/JCLOpenUI without a CloseUI/JCLCloseUI first" = "OpenUI/JCLOpenUI without a CloseUI/JCLCloseUI first"; -"Operation Policy" = "Operation Policy"; -"Option \"%s\" cannot be included via %%%%IncludeFeature." = "Option “%s” cannot be included via %%%%IncludeFeature."; -"Options Installed" = "Options Installed"; -"Options:" = "Options:"; -"Other Media" = "Other Media"; -"Other Tray" = "Other Tray"; -"Out of date PPD cache file." = "Out of date PPD cache file."; -"Out of memory." = "Out of memory."; -"Output Mode" = "Output Mode"; -"PCL Laser Printer" = "PCL Laser Printer"; -"PRC16K" = "PRC16K"; -"PRC16K Long Edge" = "PRC16K Long Edge"; -"PRC32K" = "PRC32K"; -"PRC32K Long Edge" = "PRC32K Long Edge"; -"PRC32K Oversize" = "PRC32K Oversize"; -"PRC32K Oversize Long Edge" = "PRC32K Oversize Long Edge"; -"PRINTER environment variable names default destination that does not exist." = "PRINTER environment variable names default destination that does not exist."; -"Packet does not contain a Get-Response-PDU" = "Packet does not contain a Get-Response-PDU"; -"Packet does not start with SEQUENCE" = "Packet does not start with SEQUENCE"; -"ParamCustominCutInterval" = "ParamCustominCutInterval"; -"ParamCustominTearInterval" = "ParamCustominTearInterval"; -"Password for %s on %s? " = "Password for %s on %s? "; -"Pause Class" = "Pause Class"; -"Pause Printer" = "Pause Printer"; -"Peel-Off" = "Peel-Off"; -"Photo" = "Photo"; -"Photo Labels" = "Photo Labels"; -"Plain Paper" = "Plain Paper"; -"Policies" = "Policies"; -"Port Monitor" = "Port Monitor"; -"PostScript Printer" = "PostScript Printer"; -"Postcard" = "Postcard"; -"Postcard Double" = "Postcard Double"; -"Postcard Double Long Edge" = "Postcard Double Long Edge"; -"Postcard Long Edge" = "Postcard Long Edge"; -"Preparing to print." = "Preparing to print."; -"Print Density" = "Print Density"; -"Print Job:" = "Print Job:"; -"Print Mode" = "Print Mode"; -"Print Rate" = "Print Rate"; -"Print Self-Test Page" = "Print Self-Test Page"; -"Print Speed" = "Print Speed"; -"Print Test Page" = "Print Test Page"; -"Print and Cut" = "Print and Cut"; -"Print and Tear" = "Print and Tear"; -"Print file sent." = "Print file sent."; -"Print job canceled at printer." = "Print job canceled at printer."; -"Print job too large." = "Print job too large."; -"Print job was not accepted." = "Print job was not accepted."; -"Printer \"%s\" already exists." = "Printer “%s” already exists."; -"Printer Added" = "Printer Added"; -"Printer Default" = "Printer Default"; -"Printer Deleted" = "Printer Deleted"; -"Printer Modified" = "Printer Modified"; -"Printer Paused" = "Printer Paused"; -"Printer Settings" = "Printer Settings"; -"Printer cannot print supplied content." = "Printer cannot print supplied content."; -"Printer cannot print with supplied options." = "Printer cannot print with supplied options."; -"Printer does not support required IPP attributes or document formats." = "Printer does not support required IPP attributes or document formats."; -"Printer:" = "Printer:"; -"Printers" = "Printers"; -"Printing page %d, %u%% complete." = "Printing page %d, %u%% complete."; -"Quarto" = "Quarto"; -"Quota limit reached." = "Quota limit reached."; -"Rank Owner Job File(s) Total Size" = "Rank Owner Job File(s) Total Size"; -"Reject Jobs" = "Reject Jobs"; -"Remote host did not accept control file (%d)." = "Remote host did not accept control file (%d)."; -"Remote host did not accept data file (%d)." = "Remote host did not accept data file (%d)."; -"Reprint After Error" = "Reprint After Error"; -"Request Entity Too Large" = "Request Entity Too Large"; -"Resolution" = "Resolution"; -"Resume Class" = "Resume Class"; -"Resume Printer" = "Resume Printer"; -"Return Address" = "Return Address"; -"Rewind" = "Rewind"; -"SEQUENCE uses indefinite length" = "SEQUENCE uses indefinite length"; -"SSL/TLS Negotiation Error" = "SSL/TLS Negotiation Error"; -"Second Roll (DUO/Twin Only)" = "Second Roll (DUO/Twin Only)"; -"See Other" = "See Other"; -"See remote printer." = "See remote printer."; -"Self-signed credentials are blocked." = "Self-signed credentials are blocked."; -"Sending data to printer." = "Sending data to printer."; -"Server Restarted" = "Server Restarted"; -"Server Security Auditing" = "Server Security Auditing"; -"Server Started" = "Server Started"; -"Server Stopped" = "Server Stopped"; -"Server credentials not set." = "Server credentials not set."; -"Service Unavailable" = "Service Unavailable"; -"Set Allowed Users" = "Set Allowed Users"; -"Set As Server Default" = "Set As Server Default"; -"Set Class Options" = "Set Class Options"; -"Set Printer Options" = "Set Printer Options"; -"Shipping Address" = "Shipping Address"; -"Short-Edge (Landscape)" = "Short-Edge (Landscape)"; -"Special Paper" = "Special Paper"; -"Spooling job, %.0f%% complete." = "Spooling job, %.0f%% complete."; -"Standard" = "Standard"; -// TRANSLATORS: Banner/cover sheet before the print job. -"Starting Banner" = "Starting Banner"; -"Starting page %d." = "Starting page %d."; -"Statement" = "Statement"; -"Subscription #%d does not exist." = "Subscription #%d does not exist."; -"Substitutions:" = "Substitutions:"; -"Super A" = "Super A"; -"Super B" = "Super B"; -"Super B/A3" = "Super B/A3"; -"Switching Protocols" = "Switching Protocols"; -"Tabloid" = "Tabloid"; -"Tabloid Oversize" = "Tabloid Oversize"; -"Tabloid Oversize Long Edge" = "Tabloid Oversize Long Edge"; -"Tear" = "Tear"; -"Tear-Off" = "Tear-Off"; -"Tear-Off Adjust Position" = "Tear-Off Adjust Position"; -"The \"%s\" attribute is required for print jobs." = "The “%s” attribute is required for print jobs."; -"The %s attribute cannot be provided with job-ids." = "The %s attribute cannot be provided with job-ids."; -"The '%s' Job Status attribute cannot be supplied in a job creation request." = "The ‘%s’ Job Status attribute cannot be supplied in a job creation request."; -"The '%s' operation attribute cannot be supplied in a Create-Job request." = "The ‘%s’ operation attribute cannot be supplied in a Create-Job request."; -"The PPD file \"%s\" could not be found." = "The PPD file “%s” could not be found."; -"The PPD file \"%s\" could not be opened: %s" = "The PPD file “%s” could not be opened: %s"; -"The PPD file could not be opened." = "The PPD file could not be opened."; -"The class name may only contain up to 127 printable characters and may not contain spaces, slashes (/), or the pound sign (#)." = "The class name may only contain up to 127 printable characters and may not contain spaces, slashes (/), or the pound sign (#)."; -"The notify-lease-duration attribute cannot be used with job subscriptions." = "The notify-lease-duration attribute cannot be used with job subscriptions."; -"The notify-user-data value is too large (%d > 63 octets)." = "The notify-user-data value is too large (%d > 63 octets)."; -"The printer configuration is incorrect or the printer no longer exists." = "The printer configuration is incorrect or the printer no longer exists."; -"The printer did not respond." = "The printer did not respond."; -"The printer is in use." = "The printer is in use."; -"The printer is not connected." = "The printer is not connected."; -"The printer is not responding." = "The printer is not responding."; -"The printer is now connected." = "The printer is now connected."; -"The printer is now online." = "The printer is now online."; -"The printer is offline." = "The printer is offline."; -"The printer is unreachable at this time." = "The printer is unreachable at this time."; -"The printer may not exist or is unavailable at this time." = "The printer may not exist or is unavailable at this time."; -"The printer name may only contain up to 127 printable characters and may not contain spaces, slashes (/ \\), quotes (' \"), question mark (?), or the pound sign (#)." = "The printer name may only contain up to 127 printable characters and may not contain spaces, slashes (/ \\), quotes (’ ″), question mark (?), or the pound sign (#)."; -"The printer or class does not exist." = "The printer or class does not exist."; -"The printer or class is not shared." = "The printer or class is not shared."; -"The printer-uri \"%s\" contains invalid characters." = "The printer-uri “%s” contains invalid characters."; -"The printer-uri attribute is required." = "The printer-uri attribute is required."; -"The printer-uri must be of the form \"ipp://HOSTNAME/classes/CLASSNAME\"." = "The printer-uri must be of the form “ipp://HOSTNAME/classes/CLASSNAME”."; -"The printer-uri must be of the form \"ipp://HOSTNAME/printers/PRINTERNAME\"." = "The printer-uri must be of the form “ipp://HOSTNAME/printers/PRINTERNAME”."; -"The web interface is currently disabled. Run \"cupsctl WebInterface=yes\" to enable it." = "The web interface is currently disabled. Run “cupsctl WebInterface=yes” to enable it."; -"The which-jobs value \"%s\" is not supported." = "The which-jobs value “%s” is not supported."; -"There are too many subscriptions." = "There are too many subscriptions."; -"There was an unrecoverable USB error." = "There was an unrecoverable USB error."; -"Thermal Transfer Media" = "Thermal Transfer Media"; -"Too many active jobs." = "Too many active jobs."; -"Too many job-sheets values (%d > 2)." = "Too many job-sheets values (%d > 2)."; -"Too many printer-state-reasons values (%d > %d)." = "Too many printer-state-reasons values (%d > %d)."; -"Transparency" = "Transparency"; -"Tray" = "Tray"; -"Tray 1" = "Tray 1"; -"Tray 2" = "Tray 2"; -"Tray 3" = "Tray 3"; -"Tray 4" = "Tray 4"; -"Trust on first use is disabled." = "Trust on first use is disabled."; -"URI Too Long" = "URI Too Long"; -"URI too large" = "URI too large"; -"US Fanfold" = "US Fanfold"; -"US Ledger" = "US Ledger"; -"US Legal" = "US Legal"; -"US Legal Oversize" = "US Legal Oversize"; -"US Letter" = "US Letter"; -"US Letter Long Edge" = "US Letter Long Edge"; -"US Letter Oversize" = "US Letter Oversize"; -"US Letter Oversize Long Edge" = "US Letter Oversize Long Edge"; -"US Letter Small" = "US Letter Small"; -"Unable to access cupsd.conf file" = "Unable to access cupsd.conf file"; -"Unable to access help file." = "Unable to access help file."; -"Unable to add class" = "Unable to add class"; -"Unable to add document to print job." = "Unable to add document to print job."; -"Unable to add extension to X.509 certificate." = "Unable to add extension to X.509 certificate."; -"Unable to add job for destination \"%s\"." = "Unable to add job for destination “%s”."; -"Unable to add printer" = "Unable to add printer"; -"Unable to allocate IPP attribute." = "Unable to allocate IPP attribute."; -"Unable to allocate memory for file types." = "Unable to allocate memory for file types."; -"Unable to allocate memory for page info" = "Unable to allocate memory for page info"; -"Unable to allocate memory for pages array" = "Unable to allocate memory for pages array"; -"Unable to allocate memory for printer: %s" = "Unable to allocate memory for printer: %s"; -"Unable to cancel print job." = "Unable to cancel print job."; -"Unable to change printer" = "Unable to change printer"; -"Unable to change server settings" = "Unable to change server settings"; -"Unable to commit PPD file: %s" = "Unable to commit PPD file: %s"; -"Unable to compile mimeMediaType regular expression: %s." = "Unable to compile mimeMediaType regular expression: %s."; -"Unable to compile naturalLanguage regular expression: %s." = "Unable to compile naturalLanguage regular expression: %s."; -"Unable to configure printer options." = "Unable to configure printer options."; -"Unable to configure private key context." = "Unable to configure private key context."; -"Unable to connect to %s:%d: %s" = "Unable to connect to %s:%d: %s"; -"Unable to connect to host." = "Unable to connect to host."; -"Unable to contact printer, queuing on next printer in class." = "Unable to contact printer, queuing on next printer in class."; -"Unable to copy PPD file - %s" = "Unable to copy PPD file - %s"; -"Unable to create PPD for printer: %s" = "Unable to create PPD for printer: %s"; -"Unable to create PPD: %s" = "Unable to create PPD: %s"; -"Unable to create X.509 certificate signing request." = "Unable to create X.509 certificate signing request."; -"Unable to create X.509 certificate." = "Unable to create X.509 certificate."; -"Unable to create printer-uri" = "Unable to create printer-uri"; -"Unable to create printer." = "Unable to create printer."; -"Unable to create private key context." = "Unable to create private key context."; -"Unable to create private key." = "Unable to create private key."; -"Unable to create server credentials." = "Unable to create server credentials."; -"Unable to create spool directory \"%s\": %s" = "Unable to create spool directory “%s”: %s"; -"Unable to create temporary file" = "Unable to create temporary file"; -"Unable to delete class" = "Unable to delete class"; -"Unable to delete printer" = "Unable to delete printer"; -"Unable to do maintenance command" = "Unable to do maintenance command"; -"Unable to edit cupsd.conf files larger than 1MB" = "Unable to edit cupsd.conf files larger than 1MB"; -"Unable to execute command \"%s\": %s" = "Unable to execute command “%s”: %s"; -"Unable to find destination for job" = "Unable to find destination for job"; -"Unable to finish request." = "Unable to finish request."; -"Unable to get backend exit status." = "Unable to get backend exit status."; -"Unable to get class list" = "Unable to get class list"; -"Unable to get class status" = "Unable to get class status"; -"Unable to get list of printer drivers" = "Unable to get list of printer drivers"; -"Unable to get printer attributes" = "Unable to get printer attributes"; -"Unable to get printer list" = "Unable to get printer list"; -"Unable to get printer status" = "Unable to get printer status"; -"Unable to get printer status." = "Unable to get printer status."; -"Unable to import X.509 certificate request." = "Unable to import X.509 certificate request."; -"Unable to import credentials." = "Unable to import credentials."; -"Unable to initialize private key context." = "Unable to initialize private key context."; -"Unable to load X.509 CA certificate and private key." = "Unable to load X.509 CA certificate and private key."; -"Unable to load help index." = "Unable to load help index."; -"Unable to locate printer \"%s\"." = "Unable to locate printer “%s”."; -"Unable to locate printer." = "Unable to locate printer."; -"Unable to modify class" = "Unable to modify class"; -"Unable to modify printer" = "Unable to modify printer"; -"Unable to move job" = "Unable to move job"; -"Unable to move jobs" = "Unable to move jobs"; -"Unable to open PPD file" = "Unable to open PPD file"; -"Unable to open cupsd.conf file:" = "Unable to open cupsd.conf file:"; -"Unable to open device file" = "Unable to open device file"; -"Unable to open document #%d in job #%d." = "Unable to open document #%d in job #%d."; -"Unable to open help file." = "Unable to open help file."; -"Unable to open print file" = "Unable to open print file"; -"Unable to open raster file" = "Unable to open raster file"; -"Unable to print test page" = "Unable to print test page"; -"Unable to read generated PPD: %s" = "Unable to read generated PPD: %s"; -"Unable to read print data." = "Unable to read print data."; -"Unable to read response." = "Unable to read response."; -"Unable to reallocate IPP attribute value." = "Unable to reallocate IPP attribute value."; -"Unable to rename job document file." = "Unable to rename job document file."; -"Unable to resolve printer-uri." = "Unable to resolve printer-uri."; -"Unable to run cups-driverd: %s" = "Unable to run cups-driverd: %s"; -"Unable to save PPD file: %s" = "Unable to save PPD file: %s"; -"Unable to save value for \"%s\" with a temporary printer." = "Unable to save value for “%s” with a temporary printer."; -"Unable to see in file" = "Unable to see in file"; -"Unable to send command to printer driver" = "Unable to send command to printer driver"; -"Unable to send data to printer." = "Unable to send data to printer."; -"Unable to set options" = "Unable to set options"; -"Unable to set server default" = "Unable to set server default"; -"Unable to start backend process." = "Unable to start backend process."; -"Unable to upload cupsd.conf file" = "Unable to upload cupsd.conf file"; -"Unable to use legacy USB class driver." = "Unable to use legacy USB class driver."; -"Unable to verify X.509 certificate request." = "Unable to verify X.509 certificate request."; -"Unable to write X.509 certificate signing request." = "Unable to write X.509 certificate signing request."; -"Unable to write X.509 certificate." = "Unable to write X.509 certificate."; -"Unable to write print data" = "Unable to write print data"; -"Unable to write private key." = "Unable to write private key."; -"Unable to write uncompressed print data: %s" = "Unable to write uncompressed print data: %s"; -"Unauthorized" = "Unauthorized"; -"Units" = "Units"; -"Unknown" = "Unknown"; -"Unknown choice \"%s\" for option \"%s\"." = "Unknown choice “%s” for option “%s”."; -"Unknown encryption option value: \"%s\"." = "Unknown encryption option value: “%s”."; -"Unknown file order: \"%s\"." = "Unknown file order: “%s”."; -"Unknown format character: \"%c\"." = "Unknown format character: “%c”."; -"Unknown hash algorithm." = "Unknown hash algorithm."; -"Unknown media size name." = "Unknown media size name."; -"Unknown option \"%s\" with value \"%s\"." = "Unknown option “%s” with value “%s”."; -"Unknown option \"%s\"." = "Unknown option “%s”."; -"Unknown print mode: \"%s\"." = "Unknown print mode: “%s”."; -"Unknown printer-error-policy \"%s\"." = "Unknown printer-error-policy “%s”."; -"Unknown printer-op-policy \"%s\"." = "Unknown printer-op-policy “%s”."; -"Unknown request method." = "Unknown request method."; -"Unknown request version." = "Unknown request version."; -"Unknown scheme in URI" = "Unknown scheme in URI"; -"Unknown service name." = "Unknown service name."; -"Unknown version option value: \"%s\"." = "Unknown version option value: “%s”."; -"Unsupported 'compression' value \"%s\"." = "Unsupported ‘compression’ value “%s”."; -"Unsupported 'document-format' value \"%s\"." = "Unsupported ‘document-format’ value “%s”."; -"Unsupported 'job-hold-until' value." = "Unsupported ‘job-hold-until’ value."; -"Unsupported 'job-name' value." = "Unsupported ‘job-name’ value."; -"Unsupported URI scheme." = "Unsupported URI scheme."; -"Unsupported character set \"%s\"." = "Unsupported character set “%s”."; -"Unsupported compression \"%s\"." = "Unsupported compression “%s”."; -"Unsupported document-format \"%s\"." = "Unsupported document-format “%s”."; -"Unsupported document-format \"%s/%s\"." = "Unsupported document-format “%s/%s”."; -"Unsupported format \"%s\"." = "Unsupported format “%s”."; -"Unsupported margins." = "Unsupported margins."; -"Unsupported media value." = "Unsupported media value."; -"Unsupported number-up value %d, using number-up=1." = "Unsupported number-up value %d, using number-up=1."; -"Unsupported number-up-layout value %s, using number-up-layout=lrtb." = "Unsupported number-up-layout value %s, using number-up-layout=lrtb."; -"Unsupported page-border value %s, using page-border=none." = "Unsupported page-border value %s, using page-border=none."; -"Unsupported raster data." = "Unsupported raster data."; -"Unsupported value type" = "Unsupported value type"; -"Upgrade Required" = "Upgrade Required"; -"Usage: %s [options] destination(s)" = "Usage: %s [options] destination(s)"; -"Usage: %s job-id user title copies options [file]" = "Usage: %s job-id user title copies options [file]"; -"Usage: cancel [options] [id]\n cancel [options] [destination]\n cancel [options] [destination-id]" = "Usage: cancel [options] [id]\n cancel [options] [destination]\n cancel [options] [destination-id]"; -"Usage: cupsctl [options] [param=value ... paramN=valueN]" = "Usage: cupsctl [options] [param=value … paramN=valueN]"; -"Usage: cupsd [options]" = "Usage: cupsd [options]"; -"Usage: cupsfilter [ OPTIONS ] [ -- ] FILENAME" = "Usage: cupsfilter [ OPTIONS ] [ -- ] FILENAME"; -"Usage: cupstestppd [options] filename1.ppd[.gz] [... filenameN.ppd[.gz]]\n program | cupstestppd [options] -" = "Usage: cupstestppd [options] filename1.ppd[.gz] [… filenameN.ppd[.gz]]\n program | cupstestppd [options] -"; -"Usage: ippeveprinter [options] \"name\"" = "Usage: ippeveprinter [options] “name”"; -"Usage: ippfind [options] regtype[,subtype][.domain.] ... [expression]\n ippfind [options] name[.regtype[.domain.]] ... [expression]\n ippfind --help\n ippfind --version" = "Usage: ippfind [options] regtype[,subtype][.domain.] … [expression]\n ippfind [options] name[.regtype[.domain.]] … [expression]\n ippfind --help\n ippfind --version"; -"Usage: ipptool [options] URI filename [ ... filenameN ]" = "Usage: ipptool [options] URI filename [ … filenameN ]"; -"Usage: lp [options] [--] [file(s)]\n lp [options] -i id" = "Usage: lp [options] [--] [file(s)]\n lp [options] -i id"; -"Usage: lpadmin [options] -d destination\n lpadmin [options] -p destination\n lpadmin [options] -p destination -c class\n lpadmin [options] -p destination -r class\n lpadmin [options] -x destination" = "Usage: lpadmin [options] -d destination\n lpadmin [options] -p destination\n lpadmin [options] -p destination -c class\n lpadmin [options] -p destination -r class\n lpadmin [options] -x destination"; -"Usage: lpinfo [options] -m\n lpinfo [options] -v" = "Usage: lpinfo [options] -m\n lpinfo [options] -v"; -"Usage: lpmove [options] job destination\n lpmove [options] source-destination destination" = "Usage: lpmove [options] job destination\n lpmove [options] source-destination destination"; -"Usage: lpoptions [options] -d destination\n lpoptions [options] [-p destination] [-l]\n lpoptions [options] [-p destination] -o option[=value]\n lpoptions [options] -x destination" = "Usage: lpoptions [options] -d destination\n lpoptions [options] [-p destination] [-l]\n lpoptions [options] [-p destination] -o option[=value]\n lpoptions [options] -x destination"; -"Usage: lpq [options] [+interval]" = "Usage: lpq [options] [+interval]"; -"Usage: lpr [options] [file(s)]" = "Usage: lpr [options] [file(s)]"; -"Usage: lprm [options] [id]\n lprm [options] -" = "Usage: lprm [options] [id]\n lprm [options] -"; -"Usage: lpstat [options]" = "Usage: lpstat [options]"; -"Usage: ppdc [options] filename.drv [ ... filenameN.drv ]" = "Usage: ppdc [options] filename.drv [ … filenameN.drv ]"; -"Usage: ppdhtml [options] filename.drv >filename.html" = "Usage: ppdhtml [options] filename.drv >filename.html"; -"Usage: ppdi [options] filename.ppd [ ... filenameN.ppd ]" = "Usage: ppdi [options] filename.ppd [ … filenameN.ppd ]"; -"Usage: ppdmerge [options] filename.ppd [ ... filenameN.ppd ]" = "Usage: ppdmerge [options] filename.ppd [ … filenameN.ppd ]"; -"Usage: ppdpo [options] -o filename.po filename.drv [ ... filenameN.drv ]" = "Usage: ppdpo [options] -o filename.po filename.drv [ … filenameN.drv ]"; -"Usage: snmp [host-or-ip-address]" = "Usage: snmp [host-or-ip-address]"; -"Using spool directory \"%s\"." = "Using spool directory “%s”."; -"Validation of subjectAltName in X.509 certificate request failed." = "Validation of subjectAltName in X.509 certificate request failed."; -"Value uses indefinite length" = "Value uses indefinite length"; -"VarBind uses indefinite length" = "VarBind uses indefinite length"; -"Version uses indefinite length" = "Version uses indefinite length"; -"Waiting for job to complete." = "Waiting for job to complete."; -"Waiting for printer to become available." = "Waiting for printer to become available."; -"Waiting for printer to finish." = "Waiting for printer to finish."; -"Warning: This program will be removed in a future version of CUPS." = "Warning: This program will be removed in a future version of CUPS."; -"Web Interface is Disabled" = "Web Interface is Disabled"; -"Yes" = "Yes"; -"You cannot access this page." = "You cannot access this page."; -"You must access this page using the URL https://%s:%d%s." = "You must access this page using the URL https://%s:%d%s."; -"Your account does not have the necessary privileges." = "Your account does not have the necessary privileges."; -"ZPL Label Printer" = "ZPL Label Printer"; -"Zebra" = "Zebra"; -"aborted" = "aborted"; -// TRANSLATORS: Accuracy Units -"accuracy-units" = "Accuracy Units"; -// TRANSLATORS: Millimeters -"accuracy-units.mm" = "Millimeters"; -// TRANSLATORS: Nanometers -"accuracy-units.nm" = "Nanometers"; -// TRANSLATORS: Micrometers -"accuracy-units.um" = "Micrometers"; -// TRANSLATORS: Bale Output -"baling" = "Bale Output"; -// TRANSLATORS: Bale Using -"baling-type" = "Bale Using"; -// TRANSLATORS: Band -"baling-type.band" = "Band"; -// TRANSLATORS: Shrink Wrap -"baling-type.shrink-wrap" = "Shrink Wrap"; -// TRANSLATORS: Wrap -"baling-type.wrap" = "Wrap"; -// TRANSLATORS: Bale After -"baling-when" = "Bale After"; -// TRANSLATORS: Job -"baling-when.after-job" = "Job"; -// TRANSLATORS: Sets -"baling-when.after-sets" = "Sets"; -// TRANSLATORS: Bind Output -"binding" = "Bind Output"; -// TRANSLATORS: Bind Edge -"binding-reference-edge" = "Bind Edge"; -// TRANSLATORS: Bottom -"binding-reference-edge.bottom" = "Bottom"; -// TRANSLATORS: Left -"binding-reference-edge.left" = "Left"; -// TRANSLATORS: Right -"binding-reference-edge.right" = "Right"; -// TRANSLATORS: Top -"binding-reference-edge.top" = "Top"; -// TRANSLATORS: Binder Type -"binding-type" = "Binder Type"; -// TRANSLATORS: Adhesive -"binding-type.adhesive" = "Adhesive"; -// TRANSLATORS: Comb -"binding-type.comb" = "Comb"; -// TRANSLATORS: Flat -"binding-type.flat" = "Flat"; -// TRANSLATORS: Padding -"binding-type.padding" = "Padding"; -// TRANSLATORS: Perfect -"binding-type.perfect" = "Perfect"; -// TRANSLATORS: Spiral -"binding-type.spiral" = "Spiral"; -// TRANSLATORS: Tape -"binding-type.tape" = "Tape"; -// TRANSLATORS: Velo -"binding-type.velo" = "Velo"; -"canceled" = "canceled"; -// TRANSLATORS: Chamber Humidity -"chamber-humidity" = "Chamber Humidity"; -// TRANSLATORS: Chamber Temperature -"chamber-temperature" = "Chamber Temperature"; -// TRANSLATORS: Print Job Cost -"charge-info-message" = "Print Job Cost"; -// TRANSLATORS: Coat Sheets -"coating" = "Coat Sheets"; -// TRANSLATORS: Add Coating To -"coating-sides" = "Add Coating To"; -// TRANSLATORS: Back -"coating-sides.back" = "Back"; -// TRANSLATORS: Front and Back -"coating-sides.both" = "Front and Back"; -// TRANSLATORS: Front -"coating-sides.front" = "Front"; -// TRANSLATORS: Type of Coating -"coating-type" = "Type of Coating"; -// TRANSLATORS: Archival -"coating-type.archival" = "Archival"; -// TRANSLATORS: Archival Glossy -"coating-type.archival-glossy" = "Archival Glossy"; -// TRANSLATORS: Archival Matte -"coating-type.archival-matte" = "Archival Matte"; -// TRANSLATORS: Archival Semi Gloss -"coating-type.archival-semi-gloss" = "Archival Semi Gloss"; -// TRANSLATORS: Glossy -"coating-type.glossy" = "Glossy"; -// TRANSLATORS: High Gloss -"coating-type.high-gloss" = "High Gloss"; -// TRANSLATORS: Matte -"coating-type.matte" = "Matte"; -// TRANSLATORS: Semi-gloss -"coating-type.semi-gloss" = "Semi-gloss"; -// TRANSLATORS: Silicone -"coating-type.silicone" = "Silicone"; -// TRANSLATORS: Translucent -"coating-type.translucent" = "Translucent"; -"completed" = "completed"; -// TRANSLATORS: Print Confirmation Sheet -"confirmation-sheet-print" = "Print Confirmation Sheet"; -// TRANSLATORS: Copies -"copies" = "Copies"; -// TRANSLATORS: Back Cover -"cover-back" = "Back Cover"; -// TRANSLATORS: Front Cover -"cover-front" = "Front Cover"; -// TRANSLATORS: Cover Sheet Info -"cover-sheet-info" = "Cover Sheet Info"; -// TRANSLATORS: Date Time -"cover-sheet-info-supported.date-time" = "Date Time"; -// TRANSLATORS: From Name -"cover-sheet-info-supported.from-name" = "From Name"; -// TRANSLATORS: Logo -"cover-sheet-info-supported.logo" = "Logo"; -// TRANSLATORS: Message -"cover-sheet-info-supported.message" = "Message"; -// TRANSLATORS: Organization -"cover-sheet-info-supported.organization" = "Organization"; -// TRANSLATORS: Subject -"cover-sheet-info-supported.subject" = "Subject"; -// TRANSLATORS: To Name -"cover-sheet-info-supported.to-name" = "To Name"; -// TRANSLATORS: Printed Cover -"cover-type" = "Printed Cover"; -// TRANSLATORS: No Cover -"cover-type.no-cover" = "No Cover"; -// TRANSLATORS: Back Only -"cover-type.print-back" = "Back Only"; -// TRANSLATORS: Front and Back -"cover-type.print-both" = "Front and Back"; -// TRANSLATORS: Front Only -"cover-type.print-front" = "Front Only"; -// TRANSLATORS: None -"cover-type.print-none" = "None"; -// TRANSLATORS: Cover Output -"covering" = "Cover Output"; -// TRANSLATORS: Add Cover -"covering-name" = "Add Cover"; -// TRANSLATORS: Plain -"covering-name.plain" = "Plain"; -// TRANSLATORS: Pre-cut -"covering-name.pre-cut" = "Pre-cut"; -// TRANSLATORS: Pre-printed -"covering-name.pre-printed" = "Pre-printed"; -"cups-deviced failed to execute." = "cups-deviced failed to execute."; -"cups-driverd failed to execute." = "cups-driverd failed to execute."; -"cups-driverd failed to get PPD file - see error_log for details." = "cups-driverd failed to get PPD file - see error_log for details."; -"cupsctl: Cannot set %s directly." = "cupsctl: Cannot set %s directly."; -"cupsctl: Unable to connect to server: %s" = "cupsctl: Unable to connect to server: %s"; -"cupsctl: Unknown option \"%s\"" = "cupsctl: Unknown option “%s”"; -"cupsctl: Unknown option \"-%c\"" = "cupsctl: Unknown option “-%c”"; -"cupsd: Expected config filename after \"-c\" option." = "cupsd: Expected config filename after “-c” option."; -"cupsd: Expected cups-files.conf filename after \"-s\" option." = "cupsd: Expected cups-files.conf filename after “-s” option."; -"cupsd: On-demand support not compiled in, running in normal mode." = "cupsd: On-demand support not compiled in, running in normal mode."; -"cupsd: Relative cups-files.conf filename not allowed." = "cupsd: Relative cups-files.conf filename not allowed."; -"cupsd: Unable to get current directory." = "cupsd: Unable to get current directory."; -"cupsd: Unable to get path to cups-files.conf file." = "cupsd: Unable to get path to cups-files.conf file."; -"cupsd: Unknown argument \"%s\" - aborting." = "cupsd: Unknown argument “%s” - aborting."; -"cupsd: Unknown option \"%c\" - aborting." = "cupsd: Unknown option “%c” - aborting."; -"cupsfilter: Invalid document number %d." = "cupsfilter: Invalid document number %d."; -"cupsfilter: Invalid job ID %d." = "cupsfilter: Invalid job ID %d."; -"cupsfilter: Only one filename can be specified." = "cupsfilter: Only one filename can be specified."; -"cupsfilter: Unable to get job file - %s" = "cupsfilter: Unable to get job file - %s"; -"cupstestppd: The -q option is incompatible with the -v option." = "cupstestppd: The -q option is incompatible with the -v option."; -"cupstestppd: The -v option is incompatible with the -q option." = "cupstestppd: The -v option is incompatible with the -q option."; -// TRANSLATORS: Detailed Status Message -"detailed-status-message" = "Detailed Status Message"; -"device for %s/%s: %s" = "device for %s/%s: %s"; -"device for %s: %s" = "device for %s: %s"; -// TRANSLATORS: Copies -"document-copies" = "Copies"; -// TRANSLATORS: Document Privacy Attributes -"document-privacy-attributes" = "Document Privacy Attributes"; -// TRANSLATORS: All -"document-privacy-attributes.all" = "All"; -// TRANSLATORS: Default -"document-privacy-attributes.default" = "Default"; -// TRANSLATORS: Document Description -"document-privacy-attributes.document-description" = "Document Description"; -// TRANSLATORS: Document Template -"document-privacy-attributes.document-template" = "Document Template"; -// TRANSLATORS: None -"document-privacy-attributes.none" = "None"; -// TRANSLATORS: Document Privacy Scope -"document-privacy-scope" = "Document Privacy Scope"; -// TRANSLATORS: All -"document-privacy-scope.all" = "All"; -// TRANSLATORS: Default -"document-privacy-scope.default" = "Default"; -// TRANSLATORS: None -"document-privacy-scope.none" = "None"; -// TRANSLATORS: Owner -"document-privacy-scope.owner" = "Owner"; -// TRANSLATORS: Document State -"document-state" = "Document State"; -// TRANSLATORS: Detailed Document State -"document-state-reasons" = "Detailed Document State"; -// TRANSLATORS: Aborted By System -"document-state-reasons.aborted-by-system" = "Aborted By System"; -// TRANSLATORS: Canceled At Device -"document-state-reasons.canceled-at-device" = "Canceled At Device"; -// TRANSLATORS: Canceled By Operator -"document-state-reasons.canceled-by-operator" = "Canceled By Operator"; -// TRANSLATORS: Canceled By User -"document-state-reasons.canceled-by-user" = "Canceled By User"; -// TRANSLATORS: Completed Successfully -"document-state-reasons.completed-successfully" = "Completed Successfully"; -// TRANSLATORS: Completed With Errors -"document-state-reasons.completed-with-errors" = "Completed With Errors"; -// TRANSLATORS: Completed With Warnings -"document-state-reasons.completed-with-warnings" = "Completed With Warnings"; -// TRANSLATORS: Compression Error -"document-state-reasons.compression-error" = "Compression Error"; -// TRANSLATORS: Data Insufficient -"document-state-reasons.data-insufficient" = "Data Insufficient"; -// TRANSLATORS: Digital Signature Did Not Verify -"document-state-reasons.digital-signature-did-not-verify" = "Digital Signature Did Not Verify"; -// TRANSLATORS: Digital Signature Type Not Supported -"document-state-reasons.digital-signature-type-not-supported" = "Digital Signature Type Not Supported"; -// TRANSLATORS: Digital Signature Wait -"document-state-reasons.digital-signature-wait" = "Digital Signature Wait"; -// TRANSLATORS: Document Access Error -"document-state-reasons.document-access-error" = "Document Access Error"; -// TRANSLATORS: Document Fetchable -"document-state-reasons.document-fetchable" = "Document Fetchable"; -// TRANSLATORS: Document Format Error -"document-state-reasons.document-format-error" = "Document Format Error"; -// TRANSLATORS: Document Password Error -"document-state-reasons.document-password-error" = "Document Password Error"; -// TRANSLATORS: Document Permission Error -"document-state-reasons.document-permission-error" = "Document Permission Error"; -// TRANSLATORS: Document Security Error -"document-state-reasons.document-security-error" = "Document Security Error"; -// TRANSLATORS: Document Unprintable Error -"document-state-reasons.document-unprintable-error" = "Document Unprintable Error"; -// TRANSLATORS: Errors Detected -"document-state-reasons.errors-detected" = "Errors Detected"; -// TRANSLATORS: Incoming -"document-state-reasons.incoming" = "Incoming"; -// TRANSLATORS: Interpreting -"document-state-reasons.interpreting" = "Interpreting"; -// TRANSLATORS: None -"document-state-reasons.none" = "None"; -// TRANSLATORS: Outgoing -"document-state-reasons.outgoing" = "Outgoing"; -// TRANSLATORS: Printing -"document-state-reasons.printing" = "Printing"; -// TRANSLATORS: Processing To Stop Point -"document-state-reasons.processing-to-stop-point" = "Processing To Stop Point"; -// TRANSLATORS: Queued -"document-state-reasons.queued" = "Queued"; -// TRANSLATORS: Queued For Marker -"document-state-reasons.queued-for-marker" = "Queued For Marker"; -// TRANSLATORS: Queued In Device -"document-state-reasons.queued-in-device" = "Queued In Device"; -// TRANSLATORS: Resources Are Not Ready -"document-state-reasons.resources-are-not-ready" = "Resources Are Not Ready"; -// TRANSLATORS: Resources Are Not Supported -"document-state-reasons.resources-are-not-supported" = "Resources Are Not Supported"; -// TRANSLATORS: Submission Interrupted -"document-state-reasons.submission-interrupted" = "Submission Interrupted"; -// TRANSLATORS: Transforming -"document-state-reasons.transforming" = "Transforming"; -// TRANSLATORS: Unsupported Compression -"document-state-reasons.unsupported-compression" = "Unsupported Compression"; -// TRANSLATORS: Unsupported Document Format -"document-state-reasons.unsupported-document-format" = "Unsupported Document Format"; -// TRANSLATORS: Warnings Detected -"document-state-reasons.warnings-detected" = "Warnings Detected"; -// TRANSLATORS: Pending -"document-state.3" = "Pending"; -// TRANSLATORS: Processing -"document-state.5" = "Processing"; -// TRANSLATORS: Stopped -"document-state.6" = "Stopped"; -// TRANSLATORS: Canceled -"document-state.7" = "Canceled"; -// TRANSLATORS: Aborted -"document-state.8" = "Aborted"; -// TRANSLATORS: Completed -"document-state.9" = "Completed"; -"error-index uses indefinite length" = "error-index uses indefinite length"; -"error-status uses indefinite length" = "error-status uses indefinite length"; -"expression --and expression\n Logical AND" = "expression --and expression\n Logical AND"; -"expression --or expression\n Logical OR" = "expression --or expression\n Logical OR"; -"expression expression Logical AND" = "expression expression Logical AND"; -// TRANSLATORS: Feed Orientation -"feed-orientation" = "Feed Orientation"; -// TRANSLATORS: Long Edge First -"feed-orientation.long-edge-first" = "Long Edge First"; -// TRANSLATORS: Short Edge First -"feed-orientation.short-edge-first" = "Short Edge First"; -// TRANSLATORS: Fetch Status Code -"fetch-status-code" = "Fetch Status Code"; -// TRANSLATORS: Finishing Template -"finishing-template" = "Finishing Template"; -// TRANSLATORS: Bale -"finishing-template.bale" = "Bale"; -// TRANSLATORS: Bind -"finishing-template.bind" = "Bind"; -// TRANSLATORS: Bind Bottom -"finishing-template.bind-bottom" = "Bind Bottom"; -// TRANSLATORS: Bind Left -"finishing-template.bind-left" = "Bind Left"; -// TRANSLATORS: Bind Right -"finishing-template.bind-right" = "Bind Right"; -// TRANSLATORS: Bind Top -"finishing-template.bind-top" = "Bind Top"; -// TRANSLATORS: Booklet Maker -"finishing-template.booklet-maker" = "Booklet Maker"; -// TRANSLATORS: Coat -"finishing-template.coat" = "Coat"; -// TRANSLATORS: Cover -"finishing-template.cover" = "Cover"; -// TRANSLATORS: Edge Stitch -"finishing-template.edge-stitch" = "Edge Stitch"; -// TRANSLATORS: Edge Stitch Bottom -"finishing-template.edge-stitch-bottom" = "Edge Stitch Bottom"; -// TRANSLATORS: Edge Stitch Left -"finishing-template.edge-stitch-left" = "Edge Stitch Left"; -// TRANSLATORS: Edge Stitch Right -"finishing-template.edge-stitch-right" = "Edge Stitch Right"; -// TRANSLATORS: Edge Stitch Top -"finishing-template.edge-stitch-top" = "Edge Stitch Top"; -// TRANSLATORS: Fold -"finishing-template.fold" = "Fold"; -// TRANSLATORS: Accordion Fold -"finishing-template.fold-accordion" = "Accordion Fold"; -// TRANSLATORS: Double Gate Fold -"finishing-template.fold-double-gate" = "Double Gate Fold"; -// TRANSLATORS: Engineering Z Fold -"finishing-template.fold-engineering-z" = "Engineering Z Fold"; -// TRANSLATORS: Gate Fold -"finishing-template.fold-gate" = "Gate Fold"; -// TRANSLATORS: Half Fold -"finishing-template.fold-half" = "Half Fold"; -// TRANSLATORS: Half Z Fold -"finishing-template.fold-half-z" = "Half Z Fold"; -// TRANSLATORS: Left Gate Fold -"finishing-template.fold-left-gate" = "Left Gate Fold"; -// TRANSLATORS: Letter Fold -"finishing-template.fold-letter" = "Letter Fold"; -// TRANSLATORS: Parallel Fold -"finishing-template.fold-parallel" = "Parallel Fold"; -// TRANSLATORS: Poster Fold -"finishing-template.fold-poster" = "Poster Fold"; -// TRANSLATORS: Right Gate Fold -"finishing-template.fold-right-gate" = "Right Gate Fold"; -// TRANSLATORS: Z Fold -"finishing-template.fold-z" = "Z Fold"; -// TRANSLATORS: JDF F10-1 -"finishing-template.jdf-f10-1" = "JDF F10-1"; -// TRANSLATORS: JDF F10-2 -"finishing-template.jdf-f10-2" = "JDF F10-2"; -// TRANSLATORS: JDF F10-3 -"finishing-template.jdf-f10-3" = "JDF F10-3"; -// TRANSLATORS: JDF F12-1 -"finishing-template.jdf-f12-1" = "JDF F12-1"; -// TRANSLATORS: JDF F12-10 -"finishing-template.jdf-f12-10" = "JDF F12-10"; -// TRANSLATORS: JDF F12-11 -"finishing-template.jdf-f12-11" = "JDF F12-11"; -// TRANSLATORS: JDF F12-12 -"finishing-template.jdf-f12-12" = "JDF F12-12"; -// TRANSLATORS: JDF F12-13 -"finishing-template.jdf-f12-13" = "JDF F12-13"; -// TRANSLATORS: JDF F12-14 -"finishing-template.jdf-f12-14" = "JDF F12-14"; -// TRANSLATORS: JDF F12-2 -"finishing-template.jdf-f12-2" = "JDF F12-2"; -// TRANSLATORS: JDF F12-3 -"finishing-template.jdf-f12-3" = "JDF F12-3"; -// TRANSLATORS: JDF F12-4 -"finishing-template.jdf-f12-4" = "JDF F12-4"; -// TRANSLATORS: JDF F12-5 -"finishing-template.jdf-f12-5" = "JDF F12-5"; -// TRANSLATORS: JDF F12-6 -"finishing-template.jdf-f12-6" = "JDF F12-6"; -// TRANSLATORS: JDF F12-7 -"finishing-template.jdf-f12-7" = "JDF F12-7"; -// TRANSLATORS: JDF F12-8 -"finishing-template.jdf-f12-8" = "JDF F12-8"; -// TRANSLATORS: JDF F12-9 -"finishing-template.jdf-f12-9" = "JDF F12-9"; -// TRANSLATORS: JDF F14-1 -"finishing-template.jdf-f14-1" = "JDF F14-1"; -// TRANSLATORS: JDF F16-1 -"finishing-template.jdf-f16-1" = "JDF F16-1"; -// TRANSLATORS: JDF F16-10 -"finishing-template.jdf-f16-10" = "JDF F16-10"; -// TRANSLATORS: JDF F16-11 -"finishing-template.jdf-f16-11" = "JDF F16-11"; -// TRANSLATORS: JDF F16-12 -"finishing-template.jdf-f16-12" = "JDF F16-12"; -// TRANSLATORS: JDF F16-13 -"finishing-template.jdf-f16-13" = "JDF F16-13"; -// TRANSLATORS: JDF F16-14 -"finishing-template.jdf-f16-14" = "JDF F16-14"; -// TRANSLATORS: JDF F16-2 -"finishing-template.jdf-f16-2" = "JDF F16-2"; -// TRANSLATORS: JDF F16-3 -"finishing-template.jdf-f16-3" = "JDF F16-3"; -// TRANSLATORS: JDF F16-4 -"finishing-template.jdf-f16-4" = "JDF F16-4"; -// TRANSLATORS: JDF F16-5 -"finishing-template.jdf-f16-5" = "JDF F16-5"; -// TRANSLATORS: JDF F16-6 -"finishing-template.jdf-f16-6" = "JDF F16-6"; -// TRANSLATORS: JDF F16-7 -"finishing-template.jdf-f16-7" = "JDF F16-7"; -// TRANSLATORS: JDF F16-8 -"finishing-template.jdf-f16-8" = "JDF F16-8"; -// TRANSLATORS: JDF F16-9 -"finishing-template.jdf-f16-9" = "JDF F16-9"; -// TRANSLATORS: JDF F18-1 -"finishing-template.jdf-f18-1" = "JDF F18-1"; -// TRANSLATORS: JDF F18-2 -"finishing-template.jdf-f18-2" = "JDF F18-2"; -// TRANSLATORS: JDF F18-3 -"finishing-template.jdf-f18-3" = "JDF F18-3"; -// TRANSLATORS: JDF F18-4 -"finishing-template.jdf-f18-4" = "JDF F18-4"; -// TRANSLATORS: JDF F18-5 -"finishing-template.jdf-f18-5" = "JDF F18-5"; -// TRANSLATORS: JDF F18-6 -"finishing-template.jdf-f18-6" = "JDF F18-6"; -// TRANSLATORS: JDF F18-7 -"finishing-template.jdf-f18-7" = "JDF F18-7"; -// TRANSLATORS: JDF F18-8 -"finishing-template.jdf-f18-8" = "JDF F18-8"; -// TRANSLATORS: JDF F18-9 -"finishing-template.jdf-f18-9" = "JDF F18-9"; -// TRANSLATORS: JDF F2-1 -"finishing-template.jdf-f2-1" = "JDF F2-1"; -// TRANSLATORS: JDF F20-1 -"finishing-template.jdf-f20-1" = "JDF F20-1"; -// TRANSLATORS: JDF F20-2 -"finishing-template.jdf-f20-2" = "JDF F20-2"; -// TRANSLATORS: JDF F24-1 -"finishing-template.jdf-f24-1" = "JDF F24-1"; -// TRANSLATORS: JDF F24-10 -"finishing-template.jdf-f24-10" = "JDF F24-10"; -// TRANSLATORS: JDF F24-11 -"finishing-template.jdf-f24-11" = "JDF F24-11"; -// TRANSLATORS: JDF F24-2 -"finishing-template.jdf-f24-2" = "JDF F24-2"; -// TRANSLATORS: JDF F24-3 -"finishing-template.jdf-f24-3" = "JDF F24-3"; -// TRANSLATORS: JDF F24-4 -"finishing-template.jdf-f24-4" = "JDF F24-4"; -// TRANSLATORS: JDF F24-5 -"finishing-template.jdf-f24-5" = "JDF F24-5"; -// TRANSLATORS: JDF F24-6 -"finishing-template.jdf-f24-6" = "JDF F24-6"; -// TRANSLATORS: JDF F24-7 -"finishing-template.jdf-f24-7" = "JDF F24-7"; -// TRANSLATORS: JDF F24-8 -"finishing-template.jdf-f24-8" = "JDF F24-8"; -// TRANSLATORS: JDF F24-9 -"finishing-template.jdf-f24-9" = "JDF F24-9"; -// TRANSLATORS: JDF F28-1 -"finishing-template.jdf-f28-1" = "JDF F28-1"; -// TRANSLATORS: JDF F32-1 -"finishing-template.jdf-f32-1" = "JDF F32-1"; -// TRANSLATORS: JDF F32-2 -"finishing-template.jdf-f32-2" = "JDF F32-2"; -// TRANSLATORS: JDF F32-3 -"finishing-template.jdf-f32-3" = "JDF F32-3"; -// TRANSLATORS: JDF F32-4 -"finishing-template.jdf-f32-4" = "JDF F32-4"; -// TRANSLATORS: JDF F32-5 -"finishing-template.jdf-f32-5" = "JDF F32-5"; -// TRANSLATORS: JDF F32-6 -"finishing-template.jdf-f32-6" = "JDF F32-6"; -// TRANSLATORS: JDF F32-7 -"finishing-template.jdf-f32-7" = "JDF F32-7"; -// TRANSLATORS: JDF F32-8 -"finishing-template.jdf-f32-8" = "JDF F32-8"; -// TRANSLATORS: JDF F32-9 -"finishing-template.jdf-f32-9" = "JDF F32-9"; -// TRANSLATORS: JDF F36-1 -"finishing-template.jdf-f36-1" = "JDF F36-1"; -// TRANSLATORS: JDF F36-2 -"finishing-template.jdf-f36-2" = "JDF F36-2"; -// TRANSLATORS: JDF F4-1 -"finishing-template.jdf-f4-1" = "JDF F4-1"; -// TRANSLATORS: JDF F4-2 -"finishing-template.jdf-f4-2" = "JDF F4-2"; -// TRANSLATORS: JDF F40-1 -"finishing-template.jdf-f40-1" = "JDF F40-1"; -// TRANSLATORS: JDF F48-1 -"finishing-template.jdf-f48-1" = "JDF F48-1"; -// TRANSLATORS: JDF F48-2 -"finishing-template.jdf-f48-2" = "JDF F48-2"; -// TRANSLATORS: JDF F6-1 -"finishing-template.jdf-f6-1" = "JDF F6-1"; -// TRANSLATORS: JDF F6-2 -"finishing-template.jdf-f6-2" = "JDF F6-2"; -// TRANSLATORS: JDF F6-3 -"finishing-template.jdf-f6-3" = "JDF F6-3"; -// TRANSLATORS: JDF F6-4 -"finishing-template.jdf-f6-4" = "JDF F6-4"; -// TRANSLATORS: JDF F6-5 -"finishing-template.jdf-f6-5" = "JDF F6-5"; -// TRANSLATORS: JDF F6-6 -"finishing-template.jdf-f6-6" = "JDF F6-6"; -// TRANSLATORS: JDF F6-7 -"finishing-template.jdf-f6-7" = "JDF F6-7"; -// TRANSLATORS: JDF F6-8 -"finishing-template.jdf-f6-8" = "JDF F6-8"; -// TRANSLATORS: JDF F64-1 -"finishing-template.jdf-f64-1" = "JDF F64-1"; -// TRANSLATORS: JDF F64-2 -"finishing-template.jdf-f64-2" = "JDF F64-2"; -// TRANSLATORS: JDF F8-1 -"finishing-template.jdf-f8-1" = "JDF F8-1"; -// TRANSLATORS: JDF F8-2 -"finishing-template.jdf-f8-2" = "JDF F8-2"; -// TRANSLATORS: JDF F8-3 -"finishing-template.jdf-f8-3" = "JDF F8-3"; -// TRANSLATORS: JDF F8-4 -"finishing-template.jdf-f8-4" = "JDF F8-4"; -// TRANSLATORS: JDF F8-5 -"finishing-template.jdf-f8-5" = "JDF F8-5"; -// TRANSLATORS: JDF F8-6 -"finishing-template.jdf-f8-6" = "JDF F8-6"; -// TRANSLATORS: JDF F8-7 -"finishing-template.jdf-f8-7" = "JDF F8-7"; -// TRANSLATORS: Jog Offset -"finishing-template.jog-offset" = "Jog Offset"; -// TRANSLATORS: Laminate -"finishing-template.laminate" = "Laminate"; -// TRANSLATORS: Punch -"finishing-template.punch" = "Punch"; -// TRANSLATORS: Punch Bottom Left -"finishing-template.punch-bottom-left" = "Punch Bottom Left"; -// TRANSLATORS: Punch Bottom Right -"finishing-template.punch-bottom-right" = "Punch Bottom Right"; -// TRANSLATORS: 2-hole Punch Bottom -"finishing-template.punch-dual-bottom" = "2-hole Punch Bottom"; -// TRANSLATORS: 2-hole Punch Left -"finishing-template.punch-dual-left" = "2-hole Punch Left"; -// TRANSLATORS: 2-hole Punch Right -"finishing-template.punch-dual-right" = "2-hole Punch Right"; -// TRANSLATORS: 2-hole Punch Top -"finishing-template.punch-dual-top" = "2-hole Punch Top"; -// TRANSLATORS: Multi-hole Punch Bottom -"finishing-template.punch-multiple-bottom" = "Multi-hole Punch Bottom"; -// TRANSLATORS: Multi-hole Punch Left -"finishing-template.punch-multiple-left" = "Multi-hole Punch Left"; -// TRANSLATORS: Multi-hole Punch Right -"finishing-template.punch-multiple-right" = "Multi-hole Punch Right"; -// TRANSLATORS: Multi-hole Punch Top -"finishing-template.punch-multiple-top" = "Multi-hole Punch Top"; -// TRANSLATORS: 4-hole Punch Bottom -"finishing-template.punch-quad-bottom" = "4-hole Punch Bottom"; -// TRANSLATORS: 4-hole Punch Left -"finishing-template.punch-quad-left" = "4-hole Punch Left"; -// TRANSLATORS: 4-hole Punch Right -"finishing-template.punch-quad-right" = "4-hole Punch Right"; -// TRANSLATORS: 4-hole Punch Top -"finishing-template.punch-quad-top" = "4-hole Punch Top"; -// TRANSLATORS: Punch Top Left -"finishing-template.punch-top-left" = "Punch Top Left"; -// TRANSLATORS: Punch Top Right -"finishing-template.punch-top-right" = "Punch Top Right"; -// TRANSLATORS: 3-hole Punch Bottom -"finishing-template.punch-triple-bottom" = "3-hole Punch Bottom"; -// TRANSLATORS: 3-hole Punch Left -"finishing-template.punch-triple-left" = "3-hole Punch Left"; -// TRANSLATORS: 3-hole Punch Right -"finishing-template.punch-triple-right" = "3-hole Punch Right"; -// TRANSLATORS: 3-hole Punch Top -"finishing-template.punch-triple-top" = "3-hole Punch Top"; -// TRANSLATORS: Saddle Stitch -"finishing-template.saddle-stitch" = "Saddle Stitch"; -// TRANSLATORS: Staple -"finishing-template.staple" = "Staple"; -// TRANSLATORS: Staple Bottom Left -"finishing-template.staple-bottom-left" = "Staple Bottom Left"; -// TRANSLATORS: Staple Bottom Right -"finishing-template.staple-bottom-right" = "Staple Bottom Right"; -// TRANSLATORS: 2 Staples on Bottom -"finishing-template.staple-dual-bottom" = "2 Staples on Bottom"; -// TRANSLATORS: 2 Staples on Left -"finishing-template.staple-dual-left" = "2 Staples on Left"; -// TRANSLATORS: 2 Staples on Right -"finishing-template.staple-dual-right" = "2 Staples on Right"; -// TRANSLATORS: 2 Staples on Top -"finishing-template.staple-dual-top" = "2 Staples on Top"; -// TRANSLATORS: Staple Top Left -"finishing-template.staple-top-left" = "Staple Top Left"; -// TRANSLATORS: Staple Top Right -"finishing-template.staple-top-right" = "Staple Top Right"; -// TRANSLATORS: 3 Staples on Bottom -"finishing-template.staple-triple-bottom" = "3 Staples on Bottom"; -// TRANSLATORS: 3 Staples on Left -"finishing-template.staple-triple-left" = "3 Staples on Left"; -// TRANSLATORS: 3 Staples on Right -"finishing-template.staple-triple-right" = "3 Staples on Right"; -// TRANSLATORS: 3 Staples on Top -"finishing-template.staple-triple-top" = "3 Staples on Top"; -// TRANSLATORS: Trim -"finishing-template.trim" = "Trim"; -// TRANSLATORS: Trim After Every Set -"finishing-template.trim-after-copies" = "Trim After Every Set"; -// TRANSLATORS: Trim After Every Document -"finishing-template.trim-after-documents" = "Trim After Every Document"; -// TRANSLATORS: Trim After Job -"finishing-template.trim-after-job" = "Trim After Job"; -// TRANSLATORS: Trim After Every Page -"finishing-template.trim-after-pages" = "Trim After Every Page"; -// TRANSLATORS: Trim After Every Set -"finishing-template.trim-after-sets" = "Trim After Every Set"; -// TRANSLATORS: Trim After Every Page -"finishing-template.trim-after-sheets" = "Trim After Every Page"; -// TRANSLATORS: Finishings -"finishings" = "Finishings"; -// TRANSLATORS: Finishings -"finishings-col" = "Finishings"; -// TRANSLATORS: Fold -"finishings.10" = "Fold"; -// TRANSLATORS: Z Fold -"finishings.100" = "Z Fold"; -// TRANSLATORS: Engineering Z Fold -"finishings.101" = "Engineering Z Fold"; -// TRANSLATORS: Trim -"finishings.11" = "Trim"; -// TRANSLATORS: Bale -"finishings.12" = "Bale"; -// TRANSLATORS: Booklet Maker -"finishings.13" = "Booklet Maker"; -// TRANSLATORS: Jog Offset -"finishings.14" = "Jog Offset"; -// TRANSLATORS: Coat -"finishings.15" = "Coat"; -// TRANSLATORS: Laminate -"finishings.16" = "Laminate"; -// TRANSLATORS: Staple Top Left -"finishings.20" = "Staple Top Left"; -// TRANSLATORS: Staple Bottom Left -"finishings.21" = "Staple Bottom Left"; -// TRANSLATORS: Staple Top Right -"finishings.22" = "Staple Top Right"; -// TRANSLATORS: Staple Bottom Right -"finishings.23" = "Staple Bottom Right"; -// TRANSLATORS: Edge Stitch Left -"finishings.24" = "Edge Stitch Left"; -// TRANSLATORS: Edge Stitch Top -"finishings.25" = "Edge Stitch Top"; -// TRANSLATORS: Edge Stitch Right -"finishings.26" = "Edge Stitch Right"; -// TRANSLATORS: Edge Stitch Bottom -"finishings.27" = "Edge Stitch Bottom"; -// TRANSLATORS: 2 Staples on Left -"finishings.28" = "2 Staples on Left"; -// TRANSLATORS: 2 Staples on Top -"finishings.29" = "2 Staples on Top"; -// TRANSLATORS: None -"finishings.3" = "None"; -// TRANSLATORS: 2 Staples on Right -"finishings.30" = "2 Staples on Right"; -// TRANSLATORS: 2 Staples on Bottom -"finishings.31" = "2 Staples on Bottom"; -// TRANSLATORS: 3 Staples on Left -"finishings.32" = "3 Staples on Left"; -// TRANSLATORS: 3 Staples on Top -"finishings.33" = "3 Staples on Top"; -// TRANSLATORS: 3 Staples on Right -"finishings.34" = "3 Staples on Right"; -// TRANSLATORS: 3 Staples on Bottom -"finishings.35" = "3 Staples on Bottom"; -// TRANSLATORS: Staple -"finishings.4" = "Staple"; -// TRANSLATORS: Punch -"finishings.5" = "Punch"; -// TRANSLATORS: Bind Left -"finishings.50" = "Bind Left"; -// TRANSLATORS: Bind Top -"finishings.51" = "Bind Top"; -// TRANSLATORS: Bind Right -"finishings.52" = "Bind Right"; -// TRANSLATORS: Bind Bottom -"finishings.53" = "Bind Bottom"; -// TRANSLATORS: Cover -"finishings.6" = "Cover"; -// TRANSLATORS: Trim Pages -"finishings.60" = "Trim Pages"; -// TRANSLATORS: Trim Documents -"finishings.61" = "Trim Documents"; -// TRANSLATORS: Trim Copies -"finishings.62" = "Trim Copies"; -// TRANSLATORS: Trim Job -"finishings.63" = "Trim Job"; -// TRANSLATORS: Bind -"finishings.7" = "Bind"; -// TRANSLATORS: Punch Top Left -"finishings.70" = "Punch Top Left"; -// TRANSLATORS: Punch Bottom Left -"finishings.71" = "Punch Bottom Left"; -// TRANSLATORS: Punch Top Right -"finishings.72" = "Punch Top Right"; -// TRANSLATORS: Punch Bottom Right -"finishings.73" = "Punch Bottom Right"; -// TRANSLATORS: 2-hole Punch Left -"finishings.74" = "2-hole Punch Left"; -// TRANSLATORS: 2-hole Punch Top -"finishings.75" = "2-hole Punch Top"; -// TRANSLATORS: 2-hole Punch Right -"finishings.76" = "2-hole Punch Right"; -// TRANSLATORS: 2-hole Punch Bottom -"finishings.77" = "2-hole Punch Bottom"; -// TRANSLATORS: 3-hole Punch Left -"finishings.78" = "3-hole Punch Left"; -// TRANSLATORS: 3-hole Punch Top -"finishings.79" = "3-hole Punch Top"; -// TRANSLATORS: Saddle Stitch -"finishings.8" = "Saddle Stitch"; -// TRANSLATORS: 3-hole Punch Right -"finishings.80" = "3-hole Punch Right"; -// TRANSLATORS: 3-hole Punch Bottom -"finishings.81" = "3-hole Punch Bottom"; -// TRANSLATORS: 4-hole Punch Left -"finishings.82" = "4-hole Punch Left"; -// TRANSLATORS: 4-hole Punch Top -"finishings.83" = "4-hole Punch Top"; -// TRANSLATORS: 4-hole Punch Right -"finishings.84" = "4-hole Punch Right"; -// TRANSLATORS: 4-hole Punch Bottom -"finishings.85" = "4-hole Punch Bottom"; -// TRANSLATORS: Multi-hole Punch Left -"finishings.86" = "Multi-hole Punch Left"; -// TRANSLATORS: Multi-hole Punch Top -"finishings.87" = "Multi-hole Punch Top"; -// TRANSLATORS: Multi-hole Punch Right -"finishings.88" = "Multi-hole Punch Right"; -// TRANSLATORS: Multi-hole Punch Bottom -"finishings.89" = "Multi-hole Punch Bottom"; -// TRANSLATORS: Edge Stitch -"finishings.9" = "Edge Stitch"; -// TRANSLATORS: Accordion Fold -"finishings.90" = "Accordion Fold"; -// TRANSLATORS: Double Gate Fold -"finishings.91" = "Double Gate Fold"; -// TRANSLATORS: Gate Fold -"finishings.92" = "Gate Fold"; -// TRANSLATORS: Half Fold -"finishings.93" = "Half Fold"; -// TRANSLATORS: Half Z Fold -"finishings.94" = "Half Z Fold"; -// TRANSLATORS: Left Gate Fold -"finishings.95" = "Left Gate Fold"; -// TRANSLATORS: Letter Fold -"finishings.96" = "Letter Fold"; -// TRANSLATORS: Parallel Fold -"finishings.97" = "Parallel Fold"; -// TRANSLATORS: Poster Fold -"finishings.98" = "Poster Fold"; -// TRANSLATORS: Right Gate Fold -"finishings.99" = "Right Gate Fold"; -// TRANSLATORS: Fold -"folding" = "Fold"; -// TRANSLATORS: Fold Direction -"folding-direction" = "Fold Direction"; -// TRANSLATORS: Inward -"folding-direction.inward" = "Inward"; -// TRANSLATORS: Outward -"folding-direction.outward" = "Outward"; -// TRANSLATORS: Fold Position -"folding-offset" = "Fold Position"; -// TRANSLATORS: Fold Edge -"folding-reference-edge" = "Fold Edge"; -// TRANSLATORS: Bottom -"folding-reference-edge.bottom" = "Bottom"; -// TRANSLATORS: Left -"folding-reference-edge.left" = "Left"; -// TRANSLATORS: Right -"folding-reference-edge.right" = "Right"; -// TRANSLATORS: Top -"folding-reference-edge.top" = "Top"; -// TRANSLATORS: Font Name -"font-name-requested" = "Font Name"; -// TRANSLATORS: Font Size -"font-size-requested" = "Font Size"; -// TRANSLATORS: Force Front Side -"force-front-side" = "Force Front Side"; -// TRANSLATORS: From Name -"from-name" = "From Name"; -"held" = "held"; -"help\t\tGet help on commands." = "help\t\tGet help on commands."; -"idle" = "idle"; -// TRANSLATORS: Imposition Template -"imposition-template" = "Imposition Template"; -// TRANSLATORS: None -"imposition-template.none" = "None"; -// TRANSLATORS: Signature -"imposition-template.signature" = "Signature"; -// TRANSLATORS: Insert Page Number -"insert-after-page-number" = "Insert Page Number"; -// TRANSLATORS: Insert Count -"insert-count" = "Insert Count"; -// TRANSLATORS: Insert Sheet -"insert-sheet" = "Insert Sheet"; -"ippfind: Bad regular expression: %s" = "ippfind: Bad regular expression: %s"; -"ippfind: Cannot use --and after --or." = "ippfind: Cannot use --and after --or."; -"ippfind: Expected key name after %s." = "ippfind: Expected key name after %s."; -"ippfind: Expected port range after %s." = "ippfind: Expected port range after %s."; -"ippfind: Expected program after %s." = "ippfind: Expected program after %s."; -"ippfind: Expected semi-colon after %s." = "ippfind: Expected semi-colon after %s."; -"ippfind: Missing close brace in substitution." = "ippfind: Missing close brace in substitution."; -"ippfind: Missing close parenthesis." = "ippfind: Missing close parenthesis."; -"ippfind: Missing expression before \"--and\"." = "ippfind: Missing expression before “--and”."; -"ippfind: Missing expression before \"--or\"." = "ippfind: Missing expression before “--or”."; -"ippfind: Missing key name after %s." = "ippfind: Missing key name after %s."; -"ippfind: Missing name after %s." = "ippfind: Missing name after %s."; -"ippfind: Missing open parenthesis." = "ippfind: Missing open parenthesis."; -"ippfind: Missing program after %s." = "ippfind: Missing program after %s."; -"ippfind: Missing regular expression after %s." = "ippfind: Missing regular expression after %s."; -"ippfind: Missing semi-colon after %s." = "ippfind: Missing semi-colon after %s."; -"ippfind: Out of memory." = "ippfind: Out of memory."; -"ippfind: Too many parenthesis." = "ippfind: Too many parenthesis."; -"ippfind: Unable to execute \"%s\": %s" = "ippfind: Unable to execute “%s”: %s"; -"ippfind: Unknown variable \"{%s}\"." = "ippfind: Unknown variable “{%s}”."; -"ipptool: \"-i\" and \"-n\" are incompatible with \"--ippserver\", \"-P\", and \"-X\"." = "ipptool: “-i” and “-n” are incompatible with “--ippserver”, “-P”, and “-X”."; -"ipptool: \"-i\" and \"-n\" are incompatible with \"-P\" and \"-X\"." = "ipptool: “-i” and “-n” are incompatible with “-P” and “-X”."; -"ipptool: Bad URI \"%s\"." = "ipptool: Bad URI “%s”."; -"ipptool: Invalid seconds for \"-i\"." = "ipptool: Invalid seconds for “-i”."; -"ipptool: May only specify a single URI." = "ipptool: May only specify a single URI."; -"ipptool: Missing count for \"-n\"." = "ipptool: Missing count for “-n”."; -"ipptool: Missing filename for \"--ippserver\"." = "ipptool: Missing filename for “--ippserver”."; -"ipptool: Missing filename for \"-f\"." = "ipptool: Missing filename for “-f”."; -"ipptool: Missing name=value for \"-d\"." = "ipptool: Missing name=value for “-d”."; -"ipptool: Missing seconds for \"-i\"." = "ipptool: Missing seconds for “-i”."; -"ipptool: URI required before test file." = "ipptool: URI required before test file."; -"ipptool: Unable to allocate memory: %s" = "ipptool: Unable to allocate memory: %s"; -// TRANSLATORS: Job Account ID -"job-account-id" = "Job Account ID"; -// TRANSLATORS: Job Account Type -"job-account-type" = "Job Account Type"; -// TRANSLATORS: General -"job-account-type.general" = "General"; -// TRANSLATORS: Group -"job-account-type.group" = "Group"; -// TRANSLATORS: None -"job-account-type.none" = "None"; -// TRANSLATORS: Job Accounting Output Bin -"job-accounting-output-bin" = "Job Accounting Output Bin"; -// TRANSLATORS: Job Accounting Sheets -"job-accounting-sheets" = "Job Accounting Sheets"; -// TRANSLATORS: Type of Job Accounting Sheets -"job-accounting-sheets-type" = "Type of Job Accounting Sheets"; -// TRANSLATORS: None -"job-accounting-sheets-type.none" = "None"; -// TRANSLATORS: Standard -"job-accounting-sheets-type.standard" = "Standard"; -// TRANSLATORS: Job Accounting User ID -"job-accounting-user-id" = "Job Accounting User ID"; -// TRANSLATORS: Job Cancel After -"job-cancel-after" = "Cancel job after"; -// TRANSLATORS: Copies -"job-copies" = "Copies"; -// TRANSLATORS: Back Cover -"job-cover-back" = "Back Cover"; -// TRANSLATORS: Front Cover -"job-cover-front" = "Front Cover"; -// TRANSLATORS: Delay Output Until -"job-delay-output-until" = "Delay Output Until"; -// TRANSLATORS: Delay Output Until -"job-delay-output-until-time" = "Delay Output Until"; -// TRANSLATORS: Daytime -"job-delay-output-until.day-time" = "Daytime"; -// TRANSLATORS: Evening -"job-delay-output-until.evening" = "Evening"; -// TRANSLATORS: Released -"job-delay-output-until.indefinite" = "Released"; -// TRANSLATORS: Night -"job-delay-output-until.night" = "Night"; -// TRANSLATORS: No Delay -"job-delay-output-until.no-delay-output" = "No Delay"; -// TRANSLATORS: Second Shift -"job-delay-output-until.second-shift" = "Second Shift"; -// TRANSLATORS: Third Shift -"job-delay-output-until.third-shift" = "Third Shift"; -// TRANSLATORS: Weekend -"job-delay-output-until.weekend" = "Weekend"; -// TRANSLATORS: On Error -"job-error-action" = "On Error"; -// TRANSLATORS: Abort Job -"job-error-action.abort-job" = "Abort Job"; -// TRANSLATORS: Cancel Job -"job-error-action.cancel-job" = "Cancel Job"; -// TRANSLATORS: Continue Job -"job-error-action.continue-job" = "Continue Job"; -// TRANSLATORS: Suspend Job -"job-error-action.suspend-job" = "Suspend Job"; -// TRANSLATORS: Print Error Sheet -"job-error-sheet" = "Print Error Sheet"; -// TRANSLATORS: Type of Error Sheet -"job-error-sheet-type" = "Type of Error Sheet"; -// TRANSLATORS: None -"job-error-sheet-type.none" = "None"; -// TRANSLATORS: Standard -"job-error-sheet-type.standard" = "Standard"; -// TRANSLATORS: Print Error Sheet -"job-error-sheet-when" = "Print Error Sheet"; -// TRANSLATORS: Always -"job-error-sheet-when.always" = "Always"; -// TRANSLATORS: On Error -"job-error-sheet-when.on-error" = "On Error"; -// TRANSLATORS: Job Finishings -"job-finishings" = "Job Finishings"; -// TRANSLATORS: Hold Until -"job-hold-until" = "Hold Until"; -// TRANSLATORS: Hold Until -"job-hold-until-time" = "Hold Until"; -// TRANSLATORS: Daytime -"job-hold-until.day-time" = "Daytime"; -// TRANSLATORS: Evening -"job-hold-until.evening" = "Evening"; -// TRANSLATORS: Released -"job-hold-until.indefinite" = "Released"; -// TRANSLATORS: Night -"job-hold-until.night" = "Night"; -// TRANSLATORS: No Hold -"job-hold-until.no-hold" = "No Hold"; -// TRANSLATORS: Second Shift -"job-hold-until.second-shift" = "Second Shift"; -// TRANSLATORS: Third Shift -"job-hold-until.third-shift" = "Third Shift"; -// TRANSLATORS: Weekend -"job-hold-until.weekend" = "Weekend"; -// TRANSLATORS: Job Mandatory Attributes -"job-mandatory-attributes" = "Job Mandatory Attributes"; -// TRANSLATORS: Title -"job-name" = "Title"; -// TRANSLATORS: Job Pages -"job-pages" = "Job Pages"; -// TRANSLATORS: Job Pages -"job-pages-col" = "Job Pages"; -// TRANSLATORS: Job Phone Number -"job-phone-number" = "Job Phone Number"; -"job-printer-uri attribute missing." = "job-printer-uri attribute missing."; -// TRANSLATORS: Job Priority -"job-priority" = "Job Priority"; -// TRANSLATORS: Job Privacy Attributes -"job-privacy-attributes" = "Job Privacy Attributes"; -// TRANSLATORS: All -"job-privacy-attributes.all" = "All"; -// TRANSLATORS: Default -"job-privacy-attributes.default" = "Default"; -// TRANSLATORS: Job Description -"job-privacy-attributes.job-description" = "Job Description"; -// TRANSLATORS: Job Template -"job-privacy-attributes.job-template" = "Job Template"; -// TRANSLATORS: None -"job-privacy-attributes.none" = "None"; -// TRANSLATORS: Job Privacy Scope -"job-privacy-scope" = "Job Privacy Scope"; -// TRANSLATORS: All -"job-privacy-scope.all" = "All"; -// TRANSLATORS: Default -"job-privacy-scope.default" = "Default"; -// TRANSLATORS: None -"job-privacy-scope.none" = "None"; -// TRANSLATORS: Owner -"job-privacy-scope.owner" = "Owner"; -// TRANSLATORS: Job Recipient Name -"job-recipient-name" = "Job Recipient Name"; -// TRANSLATORS: Job Retain Until -"job-retain-until" = "Retain job until"; -// TRANSLATORS: Job Retain Until Interval -"job-retain-until-interval" = "Retain job until interval"; -// TRANSLATORS: Job Retain Until Time -"job-retain-until-time" = "Retain job until time"; -// TRANSLATORS: End Of Day -"job-retain-until.end-of-day" = "End of day"; -// TRANSLATORS: End Of Month -"job-retain-until.end-of-month" = "End of month"; -// TRANSLATORS: End Of Week -"job-retain-until.end-of-week" = "End of week"; -// TRANSLATORS: Indefinite -"job-retain-until.indefinite" = "Indefinitely"; -// TRANSLATORS: None -"job-retain-until.none" = "Never"; -// TRANSLATORS: Job Save Disposition -"job-save-disposition" = "Job Save Disposition"; -// TRANSLATORS: Job Sheet Message -"job-sheet-message" = "Job Sheet Message"; -// TRANSLATORS: Banner Page -"job-sheets" = "Banner Page"; -// TRANSLATORS: Banner Page -"job-sheets-col" = "Banner Page"; -// TRANSLATORS: First Page in Document -"job-sheets.first-print-stream-page" = "First Page in Document"; -// TRANSLATORS: Start and End Sheets -"job-sheets.job-both-sheet" = "Start and End Sheets"; -// TRANSLATORS: End Sheet -"job-sheets.job-end-sheet" = "End Sheet"; -// TRANSLATORS: Start Sheet -"job-sheets.job-start-sheet" = "Start Sheet"; -// TRANSLATORS: None -"job-sheets.none" = "None"; -// TRANSLATORS: Standard -"job-sheets.standard" = "Standard"; -// TRANSLATORS: Job State -"job-state" = "Job State"; -// TRANSLATORS: Job State Message -"job-state-message" = "Job State Message"; -// TRANSLATORS: Detailed Job State -"job-state-reasons" = "Detailed Job State"; -// TRANSLATORS: Stopping -"job-state-reasons.aborted-by-system" = "Aborted By System"; -// TRANSLATORS: Account Authorization Failed -"job-state-reasons.account-authorization-failed" = "Account Authorization Failed"; -// TRANSLATORS: Account Closed -"job-state-reasons.account-closed" = "Account Closed"; -// TRANSLATORS: Account Info Needed -"job-state-reasons.account-info-needed" = "Account Info Needed"; -// TRANSLATORS: Account Limit Reached -"job-state-reasons.account-limit-reached" = "Account Limit Reached"; -// TRANSLATORS: Decompression error -"job-state-reasons.compression-error" = "Compression Error"; -// TRANSLATORS: Conflicting Attributes -"job-state-reasons.conflicting-attributes" = "Conflicting Attributes"; -// TRANSLATORS: Connected To Destination -"job-state-reasons.connected-to-destination" = "Connected To Destination"; -// TRANSLATORS: Connecting To Destination -"job-state-reasons.connecting-to-destination" = "Connecting To Destination"; -// TRANSLATORS: Destination Uri Failed -"job-state-reasons.destination-uri-failed" = "Destination Uri Failed"; -// TRANSLATORS: Digital Signature Did Not Verify -"job-state-reasons.digital-signature-did-not-verify" = "Digital Signature Did Not Verify"; -// TRANSLATORS: Digital Signature Type Not Supported -"job-state-reasons.digital-signature-type-not-supported" = "Digital Signature Type Not Supported"; -// TRANSLATORS: Document Access Error -"job-state-reasons.document-access-error" = "Document Access Error"; -// TRANSLATORS: Document Format Error -"job-state-reasons.document-format-error" = "Document Format Error"; -// TRANSLATORS: Document Password Error -"job-state-reasons.document-password-error" = "Document Password Error"; -// TRANSLATORS: Document Permission Error -"job-state-reasons.document-permission-error" = "Document Permission Error"; -// TRANSLATORS: Document Security Error -"job-state-reasons.document-security-error" = "Document Security Error"; -// TRANSLATORS: Document Unprintable Error -"job-state-reasons.document-unprintable-error" = "Document Unprintable Error"; -// TRANSLATORS: Errors Detected -"job-state-reasons.errors-detected" = "Errors Detected"; -// TRANSLATORS: Canceled at printer -"job-state-reasons.job-canceled-at-device" = "Job Canceled At Device"; -// TRANSLATORS: Canceled by operator -"job-state-reasons.job-canceled-by-operator" = "Job Canceled By Operator"; -// TRANSLATORS: Canceled by user -"job-state-reasons.job-canceled-by-user" = "Job Canceled By User"; -// TRANSLATORS: -"job-state-reasons.job-completed-successfully" = "Job Completed Successfully"; -// TRANSLATORS: Completed with errors -"job-state-reasons.job-completed-with-errors" = "Job Completed With Errors"; -// TRANSLATORS: Completed with warnings -"job-state-reasons.job-completed-with-warnings" = "Job Completed With Warnings"; -// TRANSLATORS: Insufficient data -"job-state-reasons.job-data-insufficient" = "Job Data Insufficient"; -// TRANSLATORS: Job Delay Output Until Specified -"job-state-reasons.job-delay-output-until-specified" = "Job Delay Output Until Specified"; -// TRANSLATORS: Job Digital Signature Wait -"job-state-reasons.job-digital-signature-wait" = "Job Digital Signature Wait"; -// TRANSLATORS: Job Fetchable -"job-state-reasons.job-fetchable" = "Job Fetchable"; -// TRANSLATORS: Job Held For Review -"job-state-reasons.job-held-for-review" = "Job Held For Review"; -// TRANSLATORS: Job held -"job-state-reasons.job-hold-until-specified" = "Job Hold Until Specified"; -// TRANSLATORS: Incoming -"job-state-reasons.job-incoming" = "Job Incoming"; -// TRANSLATORS: Interpreting -"job-state-reasons.job-interpreting" = "Job Interpreting"; -// TRANSLATORS: Outgoing -"job-state-reasons.job-outgoing" = "Job Outgoing"; -// TRANSLATORS: Job Password Wait -"job-state-reasons.job-password-wait" = "Job Password Wait"; -// TRANSLATORS: Job Printed Successfully -"job-state-reasons.job-printed-successfully" = "Job Printed Successfully"; -// TRANSLATORS: Job Printed With Errors -"job-state-reasons.job-printed-with-errors" = "Job Printed With Errors"; -// TRANSLATORS: Job Printed With Warnings -"job-state-reasons.job-printed-with-warnings" = "Job Printed With Warnings"; -// TRANSLATORS: Printing -"job-state-reasons.job-printing" = "Job Printing"; -// TRANSLATORS: Preparing to print -"job-state-reasons.job-queued" = "Job Queued"; -// TRANSLATORS: Processing document -"job-state-reasons.job-queued-for-marker" = "Job Queued For Marker"; -// TRANSLATORS: Job Release Wait -"job-state-reasons.job-release-wait" = "Job Release Wait"; -// TRANSLATORS: Restartable -"job-state-reasons.job-restartable" = "Job Restartable"; -// TRANSLATORS: Job Resuming -"job-state-reasons.job-resuming" = "Job Resuming"; -// TRANSLATORS: Job Saved Successfully -"job-state-reasons.job-saved-successfully" = "Job Saved Successfully"; -// TRANSLATORS: Job Saved With Errors -"job-state-reasons.job-saved-with-errors" = "Job Saved With Errors"; -// TRANSLATORS: Job Saved With Warnings -"job-state-reasons.job-saved-with-warnings" = "Job Saved With Warnings"; -// TRANSLATORS: Job Saving -"job-state-reasons.job-saving" = "Job Saving"; -// TRANSLATORS: Job Spooling -"job-state-reasons.job-spooling" = "Job Spooling"; -// TRANSLATORS: Job Streaming -"job-state-reasons.job-streaming" = "Job Streaming"; -// TRANSLATORS: Suspended -"job-state-reasons.job-suspended" = "Job Suspended"; -// TRANSLATORS: Job Suspended By Operator -"job-state-reasons.job-suspended-by-operator" = "Job Suspended By Operator"; -// TRANSLATORS: Job Suspended By System -"job-state-reasons.job-suspended-by-system" = "Job Suspended By System"; -// TRANSLATORS: Job Suspended By User -"job-state-reasons.job-suspended-by-user" = "Job Suspended By User"; -// TRANSLATORS: Job Suspending -"job-state-reasons.job-suspending" = "Job Suspending"; -// TRANSLATORS: Job Transferring -"job-state-reasons.job-transferring" = "Job Transferring"; -// TRANSLATORS: Transforming -"job-state-reasons.job-transforming" = "Job Transforming"; -// TRANSLATORS: None -"job-state-reasons.none" = "None"; -// TRANSLATORS: Printer offline -"job-state-reasons.printer-stopped" = "Printer Stopped"; -// TRANSLATORS: Printer partially stopped -"job-state-reasons.printer-stopped-partly" = "Printer Stopped Partly"; -// TRANSLATORS: Stopping -"job-state-reasons.processing-to-stop-point" = "Processing To Stop Point"; -// TRANSLATORS: Ready -"job-state-reasons.queued-in-device" = "Queued In Device"; -// TRANSLATORS: Resources Are Not Ready -"job-state-reasons.resources-are-not-ready" = "Resources Are Not Ready"; -// TRANSLATORS: Resources Are Not Supported -"job-state-reasons.resources-are-not-supported" = "Resources Are Not Supported"; -// TRANSLATORS: Service offline -"job-state-reasons.service-off-line" = "Service Off Line"; -// TRANSLATORS: Submission Interrupted -"job-state-reasons.submission-interrupted" = "Submission Interrupted"; -// TRANSLATORS: Unsupported Attributes Or Values -"job-state-reasons.unsupported-attributes-or-values" = "Unsupported Attributes Or Values"; -// TRANSLATORS: Unsupported Compression -"job-state-reasons.unsupported-compression" = "Unsupported Compression"; -// TRANSLATORS: Unsupported Document Format -"job-state-reasons.unsupported-document-format" = "Unsupported Document Format"; -// TRANSLATORS: Waiting For User Action -"job-state-reasons.waiting-for-user-action" = "Waiting For User Action"; -// TRANSLATORS: Warnings Detected -"job-state-reasons.warnings-detected" = "Warnings Detected"; -// TRANSLATORS: Pending -"job-state.3" = "Pending"; -// TRANSLATORS: Held -"job-state.4" = "Held"; -// TRANSLATORS: Processing -"job-state.5" = "Processing"; -// TRANSLATORS: Stopped -"job-state.6" = "Stopped"; -// TRANSLATORS: Canceled -"job-state.7" = "Canceled"; -// TRANSLATORS: Aborted -"job-state.8" = "Aborted"; -// TRANSLATORS: Completed -"job-state.9" = "Completed"; -// TRANSLATORS: Laminate Pages -"laminating" = "Laminate Pages"; -// TRANSLATORS: Laminate -"laminating-sides" = "Laminate"; -// TRANSLATORS: Back Only -"laminating-sides.back" = "Back Only"; -// TRANSLATORS: Front and Back -"laminating-sides.both" = "Front and Back"; -// TRANSLATORS: Front Only -"laminating-sides.front" = "Front Only"; -// TRANSLATORS: Type of Lamination -"laminating-type" = "Type of Lamination"; -// TRANSLATORS: Archival -"laminating-type.archival" = "Archival"; -// TRANSLATORS: Glossy -"laminating-type.glossy" = "Glossy"; -// TRANSLATORS: High Gloss -"laminating-type.high-gloss" = "High Gloss"; -// TRANSLATORS: Matte -"laminating-type.matte" = "Matte"; -// TRANSLATORS: Semi-gloss -"laminating-type.semi-gloss" = "Semi-gloss"; -// TRANSLATORS: Translucent -"laminating-type.translucent" = "Translucent"; -// TRANSLATORS: Logo -"logo" = "Logo"; -"lpadmin: Class name can only contain printable characters." = "lpadmin: Class name can only contain printable characters."; -"lpadmin: Expected PPD after \"-%c\" option." = "lpadmin: Expected PPD after “-%c” option."; -"lpadmin: Expected allow/deny:userlist after \"-u\" option." = "lpadmin: Expected allow/deny:userlist after “-u” option."; -"lpadmin: Expected class after \"-r\" option." = "lpadmin: Expected class after “-r” option."; -"lpadmin: Expected class name after \"-c\" option." = "lpadmin: Expected class name after “-c” option."; -"lpadmin: Expected description after \"-D\" option." = "lpadmin: Expected description after “-D” option."; -"lpadmin: Expected device URI after \"-v\" option." = "lpadmin: Expected device URI after “-v” option."; -"lpadmin: Expected file type(s) after \"-I\" option." = "lpadmin: Expected file type(s) after “-I” option."; -"lpadmin: Expected hostname after \"-h\" option." = "lpadmin: Expected hostname after “-h” option."; -"lpadmin: Expected location after \"-L\" option." = "lpadmin: Expected location after “-L” option."; -"lpadmin: Expected model after \"-m\" option." = "lpadmin: Expected model after “-m” option."; -"lpadmin: Expected name after \"-R\" option." = "lpadmin: Expected name after “-R” option."; -"lpadmin: Expected name=value after \"-o\" option." = "lpadmin: Expected name=value after “-o” option."; -"lpadmin: Expected printer after \"-p\" option." = "lpadmin: Expected printer after “-p” option."; -"lpadmin: Expected printer name after \"-d\" option." = "lpadmin: Expected printer name after “-d” option."; -"lpadmin: Expected printer or class after \"-x\" option." = "lpadmin: Expected printer or class after “-x” option."; -"lpadmin: No member names were seen." = "lpadmin: No member names were seen."; -"lpadmin: Printer %s is already a member of class %s." = "lpadmin: Printer %s is already a member of class %s."; -"lpadmin: Printer %s is not a member of class %s." = "lpadmin: Printer %s is not a member of class %s."; -"lpadmin: Printer drivers are deprecated and will stop working in a future version of CUPS." = "lpadmin: Printer drivers are deprecated and will stop working in a future version of CUPS."; -"lpadmin: Printer name can only contain printable characters." = "lpadmin: Printer name can only contain printable characters."; -"lpadmin: Raw queues are deprecated and will stop working in a future version of CUPS." = "lpadmin: Raw queues are deprecated and will stop working in a future version of CUPS."; -"lpadmin: Raw queues are no longer supported on macOS." = "lpadmin: Raw queues are no longer supported on macOS."; -"lpadmin: System V interface scripts are no longer supported for security reasons." = "lpadmin: System V interface scripts are no longer supported for security reasons."; -"lpadmin: Unable to add a printer to the class:\n You must specify a printer name first." = "lpadmin: Unable to add a printer to the class:\n You must specify a printer name first."; -"lpadmin: Unable to connect to server: %s" = "lpadmin: Unable to connect to server: %s"; -"lpadmin: Unable to create temporary file" = "lpadmin: Unable to create temporary file"; -"lpadmin: Unable to delete option:\n You must specify a printer name first." = "lpadmin: Unable to delete option:\n You must specify a printer name first."; -"lpadmin: Unable to open PPD \"%s\": %s" = "lpadmin: Unable to open PPD “%s”: %s"; -"lpadmin: Unable to open PPD \"%s\": %s on line %d." = "lpadmin: Unable to open PPD “%s”: %s on line %d."; -"lpadmin: Unable to remove a printer from the class:\n You must specify a printer name first." = "lpadmin: Unable to remove a printer from the class:\n You must specify a printer name first."; -"lpadmin: Unable to set the printer options:\n You must specify a printer name first." = "lpadmin: Unable to set the printer options:\n You must specify a printer name first."; -"lpadmin: Unknown allow/deny option \"%s\"." = "lpadmin: Unknown allow/deny option “%s”."; -"lpadmin: Unknown argument \"%s\"." = "lpadmin: Unknown argument “%s”."; -"lpadmin: Unknown option \"%c\"." = "lpadmin: Unknown option “%c”."; -"lpadmin: Use the 'everywhere' model for shared printers." = "lpadmin: Use the ‘everywhere’ model for shared printers."; -"lpadmin: Warning - content type list ignored." = "lpadmin: Warning - content type list ignored."; -"lpc> " = "lpc> "; -"lpinfo: Expected 1284 device ID string after \"--device-id\"." = "lpinfo: Expected 1284 device ID string after “--device-id”."; -"lpinfo: Expected language after \"--language\"." = "lpinfo: Expected language after “--language”."; -"lpinfo: Expected make and model after \"--make-and-model\"." = "lpinfo: Expected make and model after “--make-and-model”."; -"lpinfo: Expected product string after \"--product\"." = "lpinfo: Expected product string after “--product”."; -"lpinfo: Expected scheme list after \"--exclude-schemes\"." = "lpinfo: Expected scheme list after “--exclude-schemes”."; -"lpinfo: Expected scheme list after \"--include-schemes\"." = "lpinfo: Expected scheme list after “--include-schemes”."; -"lpinfo: Expected timeout after \"--timeout\"." = "lpinfo: Expected timeout after “--timeout”."; -"lpmove: Unable to connect to server: %s" = "lpmove: Unable to connect to server: %s"; -"lpmove: Unknown argument \"%s\"." = "lpmove: Unknown argument “%s”."; -"lpoptions: No printers." = "lpoptions: No printers."; -"lpoptions: Unable to add printer or instance: %s" = "lpoptions: Unable to add printer or instance: %s"; -"lpoptions: Unable to get PPD file for %s: %s" = "lpoptions: Unable to get PPD file for %s: %s"; -"lpoptions: Unable to open PPD file for %s." = "lpoptions: Unable to open PPD file for %s."; -"lpoptions: Unknown printer or class." = "lpoptions: Unknown printer or class."; -"lpstat: error - %s environment variable names non-existent destination \"%s\"." = "lpstat: error - %s environment variable names non-existent destination \"%s\"."; -// TRANSLATORS: Amount of Material -"material-amount" = "Amount of Material"; -// TRANSLATORS: Amount Units -"material-amount-units" = "Amount Units"; -// TRANSLATORS: Grams -"material-amount-units.g" = "Grams"; -// TRANSLATORS: Kilograms -"material-amount-units.kg" = "Kilograms"; -// TRANSLATORS: Liters -"material-amount-units.l" = "Liters"; -// TRANSLATORS: Meters -"material-amount-units.m" = "Meters"; -// TRANSLATORS: Milliliters -"material-amount-units.ml" = "Milliliters"; -// TRANSLATORS: Millimeters -"material-amount-units.mm" = "Millimeters"; -// TRANSLATORS: Material Color -"material-color" = "Material Color"; -// TRANSLATORS: Material Diameter -"material-diameter" = "Material Diameter"; -// TRANSLATORS: Material Diameter Tolerance -"material-diameter-tolerance" = "Material Diameter Tolerance"; -// TRANSLATORS: Material Fill Density -"material-fill-density" = "Material Fill Density"; -// TRANSLATORS: Material Name -"material-name" = "Material Name"; -// TRANSLATORS: Material Nozzle Diameter -"material-nozzle-diameter" = "Material Nozzle Diameter"; -// TRANSLATORS: Use Material For -"material-purpose" = "Use Material For"; -// TRANSLATORS: Everything -"material-purpose.all" = "Everything"; -// TRANSLATORS: Base -"material-purpose.base" = "Base"; -// TRANSLATORS: In-fill -"material-purpose.in-fill" = "In-fill"; -// TRANSLATORS: Shell -"material-purpose.shell" = "Shell"; -// TRANSLATORS: Supports -"material-purpose.support" = "Supports"; -// TRANSLATORS: Feed Rate -"material-rate" = "Feed Rate"; -// TRANSLATORS: Feed Rate Units -"material-rate-units" = "Feed Rate Units"; -// TRANSLATORS: Milligrams per second -"material-rate-units.mg_second" = "Milligrams per second"; -// TRANSLATORS: Milliliters per second -"material-rate-units.ml_second" = "Milliliters per second"; -// TRANSLATORS: Millimeters per second -"material-rate-units.mm_second" = "Millimeters per second"; -// TRANSLATORS: Material Retraction -"material-retraction" = "Material Retraction"; -// TRANSLATORS: Material Shell Thickness -"material-shell-thickness" = "Material Shell Thickness"; -// TRANSLATORS: Material Temperature -"material-temperature" = "Material Temperature"; -// TRANSLATORS: Material Type -"material-type" = "Material Type"; -// TRANSLATORS: ABS -"material-type.abs" = "ABS"; -// TRANSLATORS: Carbon Fiber ABS -"material-type.abs-carbon-fiber" = "Carbon Fiber ABS"; -// TRANSLATORS: Carbon Nanotube ABS -"material-type.abs-carbon-nanotube" = "Carbon Nanotube ABS"; -// TRANSLATORS: Chocolate -"material-type.chocolate" = "Chocolate"; -// TRANSLATORS: Gold -"material-type.gold" = "Gold"; -// TRANSLATORS: Nylon -"material-type.nylon" = "Nylon"; -// TRANSLATORS: Pet -"material-type.pet" = "Pet"; -// TRANSLATORS: Photopolymer -"material-type.photopolymer" = "Photopolymer"; -// TRANSLATORS: PLA -"material-type.pla" = "PLA"; -// TRANSLATORS: Conductive PLA -"material-type.pla-conductive" = "Conductive PLA"; -// TRANSLATORS: Pla Dissolvable -"material-type.pla-dissolvable" = "Pla Dissolvable"; -// TRANSLATORS: Flexible PLA -"material-type.pla-flexible" = "Flexible PLA"; -// TRANSLATORS: Magnetic PLA -"material-type.pla-magnetic" = "Magnetic PLA"; -// TRANSLATORS: Steel PLA -"material-type.pla-steel" = "Steel PLA"; -// TRANSLATORS: Stone PLA -"material-type.pla-stone" = "Stone PLA"; -// TRANSLATORS: Wood PLA -"material-type.pla-wood" = "Wood PLA"; -// TRANSLATORS: Polycarbonate -"material-type.polycarbonate" = "Polycarbonate"; -// TRANSLATORS: Dissolvable PVA -"material-type.pva-dissolvable" = "Dissolvable PVA"; -// TRANSLATORS: Silver -"material-type.silver" = "Silver"; -// TRANSLATORS: Titanium -"material-type.titanium" = "Titanium"; -// TRANSLATORS: Wax -"material-type.wax" = "Wax"; -// TRANSLATORS: Materials -"materials-col" = "Materials"; -// TRANSLATORS: Media -"media" = "Media"; -// TRANSLATORS: Back Coating of Media -"media-back-coating" = "Back Coating of Media"; -// TRANSLATORS: Glossy -"media-back-coating.glossy" = "Glossy"; -// TRANSLATORS: High Gloss -"media-back-coating.high-gloss" = "High Gloss"; -// TRANSLATORS: Matte -"media-back-coating.matte" = "Matte"; -// TRANSLATORS: None -"media-back-coating.none" = "None"; -// TRANSLATORS: Satin -"media-back-coating.satin" = "Satin"; -// TRANSLATORS: Semi-gloss -"media-back-coating.semi-gloss" = "Semi-gloss"; -// TRANSLATORS: Media Bottom Margin -"media-bottom-margin" = "Media Bottom Margin"; -// TRANSLATORS: Media -"media-col" = "Media"; -// TRANSLATORS: Media Color -"media-color" = "Media Color"; -// TRANSLATORS: Black -"media-color.black" = "Black"; -// TRANSLATORS: Blue -"media-color.blue" = "Blue"; -// TRANSLATORS: Brown -"media-color.brown" = "Brown"; -// TRANSLATORS: Buff -"media-color.buff" = "Buff"; -// TRANSLATORS: Clear Black -"media-color.clear-black" = "Clear Black"; -// TRANSLATORS: Clear Blue -"media-color.clear-blue" = "Clear Blue"; -// TRANSLATORS: Clear Brown -"media-color.clear-brown" = "Clear Brown"; -// TRANSLATORS: Clear Buff -"media-color.clear-buff" = "Clear Buff"; -// TRANSLATORS: Clear Cyan -"media-color.clear-cyan" = "Clear Cyan"; -// TRANSLATORS: Clear Gold -"media-color.clear-gold" = "Clear Gold"; -// TRANSLATORS: Clear Goldenrod -"media-color.clear-goldenrod" = "Clear Goldenrod"; -// TRANSLATORS: Clear Gray -"media-color.clear-gray" = "Clear Gray"; -// TRANSLATORS: Clear Green -"media-color.clear-green" = "Clear Green"; -// TRANSLATORS: Clear Ivory -"media-color.clear-ivory" = "Clear Ivory"; -// TRANSLATORS: Clear Magenta -"media-color.clear-magenta" = "Clear Magenta"; -// TRANSLATORS: Clear Multi Color -"media-color.clear-multi-color" = "Clear Multi Color"; -// TRANSLATORS: Clear Mustard -"media-color.clear-mustard" = "Clear Mustard"; -// TRANSLATORS: Clear Orange -"media-color.clear-orange" = "Clear Orange"; -// TRANSLATORS: Clear Pink -"media-color.clear-pink" = "Clear Pink"; -// TRANSLATORS: Clear Red -"media-color.clear-red" = "Clear Red"; -// TRANSLATORS: Clear Silver -"media-color.clear-silver" = "Clear Silver"; -// TRANSLATORS: Clear Turquoise -"media-color.clear-turquoise" = "Clear Turquoise"; -// TRANSLATORS: Clear Violet -"media-color.clear-violet" = "Clear Violet"; -// TRANSLATORS: Clear White -"media-color.clear-white" = "Clear White"; -// TRANSLATORS: Clear Yellow -"media-color.clear-yellow" = "Clear Yellow"; -// TRANSLATORS: Cyan -"media-color.cyan" = "Cyan"; -// TRANSLATORS: Dark Blue -"media-color.dark-blue" = "Dark Blue"; -// TRANSLATORS: Dark Brown -"media-color.dark-brown" = "Dark Brown"; -// TRANSLATORS: Dark Buff -"media-color.dark-buff" = "Dark Buff"; -// TRANSLATORS: Dark Cyan -"media-color.dark-cyan" = "Dark Cyan"; -// TRANSLATORS: Dark Gold -"media-color.dark-gold" = "Dark Gold"; -// TRANSLATORS: Dark Goldenrod -"media-color.dark-goldenrod" = "Dark Goldenrod"; -// TRANSLATORS: Dark Gray -"media-color.dark-gray" = "Dark Gray"; -// TRANSLATORS: Dark Green -"media-color.dark-green" = "Dark Green"; -// TRANSLATORS: Dark Ivory -"media-color.dark-ivory" = "Dark Ivory"; -// TRANSLATORS: Dark Magenta -"media-color.dark-magenta" = "Dark Magenta"; -// TRANSLATORS: Dark Mustard -"media-color.dark-mustard" = "Dark Mustard"; -// TRANSLATORS: Dark Orange -"media-color.dark-orange" = "Dark Orange"; -// TRANSLATORS: Dark Pink -"media-color.dark-pink" = "Dark Pink"; -// TRANSLATORS: Dark Red -"media-color.dark-red" = "Dark Red"; -// TRANSLATORS: Dark Silver -"media-color.dark-silver" = "Dark Silver"; -// TRANSLATORS: Dark Turquoise -"media-color.dark-turquoise" = "Dark Turquoise"; -// TRANSLATORS: Dark Violet -"media-color.dark-violet" = "Dark Violet"; -// TRANSLATORS: Dark Yellow -"media-color.dark-yellow" = "Dark Yellow"; -// TRANSLATORS: Gold -"media-color.gold" = "Gold"; -// TRANSLATORS: Goldenrod -"media-color.goldenrod" = "Goldenrod"; -// TRANSLATORS: Gray -"media-color.gray" = "Gray"; -// TRANSLATORS: Green -"media-color.green" = "Green"; -// TRANSLATORS: Ivory -"media-color.ivory" = "Ivory"; -// TRANSLATORS: Light Black -"media-color.light-black" = "Light Black"; -// TRANSLATORS: Light Blue -"media-color.light-blue" = "Light Blue"; -// TRANSLATORS: Light Brown -"media-color.light-brown" = "Light Brown"; -// TRANSLATORS: Light Buff -"media-color.light-buff" = "Light Buff"; -// TRANSLATORS: Light Cyan -"media-color.light-cyan" = "Light Cyan"; -// TRANSLATORS: Light Gold -"media-color.light-gold" = "Light Gold"; -// TRANSLATORS: Light Goldenrod -"media-color.light-goldenrod" = "Light Goldenrod"; -// TRANSLATORS: Light Gray -"media-color.light-gray" = "Light Gray"; -// TRANSLATORS: Light Green -"media-color.light-green" = "Light Green"; -// TRANSLATORS: Light Ivory -"media-color.light-ivory" = "Light Ivory"; -// TRANSLATORS: Light Magenta -"media-color.light-magenta" = "Light Magenta"; -// TRANSLATORS: Light Mustard -"media-color.light-mustard" = "Light Mustard"; -// TRANSLATORS: Light Orange -"media-color.light-orange" = "Light Orange"; -// TRANSLATORS: Light Pink -"media-color.light-pink" = "Light Pink"; -// TRANSLATORS: Light Red -"media-color.light-red" = "Light Red"; -// TRANSLATORS: Light Silver -"media-color.light-silver" = "Light Silver"; -// TRANSLATORS: Light Turquoise -"media-color.light-turquoise" = "Light Turquoise"; -// TRANSLATORS: Light Violet -"media-color.light-violet" = "Light Violet"; -// TRANSLATORS: Light Yellow -"media-color.light-yellow" = "Light Yellow"; -// TRANSLATORS: Magenta -"media-color.magenta" = "Magenta"; -// TRANSLATORS: Multi-color -"media-color.multi-color" = "Multi-color"; -// TRANSLATORS: Mustard -"media-color.mustard" = "Mustard"; -// TRANSLATORS: No Color -"media-color.no-color" = "No Color"; -// TRANSLATORS: Orange -"media-color.orange" = "Orange"; -// TRANSLATORS: Pink -"media-color.pink" = "Pink"; -// TRANSLATORS: Red -"media-color.red" = "Red"; -// TRANSLATORS: Silver -"media-color.silver" = "Silver"; -// TRANSLATORS: Turquoise -"media-color.turquoise" = "Turquoise"; -// TRANSLATORS: Violet -"media-color.violet" = "Violet"; -// TRANSLATORS: White -"media-color.white" = "White"; -// TRANSLATORS: Yellow -"media-color.yellow" = "Yellow"; -// TRANSLATORS: Front Coating of Media -"media-front-coating" = "Front Coating of Media"; -// TRANSLATORS: Media Grain -"media-grain" = "Media Grain"; -// TRANSLATORS: Cross-Feed Direction -"media-grain.x-direction" = "Cross-Feed Direction"; -// TRANSLATORS: Feed Direction -"media-grain.y-direction" = "Feed Direction"; -// TRANSLATORS: Media Hole Count -"media-hole-count" = "Media Hole Count"; -// TRANSLATORS: Media Info -"media-info" = "Media Info"; -// TRANSLATORS: Force Media -"media-input-tray-check" = "Force Media"; -// TRANSLATORS: Media Left Margin -"media-left-margin" = "Media Left Margin"; -// TRANSLATORS: Pre-printed Media -"media-pre-printed" = "Pre-printed Media"; -// TRANSLATORS: Blank -"media-pre-printed.blank" = "Blank"; -// TRANSLATORS: Letterhead -"media-pre-printed.letter-head" = "Letterhead"; -// TRANSLATORS: Pre-printed -"media-pre-printed.pre-printed" = "Pre-printed"; -// TRANSLATORS: Recycled Media -"media-recycled" = "Recycled Media"; -// TRANSLATORS: None -"media-recycled.none" = "None"; -// TRANSLATORS: Standard -"media-recycled.standard" = "Standard"; -// TRANSLATORS: Media Right Margin -"media-right-margin" = "Media Right Margin"; -// TRANSLATORS: Media Dimensions -"media-size" = "Media Dimensions"; -// TRANSLATORS: Media Name -"media-size-name" = "Media Name"; -// TRANSLATORS: Media Source -"media-source" = "Media Source"; -// TRANSLATORS: Alternate -"media-source.alternate" = "Alternate"; -// TRANSLATORS: Alternate Roll -"media-source.alternate-roll" = "Alternate Roll"; -// TRANSLATORS: Automatic -"media-source.auto" = "Automatic"; -// TRANSLATORS: Bottom -"media-source.bottom" = "Bottom"; -// TRANSLATORS: By-pass Tray -"media-source.by-pass-tray" = "By-pass Tray"; -// TRANSLATORS: Center -"media-source.center" = "Center"; -// TRANSLATORS: Disc -"media-source.disc" = "Disc"; -// TRANSLATORS: Envelope -"media-source.envelope" = "Envelope"; -// TRANSLATORS: Hagaki -"media-source.hagaki" = "Hagaki"; -// TRANSLATORS: Large Capacity -"media-source.large-capacity" = "Large Capacity"; -// TRANSLATORS: Left -"media-source.left" = "Left"; -// TRANSLATORS: Main -"media-source.main" = "Main"; -// TRANSLATORS: Main Roll -"media-source.main-roll" = "Main Roll"; -// TRANSLATORS: Manual -"media-source.manual" = "Manual"; -// TRANSLATORS: Middle -"media-source.middle" = "Middle"; -// TRANSLATORS: Photo -"media-source.photo" = "Photo"; -// TRANSLATORS: Rear -"media-source.rear" = "Rear"; -// TRANSLATORS: Right -"media-source.right" = "Right"; -// TRANSLATORS: Roll 1 -"media-source.roll-1" = "Roll 1"; -// TRANSLATORS: Roll 10 -"media-source.roll-10" = "Roll 10"; -// TRANSLATORS: Roll 2 -"media-source.roll-2" = "Roll 2"; -// TRANSLATORS: Roll 3 -"media-source.roll-3" = "Roll 3"; -// TRANSLATORS: Roll 4 -"media-source.roll-4" = "Roll 4"; -// TRANSLATORS: Roll 5 -"media-source.roll-5" = "Roll 5"; -// TRANSLATORS: Roll 6 -"media-source.roll-6" = "Roll 6"; -// TRANSLATORS: Roll 7 -"media-source.roll-7" = "Roll 7"; -// TRANSLATORS: Roll 8 -"media-source.roll-8" = "Roll 8"; -// TRANSLATORS: Roll 9 -"media-source.roll-9" = "Roll 9"; -// TRANSLATORS: Side -"media-source.side" = "Side"; -// TRANSLATORS: Top -"media-source.top" = "Top"; -// TRANSLATORS: Tray 1 -"media-source.tray-1" = "Tray 1"; -// TRANSLATORS: Tray 10 -"media-source.tray-10" = "Tray 10"; -// TRANSLATORS: Tray 11 -"media-source.tray-11" = "Tray 11"; -// TRANSLATORS: Tray 12 -"media-source.tray-12" = "Tray 12"; -// TRANSLATORS: Tray 13 -"media-source.tray-13" = "Tray 13"; -// TRANSLATORS: Tray 14 -"media-source.tray-14" = "Tray 14"; -// TRANSLATORS: Tray 15 -"media-source.tray-15" = "Tray 15"; -// TRANSLATORS: Tray 16 -"media-source.tray-16" = "Tray 16"; -// TRANSLATORS: Tray 17 -"media-source.tray-17" = "Tray 17"; -// TRANSLATORS: Tray 18 -"media-source.tray-18" = "Tray 18"; -// TRANSLATORS: Tray 19 -"media-source.tray-19" = "Tray 19"; -// TRANSLATORS: Tray 2 -"media-source.tray-2" = "Tray 2"; -// TRANSLATORS: Tray 20 -"media-source.tray-20" = "Tray 20"; -// TRANSLATORS: Tray 3 -"media-source.tray-3" = "Tray 3"; -// TRANSLATORS: Tray 4 -"media-source.tray-4" = "Tray 4"; -// TRANSLATORS: Tray 5 -"media-source.tray-5" = "Tray 5"; -// TRANSLATORS: Tray 6 -"media-source.tray-6" = "Tray 6"; -// TRANSLATORS: Tray 7 -"media-source.tray-7" = "Tray 7"; -// TRANSLATORS: Tray 8 -"media-source.tray-8" = "Tray 8"; -// TRANSLATORS: Tray 9 -"media-source.tray-9" = "Tray 9"; -// TRANSLATORS: Media Thickness -"media-thickness" = "Media Thickness"; -// TRANSLATORS: Media Tooth (Texture) -"media-tooth" = "Media Tooth (Texture)"; -// TRANSLATORS: Antique -"media-tooth.antique" = "Antique"; -// TRANSLATORS: Extra Smooth -"media-tooth.calendared" = "Extra Smooth"; -// TRANSLATORS: Coarse -"media-tooth.coarse" = "Coarse"; -// TRANSLATORS: Fine -"media-tooth.fine" = "Fine"; -// TRANSLATORS: Linen -"media-tooth.linen" = "Linen"; -// TRANSLATORS: Medium -"media-tooth.medium" = "Medium"; -// TRANSLATORS: Smooth -"media-tooth.smooth" = "Smooth"; -// TRANSLATORS: Stipple -"media-tooth.stipple" = "Stipple"; -// TRANSLATORS: Rough -"media-tooth.uncalendared" = "Rough"; -// TRANSLATORS: Vellum -"media-tooth.vellum" = "Vellum"; -// TRANSLATORS: Media Top Margin -"media-top-margin" = "Media Top Margin"; -// TRANSLATORS: Media Type -"media-type" = "Media Type"; -// TRANSLATORS: Aluminum -"media-type.aluminum" = "Aluminum"; -// TRANSLATORS: Automatic -"media-type.auto" = "Automatic"; -// TRANSLATORS: Back Print Film -"media-type.back-print-film" = "Back Print Film"; -// TRANSLATORS: Cardboard -"media-type.cardboard" = "Cardboard"; -// TRANSLATORS: Cardstock -"media-type.cardstock" = "Cardstock"; -// TRANSLATORS: CD -"media-type.cd" = "CD"; -// TRANSLATORS: Photo Advanced Paper -"media-type.com.hp.advanced-photo" = "Photo Advanced Paper"; -// TRANSLATORS: Brochure Glossy Paper -"media-type.com.hp.brochure-glossy" = "Brochure Glossy Paper"; -// TRANSLATORS: Brochure Matte Paper -"media-type.com.hp.brochure-matte" = "Brochure Matte Paper"; -// TRANSLATORS: Matte Coverstock -"media-type.com.hp.cover-matte" = "Matte Coverstock"; -// TRANSLATORS: EcoSMART Lite Paper -"media-type.com.hp.ecosmart-lite" = "EcoSMART Lite Paper"; -// TRANSLATORS: Everyday Glossy Paper -"media-type.com.hp.everyday-glossy" = "Everyday Glossy Paper"; -// TRANSLATORS: Everyday Matte Paper -"media-type.com.hp.everyday-matte" = "Everyday Matte Paper"; -// TRANSLATORS: Extra Heavyweight Paper -"media-type.com.hp.extra-heavy" = "Extra Heavyweight Paper"; -// TRANSLATORS: Intermediate Paper -"media-type.com.hp.intermediate" = "Intermediate Paper"; -// TRANSLATORS: Mid-Weight Paper -"media-type.com.hp.mid-weight" = "Mid-Weight Paper"; -// TRANSLATORS: Inkjet Premium Paper -"media-type.com.hp.premium-inkjet" = "Inkjet Premium Paper"; -// TRANSLATORS: Photo Premium Paper -"media-type.com.hp.premium-photo" = "Photo Premium Paper"; -// TRANSLATORS: Premium Matte Presentation Paper -"media-type.com.hp.premium-presentation-matte" = "Premium Matte Presentation Paper"; -// TRANSLATORS: Continuous -"media-type.continuous" = "Continuous"; -// TRANSLATORS: Continuous Long -"media-type.continuous-long" = "Continuous Long"; -// TRANSLATORS: Continuous Short -"media-type.continuous-short" = "Continuous Short"; -// TRANSLATORS: Corrugated Board -"media-type.corrugated-board" = "Corrugated Board"; -// TRANSLATORS: Optical Disc -"media-type.disc" = "Optical Disc"; -// TRANSLATORS: Glossy Optical Disc -"media-type.disc-glossy" = "Glossy Optical Disc"; -// TRANSLATORS: High Gloss Optical Disc -"media-type.disc-high-gloss" = "High Gloss Optical Disc"; -// TRANSLATORS: Matte Optical Disc -"media-type.disc-matte" = "Matte Optical Disc"; -// TRANSLATORS: Satin Optical Disc -"media-type.disc-satin" = "Satin Optical Disc"; -// TRANSLATORS: Semi-Gloss Optical Disc -"media-type.disc-semi-gloss" = "Semi-Gloss Optical Disc"; -// TRANSLATORS: Double Wall -"media-type.double-wall" = "Double Wall"; -// TRANSLATORS: Dry Film -"media-type.dry-film" = "Dry Film"; -// TRANSLATORS: DVD -"media-type.dvd" = "DVD"; -// TRANSLATORS: Embossing Foil -"media-type.embossing-foil" = "Embossing Foil"; -// TRANSLATORS: End Board -"media-type.end-board" = "End Board"; -// TRANSLATORS: Envelope -"media-type.envelope" = "Envelope"; -// TRANSLATORS: Archival Envelope -"media-type.envelope-archival" = "Archival Envelope"; -// TRANSLATORS: Bond Envelope -"media-type.envelope-bond" = "Bond Envelope"; -// TRANSLATORS: Coated Envelope -"media-type.envelope-coated" = "Coated Envelope"; -// TRANSLATORS: Cotton Envelope -"media-type.envelope-cotton" = "Cotton Envelope"; -// TRANSLATORS: Fine Envelope -"media-type.envelope-fine" = "Fine Envelope"; -// TRANSLATORS: Heavyweight Envelope -"media-type.envelope-heavyweight" = "Heavyweight Envelope"; -// TRANSLATORS: Inkjet Envelope -"media-type.envelope-inkjet" = "Inkjet Envelope"; -// TRANSLATORS: Lightweight Envelope -"media-type.envelope-lightweight" = "Lightweight Envelope"; -// TRANSLATORS: Plain Envelope -"media-type.envelope-plain" = "Plain Envelope"; -// TRANSLATORS: Preprinted Envelope -"media-type.envelope-preprinted" = "Preprinted Envelope"; -// TRANSLATORS: Windowed Envelope -"media-type.envelope-window" = "Windowed Envelope"; -// TRANSLATORS: Fabric -"media-type.fabric" = "Fabric"; -// TRANSLATORS: Archival Fabric -"media-type.fabric-archival" = "Archival Fabric"; -// TRANSLATORS: Glossy Fabric -"media-type.fabric-glossy" = "Glossy Fabric"; -// TRANSLATORS: High Gloss Fabric -"media-type.fabric-high-gloss" = "High Gloss Fabric"; -// TRANSLATORS: Matte Fabric -"media-type.fabric-matte" = "Matte Fabric"; -// TRANSLATORS: Semi-Gloss Fabric -"media-type.fabric-semi-gloss" = "Semi-Gloss Fabric"; -// TRANSLATORS: Waterproof Fabric -"media-type.fabric-waterproof" = "Waterproof Fabric"; -// TRANSLATORS: Film -"media-type.film" = "Film"; -// TRANSLATORS: Flexo Base -"media-type.flexo-base" = "Flexo Base"; -// TRANSLATORS: Flexo Photo Polymer -"media-type.flexo-photo-polymer" = "Flexo Photo Polymer"; -// TRANSLATORS: Flute -"media-type.flute" = "Flute"; -// TRANSLATORS: Foil -"media-type.foil" = "Foil"; -// TRANSLATORS: Full Cut Tabs -"media-type.full-cut-tabs" = "Full Cut Tabs"; -// TRANSLATORS: Glass -"media-type.glass" = "Glass"; -// TRANSLATORS: Glass Colored -"media-type.glass-colored" = "Glass Colored"; -// TRANSLATORS: Glass Opaque -"media-type.glass-opaque" = "Glass Opaque"; -// TRANSLATORS: Glass Surfaced -"media-type.glass-surfaced" = "Glass Surfaced"; -// TRANSLATORS: Glass Textured -"media-type.glass-textured" = "Glass Textured"; -// TRANSLATORS: Gravure Cylinder -"media-type.gravure-cylinder" = "Gravure Cylinder"; -// TRANSLATORS: Image Setter Paper -"media-type.image-setter-paper" = "Image Setter Paper"; -// TRANSLATORS: Imaging Cylinder -"media-type.imaging-cylinder" = "Imaging Cylinder"; -// TRANSLATORS: Photo Paper Plus Glossy II -"media-type.jp.co.canon-photo-paper-plus-glossy-ii" = "Photo Paper Plus Glossy II"; -// TRANSLATORS: Photo Paper Pro Platinum -"media-type.jp.co.canon-photo-paper-pro-platinum" = "Photo Paper Pro Platinum"; -// TRANSLATORS: Photo Paper Plus Glossy II -"media-type.jp.co.canon_photo-paper-plus-glossy-ii" = "Photo Paper Plus Glossy II"; -// TRANSLATORS: Photo Paper Pro Platinum -"media-type.jp.co.canon_photo-paper-pro-platinum" = "Photo Paper Pro Platinum"; -// TRANSLATORS: Labels -"media-type.labels" = "Labels"; -// TRANSLATORS: Colored Labels -"media-type.labels-colored" = "Colored Labels"; -// TRANSLATORS: Glossy Labels -"media-type.labels-glossy" = "Glossy Labels"; -// TRANSLATORS: High Gloss Labels -"media-type.labels-high-gloss" = "High Gloss Labels"; -// TRANSLATORS: Inkjet Labels -"media-type.labels-inkjet" = "Inkjet Labels"; -// TRANSLATORS: Matte Labels -"media-type.labels-matte" = "Matte Labels"; -// TRANSLATORS: Permanent Labels -"media-type.labels-permanent" = "Permanent Labels"; -// TRANSLATORS: Satin Labels -"media-type.labels-satin" = "Satin Labels"; -// TRANSLATORS: Security Labels -"media-type.labels-security" = "Security Labels"; -// TRANSLATORS: Semi-Gloss Labels -"media-type.labels-semi-gloss" = "Semi-Gloss Labels"; -// TRANSLATORS: Laminating Foil -"media-type.laminating-foil" = "Laminating Foil"; -// TRANSLATORS: Letterhead -"media-type.letterhead" = "Letterhead"; -// TRANSLATORS: Metal -"media-type.metal" = "Metal"; -// TRANSLATORS: Metal Glossy -"media-type.metal-glossy" = "Metal Glossy"; -// TRANSLATORS: Metal High Gloss -"media-type.metal-high-gloss" = "Metal High Gloss"; -// TRANSLATORS: Metal Matte -"media-type.metal-matte" = "Metal Matte"; -// TRANSLATORS: Metal Satin -"media-type.metal-satin" = "Metal Satin"; -// TRANSLATORS: Metal Semi Gloss -"media-type.metal-semi-gloss" = "Metal Semi Gloss"; -// TRANSLATORS: Mounting Tape -"media-type.mounting-tape" = "Mounting Tape"; -// TRANSLATORS: Multi Layer -"media-type.multi-layer" = "Multi Layer"; -// TRANSLATORS: Multi Part Form -"media-type.multi-part-form" = "Multi Part Form"; -// TRANSLATORS: Other -"media-type.other" = "Other"; -// TRANSLATORS: Paper -"media-type.paper" = "Paper"; -// TRANSLATORS: Photo Paper -"media-type.photographic" = "Photo Paper"; -// TRANSLATORS: Photographic Archival -"media-type.photographic-archival" = "Photographic Archival"; -// TRANSLATORS: Photo Film -"media-type.photographic-film" = "Photo Film"; -// TRANSLATORS: Glossy Photo Paper -"media-type.photographic-glossy" = "Glossy Photo Paper"; -// TRANSLATORS: High Gloss Photo Paper -"media-type.photographic-high-gloss" = "High Gloss Photo Paper"; -// TRANSLATORS: Matte Photo Paper -"media-type.photographic-matte" = "Matte Photo Paper"; -// TRANSLATORS: Satin Photo Paper -"media-type.photographic-satin" = "Satin Photo Paper"; -// TRANSLATORS: Semi-Gloss Photo Paper -"media-type.photographic-semi-gloss" = "Semi-Gloss Photo Paper"; -// TRANSLATORS: Plastic -"media-type.plastic" = "Plastic"; -// TRANSLATORS: Plastic Archival -"media-type.plastic-archival" = "Plastic Archival"; -// TRANSLATORS: Plastic Colored -"media-type.plastic-colored" = "Plastic Colored"; -// TRANSLATORS: Plastic Glossy -"media-type.plastic-glossy" = "Plastic Glossy"; -// TRANSLATORS: Plastic High Gloss -"media-type.plastic-high-gloss" = "Plastic High Gloss"; -// TRANSLATORS: Plastic Matte -"media-type.plastic-matte" = "Plastic Matte"; -// TRANSLATORS: Plastic Satin -"media-type.plastic-satin" = "Plastic Satin"; -// TRANSLATORS: Plastic Semi Gloss -"media-type.plastic-semi-gloss" = "Plastic Semi Gloss"; -// TRANSLATORS: Plate -"media-type.plate" = "Plate"; -// TRANSLATORS: Polyester -"media-type.polyester" = "Polyester"; -// TRANSLATORS: Pre Cut Tabs -"media-type.pre-cut-tabs" = "Pre Cut Tabs"; -// TRANSLATORS: Roll -"media-type.roll" = "Roll"; -// TRANSLATORS: Screen -"media-type.screen" = "Screen"; -// TRANSLATORS: Screen Paged -"media-type.screen-paged" = "Screen Paged"; -// TRANSLATORS: Self Adhesive -"media-type.self-adhesive" = "Self Adhesive"; -// TRANSLATORS: Self Adhesive Film -"media-type.self-adhesive-film" = "Self Adhesive Film"; -// TRANSLATORS: Shrink Foil -"media-type.shrink-foil" = "Shrink Foil"; -// TRANSLATORS: Single Face -"media-type.single-face" = "Single Face"; -// TRANSLATORS: Single Wall -"media-type.single-wall" = "Single Wall"; -// TRANSLATORS: Sleeve -"media-type.sleeve" = "Sleeve"; -// TRANSLATORS: Stationery -"media-type.stationery" = "Stationery"; -// TRANSLATORS: Stationery Archival -"media-type.stationery-archival" = "Stationery Archival"; -// TRANSLATORS: Coated Paper -"media-type.stationery-coated" = "Coated Paper"; -// TRANSLATORS: Stationery Cotton -"media-type.stationery-cotton" = "Stationery Cotton"; -// TRANSLATORS: Vellum Paper -"media-type.stationery-fine" = "Vellum Paper"; -// TRANSLATORS: Heavyweight Paper -"media-type.stationery-heavyweight" = "Heavyweight Paper"; -// TRANSLATORS: Stationery Heavyweight Coated -"media-type.stationery-heavyweight-coated" = "Stationery Heavyweight Coated"; -// TRANSLATORS: Stationery Inkjet Paper -"media-type.stationery-inkjet" = "Stationery Inkjet Paper"; -// TRANSLATORS: Letterhead -"media-type.stationery-letterhead" = "Letterhead"; -// TRANSLATORS: Lightweight Paper -"media-type.stationery-lightweight" = "Lightweight Paper"; -// TRANSLATORS: Preprinted Paper -"media-type.stationery-preprinted" = "Preprinted Paper"; -// TRANSLATORS: Punched Paper -"media-type.stationery-prepunched" = "Punched Paper"; -// TRANSLATORS: Tab Stock -"media-type.tab-stock" = "Tab Stock"; -// TRANSLATORS: Tractor -"media-type.tractor" = "Tractor"; -// TRANSLATORS: Transfer -"media-type.transfer" = "Transfer"; -// TRANSLATORS: Transparency -"media-type.transparency" = "Transparency"; -// TRANSLATORS: Triple Wall -"media-type.triple-wall" = "Triple Wall"; -// TRANSLATORS: Wet Film -"media-type.wet-film" = "Wet Film"; -// TRANSLATORS: Media Weight (grams per m²) -"media-weight-metric" = "Media Weight (grams per m²)"; -// TRANSLATORS: 28 x 40″ -"media.asme_f_28x40in" = "28 x 40″"; -// TRANSLATORS: A4 or US Letter -"media.choice_iso_a4_210x297mm_na_letter_8.5x11in" = "A4 or US Letter"; -// TRANSLATORS: 2a0 -"media.iso_2a0_1189x1682mm" = "2a0"; -// TRANSLATORS: A0 -"media.iso_a0_841x1189mm" = "A0"; -// TRANSLATORS: A0x3 -"media.iso_a0x3_1189x2523mm" = "A0x3"; -// TRANSLATORS: A10 -"media.iso_a10_26x37mm" = "A10"; -// TRANSLATORS: A1 -"media.iso_a1_594x841mm" = "A1"; -// TRANSLATORS: A1x3 -"media.iso_a1x3_841x1783mm" = "A1x3"; -// TRANSLATORS: A1x4 -"media.iso_a1x4_841x2378mm" = "A1x4"; -// TRANSLATORS: A2 -"media.iso_a2_420x594mm" = "A2"; -// TRANSLATORS: A2x3 -"media.iso_a2x3_594x1261mm" = "A2x3"; -// TRANSLATORS: A2x4 -"media.iso_a2x4_594x1682mm" = "A2x4"; -// TRANSLATORS: A2x5 -"media.iso_a2x5_594x2102mm" = "A2x5"; -// TRANSLATORS: A3 (Extra) -"media.iso_a3-extra_322x445mm" = "A3 (Extra)"; -// TRANSLATORS: A3 -"media.iso_a3_297x420mm" = "A3"; -// TRANSLATORS: A3x3 -"media.iso_a3x3_420x891mm" = "A3x3"; -// TRANSLATORS: A3x4 -"media.iso_a3x4_420x1189mm" = "A3x4"; -// TRANSLATORS: A3x5 -"media.iso_a3x5_420x1486mm" = "A3x5"; -// TRANSLATORS: A3x6 -"media.iso_a3x6_420x1783mm" = "A3x6"; -// TRANSLATORS: A3x7 -"media.iso_a3x7_420x2080mm" = "A3x7"; -// TRANSLATORS: A4 (Extra) -"media.iso_a4-extra_235.5x322.3mm" = "A4 (Extra)"; -// TRANSLATORS: A4 (Tab) -"media.iso_a4-tab_225x297mm" = "A4 (Tab)"; -// TRANSLATORS: A4 -"media.iso_a4_210x297mm" = "A4"; -// TRANSLATORS: A4x3 -"media.iso_a4x3_297x630mm" = "A4x3"; -// TRANSLATORS: A4x4 -"media.iso_a4x4_297x841mm" = "A4x4"; -// TRANSLATORS: A4x5 -"media.iso_a4x5_297x1051mm" = "A4x5"; -// TRANSLATORS: A4x6 -"media.iso_a4x6_297x1261mm" = "A4x6"; -// TRANSLATORS: A4x7 -"media.iso_a4x7_297x1471mm" = "A4x7"; -// TRANSLATORS: A4x8 -"media.iso_a4x8_297x1682mm" = "A4x8"; -// TRANSLATORS: A4x9 -"media.iso_a4x9_297x1892mm" = "A4x9"; -// TRANSLATORS: A5 (Extra) -"media.iso_a5-extra_174x235mm" = "A5 (Extra)"; -// TRANSLATORS: A5 -"media.iso_a5_148x210mm" = "A5"; -// TRANSLATORS: A6 -"media.iso_a6_105x148mm" = "A6"; -// TRANSLATORS: A7 -"media.iso_a7_74x105mm" = "A7"; -// TRANSLATORS: A8 -"media.iso_a8_52x74mm" = "A8"; -// TRANSLATORS: A9 -"media.iso_a9_37x52mm" = "A9"; -// TRANSLATORS: B0 -"media.iso_b0_1000x1414mm" = "B0"; -// TRANSLATORS: B10 -"media.iso_b10_31x44mm" = "B10"; -// TRANSLATORS: B1 -"media.iso_b1_707x1000mm" = "B1"; -// TRANSLATORS: B2 -"media.iso_b2_500x707mm" = "B2"; -// TRANSLATORS: B3 -"media.iso_b3_353x500mm" = "B3"; -// TRANSLATORS: B4 -"media.iso_b4_250x353mm" = "B4"; -// TRANSLATORS: B5 (Extra) -"media.iso_b5-extra_201x276mm" = "B5 (Extra)"; -// TRANSLATORS: Envelope B5 -"media.iso_b5_176x250mm" = "Envelope B5"; -// TRANSLATORS: B6 -"media.iso_b6_125x176mm" = "B6"; -// TRANSLATORS: Envelope B6/C4 -"media.iso_b6c4_125x324mm" = "Envelope B6/C4"; -// TRANSLATORS: B7 -"media.iso_b7_88x125mm" = "B7"; -// TRANSLATORS: B8 -"media.iso_b8_62x88mm" = "B8"; -// TRANSLATORS: B9 -"media.iso_b9_44x62mm" = "B9"; -// TRANSLATORS: CEnvelope 0 -"media.iso_c0_917x1297mm" = "CEnvelope 0"; -// TRANSLATORS: CEnvelope 10 -"media.iso_c10_28x40mm" = "CEnvelope 10"; -// TRANSLATORS: CEnvelope 1 -"media.iso_c1_648x917mm" = "CEnvelope 1"; -// TRANSLATORS: CEnvelope 2 -"media.iso_c2_458x648mm" = "CEnvelope 2"; -// TRANSLATORS: CEnvelope 3 -"media.iso_c3_324x458mm" = "CEnvelope 3"; -// TRANSLATORS: CEnvelope 4 -"media.iso_c4_229x324mm" = "CEnvelope 4"; -// TRANSLATORS: CEnvelope 5 -"media.iso_c5_162x229mm" = "CEnvelope 5"; -// TRANSLATORS: CEnvelope 6 -"media.iso_c6_114x162mm" = "CEnvelope 6"; -// TRANSLATORS: CEnvelope 6c5 -"media.iso_c6c5_114x229mm" = "CEnvelope 6c5"; -// TRANSLATORS: CEnvelope 7 -"media.iso_c7_81x114mm" = "CEnvelope 7"; -// TRANSLATORS: CEnvelope 7c6 -"media.iso_c7c6_81x162mm" = "CEnvelope 7c6"; -// TRANSLATORS: CEnvelope 8 -"media.iso_c8_57x81mm" = "CEnvelope 8"; -// TRANSLATORS: CEnvelope 9 -"media.iso_c9_40x57mm" = "CEnvelope 9"; -// TRANSLATORS: Envelope DL -"media.iso_dl_110x220mm" = "Envelope DL"; -// TRANSLATORS: Id-1 -"media.iso_id-1_53.98x85.6mm" = "Id-1"; -// TRANSLATORS: Id-3 -"media.iso_id-3_88x125mm" = "Id-3"; -// TRANSLATORS: ISO RA0 -"media.iso_ra0_860x1220mm" = "ISO RA0"; -// TRANSLATORS: ISO RA1 -"media.iso_ra1_610x860mm" = "ISO RA1"; -// TRANSLATORS: ISO RA2 -"media.iso_ra2_430x610mm" = "ISO RA2"; -// TRANSLATORS: ISO RA3 -"media.iso_ra3_305x430mm" = "ISO RA3"; -// TRANSLATORS: ISO RA4 -"media.iso_ra4_215x305mm" = "ISO RA4"; -// TRANSLATORS: ISO SRA0 -"media.iso_sra0_900x1280mm" = "ISO SRA0"; -// TRANSLATORS: ISO SRA1 -"media.iso_sra1_640x900mm" = "ISO SRA1"; -// TRANSLATORS: ISO SRA2 -"media.iso_sra2_450x640mm" = "ISO SRA2"; -// TRANSLATORS: ISO SRA3 -"media.iso_sra3_320x450mm" = "ISO SRA3"; -// TRANSLATORS: ISO SRA4 -"media.iso_sra4_225x320mm" = "ISO SRA4"; -// TRANSLATORS: JIS B0 -"media.jis_b0_1030x1456mm" = "JIS B0"; -// TRANSLATORS: JIS B10 -"media.jis_b10_32x45mm" = "JIS B10"; -// TRANSLATORS: JIS B1 -"media.jis_b1_728x1030mm" = "JIS B1"; -// TRANSLATORS: JIS B2 -"media.jis_b2_515x728mm" = "JIS B2"; -// TRANSLATORS: JIS B3 -"media.jis_b3_364x515mm" = "JIS B3"; -// TRANSLATORS: JIS B4 -"media.jis_b4_257x364mm" = "JIS B4"; -// TRANSLATORS: JIS B5 -"media.jis_b5_182x257mm" = "JIS B5"; -// TRANSLATORS: JIS B6 -"media.jis_b6_128x182mm" = "JIS B6"; -// TRANSLATORS: JIS B7 -"media.jis_b7_91x128mm" = "JIS B7"; -// TRANSLATORS: JIS B8 -"media.jis_b8_64x91mm" = "JIS B8"; -// TRANSLATORS: JIS B9 -"media.jis_b9_45x64mm" = "JIS B9"; -// TRANSLATORS: JIS Executive -"media.jis_exec_216x330mm" = "JIS Executive"; -// TRANSLATORS: Envelope Chou 2 -"media.jpn_chou2_111.1x146mm" = "Envelope Chou 2"; -// TRANSLATORS: Envelope Chou 3 -"media.jpn_chou3_120x235mm" = "Envelope Chou 3"; -// TRANSLATORS: Envelope Chou 40 -"media.jpn_chou40_90x225mm" = "Envelope Chou 40"; -// TRANSLATORS: Envelope Chou 4 -"media.jpn_chou4_90x205mm" = "Envelope Chou 4"; -// TRANSLATORS: Hagaki -"media.jpn_hagaki_100x148mm" = "Hagaki"; -// TRANSLATORS: Envelope Kahu -"media.jpn_kahu_240x322.1mm" = "Envelope Kahu"; -// TRANSLATORS: 270 x 382mm -"media.jpn_kaku1_270x382mm" = "270 x 382mm"; -// TRANSLATORS: Envelope Kahu 2 -"media.jpn_kaku2_240x332mm" = "Envelope Kahu 2"; -// TRANSLATORS: 216 x 277mm -"media.jpn_kaku3_216x277mm" = "216 x 277mm"; -// TRANSLATORS: 197 x 267mm -"media.jpn_kaku4_197x267mm" = "197 x 267mm"; -// TRANSLATORS: 190 x 240mm -"media.jpn_kaku5_190x240mm" = "190 x 240mm"; -// TRANSLATORS: 142 x 205mm -"media.jpn_kaku7_142x205mm" = "142 x 205mm"; -// TRANSLATORS: 119 x 197mm -"media.jpn_kaku8_119x197mm" = "119 x 197mm"; -// TRANSLATORS: Oufuku Reply Postcard -"media.jpn_oufuku_148x200mm" = "Oufuku Reply Postcard"; -// TRANSLATORS: Envelope You 4 -"media.jpn_you4_105x235mm" = "Envelope You 4"; -// TRANSLATORS: 10 x 11″ -"media.na_10x11_10x11in" = "10 x 11″"; -// TRANSLATORS: 10 x 13″ -"media.na_10x13_10x13in" = "10 x 13″"; -// TRANSLATORS: 10 x 14″ -"media.na_10x14_10x14in" = "10 x 14″"; -// TRANSLATORS: 10 x 15″ -"media.na_10x15_10x15in" = "10 x 15″"; -// TRANSLATORS: 11 x 12″ -"media.na_11x12_11x12in" = "11 x 12″"; -// TRANSLATORS: 11 x 15″ -"media.na_11x15_11x15in" = "11 x 15″"; -// TRANSLATORS: 12 x 19″ -"media.na_12x19_12x19in" = "12 x 19″"; -// TRANSLATORS: 5 x 7″ -"media.na_5x7_5x7in" = "5 x 7″"; -// TRANSLATORS: 6 x 9″ -"media.na_6x9_6x9in" = "6 x 9″"; -// TRANSLATORS: 7 x 9″ -"media.na_7x9_7x9in" = "7 x 9″"; -// TRANSLATORS: 9 x 11″ -"media.na_9x11_9x11in" = "9 x 11″"; -// TRANSLATORS: Envelope A2 -"media.na_a2_4.375x5.75in" = "Envelope A2"; -// TRANSLATORS: 9 x 12″ -"media.na_arch-a_9x12in" = "9 x 12″"; -// TRANSLATORS: 12 x 18″ -"media.na_arch-b_12x18in" = "12 x 18″"; -// TRANSLATORS: 18 x 24″ -"media.na_arch-c_18x24in" = "18 x 24″"; -// TRANSLATORS: 24 x 36″ -"media.na_arch-d_24x36in" = "24 x 36″"; -// TRANSLATORS: 26 x 38″ -"media.na_arch-e2_26x38in" = "26 x 38″"; -// TRANSLATORS: 27 x 39″ -"media.na_arch-e3_27x39in" = "27 x 39″"; -// TRANSLATORS: 36 x 48″ -"media.na_arch-e_36x48in" = "36 x 48″"; -// TRANSLATORS: 12 x 19.17″ -"media.na_b-plus_12x19.17in" = "12 x 19.17″"; -// TRANSLATORS: Envelope C5 -"media.na_c5_6.5x9.5in" = "Envelope C5"; -// TRANSLATORS: 17 x 22″ -"media.na_c_17x22in" = "17 x 22″"; -// TRANSLATORS: 22 x 34″ -"media.na_d_22x34in" = "22 x 34″"; -// TRANSLATORS: 34 x 44″ -"media.na_e_34x44in" = "34 x 44″"; -// TRANSLATORS: 11 x 14″ -"media.na_edp_11x14in" = "11 x 14″"; -// TRANSLATORS: 12 x 14″ -"media.na_eur-edp_12x14in" = "12 x 14″"; -// TRANSLATORS: Executive -"media.na_executive_7.25x10.5in" = "Executive"; -// TRANSLATORS: 44 x 68″ -"media.na_f_44x68in" = "44 x 68″"; -// TRANSLATORS: European Fanfold -"media.na_fanfold-eur_8.5x12in" = "European Fanfold"; -// TRANSLATORS: US Fanfold -"media.na_fanfold-us_11x14.875in" = "US Fanfold"; -// TRANSLATORS: Foolscap -"media.na_foolscap_8.5x13in" = "Foolscap"; -// TRANSLATORS: 8 x 13″ -"media.na_govt-legal_8x13in" = "8 x 13″"; -// TRANSLATORS: 8 x 10″ -"media.na_govt-letter_8x10in" = "8 x 10″"; -// TRANSLATORS: 3 x 5″ -"media.na_index-3x5_3x5in" = "3 x 5″"; -// TRANSLATORS: 6 x 8″ -"media.na_index-4x6-ext_6x8in" = "6 x 8″"; -// TRANSLATORS: 4 x 6″ -"media.na_index-4x6_4x6in" = "4 x 6″"; -// TRANSLATORS: 5 x 8″ -"media.na_index-5x8_5x8in" = "5 x 8″"; -// TRANSLATORS: Statement -"media.na_invoice_5.5x8.5in" = "Statement"; -// TRANSLATORS: 11 x 17″ -"media.na_ledger_11x17in" = "11 x 17″"; -// TRANSLATORS: US Legal (Extra) -"media.na_legal-extra_9.5x15in" = "US Legal (Extra)"; -// TRANSLATORS: US Legal -"media.na_legal_8.5x14in" = "US Legal"; -// TRANSLATORS: US Letter (Extra) -"media.na_letter-extra_9.5x12in" = "US Letter (Extra)"; -// TRANSLATORS: US Letter (Plus) -"media.na_letter-plus_8.5x12.69in" = "US Letter (Plus)"; -// TRANSLATORS: US Letter -"media.na_letter_8.5x11in" = "US Letter"; -// TRANSLATORS: Envelope Monarch -"media.na_monarch_3.875x7.5in" = "Envelope Monarch"; -// TRANSLATORS: Envelope #10 -"media.na_number-10_4.125x9.5in" = "Envelope #10"; -// TRANSLATORS: Envelope #11 -"media.na_number-11_4.5x10.375in" = "Envelope #11"; -// TRANSLATORS: Envelope #12 -"media.na_number-12_4.75x11in" = "Envelope #12"; -// TRANSLATORS: Envelope #14 -"media.na_number-14_5x11.5in" = "Envelope #14"; -// TRANSLATORS: Envelope #9 -"media.na_number-9_3.875x8.875in" = "Envelope #9"; -// TRANSLATORS: 8.5 x 13.4″ -"media.na_oficio_8.5x13.4in" = "8.5 x 13.4″"; -// TRANSLATORS: Envelope Personal -"media.na_personal_3.625x6.5in" = "Envelope Personal"; -// TRANSLATORS: Quarto -"media.na_quarto_8.5x10.83in" = "Quarto"; -// TRANSLATORS: 8.94 x 14″ -"media.na_super-a_8.94x14in" = "8.94 x 14″"; -// TRANSLATORS: 13 x 19″ -"media.na_super-b_13x19in" = "13 x 19″"; -// TRANSLATORS: 30 x 42″ -"media.na_wide-format_30x42in" = "30 x 42″"; -// TRANSLATORS: 12 x 16″ -"media.oe_12x16_12x16in" = "12 x 16″"; -// TRANSLATORS: 14 x 17″ -"media.oe_14x17_14x17in" = "14 x 17″"; -// TRANSLATORS: 18 x 22″ -"media.oe_18x22_18x22in" = "18 x 22″"; -// TRANSLATORS: 17 x 24″ -"media.oe_a2plus_17x24in" = "17 x 24″"; -// TRANSLATORS: 2 x 3.5″ -"media.oe_business-card_2x3.5in" = "2 x 3.5″"; -// TRANSLATORS: 10 x 12″ -"media.oe_photo-10r_10x12in" = "10 x 12″"; -// TRANSLATORS: 20 x 24″ -"media.oe_photo-20r_20x24in" = "20 x 24″"; -// TRANSLATORS: 3.5 x 5″ -"media.oe_photo-l_3.5x5in" = "3.5 x 5″"; -// TRANSLATORS: 10 x 15″ -"media.oe_photo-s10r_10x15in" = "10 x 15″"; -// TRANSLATORS: 4 x 4″ -"media.oe_square-photo_4x4in" = "4 x 4″"; -// TRANSLATORS: 5 x 5″ -"media.oe_square-photo_5x5in" = "5 x 5″"; -// TRANSLATORS: 184 x 260mm -"media.om_16k_184x260mm" = "184 x 260mm"; -// TRANSLATORS: 195 x 270mm -"media.om_16k_195x270mm" = "195 x 270mm"; -// TRANSLATORS: 55 x 85mm -"media.om_business-card_55x85mm" = "55 x 85mm"; -// TRANSLATORS: 55 x 91mm -"media.om_business-card_55x91mm" = "55 x 91mm"; -// TRANSLATORS: 54 x 86mm -"media.om_card_54x86mm" = "54 x 86mm"; -// TRANSLATORS: 275 x 395mm -"media.om_dai-pa-kai_275x395mm" = "275 x 395mm"; -// TRANSLATORS: 89 x 119mm -"media.om_dsc-photo_89x119mm" = "89 x 119mm"; -// TRANSLATORS: Folio -"media.om_folio-sp_215x315mm" = "Folio"; -// TRANSLATORS: Folio (Special) -"media.om_folio_210x330mm" = "Folio (Special)"; -// TRANSLATORS: Envelope Invitation -"media.om_invite_220x220mm" = "Envelope Invitation"; -// TRANSLATORS: Envelope Italian -"media.om_italian_110x230mm" = "Envelope Italian"; -// TRANSLATORS: 198 x 275mm -"media.om_juuro-ku-kai_198x275mm" = "198 x 275mm"; -// TRANSLATORS: 200 x 300 -"media.om_large-photo_200x300" = "200 x 300"; -// TRANSLATORS: 130 x 180mm -"media.om_medium-photo_130x180mm" = "130 x 180mm"; -// TRANSLATORS: 267 x 389mm -"media.om_pa-kai_267x389mm" = "267 x 389mm"; -// TRANSLATORS: Envelope Postfix -"media.om_postfix_114x229mm" = "Envelope Postfix"; -// TRANSLATORS: 100 x 150mm -"media.om_small-photo_100x150mm" = "100 x 150mm"; -// TRANSLATORS: 89 x 89mm -"media.om_square-photo_89x89mm" = "89 x 89mm"; -// TRANSLATORS: 100 x 200mm -"media.om_wide-photo_100x200mm" = "100 x 200mm"; -// TRANSLATORS: Envelope Chinese #10 -"media.prc_10_324x458mm" = "Envelope Chinese #10"; -// TRANSLATORS: Chinese 16k -"media.prc_16k_146x215mm" = "Chinese 16k"; -// TRANSLATORS: Envelope Chinese #1 -"media.prc_1_102x165mm" = "Envelope Chinese #1"; -// TRANSLATORS: Envelope Chinese #2 -"media.prc_2_102x176mm" = "Envelope Chinese #2"; -// TRANSLATORS: Chinese 32k -"media.prc_32k_97x151mm" = "Chinese 32k"; -// TRANSLATORS: Envelope Chinese #3 -"media.prc_3_125x176mm" = "Envelope Chinese #3"; -// TRANSLATORS: Envelope Chinese #4 -"media.prc_4_110x208mm" = "Envelope Chinese #4"; -// TRANSLATORS: Envelope Chinese #5 -"media.prc_5_110x220mm" = "Envelope Chinese #5"; -// TRANSLATORS: Envelope Chinese #6 -"media.prc_6_120x320mm" = "Envelope Chinese #6"; -// TRANSLATORS: Envelope Chinese #7 -"media.prc_7_160x230mm" = "Envelope Chinese #7"; -// TRANSLATORS: Envelope Chinese #8 -"media.prc_8_120x309mm" = "Envelope Chinese #8"; -// TRANSLATORS: ROC 16k -"media.roc_16k_7.75x10.75in" = "ROC 16k"; -// TRANSLATORS: ROC 8k -"media.roc_8k_10.75x15.5in" = "ROC 8k"; -"members of class %s:" = "members of class %s:"; -// TRANSLATORS: Multiple Document Handling -"multiple-document-handling" = "Multiple Document Handling"; -// TRANSLATORS: Separate Documents Collated Copies -"multiple-document-handling.separate-documents-collated-copies" = "Separate Documents Collated Copies"; -// TRANSLATORS: Separate Documents Uncollated Copies -"multiple-document-handling.separate-documents-uncollated-copies" = "Separate Documents Uncollated Copies"; -// TRANSLATORS: Single Document -"multiple-document-handling.single-document" = "Single Document"; -// TRANSLATORS: Single Document New Sheet -"multiple-document-handling.single-document-new-sheet" = "Single Document New Sheet"; -// TRANSLATORS: Multiple Object Handling -"multiple-object-handling" = "Multiple Object Handling"; -// TRANSLATORS: Multiple Object Handling Actual -"multiple-object-handling-actual" = "Multiple Object Handling Actual"; -// TRANSLATORS: Automatic -"multiple-object-handling.auto" = "Automatic"; -// TRANSLATORS: Best Fit -"multiple-object-handling.best-fit" = "Best Fit"; -// TRANSLATORS: Best Quality -"multiple-object-handling.best-quality" = "Best Quality"; -// TRANSLATORS: Best Speed -"multiple-object-handling.best-speed" = "Best Speed"; -// TRANSLATORS: One At A Time -"multiple-object-handling.one-at-a-time" = "One At A Time"; -// TRANSLATORS: On Timeout -"multiple-operation-time-out-action" = "On Timeout"; -// TRANSLATORS: Abort Job -"multiple-operation-time-out-action.abort-job" = "Abort Job"; -// TRANSLATORS: Hold Job -"multiple-operation-time-out-action.hold-job" = "Hold Job"; -// TRANSLATORS: Process Job -"multiple-operation-time-out-action.process-job" = "Process Job"; -"no entries" = "no entries"; -"no system default destination" = "no system default destination"; -// TRANSLATORS: Noise Removal -"noise-removal" = "Noise Removal"; -// TRANSLATORS: Notify Attributes -"notify-attributes" = "Notify Attributes"; -// TRANSLATORS: Notify Charset -"notify-charset" = "Notify Charset"; -// TRANSLATORS: Notify Events -"notify-events" = "Notify Events"; -"notify-events not specified." = "notify-events not specified."; -// TRANSLATORS: Document Completed -"notify-events.document-completed" = "Document Completed"; -// TRANSLATORS: Document Config Changed -"notify-events.document-config-changed" = "Document Config Changed"; -// TRANSLATORS: Document Created -"notify-events.document-created" = "Document Created"; -// TRANSLATORS: Document Fetchable -"notify-events.document-fetchable" = "Document Fetchable"; -// TRANSLATORS: Document State Changed -"notify-events.document-state-changed" = "Document State Changed"; -// TRANSLATORS: Document Stopped -"notify-events.document-stopped" = "Document Stopped"; -// TRANSLATORS: Job Completed -"notify-events.job-completed" = "Job Completed"; -// TRANSLATORS: Job Config Changed -"notify-events.job-config-changed" = "Job Config Changed"; -// TRANSLATORS: Job Created -"notify-events.job-created" = "Job Created"; -// TRANSLATORS: Job Fetchable -"notify-events.job-fetchable" = "Job Fetchable"; -// TRANSLATORS: Job Progress -"notify-events.job-progress" = "Job Progress"; -// TRANSLATORS: Job State Changed -"notify-events.job-state-changed" = "Job State Changed"; -// TRANSLATORS: Job Stopped -"notify-events.job-stopped" = "Job Stopped"; -// TRANSLATORS: None -"notify-events.none" = "None"; -// TRANSLATORS: Printer Config Changed -"notify-events.printer-config-changed" = "Printer Config Changed"; -// TRANSLATORS: Printer Finishings Changed -"notify-events.printer-finishings-changed" = "Printer Finishings Changed"; -// TRANSLATORS: Printer Media Changed -"notify-events.printer-media-changed" = "Printer Media Changed"; -// TRANSLATORS: Printer Queue Order Changed -"notify-events.printer-queue-order-changed" = "Printer Queue Order Changed"; -// TRANSLATORS: Printer Restarted -"notify-events.printer-restarted" = "Printer Restarted"; -// TRANSLATORS: Printer Shutdown -"notify-events.printer-shutdown" = "Printer Shutdown"; -// TRANSLATORS: Printer State Changed -"notify-events.printer-state-changed" = "Printer State Changed"; -// TRANSLATORS: Printer Stopped -"notify-events.printer-stopped" = "Printer Stopped"; -// TRANSLATORS: Notify Get Interval -"notify-get-interval" = "Notify Get Interval"; -// TRANSLATORS: Notify Lease Duration -"notify-lease-duration" = "Notify Lease Duration"; -// TRANSLATORS: Notify Natural Language -"notify-natural-language" = "Notify Natural Language"; -// TRANSLATORS: Notify Pull Method -"notify-pull-method" = "Notify Pull Method"; -// TRANSLATORS: Notify Recipient -"notify-recipient-uri" = "Notify Recipient"; -"notify-recipient-uri URI \"%s\" is already used." = "notify-recipient-uri URI “%s” is already used."; -"notify-recipient-uri URI \"%s\" uses unknown scheme." = "notify-recipient-uri URI \"%s\" uses unknown scheme."; -// TRANSLATORS: Notify Sequence Numbers -"notify-sequence-numbers" = "Notify Sequence Numbers"; -// TRANSLATORS: Notify Subscription Ids -"notify-subscription-ids" = "Notify Subscription Ids"; -// TRANSLATORS: Notify Time Interval -"notify-time-interval" = "Notify Time Interval"; -// TRANSLATORS: Notify User Data -"notify-user-data" = "Notify User Data"; -// TRANSLATORS: Notify Wait -"notify-wait" = "Notify Wait"; -// TRANSLATORS: Number Of Retries -"number-of-retries" = "Number Of Retries"; -// TRANSLATORS: Number-Up -"number-up" = "Number-Up"; -// TRANSLATORS: Number-Up Layout -"number-up-layout" = "number-up-layout"; -// TRANSLATORS: Bottom-Top, Left-Right -"number-up-layout.btlr" = "number-up-layout.btlr"; -// TRANSLATORS: Bottom-Top, Right-Left -"number-up-layout.btrl" = "number-up-layout.btrl"; -// TRANSLATORS: Left-Right, Bottom-Top -"number-up-layout.lrbt" = "number-up-layout.lrbt"; -// TRANSLATORS: Left-Right, Top-Bottom -"number-up-layout.lrtb" = "number-up-layout.lrtb"; -// TRANSLATORS: Right-Left, Bottom-Top -"number-up-layout.rlbt" = "number-up-layout.rlbt"; -// TRANSLATORS: Right-Left, Top-Bottom -"number-up-layout.rltb" = "number-up-layout.rltb"; -// TRANSLATORS: Top-Bottom, Left-Right -"number-up-layout.tblr" = "number-up-layout.tblr"; -// TRANSLATORS: Top-Bottom, Right-Left -"number-up-layout.tbrl" = "number-up-layout.tbrl"; -// TRANSLATORS: Object Offset -"object-offset" = "Object Offset"; -// TRANSLATORS: Object Size -"object-size" = "Object Size"; -// TRANSLATORS: Organization Name -"organization-name" = "Organization Name"; -// TRANSLATORS: Orientation -"orientation-requested" = "Orientation"; -// TRANSLATORS: Portrait -"orientation-requested.3" = "Portrait"; -// TRANSLATORS: Landscape -"orientation-requested.4" = "Landscape"; -// TRANSLATORS: Reverse Landscape -"orientation-requested.5" = "Reverse Landscape"; -// TRANSLATORS: Reverse Portrait -"orientation-requested.6" = "Reverse Portrait"; -// TRANSLATORS: None -"orientation-requested.7" = "None"; -// TRANSLATORS: Scanned Image Options -"output-attributes" = "Scanned Image Options"; -// TRANSLATORS: Output Tray -"output-bin" = "Output Tray"; -// TRANSLATORS: Automatic -"output-bin.auto" = "Automatic"; -// TRANSLATORS: Bottom -"output-bin.bottom" = "Bottom"; -// TRANSLATORS: Center -"output-bin.center" = "Center"; -// TRANSLATORS: Face Down -"output-bin.face-down" = "Face Down"; -// TRANSLATORS: Face Up -"output-bin.face-up" = "Face Up"; -// TRANSLATORS: Large Capacity -"output-bin.large-capacity" = "Large Capacity"; -// TRANSLATORS: Left -"output-bin.left" = "Left"; -// TRANSLATORS: Mailbox 1 -"output-bin.mailbox-1" = "Mailbox 1"; -// TRANSLATORS: Mailbox 10 -"output-bin.mailbox-10" = "Mailbox 10"; -// TRANSLATORS: Mailbox 2 -"output-bin.mailbox-2" = "Mailbox 2"; -// TRANSLATORS: Mailbox 3 -"output-bin.mailbox-3" = "Mailbox 3"; -// TRANSLATORS: Mailbox 4 -"output-bin.mailbox-4" = "Mailbox 4"; -// TRANSLATORS: Mailbox 5 -"output-bin.mailbox-5" = "Mailbox 5"; -// TRANSLATORS: Mailbox 6 -"output-bin.mailbox-6" = "Mailbox 6"; -// TRANSLATORS: Mailbox 7 -"output-bin.mailbox-7" = "Mailbox 7"; -// TRANSLATORS: Mailbox 8 -"output-bin.mailbox-8" = "Mailbox 8"; -// TRANSLATORS: Mailbox 9 -"output-bin.mailbox-9" = "Mailbox 9"; -// TRANSLATORS: Middle -"output-bin.middle" = "Middle"; -// TRANSLATORS: My Mailbox -"output-bin.my-mailbox" = "My Mailbox"; -// TRANSLATORS: Rear -"output-bin.rear" = "Rear"; -// TRANSLATORS: Right -"output-bin.right" = "Right"; -// TRANSLATORS: Side -"output-bin.side" = "Side"; -// TRANSLATORS: Stacker 1 -"output-bin.stacker-1" = "Stacker 1"; -// TRANSLATORS: Stacker 10 -"output-bin.stacker-10" = "Stacker 10"; -// TRANSLATORS: Stacker 2 -"output-bin.stacker-2" = "Stacker 2"; -// TRANSLATORS: Stacker 3 -"output-bin.stacker-3" = "Stacker 3"; -// TRANSLATORS: Stacker 4 -"output-bin.stacker-4" = "Stacker 4"; -// TRANSLATORS: Stacker 5 -"output-bin.stacker-5" = "Stacker 5"; -// TRANSLATORS: Stacker 6 -"output-bin.stacker-6" = "Stacker 6"; -// TRANSLATORS: Stacker 7 -"output-bin.stacker-7" = "Stacker 7"; -// TRANSLATORS: Stacker 8 -"output-bin.stacker-8" = "Stacker 8"; -// TRANSLATORS: Stacker 9 -"output-bin.stacker-9" = "Stacker 9"; -// TRANSLATORS: Top -"output-bin.top" = "Top"; -// TRANSLATORS: Tray 1 -"output-bin.tray-1" = "Tray 1"; -// TRANSLATORS: Tray 10 -"output-bin.tray-10" = "Tray 10"; -// TRANSLATORS: Tray 2 -"output-bin.tray-2" = "Tray 2"; -// TRANSLATORS: Tray 3 -"output-bin.tray-3" = "Tray 3"; -// TRANSLATORS: Tray 4 -"output-bin.tray-4" = "Tray 4"; -// TRANSLATORS: Tray 5 -"output-bin.tray-5" = "Tray 5"; -// TRANSLATORS: Tray 6 -"output-bin.tray-6" = "Tray 6"; -// TRANSLATORS: Tray 7 -"output-bin.tray-7" = "Tray 7"; -// TRANSLATORS: Tray 8 -"output-bin.tray-8" = "Tray 8"; -// TRANSLATORS: Tray 9 -"output-bin.tray-9" = "Tray 9"; -// TRANSLATORS: Scanned Image Quality -"output-compression-quality-factor" = "Scanned Image Quality"; -// TRANSLATORS: Page Border -"page-border" = "page-border"; -// TRANSLATORS: Thin Double Border -"page-border.double" = "page-border.double"; -// TRANSLATORS: Thick Double Border -"page-border.double-thick" = "page-border.double-thick"; -// TRANSLATORS: No Border -"page-border.none" = "page-border.none"; -// TRANSLATORS: Thin Single Border -"page-border.single" = "page-border.single"; -// TRANSLATORS: Thick Single Border -"page-border.single-thick" = "page-border.single-thick"; -// TRANSLATORS: Page Delivery -"page-delivery" = "Page Delivery"; -// TRANSLATORS: Reverse Order Face-down -"page-delivery.reverse-order-face-down" = "Reverse Order Face-down"; -// TRANSLATORS: Reverse Order Face-up -"page-delivery.reverse-order-face-up" = "Reverse Order Face-up"; -// TRANSLATORS: Same Order Face-down -"page-delivery.same-order-face-down" = "Same Order Face-down"; -// TRANSLATORS: Same Order Face-up -"page-delivery.same-order-face-up" = "Same Order Face-up"; -// TRANSLATORS: System Specified -"page-delivery.system-specified" = "System Specified"; -// TRANSLATORS: Page Order Received -"page-order-received" = "Page Order Received"; -// TRANSLATORS: 1 To N -"page-order-received.1-to-n-order" = "1 To N"; -// TRANSLATORS: N To 1 -"page-order-received.n-to-1-order" = "N To 1"; -// TRANSLATORS: Page Ranges -"page-ranges" = "Page Ranges"; -// TRANSLATORS: Page Set -"page-set" = "page-set"; -// TRANSLATORS: All Pages -"page-set.all" = "page-set.all"; -// TRANSLATORS: Even Pages -"page-set.even" = "page-set.even"; -// TRANSLATORS: Odd Pages -"page-set.odd" = "page-set.odd"; -// TRANSLATORS: Pages -"pages" = "Pages"; -// TRANSLATORS: Pages Per Subset -"pages-per-subset" = "Pages Per Subset"; -// TRANSLATORS: Pclm Raster Back Side -"pclm-raster-back-side" = "Pclm Raster Back Side"; -// TRANSLATORS: Flipped -"pclm-raster-back-side.flipped" = "Flipped"; -// TRANSLATORS: Normal -"pclm-raster-back-side.normal" = "Normal"; -// TRANSLATORS: Rotated -"pclm-raster-back-side.rotated" = "Rotated"; -// TRANSLATORS: Pclm Source Resolution -"pclm-source-resolution" = "Pclm Source Resolution"; -"pending" = "pending"; -// TRANSLATORS: Platform Shape -"platform-shape" = "Platform Shape"; -// TRANSLATORS: Round -"platform-shape.ellipse" = "Round"; -// TRANSLATORS: Rectangle -"platform-shape.rectangle" = "Rectangle"; -// TRANSLATORS: Platform Temperature -"platform-temperature" = "Platform Temperature"; -// TRANSLATORS: Image Position -"position" = "position"; -// TRANSLATORS: Bottom-Center -"position.bottom" = "position.bottom"; -// TRANSLATORS: Bottom-Left -"position.bottom-left" = "position.bottom-left"; -// TRANSLATORS: Bottom-Right -"position.bottom-right" = "position.bottom-right"; -// TRANSLATORS: Center -"position.center" = "position.center"; -// TRANSLATORS: Left-Center -"position.left" = "position.left"; -// TRANSLATORS: Right-Center -"position.right" = "position.right"; -// TRANSLATORS: Top-Center -"position.top" = "position.top"; -// TRANSLATORS: Top-Left -"position.top-left" = "position.top-left"; -// TRANSLATORS: Top-Right -"position.top-right" = "position.top-right"; -// TRANSLATORS: Post-dial String -"post-dial-string" = "Post-dial String"; -"ppdc: Adding include directory \"%s\"." = "ppdc: Adding include directory “%s”."; -"ppdc: Adding/updating UI text from %s." = "ppdc: Adding/updating UI text from %s."; -"ppdc: Bad boolean value (%s) on line %d of %s." = "ppdc: Bad boolean value (%s) on line %d of %s."; -"ppdc: Bad font attribute: %s" = "ppdc: Bad font attribute: %s"; -"ppdc: Bad resolution name \"%s\" on line %d of %s." = "ppdc: Bad resolution name “%s” on line %d of %s."; -"ppdc: Bad status keyword %s on line %d of %s." = "ppdc: Bad status keyword %s on line %d of %s."; -"ppdc: Bad variable substitution ($%c) on line %d of %s." = "ppdc: Bad variable substitution ($%c) on line %d of %s."; -"ppdc: Choice found on line %d of %s with no Option." = "ppdc: Choice found on line %d of %s with no Option."; -"ppdc: Duplicate #po for locale %s on line %d of %s." = "ppdc: Duplicate #po for locale %s on line %d of %s."; -"ppdc: Expected a filter definition on line %d of %s." = "ppdc: Expected a filter definition on line %d of %s."; -"ppdc: Expected a program name on line %d of %s." = "ppdc: Expected a program name on line %d of %s."; -"ppdc: Expected boolean value on line %d of %s." = "ppdc: Expected boolean value on line %d of %s."; -"ppdc: Expected charset after Font on line %d of %s." = "ppdc: Expected charset after Font on line %d of %s."; -"ppdc: Expected choice code on line %d of %s." = "ppdc: Expected choice code on line %d of %s."; -"ppdc: Expected choice name/text on line %d of %s." = "ppdc: Expected choice name/text on line %d of %s."; -"ppdc: Expected color order for ColorModel on line %d of %s." = "ppdc: Expected color order for ColorModel on line %d of %s."; -"ppdc: Expected colorspace for ColorModel on line %d of %s." = "ppdc: Expected colorspace for ColorModel on line %d of %s."; -"ppdc: Expected compression for ColorModel on line %d of %s." = "ppdc: Expected compression for ColorModel on line %d of %s."; -"ppdc: Expected constraints string for UIConstraints on line %d of %s." = "ppdc: Expected constraints string for UIConstraints on line %d of %s."; -"ppdc: Expected driver type keyword following DriverType on line %d of %s." = "ppdc: Expected driver type keyword following DriverType on line %d of %s."; -"ppdc: Expected duplex type after Duplex on line %d of %s." = "ppdc: Expected duplex type after Duplex on line %d of %s."; -"ppdc: Expected encoding after Font on line %d of %s." = "ppdc: Expected encoding after Font on line %d of %s."; -"ppdc: Expected filename after #po %s on line %d of %s." = "ppdc: Expected filename after #po %s on line %d of %s."; -"ppdc: Expected group name/text on line %d of %s." = "ppdc: Expected group name/text on line %d of %s."; -"ppdc: Expected include filename on line %d of %s." = "ppdc: Expected include filename on line %d of %s."; -"ppdc: Expected integer on line %d of %s." = "ppdc: Expected integer on line %d of %s."; -"ppdc: Expected locale after #po on line %d of %s." = "ppdc: Expected locale after #po on line %d of %s."; -"ppdc: Expected name after %s on line %d of %s." = "ppdc: Expected name after %s on line %d of %s."; -"ppdc: Expected name after FileName on line %d of %s." = "ppdc: Expected name after FileName on line %d of %s."; -"ppdc: Expected name after Font on line %d of %s." = "ppdc: Expected name after Font on line %d of %s."; -"ppdc: Expected name after Manufacturer on line %d of %s." = "ppdc: Expected name after Manufacturer on line %d of %s."; -"ppdc: Expected name after MediaSize on line %d of %s." = "ppdc: Expected name after MediaSize on line %d of %s."; -"ppdc: Expected name after ModelName on line %d of %s." = "ppdc: Expected name after ModelName on line %d of %s."; -"ppdc: Expected name after PCFileName on line %d of %s." = "ppdc: Expected name after PCFileName on line %d of %s."; -"ppdc: Expected name/text after %s on line %d of %s." = "ppdc: Expected name/text after %s on line %d of %s."; -"ppdc: Expected name/text after Installable on line %d of %s." = "ppdc: Expected name/text after Installable on line %d of %s."; -"ppdc: Expected name/text after Resolution on line %d of %s." = "ppdc: Expected name/text after Resolution on line %d of %s."; -"ppdc: Expected name/text combination for ColorModel on line %d of %s." = "ppdc: Expected name/text combination for ColorModel on line %d of %s."; -"ppdc: Expected option name/text on line %d of %s." = "ppdc: Expected option name/text on line %d of %s."; -"ppdc: Expected option section on line %d of %s." = "ppdc: Expected option section on line %d of %s."; -"ppdc: Expected option type on line %d of %s." = "ppdc: Expected option type on line %d of %s."; -"ppdc: Expected override field after Resolution on line %d of %s." = "ppdc: Expected override field after Resolution on line %d of %s."; -"ppdc: Expected quoted string on line %d of %s." = "ppdc: Expected quoted string on line %d of %s."; -"ppdc: Expected real number on line %d of %s." = "ppdc: Expected real number on line %d of %s."; -"ppdc: Expected resolution/mediatype following ColorProfile on line %d of %s." = "ppdc: Expected resolution/mediatype following ColorProfile on line %d of %s."; -"ppdc: Expected resolution/mediatype following SimpleColorProfile on line %d of %s." = "ppdc: Expected resolution/mediatype following SimpleColorProfile on line %d of %s."; -"ppdc: Expected selector after %s on line %d of %s." = "ppdc: Expected selector after %s on line %d of %s."; -"ppdc: Expected status after Font on line %d of %s." = "ppdc: Expected status after Font on line %d of %s."; -"ppdc: Expected string after Copyright on line %d of %s." = "ppdc: Expected string after Copyright on line %d of %s."; -"ppdc: Expected string after Version on line %d of %s." = "ppdc: Expected string after Version on line %d of %s."; -"ppdc: Expected two option names on line %d of %s." = "ppdc: Expected two option names on line %d of %s."; -"ppdc: Expected value after %s on line %d of %s." = "ppdc: Expected value after %s on line %d of %s."; -"ppdc: Expected version after Font on line %d of %s." = "ppdc: Expected version after Font on line %d of %s."; -"ppdc: Invalid #include/#po filename \"%s\"." = "ppdc: Invalid #include/#po filename “%s”."; -"ppdc: Invalid cost for filter on line %d of %s." = "ppdc: Invalid cost for filter on line %d of %s."; -"ppdc: Invalid empty MIME type for filter on line %d of %s." = "ppdc: Invalid empty MIME type for filter on line %d of %s."; -"ppdc: Invalid empty program name for filter on line %d of %s." = "ppdc: Invalid empty program name for filter on line %d of %s."; -"ppdc: Invalid option section \"%s\" on line %d of %s." = "ppdc: Invalid option section “%s” on line %d of %s."; -"ppdc: Invalid option type \"%s\" on line %d of %s." = "ppdc: Invalid option type “%s” on line %d of %s."; -"ppdc: Loading driver information file \"%s\"." = "ppdc: Loading driver information file “%s”."; -"ppdc: Loading messages for locale \"%s\"." = "ppdc: Loading messages for locale “%s”."; -"ppdc: Loading messages from \"%s\"." = "ppdc: Loading messages from “%s”."; -"ppdc: Missing #endif at end of \"%s\"." = "ppdc: Missing #endif at end of “%s”."; -"ppdc: Missing #if on line %d of %s." = "ppdc: Missing #if on line %d of %s."; -"ppdc: Need a msgid line before any translation strings on line %d of %s." = "ppdc: Need a msgid line before any translation strings on line %d of %s."; -"ppdc: No message catalog provided for locale %s." = "ppdc: No message catalog provided for locale %s."; -"ppdc: Option %s defined in two different groups on line %d of %s." = "ppdc: Option %s defined in two different groups on line %d of %s."; -"ppdc: Option %s redefined with a different type on line %d of %s." = "ppdc: Option %s redefined with a different type on line %d of %s."; -"ppdc: Option constraint must *name on line %d of %s." = "ppdc: Option constraint must *name on line %d of %s."; -"ppdc: Too many nested #if's on line %d of %s." = "ppdc: Too many nested #if’s on line %d of %s."; -"ppdc: Unable to create PPD file \"%s\" - %s." = "ppdc: Unable to create PPD file “%s” - %s."; -"ppdc: Unable to create output directory %s: %s" = "ppdc: Unable to create output directory %s: %s"; -"ppdc: Unable to create output pipes: %s" = "ppdc: Unable to create output pipes: %s"; -"ppdc: Unable to execute cupstestppd: %s" = "ppdc: Unable to execute cupstestppd: %s"; -"ppdc: Unable to find #po file %s on line %d of %s." = "ppdc: Unable to find #po file %s on line %d of %s."; -"ppdc: Unable to find include file \"%s\" on line %d of %s." = "ppdc: Unable to find include file “%s” on line %d of %s."; -"ppdc: Unable to find localization for \"%s\" - %s" = "ppdc: Unable to find localization for “%s” - %s"; -"ppdc: Unable to load localization file \"%s\" - %s" = "ppdc: Unable to load localization file “%s” - %s"; -"ppdc: Unable to open %s: %s" = "ppdc: Unable to open %s: %s"; -"ppdc: Undefined variable (%s) on line %d of %s." = "ppdc: Undefined variable (%s) on line %d of %s."; -"ppdc: Unexpected text on line %d of %s." = "ppdc: Unexpected text on line %d of %s."; -"ppdc: Unknown driver type %s on line %d of %s." = "ppdc: Unknown driver type %s on line %d of %s."; -"ppdc: Unknown duplex type \"%s\" on line %d of %s." = "ppdc: Unknown duplex type “%s” on line %d of %s."; -"ppdc: Unknown media size \"%s\" on line %d of %s." = "ppdc: Unknown media size “%s” on line %d of %s."; -"ppdc: Unknown message catalog format for \"%s\"." = "ppdc: Unknown message catalog format for “%s”."; -"ppdc: Unknown token \"%s\" seen on line %d of %s." = "ppdc: Unknown token “%s” seen on line %d of %s."; -"ppdc: Unknown trailing characters in real number \"%s\" on line %d of %s." = "ppdc: Unknown trailing characters in real number “%s” on line %d of %s."; -"ppdc: Unterminated string starting with %c on line %d of %s." = "ppdc: Unterminated string starting with %c on line %d of %s."; -"ppdc: Warning - overlapping filename \"%s\"." = "ppdc: Warning - overlapping filename “%s”."; -"ppdc: Writing %s." = "ppdc: Writing %s."; -"ppdc: Writing PPD files to directory \"%s\"." = "ppdc: Writing PPD files to directory “%s”."; -"ppdmerge: Bad LanguageVersion \"%s\" in %s." = "ppdmerge: Bad LanguageVersion “%s” in %s."; -"ppdmerge: Ignoring PPD file %s." = "ppdmerge: Ignoring PPD file %s."; -"ppdmerge: Unable to backup %s to %s - %s" = "ppdmerge: Unable to backup %s to %s - %s"; -// TRANSLATORS: Pre-dial String -"pre-dial-string" = "Pre-dial String"; -// TRANSLATORS: Number-Up Layout -"presentation-direction-number-up" = "Number-Up Layout"; -// TRANSLATORS: Top-bottom, Right-left -"presentation-direction-number-up.tobottom-toleft" = "Top-bottom, Right-left"; -// TRANSLATORS: Top-bottom, Left-right -"presentation-direction-number-up.tobottom-toright" = "Top-bottom, Left-right"; -// TRANSLATORS: Right-left, Top-bottom -"presentation-direction-number-up.toleft-tobottom" = "Right-left, Top-bottom"; -// TRANSLATORS: Right-left, Bottom-top -"presentation-direction-number-up.toleft-totop" = "Right-left, Bottom-top"; -// TRANSLATORS: Left-right, Top-bottom -"presentation-direction-number-up.toright-tobottom" = "Left-right, Top-bottom"; -// TRANSLATORS: Left-right, Bottom-top -"presentation-direction-number-up.toright-totop" = "Left-right, Bottom-top"; -// TRANSLATORS: Bottom-top, Right-left -"presentation-direction-number-up.totop-toleft" = "Bottom-top, Right-left"; -// TRANSLATORS: Bottom-top, Left-right -"presentation-direction-number-up.totop-toright" = "Bottom-top, Left-right"; -// TRANSLATORS: Print Accuracy -"print-accuracy" = "Print Accuracy"; -// TRANSLATORS: Print Base -"print-base" = "Print Base"; -// TRANSLATORS: Print Base Actual -"print-base-actual" = "Print Base Actual"; -// TRANSLATORS: Brim -"print-base.brim" = "Brim"; -// TRANSLATORS: None -"print-base.none" = "None"; -// TRANSLATORS: Raft -"print-base.raft" = "Raft"; -// TRANSLATORS: Skirt -"print-base.skirt" = "Skirt"; -// TRANSLATORS: Standard -"print-base.standard" = "Standard"; -// TRANSLATORS: Print Color Mode -"print-color-mode" = "Print Color Mode"; -// TRANSLATORS: Automatic -"print-color-mode.auto" = "Automatic"; -// TRANSLATORS: Auto Monochrome -"print-color-mode.auto-monochrome" = "Auto Monochrome"; -// TRANSLATORS: Text -"print-color-mode.bi-level" = "Text"; -// TRANSLATORS: Color -"print-color-mode.color" = "Color"; -// TRANSLATORS: Highlight -"print-color-mode.highlight" = "Highlight"; -// TRANSLATORS: Monochrome -"print-color-mode.monochrome" = "Monochrome"; -// TRANSLATORS: Process Text -"print-color-mode.process-bi-level" = "Process Text"; -// TRANSLATORS: Process Monochrome -"print-color-mode.process-monochrome" = "Process Monochrome"; -// TRANSLATORS: Print Optimization -"print-content-optimize" = "Print Optimization"; -// TRANSLATORS: Print Content Optimize Actual -"print-content-optimize-actual" = "Print Optimization"; -// TRANSLATORS: Automatic -"print-content-optimize.auto" = "Automatic"; -// TRANSLATORS: Graphics -"print-content-optimize.graphic" = "Graphics"; -// TRANSLATORS: Graphics -"print-content-optimize.graphics" = "Graphics"; -// TRANSLATORS: Photo -"print-content-optimize.photo" = "Photo"; -// TRANSLATORS: Text -"print-content-optimize.text" = "Text"; -// TRANSLATORS: Text and Graphics -"print-content-optimize.text-and-graphic" = "Text and Graphics"; -// TRANSLATORS: Text And Graphics -"print-content-optimize.text-and-graphics" = "Text and Graphics"; -// TRANSLATORS: Print Objects -"print-objects" = "Print Objects"; -// TRANSLATORS: Print Quality -"print-quality" = "Print Quality"; -// TRANSLATORS: Draft -"print-quality.3" = "Draft"; -// TRANSLATORS: Normal -"print-quality.4" = "Normal"; -// TRANSLATORS: High -"print-quality.5" = "High"; -// TRANSLATORS: Print Rendering Intent -"print-rendering-intent" = "Print Rendering Intent"; -// TRANSLATORS: Absolute -"print-rendering-intent.absolute" = "Absolute"; -// TRANSLATORS: Automatic -"print-rendering-intent.auto" = "Automatic"; -// TRANSLATORS: Perceptual -"print-rendering-intent.perceptual" = "Perceptual"; -// TRANSLATORS: Relative -"print-rendering-intent.relative" = "Relative"; -// TRANSLATORS: Relative w/Black Point Compensation -"print-rendering-intent.relative-bpc" = "Relative w/Black Point Compensation"; -// TRANSLATORS: Saturation -"print-rendering-intent.saturation" = "Saturation"; -// TRANSLATORS: Print Scaling -"print-scaling" = "Print Scaling"; -// TRANSLATORS: Automatic -"print-scaling.auto" = "Automatic"; -// TRANSLATORS: Auto-fit -"print-scaling.auto-fit" = "Auto-fit"; -// TRANSLATORS: Fill -"print-scaling.fill" = "Fill"; -// TRANSLATORS: Fit -"print-scaling.fit" = "Fit"; -// TRANSLATORS: None -"print-scaling.none" = "None"; -// TRANSLATORS: Print Supports -"print-supports" = "Print Supports"; -// TRANSLATORS: Print Supports Actual -"print-supports-actual" = "Print Supports Actual"; -// TRANSLATORS: With Specified Material -"print-supports.material" = "With Specified Material"; -// TRANSLATORS: None -"print-supports.none" = "None"; -// TRANSLATORS: Standard -"print-supports.standard" = "Standard"; -"printer %s disabled since %s -" = "printer %s disabled since %s -"; -"printer %s is holding new jobs. enabled since %s" = "printer %s is holding new jobs. enabled since %s"; -"printer %s is idle. enabled since %s" = "printer %s is idle. enabled since %s"; -"printer %s now printing %s-%d. enabled since %s" = "printer %s now printing %s-%d. enabled since %s"; -"printer %s/%s disabled since %s -" = "printer %s/%s disabled since %s -"; -"printer %s/%s is idle. enabled since %s" = "printer %s/%s is idle. enabled since %s"; -"printer %s/%s now printing %s-%d. enabled since %s" = "printer %s/%s now printing %s-%d. enabled since %s"; -// TRANSLATORS: Printer Kind -"printer-kind" = "Printer Kind"; -// TRANSLATORS: Disc -"printer-kind.disc" = "Disc"; -// TRANSLATORS: Document -"printer-kind.document" = "Document"; -// TRANSLATORS: Envelope -"printer-kind.envelope" = "Envelope"; -// TRANSLATORS: Label -"printer-kind.label" = "Label"; -// TRANSLATORS: Large Format -"printer-kind.large-format" = "Large format"; -// TRANSLATORS: Photo -"printer-kind.photo" = "Photo"; -// TRANSLATORS: Postcard -"printer-kind.postcard" = "Postcard"; -// TRANSLATORS: Receipt -"printer-kind.receipt" = "Receipt"; -// TRANSLATORS: Roll -"printer-kind.roll" = "Roll"; -// TRANSLATORS: Message From Operator -"printer-message-from-operator" = "Message From Operator"; -// TRANSLATORS: Print Resolution -"printer-resolution" = "Print Resolution"; -// TRANSLATORS: Printer State -"printer-state" = "Printer State"; -// TRANSLATORS: Detailed Printer State -"printer-state-reasons" = "Detailed Printer State"; -// TRANSLATORS: Old Alerts Have Been Removed -"printer-state-reasons.alert-removal-of-binary-change-entry" = "Old Alerts Have Been Removed"; -// TRANSLATORS: Bander Added -"printer-state-reasons.bander-added" = "Bander Added"; -// TRANSLATORS: Bander Almost Empty -"printer-state-reasons.bander-almost-empty" = "Bander Almost Empty"; -// TRANSLATORS: Bander Almost Full -"printer-state-reasons.bander-almost-full" = "Bander Almost Full"; -// TRANSLATORS: Bander At Limit -"printer-state-reasons.bander-at-limit" = "Bander At Limit"; -// TRANSLATORS: Bander Closed -"printer-state-reasons.bander-closed" = "Bander Closed"; -// TRANSLATORS: Bander Configuration Change -"printer-state-reasons.bander-configuration-change" = "Bander Configuration Change"; -// TRANSLATORS: Bander Cover Closed -"printer-state-reasons.bander-cover-closed" = "Bander Cover Closed"; -// TRANSLATORS: Bander Cover Open -"printer-state-reasons.bander-cover-open" = "Bander Cover Open"; -// TRANSLATORS: Bander Empty -"printer-state-reasons.bander-empty" = "Bander Empty"; -// TRANSLATORS: Bander Full -"printer-state-reasons.bander-full" = "Bander Full"; -// TRANSLATORS: Bander Interlock Closed -"printer-state-reasons.bander-interlock-closed" = "Bander Interlock Closed"; -// TRANSLATORS: Bander Interlock Open -"printer-state-reasons.bander-interlock-open" = "Bander Interlock Open"; -// TRANSLATORS: Bander Jam -"printer-state-reasons.bander-jam" = "Bander Jam"; -// TRANSLATORS: Bander Life Almost Over -"printer-state-reasons.bander-life-almost-over" = "Bander Life Almost Over"; -// TRANSLATORS: Bander Life Over -"printer-state-reasons.bander-life-over" = "Bander Life Over"; -// TRANSLATORS: Bander Memory Exhausted -"printer-state-reasons.bander-memory-exhausted" = "Bander Memory Exhausted"; -// TRANSLATORS: Bander Missing -"printer-state-reasons.bander-missing" = "Bander Missing"; -// TRANSLATORS: Bander Motor Failure -"printer-state-reasons.bander-motor-failure" = "Bander Motor Failure"; -// TRANSLATORS: Bander Near Limit -"printer-state-reasons.bander-near-limit" = "Bander Near Limit"; -// TRANSLATORS: Bander Offline -"printer-state-reasons.bander-offline" = "Bander Offline"; -// TRANSLATORS: Bander Opened -"printer-state-reasons.bander-opened" = "Bander Opened"; -// TRANSLATORS: Bander Over Temperature -"printer-state-reasons.bander-over-temperature" = "Bander Over Temperature"; -// TRANSLATORS: Bander Power Saver -"printer-state-reasons.bander-power-saver" = "Bander Power Saver"; -// TRANSLATORS: Bander Recoverable Failure -"printer-state-reasons.bander-recoverable-failure" = "Bander Recoverable Failure"; -// TRANSLATORS: Bander Recoverable Storage -"printer-state-reasons.bander-recoverable-storage" = "Bander Recoverable Storage"; -// TRANSLATORS: Bander Removed -"printer-state-reasons.bander-removed" = "Bander Removed"; -// TRANSLATORS: Bander Resource Added -"printer-state-reasons.bander-resource-added" = "Bander Resource Added"; -// TRANSLATORS: Bander Resource Removed -"printer-state-reasons.bander-resource-removed" = "Bander Resource Removed"; -// TRANSLATORS: Bander Thermistor Failure -"printer-state-reasons.bander-thermistor-failure" = "Bander Thermistor Failure"; -// TRANSLATORS: Bander Timing Failure -"printer-state-reasons.bander-timing-failure" = "Bander Timing Failure"; -// TRANSLATORS: Bander Turned Off -"printer-state-reasons.bander-turned-off" = "Bander Turned Off"; -// TRANSLATORS: Bander Turned On -"printer-state-reasons.bander-turned-on" = "Bander Turned On"; -// TRANSLATORS: Bander Under Temperature -"printer-state-reasons.bander-under-temperature" = "Bander Under Temperature"; -// TRANSLATORS: Bander Unrecoverable Failure -"printer-state-reasons.bander-unrecoverable-failure" = "Bander Unrecoverable Failure"; -// TRANSLATORS: Bander Unrecoverable Storage Error -"printer-state-reasons.bander-unrecoverable-storage-error" = "Bander Unrecoverable Storage Error"; -// TRANSLATORS: Bander Warming Up -"printer-state-reasons.bander-warming-up" = "Bander Warming Up"; -// TRANSLATORS: Binder Added -"printer-state-reasons.binder-added" = "Binder Added"; -// TRANSLATORS: Binder Almost Empty -"printer-state-reasons.binder-almost-empty" = "Binder Almost Empty"; -// TRANSLATORS: Binder Almost Full -"printer-state-reasons.binder-almost-full" = "Binder Almost Full"; -// TRANSLATORS: Binder At Limit -"printer-state-reasons.binder-at-limit" = "Binder At Limit"; -// TRANSLATORS: Binder Closed -"printer-state-reasons.binder-closed" = "Binder Closed"; -// TRANSLATORS: Binder Configuration Change -"printer-state-reasons.binder-configuration-change" = "Binder Configuration Change"; -// TRANSLATORS: Binder Cover Closed -"printer-state-reasons.binder-cover-closed" = "Binder Cover Closed"; -// TRANSLATORS: Binder Cover Open -"printer-state-reasons.binder-cover-open" = "Binder Cover Open"; -// TRANSLATORS: Binder Empty -"printer-state-reasons.binder-empty" = "Binder Empty"; -// TRANSLATORS: Binder Full -"printer-state-reasons.binder-full" = "Binder Full"; -// TRANSLATORS: Binder Interlock Closed -"printer-state-reasons.binder-interlock-closed" = "Binder Interlock Closed"; -// TRANSLATORS: Binder Interlock Open -"printer-state-reasons.binder-interlock-open" = "Binder Interlock Open"; -// TRANSLATORS: Binder Jam -"printer-state-reasons.binder-jam" = "Binder Jam"; -// TRANSLATORS: Binder Life Almost Over -"printer-state-reasons.binder-life-almost-over" = "Binder Life Almost Over"; -// TRANSLATORS: Binder Life Over -"printer-state-reasons.binder-life-over" = "Binder Life Over"; -// TRANSLATORS: Binder Memory Exhausted -"printer-state-reasons.binder-memory-exhausted" = "Binder Memory Exhausted"; -// TRANSLATORS: Binder Missing -"printer-state-reasons.binder-missing" = "Binder Missing"; -// TRANSLATORS: Binder Motor Failure -"printer-state-reasons.binder-motor-failure" = "Binder Motor Failure"; -// TRANSLATORS: Binder Near Limit -"printer-state-reasons.binder-near-limit" = "Binder Near Limit"; -// TRANSLATORS: Binder Offline -"printer-state-reasons.binder-offline" = "Binder Offline"; -// TRANSLATORS: Binder Opened -"printer-state-reasons.binder-opened" = "Binder Opened"; -// TRANSLATORS: Binder Over Temperature -"printer-state-reasons.binder-over-temperature" = "Binder Over Temperature"; -// TRANSLATORS: Binder Power Saver -"printer-state-reasons.binder-power-saver" = "Binder Power Saver"; -// TRANSLATORS: Binder Recoverable Failure -"printer-state-reasons.binder-recoverable-failure" = "Binder Recoverable Failure"; -// TRANSLATORS: Binder Recoverable Storage -"printer-state-reasons.binder-recoverable-storage" = "Binder Recoverable Storage"; -// TRANSLATORS: Binder Removed -"printer-state-reasons.binder-removed" = "Binder Removed"; -// TRANSLATORS: Binder Resource Added -"printer-state-reasons.binder-resource-added" = "Binder Resource Added"; -// TRANSLATORS: Binder Resource Removed -"printer-state-reasons.binder-resource-removed" = "Binder Resource Removed"; -// TRANSLATORS: Binder Thermistor Failure -"printer-state-reasons.binder-thermistor-failure" = "Binder Thermistor Failure"; -// TRANSLATORS: Binder Timing Failure -"printer-state-reasons.binder-timing-failure" = "Binder Timing Failure"; -// TRANSLATORS: Binder Turned Off -"printer-state-reasons.binder-turned-off" = "Binder Turned Off"; -// TRANSLATORS: Binder Turned On -"printer-state-reasons.binder-turned-on" = "Binder Turned On"; -// TRANSLATORS: Binder Under Temperature -"printer-state-reasons.binder-under-temperature" = "Binder Under Temperature"; -// TRANSLATORS: Binder Unrecoverable Failure -"printer-state-reasons.binder-unrecoverable-failure" = "Binder Unrecoverable Failure"; -// TRANSLATORS: Binder Unrecoverable Storage Error -"printer-state-reasons.binder-unrecoverable-storage-error" = "Binder Unrecoverable Storage Error"; -// TRANSLATORS: Binder Warming Up -"printer-state-reasons.binder-warming-up" = "Binder Warming Up"; -// TRANSLATORS: Camera Failure -"printer-state-reasons.camera-failure" = "Camera Failure"; -// TRANSLATORS: Chamber Cooling -"printer-state-reasons.chamber-cooling" = "Chamber Cooling"; -// TRANSLATORS: Chamber Failure -"printer-state-reasons.chamber-failure" = "Chamber Failure"; -// TRANSLATORS: Chamber Heating -"printer-state-reasons.chamber-heating" = "Chamber Heating"; -// TRANSLATORS: Chamber Temperature High -"printer-state-reasons.chamber-temperature-high" = "Chamber Temperature High"; -// TRANSLATORS: Chamber Temperature Low -"printer-state-reasons.chamber-temperature-low" = "Chamber Temperature Low"; -// TRANSLATORS: Cleaner Life Almost Over -"printer-state-reasons.cleaner-life-almost-over" = "Cleaner Life Almost Over"; -// TRANSLATORS: Cleaner Life Over -"printer-state-reasons.cleaner-life-over" = "Cleaner Life Over"; -// TRANSLATORS: Configuration Change -"printer-state-reasons.configuration-change" = "Configuration Change"; -// TRANSLATORS: Connecting To Device -"printer-state-reasons.connecting-to-device" = "Connecting To Device"; -// TRANSLATORS: Cover Open -"printer-state-reasons.cover-open" = "Cover Open"; -// TRANSLATORS: Deactivated -"printer-state-reasons.deactivated" = "Deactivated"; -// TRANSLATORS: Developer Empty -"printer-state-reasons.developer-empty" = "Developer Empty"; -// TRANSLATORS: Developer Low -"printer-state-reasons.developer-low" = "Developer Low"; -// TRANSLATORS: Die Cutter Added -"printer-state-reasons.die-cutter-added" = "Die Cutter Added"; -// TRANSLATORS: Die Cutter Almost Empty -"printer-state-reasons.die-cutter-almost-empty" = "Die Cutter Almost Empty"; -// TRANSLATORS: Die Cutter Almost Full -"printer-state-reasons.die-cutter-almost-full" = "Die Cutter Almost Full"; -// TRANSLATORS: Die Cutter At Limit -"printer-state-reasons.die-cutter-at-limit" = "Die Cutter At Limit"; -// TRANSLATORS: Die Cutter Closed -"printer-state-reasons.die-cutter-closed" = "Die Cutter Closed"; -// TRANSLATORS: Die Cutter Configuration Change -"printer-state-reasons.die-cutter-configuration-change" = "Die Cutter Configuration Change"; -// TRANSLATORS: Die Cutter Cover Closed -"printer-state-reasons.die-cutter-cover-closed" = "Die Cutter Cover Closed"; -// TRANSLATORS: Die Cutter Cover Open -"printer-state-reasons.die-cutter-cover-open" = "Die Cutter Cover Open"; -// TRANSLATORS: Die Cutter Empty -"printer-state-reasons.die-cutter-empty" = "Die Cutter Empty"; -// TRANSLATORS: Die Cutter Full -"printer-state-reasons.die-cutter-full" = "Die Cutter Full"; -// TRANSLATORS: Die Cutter Interlock Closed -"printer-state-reasons.die-cutter-interlock-closed" = "Die Cutter Interlock Closed"; -// TRANSLATORS: Die Cutter Interlock Open -"printer-state-reasons.die-cutter-interlock-open" = "Die Cutter Interlock Open"; -// TRANSLATORS: Die Cutter Jam -"printer-state-reasons.die-cutter-jam" = "Die Cutter Jam"; -// TRANSLATORS: Die Cutter Life Almost Over -"printer-state-reasons.die-cutter-life-almost-over" = "Die Cutter Life Almost Over"; -// TRANSLATORS: Die Cutter Life Over -"printer-state-reasons.die-cutter-life-over" = "Die Cutter Life Over"; -// TRANSLATORS: Die Cutter Memory Exhausted -"printer-state-reasons.die-cutter-memory-exhausted" = "Die Cutter Memory Exhausted"; -// TRANSLATORS: Die Cutter Missing -"printer-state-reasons.die-cutter-missing" = "Die Cutter Missing"; -// TRANSLATORS: Die Cutter Motor Failure -"printer-state-reasons.die-cutter-motor-failure" = "Die Cutter Motor Failure"; -// TRANSLATORS: Die Cutter Near Limit -"printer-state-reasons.die-cutter-near-limit" = "Die Cutter Near Limit"; -// TRANSLATORS: Die Cutter Offline -"printer-state-reasons.die-cutter-offline" = "Die Cutter Offline"; -// TRANSLATORS: Die Cutter Opened -"printer-state-reasons.die-cutter-opened" = "Die Cutter Opened"; -// TRANSLATORS: Die Cutter Over Temperature -"printer-state-reasons.die-cutter-over-temperature" = "Die Cutter Over Temperature"; -// TRANSLATORS: Die Cutter Power Saver -"printer-state-reasons.die-cutter-power-saver" = "Die Cutter Power Saver"; -// TRANSLATORS: Die Cutter Recoverable Failure -"printer-state-reasons.die-cutter-recoverable-failure" = "Die Cutter Recoverable Failure"; -// TRANSLATORS: Die Cutter Recoverable Storage -"printer-state-reasons.die-cutter-recoverable-storage" = "Die Cutter Recoverable Storage"; -// TRANSLATORS: Die Cutter Removed -"printer-state-reasons.die-cutter-removed" = "Die Cutter Removed"; -// TRANSLATORS: Die Cutter Resource Added -"printer-state-reasons.die-cutter-resource-added" = "Die Cutter Resource Added"; -// TRANSLATORS: Die Cutter Resource Removed -"printer-state-reasons.die-cutter-resource-removed" = "Die Cutter Resource Removed"; -// TRANSLATORS: Die Cutter Thermistor Failure -"printer-state-reasons.die-cutter-thermistor-failure" = "Die Cutter Thermistor Failure"; -// TRANSLATORS: Die Cutter Timing Failure -"printer-state-reasons.die-cutter-timing-failure" = "Die Cutter Timing Failure"; -// TRANSLATORS: Die Cutter Turned Off -"printer-state-reasons.die-cutter-turned-off" = "Die Cutter Turned Off"; -// TRANSLATORS: Die Cutter Turned On -"printer-state-reasons.die-cutter-turned-on" = "Die Cutter Turned On"; -// TRANSLATORS: Die Cutter Under Temperature -"printer-state-reasons.die-cutter-under-temperature" = "Die Cutter Under Temperature"; -// TRANSLATORS: Die Cutter Unrecoverable Failure -"printer-state-reasons.die-cutter-unrecoverable-failure" = "Die Cutter Unrecoverable Failure"; -// TRANSLATORS: Die Cutter Unrecoverable Storage Error -"printer-state-reasons.die-cutter-unrecoverable-storage-error" = "Die Cutter Unrecoverable Storage Error"; -// TRANSLATORS: Die Cutter Warming Up -"printer-state-reasons.die-cutter-warming-up" = "Die Cutter Warming Up"; -// TRANSLATORS: Door Open -"printer-state-reasons.door-open" = "Door Open"; -// TRANSLATORS: Extruder Cooling -"printer-state-reasons.extruder-cooling" = "Extruder Cooling"; -// TRANSLATORS: Extruder Failure -"printer-state-reasons.extruder-failure" = "Extruder Failure"; -// TRANSLATORS: Extruder Heating -"printer-state-reasons.extruder-heating" = "Extruder Heating"; -// TRANSLATORS: Extruder Jam -"printer-state-reasons.extruder-jam" = "Extruder Jam"; -// TRANSLATORS: Extruder Temperature High -"printer-state-reasons.extruder-temperature-high" = "Extruder Temperature High"; -// TRANSLATORS: Extruder Temperature Low -"printer-state-reasons.extruder-temperature-low" = "Extruder Temperature Low"; -// TRANSLATORS: Fan Failure -"printer-state-reasons.fan-failure" = "Fan Failure"; -// TRANSLATORS: Fax Modem Life Almost Over -"printer-state-reasons.fax-modem-life-almost-over" = "Fax Modem Life Almost Over"; -// TRANSLATORS: Fax Modem Life Over -"printer-state-reasons.fax-modem-life-over" = "Fax Modem Life Over"; -// TRANSLATORS: Fax Modem Missing -"printer-state-reasons.fax-modem-missing" = "Fax Modem Missing"; -// TRANSLATORS: Fax Modem Turned Off -"printer-state-reasons.fax-modem-turned-off" = "Fax Modem Turned Off"; -// TRANSLATORS: Fax Modem Turned On -"printer-state-reasons.fax-modem-turned-on" = "Fax Modem Turned On"; -// TRANSLATORS: Folder Added -"printer-state-reasons.folder-added" = "Folder Added"; -// TRANSLATORS: Folder Almost Empty -"printer-state-reasons.folder-almost-empty" = "Folder Almost Empty"; -// TRANSLATORS: Folder Almost Full -"printer-state-reasons.folder-almost-full" = "Folder Almost Full"; -// TRANSLATORS: Folder At Limit -"printer-state-reasons.folder-at-limit" = "Folder At Limit"; -// TRANSLATORS: Folder Closed -"printer-state-reasons.folder-closed" = "Folder Closed"; -// TRANSLATORS: Folder Configuration Change -"printer-state-reasons.folder-configuration-change" = "Folder Configuration Change"; -// TRANSLATORS: Folder Cover Closed -"printer-state-reasons.folder-cover-closed" = "Folder Cover Closed"; -// TRANSLATORS: Folder Cover Open -"printer-state-reasons.folder-cover-open" = "Folder Cover Open"; -// TRANSLATORS: Folder Empty -"printer-state-reasons.folder-empty" = "Folder Empty"; -// TRANSLATORS: Folder Full -"printer-state-reasons.folder-full" = "Folder Full"; -// TRANSLATORS: Folder Interlock Closed -"printer-state-reasons.folder-interlock-closed" = "Folder Interlock Closed"; -// TRANSLATORS: Folder Interlock Open -"printer-state-reasons.folder-interlock-open" = "Folder Interlock Open"; -// TRANSLATORS: Folder Jam -"printer-state-reasons.folder-jam" = "Folder Jam"; -// TRANSLATORS: Folder Life Almost Over -"printer-state-reasons.folder-life-almost-over" = "Folder Life Almost Over"; -// TRANSLATORS: Folder Life Over -"printer-state-reasons.folder-life-over" = "Folder Life Over"; -// TRANSLATORS: Folder Memory Exhausted -"printer-state-reasons.folder-memory-exhausted" = "Folder Memory Exhausted"; -// TRANSLATORS: Folder Missing -"printer-state-reasons.folder-missing" = "Folder Missing"; -// TRANSLATORS: Folder Motor Failure -"printer-state-reasons.folder-motor-failure" = "Folder Motor Failure"; -// TRANSLATORS: Folder Near Limit -"printer-state-reasons.folder-near-limit" = "Folder Near Limit"; -// TRANSLATORS: Folder Offline -"printer-state-reasons.folder-offline" = "Folder Offline"; -// TRANSLATORS: Folder Opened -"printer-state-reasons.folder-opened" = "Folder Opened"; -// TRANSLATORS: Folder Over Temperature -"printer-state-reasons.folder-over-temperature" = "Folder Over Temperature"; -// TRANSLATORS: Folder Power Saver -"printer-state-reasons.folder-power-saver" = "Folder Power Saver"; -// TRANSLATORS: Folder Recoverable Failure -"printer-state-reasons.folder-recoverable-failure" = "Folder Recoverable Failure"; -// TRANSLATORS: Folder Recoverable Storage -"printer-state-reasons.folder-recoverable-storage" = "Folder Recoverable Storage"; -// TRANSLATORS: Folder Removed -"printer-state-reasons.folder-removed" = "Folder Removed"; -// TRANSLATORS: Folder Resource Added -"printer-state-reasons.folder-resource-added" = "Folder Resource Added"; -// TRANSLATORS: Folder Resource Removed -"printer-state-reasons.folder-resource-removed" = "Folder Resource Removed"; -// TRANSLATORS: Folder Thermistor Failure -"printer-state-reasons.folder-thermistor-failure" = "Folder Thermistor Failure"; -// TRANSLATORS: Folder Timing Failure -"printer-state-reasons.folder-timing-failure" = "Folder Timing Failure"; -// TRANSLATORS: Folder Turned Off -"printer-state-reasons.folder-turned-off" = "Folder Turned Off"; -// TRANSLATORS: Folder Turned On -"printer-state-reasons.folder-turned-on" = "Folder Turned On"; -// TRANSLATORS: Folder Under Temperature -"printer-state-reasons.folder-under-temperature" = "Folder Under Temperature"; -// TRANSLATORS: Folder Unrecoverable Failure -"printer-state-reasons.folder-unrecoverable-failure" = "Folder Unrecoverable Failure"; -// TRANSLATORS: Folder Unrecoverable Storage Error -"printer-state-reasons.folder-unrecoverable-storage-error" = "Folder Unrecoverable Storage Error"; -// TRANSLATORS: Folder Warming Up -"printer-state-reasons.folder-warming-up" = "Folder Warming Up"; -// TRANSLATORS: Fuser temperature high -"printer-state-reasons.fuser-over-temp" = "Fuser Over Temp"; -// TRANSLATORS: Fuser temperature low -"printer-state-reasons.fuser-under-temp" = "Fuser Under Temp"; -// TRANSLATORS: Hold New Jobs -"printer-state-reasons.hold-new-jobs" = "Hold New Jobs"; -// TRANSLATORS: Identify Printer -"printer-state-reasons.identify-printer-requested" = "Identify Printer"; -// TRANSLATORS: Imprinter Added -"printer-state-reasons.imprinter-added" = "Imprinter Added"; -// TRANSLATORS: Imprinter Almost Empty -"printer-state-reasons.imprinter-almost-empty" = "Imprinter Almost Empty"; -// TRANSLATORS: Imprinter Almost Full -"printer-state-reasons.imprinter-almost-full" = "Imprinter Almost Full"; -// TRANSLATORS: Imprinter At Limit -"printer-state-reasons.imprinter-at-limit" = "Imprinter At Limit"; -// TRANSLATORS: Imprinter Closed -"printer-state-reasons.imprinter-closed" = "Imprinter Closed"; -// TRANSLATORS: Imprinter Configuration Change -"printer-state-reasons.imprinter-configuration-change" = "Imprinter Configuration Change"; -// TRANSLATORS: Imprinter Cover Closed -"printer-state-reasons.imprinter-cover-closed" = "Imprinter Cover Closed"; -// TRANSLATORS: Imprinter Cover Open -"printer-state-reasons.imprinter-cover-open" = "Imprinter Cover Open"; -// TRANSLATORS: Imprinter Empty -"printer-state-reasons.imprinter-empty" = "Imprinter Empty"; -// TRANSLATORS: Imprinter Full -"printer-state-reasons.imprinter-full" = "Imprinter Full"; -// TRANSLATORS: Imprinter Interlock Closed -"printer-state-reasons.imprinter-interlock-closed" = "Imprinter Interlock Closed"; -// TRANSLATORS: Imprinter Interlock Open -"printer-state-reasons.imprinter-interlock-open" = "Imprinter Interlock Open"; -// TRANSLATORS: Imprinter Jam -"printer-state-reasons.imprinter-jam" = "Imprinter Jam"; -// TRANSLATORS: Imprinter Life Almost Over -"printer-state-reasons.imprinter-life-almost-over" = "Imprinter Life Almost Over"; -// TRANSLATORS: Imprinter Life Over -"printer-state-reasons.imprinter-life-over" = "Imprinter Life Over"; -// TRANSLATORS: Imprinter Memory Exhausted -"printer-state-reasons.imprinter-memory-exhausted" = "Imprinter Memory Exhausted"; -// TRANSLATORS: Imprinter Missing -"printer-state-reasons.imprinter-missing" = "Imprinter Missing"; -// TRANSLATORS: Imprinter Motor Failure -"printer-state-reasons.imprinter-motor-failure" = "Imprinter Motor Failure"; -// TRANSLATORS: Imprinter Near Limit -"printer-state-reasons.imprinter-near-limit" = "Imprinter Near Limit"; -// TRANSLATORS: Imprinter Offline -"printer-state-reasons.imprinter-offline" = "Imprinter Offline"; -// TRANSLATORS: Imprinter Opened -"printer-state-reasons.imprinter-opened" = "Imprinter Opened"; -// TRANSLATORS: Imprinter Over Temperature -"printer-state-reasons.imprinter-over-temperature" = "Imprinter Over Temperature"; -// TRANSLATORS: Imprinter Power Saver -"printer-state-reasons.imprinter-power-saver" = "Imprinter Power Saver"; -// TRANSLATORS: Imprinter Recoverable Failure -"printer-state-reasons.imprinter-recoverable-failure" = "Imprinter Recoverable Failure"; -// TRANSLATORS: Imprinter Recoverable Storage -"printer-state-reasons.imprinter-recoverable-storage" = "Imprinter Recoverable Storage"; -// TRANSLATORS: Imprinter Removed -"printer-state-reasons.imprinter-removed" = "Imprinter Removed"; -// TRANSLATORS: Imprinter Resource Added -"printer-state-reasons.imprinter-resource-added" = "Imprinter Resource Added"; -// TRANSLATORS: Imprinter Resource Removed -"printer-state-reasons.imprinter-resource-removed" = "Imprinter Resource Removed"; -// TRANSLATORS: Imprinter Thermistor Failure -"printer-state-reasons.imprinter-thermistor-failure" = "Imprinter Thermistor Failure"; -// TRANSLATORS: Imprinter Timing Failure -"printer-state-reasons.imprinter-timing-failure" = "Imprinter Timing Failure"; -// TRANSLATORS: Imprinter Turned Off -"printer-state-reasons.imprinter-turned-off" = "Imprinter Turned Off"; -// TRANSLATORS: Imprinter Turned On -"printer-state-reasons.imprinter-turned-on" = "Imprinter Turned On"; -// TRANSLATORS: Imprinter Under Temperature -"printer-state-reasons.imprinter-under-temperature" = "Imprinter Under Temperature"; -// TRANSLATORS: Imprinter Unrecoverable Failure -"printer-state-reasons.imprinter-unrecoverable-failure" = "Imprinter Unrecoverable Failure"; -// TRANSLATORS: Imprinter Unrecoverable Storage Error -"printer-state-reasons.imprinter-unrecoverable-storage-error" = "Imprinter Unrecoverable Storage Error"; -// TRANSLATORS: Imprinter Warming Up -"printer-state-reasons.imprinter-warming-up" = "Imprinter Warming Up"; -// TRANSLATORS: Input Cannot Feed Size Selected -"printer-state-reasons.input-cannot-feed-size-selected" = "Input Cannot Feed Size Selected"; -// TRANSLATORS: Input Manual Input Request -"printer-state-reasons.input-manual-input-request" = "Input Manual Input Request"; -// TRANSLATORS: Input Media Color Change -"printer-state-reasons.input-media-color-change" = "Input Media Color Change"; -// TRANSLATORS: Input Media Form Parts Change -"printer-state-reasons.input-media-form-parts-change" = "Input Media Form Parts Change"; -// TRANSLATORS: Input Media Size Change -"printer-state-reasons.input-media-size-change" = "Input Media Size Change"; -// TRANSLATORS: Input Media Tray Failure -"printer-state-reasons.input-media-tray-failure" = "Input Media Tray Failure"; -// TRANSLATORS: Input Media Tray Feed Error -"printer-state-reasons.input-media-tray-feed-error" = "Input Media Tray Feed Error"; -// TRANSLATORS: Input Media Tray Jam -"printer-state-reasons.input-media-tray-jam" = "Input Media Tray Jam"; -// TRANSLATORS: Input Media Type Change -"printer-state-reasons.input-media-type-change" = "Input Media Type Change"; -// TRANSLATORS: Input Media Weight Change -"printer-state-reasons.input-media-weight-change" = "Input Media Weight Change"; -// TRANSLATORS: Input Pick Roller Failure -"printer-state-reasons.input-pick-roller-failure" = "Input Pick Roller Failure"; -// TRANSLATORS: Input Pick Roller Life Over -"printer-state-reasons.input-pick-roller-life-over" = "Input Pick Roller Life Over"; -// TRANSLATORS: Input Pick Roller Life Warn -"printer-state-reasons.input-pick-roller-life-warn" = "Input Pick Roller Life Warn"; -// TRANSLATORS: Input Pick Roller Missing -"printer-state-reasons.input-pick-roller-missing" = "Input Pick Roller Missing"; -// TRANSLATORS: Input Tray Elevation Failure -"printer-state-reasons.input-tray-elevation-failure" = "Input Tray Elevation Failure"; -// TRANSLATORS: Paper tray is missing -"printer-state-reasons.input-tray-missing" = "Input Tray Missing"; -// TRANSLATORS: Input Tray Position Failure -"printer-state-reasons.input-tray-position-failure" = "Input Tray Position Failure"; -// TRANSLATORS: Inserter Added -"printer-state-reasons.inserter-added" = "Inserter Added"; -// TRANSLATORS: Inserter Almost Empty -"printer-state-reasons.inserter-almost-empty" = "Inserter Almost Empty"; -// TRANSLATORS: Inserter Almost Full -"printer-state-reasons.inserter-almost-full" = "Inserter Almost Full"; -// TRANSLATORS: Inserter At Limit -"printer-state-reasons.inserter-at-limit" = "Inserter At Limit"; -// TRANSLATORS: Inserter Closed -"printer-state-reasons.inserter-closed" = "Inserter Closed"; -// TRANSLATORS: Inserter Configuration Change -"printer-state-reasons.inserter-configuration-change" = "Inserter Configuration Change"; -// TRANSLATORS: Inserter Cover Closed -"printer-state-reasons.inserter-cover-closed" = "Inserter Cover Closed"; -// TRANSLATORS: Inserter Cover Open -"printer-state-reasons.inserter-cover-open" = "Inserter Cover Open"; -// TRANSLATORS: Inserter Empty -"printer-state-reasons.inserter-empty" = "Inserter Empty"; -// TRANSLATORS: Inserter Full -"printer-state-reasons.inserter-full" = "Inserter Full"; -// TRANSLATORS: Inserter Interlock Closed -"printer-state-reasons.inserter-interlock-closed" = "Inserter Interlock Closed"; -// TRANSLATORS: Inserter Interlock Open -"printer-state-reasons.inserter-interlock-open" = "Inserter Interlock Open"; -// TRANSLATORS: Inserter Jam -"printer-state-reasons.inserter-jam" = "Inserter Jam"; -// TRANSLATORS: Inserter Life Almost Over -"printer-state-reasons.inserter-life-almost-over" = "Inserter Life Almost Over"; -// TRANSLATORS: Inserter Life Over -"printer-state-reasons.inserter-life-over" = "Inserter Life Over"; -// TRANSLATORS: Inserter Memory Exhausted -"printer-state-reasons.inserter-memory-exhausted" = "Inserter Memory Exhausted"; -// TRANSLATORS: Inserter Missing -"printer-state-reasons.inserter-missing" = "Inserter Missing"; -// TRANSLATORS: Inserter Motor Failure -"printer-state-reasons.inserter-motor-failure" = "Inserter Motor Failure"; -// TRANSLATORS: Inserter Near Limit -"printer-state-reasons.inserter-near-limit" = "Inserter Near Limit"; -// TRANSLATORS: Inserter Offline -"printer-state-reasons.inserter-offline" = "Inserter Offline"; -// TRANSLATORS: Inserter Opened -"printer-state-reasons.inserter-opened" = "Inserter Opened"; -// TRANSLATORS: Inserter Over Temperature -"printer-state-reasons.inserter-over-temperature" = "Inserter Over Temperature"; -// TRANSLATORS: Inserter Power Saver -"printer-state-reasons.inserter-power-saver" = "Inserter Power Saver"; -// TRANSLATORS: Inserter Recoverable Failure -"printer-state-reasons.inserter-recoverable-failure" = "Inserter Recoverable Failure"; -// TRANSLATORS: Inserter Recoverable Storage -"printer-state-reasons.inserter-recoverable-storage" = "Inserter Recoverable Storage"; -// TRANSLATORS: Inserter Removed -"printer-state-reasons.inserter-removed" = "Inserter Removed"; -// TRANSLATORS: Inserter Resource Added -"printer-state-reasons.inserter-resource-added" = "Inserter Resource Added"; -// TRANSLATORS: Inserter Resource Removed -"printer-state-reasons.inserter-resource-removed" = "Inserter Resource Removed"; -// TRANSLATORS: Inserter Thermistor Failure -"printer-state-reasons.inserter-thermistor-failure" = "Inserter Thermistor Failure"; -// TRANSLATORS: Inserter Timing Failure -"printer-state-reasons.inserter-timing-failure" = "Inserter Timing Failure"; -// TRANSLATORS: Inserter Turned Off -"printer-state-reasons.inserter-turned-off" = "Inserter Turned Off"; -// TRANSLATORS: Inserter Turned On -"printer-state-reasons.inserter-turned-on" = "Inserter Turned On"; -// TRANSLATORS: Inserter Under Temperature -"printer-state-reasons.inserter-under-temperature" = "Inserter Under Temperature"; -// TRANSLATORS: Inserter Unrecoverable Failure -"printer-state-reasons.inserter-unrecoverable-failure" = "Inserter Unrecoverable Failure"; -// TRANSLATORS: Inserter Unrecoverable Storage Error -"printer-state-reasons.inserter-unrecoverable-storage-error" = "Inserter Unrecoverable Storage Error"; -// TRANSLATORS: Inserter Warming Up -"printer-state-reasons.inserter-warming-up" = "Inserter Warming Up"; -// TRANSLATORS: Interlock Closed -"printer-state-reasons.interlock-closed" = "Interlock Closed"; -// TRANSLATORS: Interlock Open -"printer-state-reasons.interlock-open" = "Interlock Open"; -// TRANSLATORS: Interpreter Cartridge Added -"printer-state-reasons.interpreter-cartridge-added" = "Interpreter Cartridge Added"; -// TRANSLATORS: Interpreter Cartridge Removed -"printer-state-reasons.interpreter-cartridge-deleted" = "Interpreter Cartridge Removed"; -// TRANSLATORS: Interpreter Complex Page Encountered -"printer-state-reasons.interpreter-complex-page-encountered" = "Interpreter Complex Page Encountered"; -// TRANSLATORS: Interpreter Memory Decrease -"printer-state-reasons.interpreter-memory-decrease" = "Interpreter Memory Decrease"; -// TRANSLATORS: Interpreter Memory Increase -"printer-state-reasons.interpreter-memory-increase" = "Interpreter Memory Increase"; -// TRANSLATORS: Interpreter Resource Added -"printer-state-reasons.interpreter-resource-added" = "Interpreter Resource Added"; -// TRANSLATORS: Interpreter Resource Deleted -"printer-state-reasons.interpreter-resource-deleted" = "Interpreter Resource Deleted"; -// TRANSLATORS: Printer resource unavailable -"printer-state-reasons.interpreter-resource-unavailable" = "Interpreter Resource Unavailable"; -// TRANSLATORS: Lamp At End of Life -"printer-state-reasons.lamp-at-eol" = "Lamp At End of Life"; -// TRANSLATORS: Lamp Failure -"printer-state-reasons.lamp-failure" = "Lamp Failure"; -// TRANSLATORS: Lamp Near End of Life -"printer-state-reasons.lamp-near-eol" = "Lamp Near End of Life"; -// TRANSLATORS: Laser At End of Life -"printer-state-reasons.laser-at-eol" = "Laser At End of Life"; -// TRANSLATORS: Laser Failure -"printer-state-reasons.laser-failure" = "Laser Failure"; -// TRANSLATORS: Laser Near End of Life -"printer-state-reasons.laser-near-eol" = "Laser Near End of Life"; -// TRANSLATORS: Envelope Maker Added -"printer-state-reasons.make-envelope-added" = "Envelope Maker Added"; -// TRANSLATORS: Envelope Maker Almost Empty -"printer-state-reasons.make-envelope-almost-empty" = "Envelope Maker Almost Empty"; -// TRANSLATORS: Envelope Maker Almost Full -"printer-state-reasons.make-envelope-almost-full" = "Envelope Maker Almost Full"; -// TRANSLATORS: Envelope Maker At Limit -"printer-state-reasons.make-envelope-at-limit" = "Envelope Maker At Limit"; -// TRANSLATORS: Envelope Maker Closed -"printer-state-reasons.make-envelope-closed" = "Envelope Maker Closed"; -// TRANSLATORS: Envelope Maker Configuration Change -"printer-state-reasons.make-envelope-configuration-change" = "Envelope Maker Configuration Change"; -// TRANSLATORS: Envelope Maker Cover Closed -"printer-state-reasons.make-envelope-cover-closed" = "Envelope Maker Cover Closed"; -// TRANSLATORS: Envelope Maker Cover Open -"printer-state-reasons.make-envelope-cover-open" = "Envelope Maker Cover Open"; -// TRANSLATORS: Envelope Maker Empty -"printer-state-reasons.make-envelope-empty" = "Envelope Maker Empty"; -// TRANSLATORS: Envelope Maker Full -"printer-state-reasons.make-envelope-full" = "Envelope Maker Full"; -// TRANSLATORS: Envelope Maker Interlock Closed -"printer-state-reasons.make-envelope-interlock-closed" = "Envelope Maker Interlock Closed"; -// TRANSLATORS: Envelope Maker Interlock Open -"printer-state-reasons.make-envelope-interlock-open" = "Envelope Maker Interlock Open"; -// TRANSLATORS: Envelope Maker Jam -"printer-state-reasons.make-envelope-jam" = "Envelope Maker Jam"; -// TRANSLATORS: Envelope Maker Life Almost Over -"printer-state-reasons.make-envelope-life-almost-over" = "Envelope Maker Life Almost Over"; -// TRANSLATORS: Envelope Maker Life Over -"printer-state-reasons.make-envelope-life-over" = "Envelope Maker Life Over"; -// TRANSLATORS: Envelope Maker Memory Exhausted -"printer-state-reasons.make-envelope-memory-exhausted" = "Envelope Maker Memory Exhausted"; -// TRANSLATORS: Envelope Maker Missing -"printer-state-reasons.make-envelope-missing" = "Envelope Maker Missing"; -// TRANSLATORS: Envelope Maker Motor Failure -"printer-state-reasons.make-envelope-motor-failure" = "Envelope Maker Motor Failure"; -// TRANSLATORS: Envelope Maker Near Limit -"printer-state-reasons.make-envelope-near-limit" = "Envelope Maker Near Limit"; -// TRANSLATORS: Envelope Maker Offline -"printer-state-reasons.make-envelope-offline" = "Envelope Maker Offline"; -// TRANSLATORS: Envelope Maker Opened -"printer-state-reasons.make-envelope-opened" = "Envelope Maker Opened"; -// TRANSLATORS: Envelope Maker Over Temperature -"printer-state-reasons.make-envelope-over-temperature" = "Envelope Maker Over Temperature"; -// TRANSLATORS: Envelope Maker Power Saver -"printer-state-reasons.make-envelope-power-saver" = "Envelope Maker Power Saver"; -// TRANSLATORS: Envelope Maker Recoverable Failure -"printer-state-reasons.make-envelope-recoverable-failure" = "Envelope Maker Recoverable Failure"; -// TRANSLATORS: Envelope Maker Recoverable Storage -"printer-state-reasons.make-envelope-recoverable-storage" = "Envelope Maker Recoverable Storage"; -// TRANSLATORS: Envelope Maker Removed -"printer-state-reasons.make-envelope-removed" = "Envelope Maker Removed"; -// TRANSLATORS: Envelope Maker Resource Added -"printer-state-reasons.make-envelope-resource-added" = "Envelope Maker Resource Added"; -// TRANSLATORS: Envelope Maker Resource Removed -"printer-state-reasons.make-envelope-resource-removed" = "Envelope Maker Resource Removed"; -// TRANSLATORS: Envelope Maker Thermistor Failure -"printer-state-reasons.make-envelope-thermistor-failure" = "Envelope Maker Thermistor Failure"; -// TRANSLATORS: Envelope Maker Timing Failure -"printer-state-reasons.make-envelope-timing-failure" = "Envelope Maker Timing Failure"; -// TRANSLATORS: Envelope Maker Turned Off -"printer-state-reasons.make-envelope-turned-off" = "Envelope Maker Turned Off"; -// TRANSLATORS: Envelope Maker Turned On -"printer-state-reasons.make-envelope-turned-on" = "Envelope Maker Turned On"; -// TRANSLATORS: Envelope Maker Under Temperature -"printer-state-reasons.make-envelope-under-temperature" = "Envelope Maker Under Temperature"; -// TRANSLATORS: Envelope Maker Unrecoverable Failure -"printer-state-reasons.make-envelope-unrecoverable-failure" = "Envelope Maker Unrecoverable Failure"; -// TRANSLATORS: Envelope Maker Unrecoverable Storage Error -"printer-state-reasons.make-envelope-unrecoverable-storage-error" = "Envelope Maker Unrecoverable Storage Error"; -// TRANSLATORS: Envelope Maker Warming Up -"printer-state-reasons.make-envelope-warming-up" = "Envelope Maker Warming Up"; -// TRANSLATORS: Marker Adjusting Print Quality -"printer-state-reasons.marker-adjusting-print-quality" = "Marker Adjusting Print Quality"; -// TRANSLATORS: Marker Cleaner Missing -"printer-state-reasons.marker-cleaner-missing" = "Marker Cleaner Missing"; -// TRANSLATORS: Marker Developer Almost Empty -"printer-state-reasons.marker-developer-almost-empty" = "Marker Developer Almost Empty"; -// TRANSLATORS: Marker Developer Empty -"printer-state-reasons.marker-developer-empty" = "Marker Developer Empty"; -// TRANSLATORS: Marker Developer Missing -"printer-state-reasons.marker-developer-missing" = "Marker Developer Missing"; -// TRANSLATORS: Marker Fuser Missing -"printer-state-reasons.marker-fuser-missing" = "Marker Fuser Missing"; -// TRANSLATORS: Marker Fuser Thermistor Failure -"printer-state-reasons.marker-fuser-thermistor-failure" = "Marker Fuser Thermistor Failure"; -// TRANSLATORS: Marker Fuser Timing Failure -"printer-state-reasons.marker-fuser-timing-failure" = "Marker Fuser Timing Failure"; -// TRANSLATORS: Marker Ink Almost Empty -"printer-state-reasons.marker-ink-almost-empty" = "Low ink"; -// TRANSLATORS: Marker Ink Empty -"printer-state-reasons.marker-ink-empty" = "Ink empty"; -// TRANSLATORS: Marker Ink Missing -"printer-state-reasons.marker-ink-missing" = "Ink missing"; -// TRANSLATORS: Marker Opc Missing -"printer-state-reasons.marker-opc-missing" = "OPC missing"; -// TRANSLATORS: Marker Print Ribbon Almost Empty -"printer-state-reasons.marker-print-ribbon-almost-empty" = "Print ribbon Almost Empty"; -// TRANSLATORS: Marker Print Ribbon Empty -"printer-state-reasons.marker-print-ribbon-empty" = "Print ribbon Empty"; -// TRANSLATORS: Marker Print Ribbon Missing -"printer-state-reasons.marker-print-ribbon-missing" = "Print ribbon missing"; -// TRANSLATORS: Marker Supply Almost Empty -"printer-state-reasons.marker-supply-almost-empty" = "Ink/toner almost empty"; -// TRANSLATORS: Ink/toner empty -"printer-state-reasons.marker-supply-empty" = "Ink/toner empty"; -// TRANSLATORS: Ink/toner low -"printer-state-reasons.marker-supply-low" = "Ink/toner low"; -// TRANSLATORS: Marker Supply Missing -"printer-state-reasons.marker-supply-missing" = "Ink/toner missing"; -// TRANSLATORS: Marker Toner Cartridge Missing -"printer-state-reasons.marker-toner-cartridge-missing" = "Toner cartridge missing"; -// TRANSLATORS: Marker Toner Missing -"printer-state-reasons.marker-toner-missing" = "Toner missing"; -// TRANSLATORS: Ink/toner waste bin almost full -"printer-state-reasons.marker-waste-almost-full" = "Ink/toner waste bin almost full"; -// TRANSLATORS: Ink/toner waste bin full -"printer-state-reasons.marker-waste-full" = "Ink/toner waste bin full"; -// TRANSLATORS: Marker Waste Ink Receptacle Almost Full -"printer-state-reasons.marker-waste-ink-receptacle-almost-full" = "Marker Waste Ink Receptacle Almost Full"; -// TRANSLATORS: Marker Waste Ink Receptacle Full -"printer-state-reasons.marker-waste-ink-receptacle-full" = "Marker Waste Ink Receptacle Full"; -// TRANSLATORS: Marker Waste Ink Receptacle Missing -"printer-state-reasons.marker-waste-ink-receptacle-missing" = "Marker Waste Ink Receptacle Missing"; -// TRANSLATORS: Marker Waste Missing -"printer-state-reasons.marker-waste-missing" = "Ink/toner waste bin missing"; -// TRANSLATORS: Marker Waste Toner Receptacle Almost Full -"printer-state-reasons.marker-waste-toner-receptacle-almost-full" = "Marker Waste Toner Receptacle Almost Full"; -// TRANSLATORS: Marker Waste Toner Receptacle Full -"printer-state-reasons.marker-waste-toner-receptacle-full" = "Marker Waste Toner Receptacle Full"; -// TRANSLATORS: Marker Waste Toner Receptacle Missing -"printer-state-reasons.marker-waste-toner-receptacle-missing" = "Marker Waste Toner Receptacle Missing"; -// TRANSLATORS: Material Empty -"printer-state-reasons.material-empty" = "Material Empty"; -// TRANSLATORS: Material Low -"printer-state-reasons.material-low" = "Material Low"; -// TRANSLATORS: Material Needed -"printer-state-reasons.material-needed" = "Material Needed"; -// TRANSLATORS: Media Drying -"printer-state-reasons.media-drying" = "Media Drying"; -// TRANSLATORS: Paper tray is empty -"printer-state-reasons.media-empty" = "Media Empty"; -// TRANSLATORS: Paper jam -"printer-state-reasons.media-jam" = "Media Jam"; -// TRANSLATORS: Paper tray is almost empty -"printer-state-reasons.media-low" = "Paper tray is almost empty"; -// TRANSLATORS: Load paper -"printer-state-reasons.media-needed" = "Load paper"; -// TRANSLATORS: Media Path Cannot Do 2-Sided Printing -"printer-state-reasons.media-path-cannot-duplex-media-selected" = "Media Path Cannot Do 2-Sided Printing"; -// TRANSLATORS: Media Path Failure -"printer-state-reasons.media-path-failure" = "Media Path Failure"; -// TRANSLATORS: Media Path Input Empty -"printer-state-reasons.media-path-input-empty" = "Media Path Input Empty"; -// TRANSLATORS: Media Path Input Feed Error -"printer-state-reasons.media-path-input-feed-error" = "Media Path Input Feed Error"; -// TRANSLATORS: Media Path Input Jam -"printer-state-reasons.media-path-input-jam" = "Media Path Input Jam"; -// TRANSLATORS: Media Path Input Request -"printer-state-reasons.media-path-input-request" = "Media Path Input Request"; -// TRANSLATORS: Media Path Jam -"printer-state-reasons.media-path-jam" = "Media Path Jam"; -// TRANSLATORS: Media Path Media Tray Almost Full -"printer-state-reasons.media-path-media-tray-almost-full" = "Media Path Media Tray Almost Full"; -// TRANSLATORS: Media Path Media Tray Full -"printer-state-reasons.media-path-media-tray-full" = "Media Path Media Tray Full"; -// TRANSLATORS: Media Path Media Tray Missing -"printer-state-reasons.media-path-media-tray-missing" = "Media Path Media Tray Missing"; -// TRANSLATORS: Media Path Output Feed Error -"printer-state-reasons.media-path-output-feed-error" = "Media Path Output Feed Error"; -// TRANSLATORS: Media Path Output Full -"printer-state-reasons.media-path-output-full" = "Media Path Output Full"; -// TRANSLATORS: Media Path Output Jam -"printer-state-reasons.media-path-output-jam" = "Media Path Output Jam"; -// TRANSLATORS: Media Path Pick Roller Failure -"printer-state-reasons.media-path-pick-roller-failure" = "Media Path Pick Roller Failure"; -// TRANSLATORS: Media Path Pick Roller Life Over -"printer-state-reasons.media-path-pick-roller-life-over" = "Media Path Pick Roller Life Over"; -// TRANSLATORS: Media Path Pick Roller Life Warn -"printer-state-reasons.media-path-pick-roller-life-warn" = "Media Path Pick Roller Life Warn"; -// TRANSLATORS: Media Path Pick Roller Missing -"printer-state-reasons.media-path-pick-roller-missing" = "Media Path Pick Roller Missing"; -// TRANSLATORS: Motor Failure -"printer-state-reasons.motor-failure" = "Motor Failure"; -// TRANSLATORS: Printer going offline -"printer-state-reasons.moving-to-paused" = "Moving To Paused"; -// TRANSLATORS: None -"printer-state-reasons.none" = "None"; -// TRANSLATORS: Optical Photoconductor Life Over -"printer-state-reasons.opc-life-over" = "Optical Photoconductor Life Over"; -// TRANSLATORS: OPC almost at end-of-life -"printer-state-reasons.opc-near-eol" = "Optical Photoconductor Near End-of-life"; -// TRANSLATORS: Check the printer for errors -"printer-state-reasons.other" = "Other"; -// TRANSLATORS: Output bin is almost full -"printer-state-reasons.output-area-almost-full" = "Output Area Almost Full"; -// TRANSLATORS: Output bin is full -"printer-state-reasons.output-area-full" = "Output Area Full"; -// TRANSLATORS: Output Mailbox Select Failure -"printer-state-reasons.output-mailbox-select-failure" = "Output Mailbox Select Failure"; -// TRANSLATORS: Output Media Tray Failure -"printer-state-reasons.output-media-tray-failure" = "Output Media Tray Failure"; -// TRANSLATORS: Output Media Tray Feed Error -"printer-state-reasons.output-media-tray-feed-error" = "Output Media Tray Feed Error"; -// TRANSLATORS: Output Media Tray Jam -"printer-state-reasons.output-media-tray-jam" = "Output Media Tray Jam"; -// TRANSLATORS: Output tray is missing -"printer-state-reasons.output-tray-missing" = "Output Tray Missing"; -// TRANSLATORS: Paused -"printer-state-reasons.paused" = "Paused"; -// TRANSLATORS: Perforater Added -"printer-state-reasons.perforater-added" = "Perforater Added"; -// TRANSLATORS: Perforater Almost Empty -"printer-state-reasons.perforater-almost-empty" = "Perforater Almost Empty"; -// TRANSLATORS: Perforater Almost Full -"printer-state-reasons.perforater-almost-full" = "Perforater Almost Full"; -// TRANSLATORS: Perforater At Limit -"printer-state-reasons.perforater-at-limit" = "Perforater At Limit"; -// TRANSLATORS: Perforater Closed -"printer-state-reasons.perforater-closed" = "Perforater Closed"; -// TRANSLATORS: Perforater Configuration Change -"printer-state-reasons.perforater-configuration-change" = "Perforater Configuration Change"; -// TRANSLATORS: Perforater Cover Closed -"printer-state-reasons.perforater-cover-closed" = "Perforater Cover Closed"; -// TRANSLATORS: Perforater Cover Open -"printer-state-reasons.perforater-cover-open" = "Perforater Cover Open"; -// TRANSLATORS: Perforater Empty -"printer-state-reasons.perforater-empty" = "Perforater Empty"; -// TRANSLATORS: Perforater Full -"printer-state-reasons.perforater-full" = "Perforater Full"; -// TRANSLATORS: Perforater Interlock Closed -"printer-state-reasons.perforater-interlock-closed" = "Perforater Interlock Closed"; -// TRANSLATORS: Perforater Interlock Open -"printer-state-reasons.perforater-interlock-open" = "Perforater Interlock Open"; -// TRANSLATORS: Perforater Jam -"printer-state-reasons.perforater-jam" = "Perforater Jam"; -// TRANSLATORS: Perforater Life Almost Over -"printer-state-reasons.perforater-life-almost-over" = "Perforater Life Almost Over"; -// TRANSLATORS: Perforater Life Over -"printer-state-reasons.perforater-life-over" = "Perforater Life Over"; -// TRANSLATORS: Perforater Memory Exhausted -"printer-state-reasons.perforater-memory-exhausted" = "Perforater Memory Exhausted"; -// TRANSLATORS: Perforater Missing -"printer-state-reasons.perforater-missing" = "Perforater Missing"; -// TRANSLATORS: Perforater Motor Failure -"printer-state-reasons.perforater-motor-failure" = "Perforater Motor Failure"; -// TRANSLATORS: Perforater Near Limit -"printer-state-reasons.perforater-near-limit" = "Perforater Near Limit"; -// TRANSLATORS: Perforater Offline -"printer-state-reasons.perforater-offline" = "Perforater Offline"; -// TRANSLATORS: Perforater Opened -"printer-state-reasons.perforater-opened" = "Perforater Opened"; -// TRANSLATORS: Perforater Over Temperature -"printer-state-reasons.perforater-over-temperature" = "Perforater Over Temperature"; -// TRANSLATORS: Perforater Power Saver -"printer-state-reasons.perforater-power-saver" = "Perforater Power Saver"; -// TRANSLATORS: Perforater Recoverable Failure -"printer-state-reasons.perforater-recoverable-failure" = "Perforater Recoverable Failure"; -// TRANSLATORS: Perforater Recoverable Storage -"printer-state-reasons.perforater-recoverable-storage" = "Perforater Recoverable Storage"; -// TRANSLATORS: Perforater Removed -"printer-state-reasons.perforater-removed" = "Perforater Removed"; -// TRANSLATORS: Perforater Resource Added -"printer-state-reasons.perforater-resource-added" = "Perforater Resource Added"; -// TRANSLATORS: Perforater Resource Removed -"printer-state-reasons.perforater-resource-removed" = "Perforater Resource Removed"; -// TRANSLATORS: Perforater Thermistor Failure -"printer-state-reasons.perforater-thermistor-failure" = "Perforater Thermistor Failure"; -// TRANSLATORS: Perforater Timing Failure -"printer-state-reasons.perforater-timing-failure" = "Perforater Timing Failure"; -// TRANSLATORS: Perforater Turned Off -"printer-state-reasons.perforater-turned-off" = "Perforater Turned Off"; -// TRANSLATORS: Perforater Turned On -"printer-state-reasons.perforater-turned-on" = "Perforater Turned On"; -// TRANSLATORS: Perforater Under Temperature -"printer-state-reasons.perforater-under-temperature" = "Perforater Under Temperature"; -// TRANSLATORS: Perforater Unrecoverable Failure -"printer-state-reasons.perforater-unrecoverable-failure" = "Perforater Unrecoverable Failure"; -// TRANSLATORS: Perforater Unrecoverable Storage Error -"printer-state-reasons.perforater-unrecoverable-storage-error" = "Perforater Unrecoverable Storage Error"; -// TRANSLATORS: Perforater Warming Up -"printer-state-reasons.perforater-warming-up" = "Perforater Warming Up"; -// TRANSLATORS: Platform Cooling -"printer-state-reasons.platform-cooling" = "Platform Cooling"; -// TRANSLATORS: Platform Failure -"printer-state-reasons.platform-failure" = "Platform Failure"; -// TRANSLATORS: Platform Heating -"printer-state-reasons.platform-heating" = "Platform Heating"; -// TRANSLATORS: Platform Temperature High -"printer-state-reasons.platform-temperature-high" = "Platform Temperature High"; -// TRANSLATORS: Platform Temperature Low -"printer-state-reasons.platform-temperature-low" = "Platform Temperature Low"; -// TRANSLATORS: Power Down -"printer-state-reasons.power-down" = "Power Down"; -// TRANSLATORS: Power Up -"printer-state-reasons.power-up" = "Power Up"; -// TRANSLATORS: Printer Reset Manually -"printer-state-reasons.printer-manual-reset" = "Printer Reset Manually"; -// TRANSLATORS: Printer Reset Remotely -"printer-state-reasons.printer-nms-reset" = "Printer Reset Remotely"; -// TRANSLATORS: Printer Ready To Print -"printer-state-reasons.printer-ready-to-print" = "Printer Ready To Print"; -// TRANSLATORS: Puncher Added -"printer-state-reasons.puncher-added" = "Puncher Added"; -// TRANSLATORS: Puncher Almost Empty -"printer-state-reasons.puncher-almost-empty" = "Puncher Almost Empty"; -// TRANSLATORS: Puncher Almost Full -"printer-state-reasons.puncher-almost-full" = "Puncher Almost Full"; -// TRANSLATORS: Puncher At Limit -"printer-state-reasons.puncher-at-limit" = "Puncher At Limit"; -// TRANSLATORS: Puncher Closed -"printer-state-reasons.puncher-closed" = "Puncher Closed"; -// TRANSLATORS: Puncher Configuration Change -"printer-state-reasons.puncher-configuration-change" = "Puncher Configuration Change"; -// TRANSLATORS: Puncher Cover Closed -"printer-state-reasons.puncher-cover-closed" = "Puncher Cover Closed"; -// TRANSLATORS: Puncher Cover Open -"printer-state-reasons.puncher-cover-open" = "Puncher Cover Open"; -// TRANSLATORS: Puncher Empty -"printer-state-reasons.puncher-empty" = "Puncher Empty"; -// TRANSLATORS: Puncher Full -"printer-state-reasons.puncher-full" = "Puncher Full"; -// TRANSLATORS: Puncher Interlock Closed -"printer-state-reasons.puncher-interlock-closed" = "Puncher Interlock Closed"; -// TRANSLATORS: Puncher Interlock Open -"printer-state-reasons.puncher-interlock-open" = "Puncher Interlock Open"; -// TRANSLATORS: Puncher Jam -"printer-state-reasons.puncher-jam" = "Puncher Jam"; -// TRANSLATORS: Puncher Life Almost Over -"printer-state-reasons.puncher-life-almost-over" = "Puncher Life Almost Over"; -// TRANSLATORS: Puncher Life Over -"printer-state-reasons.puncher-life-over" = "Puncher Life Over"; -// TRANSLATORS: Puncher Memory Exhausted -"printer-state-reasons.puncher-memory-exhausted" = "Puncher Memory Exhausted"; -// TRANSLATORS: Puncher Missing -"printer-state-reasons.puncher-missing" = "Puncher Missing"; -// TRANSLATORS: Puncher Motor Failure -"printer-state-reasons.puncher-motor-failure" = "Puncher Motor Failure"; -// TRANSLATORS: Puncher Near Limit -"printer-state-reasons.puncher-near-limit" = "Puncher Near Limit"; -// TRANSLATORS: Puncher Offline -"printer-state-reasons.puncher-offline" = "Puncher Offline"; -// TRANSLATORS: Puncher Opened -"printer-state-reasons.puncher-opened" = "Puncher Opened"; -// TRANSLATORS: Puncher Over Temperature -"printer-state-reasons.puncher-over-temperature" = "Puncher Over Temperature"; -// TRANSLATORS: Puncher Power Saver -"printer-state-reasons.puncher-power-saver" = "Puncher Power Saver"; -// TRANSLATORS: Puncher Recoverable Failure -"printer-state-reasons.puncher-recoverable-failure" = "Puncher Recoverable Failure"; -// TRANSLATORS: Puncher Recoverable Storage -"printer-state-reasons.puncher-recoverable-storage" = "Puncher Recoverable Storage"; -// TRANSLATORS: Puncher Removed -"printer-state-reasons.puncher-removed" = "Puncher Removed"; -// TRANSLATORS: Puncher Resource Added -"printer-state-reasons.puncher-resource-added" = "Puncher Resource Added"; -// TRANSLATORS: Puncher Resource Removed -"printer-state-reasons.puncher-resource-removed" = "Puncher Resource Removed"; -// TRANSLATORS: Puncher Thermistor Failure -"printer-state-reasons.puncher-thermistor-failure" = "Puncher Thermistor Failure"; -// TRANSLATORS: Puncher Timing Failure -"printer-state-reasons.puncher-timing-failure" = "Puncher Timing Failure"; -// TRANSLATORS: Puncher Turned Off -"printer-state-reasons.puncher-turned-off" = "Puncher Turned Off"; -// TRANSLATORS: Puncher Turned On -"printer-state-reasons.puncher-turned-on" = "Puncher Turned On"; -// TRANSLATORS: Puncher Under Temperature -"printer-state-reasons.puncher-under-temperature" = "Puncher Under Temperature"; -// TRANSLATORS: Puncher Unrecoverable Failure -"printer-state-reasons.puncher-unrecoverable-failure" = "Puncher Unrecoverable Failure"; -// TRANSLATORS: Puncher Unrecoverable Storage Error -"printer-state-reasons.puncher-unrecoverable-storage-error" = "Puncher Unrecoverable Storage Error"; -// TRANSLATORS: Puncher Warming Up -"printer-state-reasons.puncher-warming-up" = "Puncher Warming Up"; -// TRANSLATORS: Separation Cutter Added -"printer-state-reasons.separation-cutter-added" = "Separation Cutter Added"; -// TRANSLATORS: Separation Cutter Almost Empty -"printer-state-reasons.separation-cutter-almost-empty" = "Separation Cutter Almost Empty"; -// TRANSLATORS: Separation Cutter Almost Full -"printer-state-reasons.separation-cutter-almost-full" = "Separation Cutter Almost Full"; -// TRANSLATORS: Separation Cutter At Limit -"printer-state-reasons.separation-cutter-at-limit" = "Separation Cutter At Limit"; -// TRANSLATORS: Separation Cutter Closed -"printer-state-reasons.separation-cutter-closed" = "Separation Cutter Closed"; -// TRANSLATORS: Separation Cutter Configuration Change -"printer-state-reasons.separation-cutter-configuration-change" = "Separation Cutter Configuration Change"; -// TRANSLATORS: Separation Cutter Cover Closed -"printer-state-reasons.separation-cutter-cover-closed" = "Separation Cutter Cover Closed"; -// TRANSLATORS: Separation Cutter Cover Open -"printer-state-reasons.separation-cutter-cover-open" = "Separation Cutter Cover Open"; -// TRANSLATORS: Separation Cutter Empty -"printer-state-reasons.separation-cutter-empty" = "Separation Cutter Empty"; -// TRANSLATORS: Separation Cutter Full -"printer-state-reasons.separation-cutter-full" = "Separation Cutter Full"; -// TRANSLATORS: Separation Cutter Interlock Closed -"printer-state-reasons.separation-cutter-interlock-closed" = "Separation Cutter Interlock Closed"; -// TRANSLATORS: Separation Cutter Interlock Open -"printer-state-reasons.separation-cutter-interlock-open" = "Separation Cutter Interlock Open"; -// TRANSLATORS: Separation Cutter Jam -"printer-state-reasons.separation-cutter-jam" = "Separation Cutter Jam"; -// TRANSLATORS: Separation Cutter Life Almost Over -"printer-state-reasons.separation-cutter-life-almost-over" = "Separation Cutter Life Almost Over"; -// TRANSLATORS: Separation Cutter Life Over -"printer-state-reasons.separation-cutter-life-over" = "Separation Cutter Life Over"; -// TRANSLATORS: Separation Cutter Memory Exhausted -"printer-state-reasons.separation-cutter-memory-exhausted" = "Separation Cutter Memory Exhausted"; -// TRANSLATORS: Separation Cutter Missing -"printer-state-reasons.separation-cutter-missing" = "Separation Cutter Missing"; -// TRANSLATORS: Separation Cutter Motor Failure -"printer-state-reasons.separation-cutter-motor-failure" = "Separation Cutter Motor Failure"; -// TRANSLATORS: Separation Cutter Near Limit -"printer-state-reasons.separation-cutter-near-limit" = "Separation Cutter Near Limit"; -// TRANSLATORS: Separation Cutter Offline -"printer-state-reasons.separation-cutter-offline" = "Separation Cutter Offline"; -// TRANSLATORS: Separation Cutter Opened -"printer-state-reasons.separation-cutter-opened" = "Separation Cutter Opened"; -// TRANSLATORS: Separation Cutter Over Temperature -"printer-state-reasons.separation-cutter-over-temperature" = "Separation Cutter Over Temperature"; -// TRANSLATORS: Separation Cutter Power Saver -"printer-state-reasons.separation-cutter-power-saver" = "Separation Cutter Power Saver"; -// TRANSLATORS: Separation Cutter Recoverable Failure -"printer-state-reasons.separation-cutter-recoverable-failure" = "Separation Cutter Recoverable Failure"; -// TRANSLATORS: Separation Cutter Recoverable Storage -"printer-state-reasons.separation-cutter-recoverable-storage" = "Separation Cutter Recoverable Storage"; -// TRANSLATORS: Separation Cutter Removed -"printer-state-reasons.separation-cutter-removed" = "Separation Cutter Removed"; -// TRANSLATORS: Separation Cutter Resource Added -"printer-state-reasons.separation-cutter-resource-added" = "Separation Cutter Resource Added"; -// TRANSLATORS: Separation Cutter Resource Removed -"printer-state-reasons.separation-cutter-resource-removed" = "Separation Cutter Resource Removed"; -// TRANSLATORS: Separation Cutter Thermistor Failure -"printer-state-reasons.separation-cutter-thermistor-failure" = "Separation Cutter Thermistor Failure"; -// TRANSLATORS: Separation Cutter Timing Failure -"printer-state-reasons.separation-cutter-timing-failure" = "Separation Cutter Timing Failure"; -// TRANSLATORS: Separation Cutter Turned Off -"printer-state-reasons.separation-cutter-turned-off" = "Separation Cutter Turned Off"; -// TRANSLATORS: Separation Cutter Turned On -"printer-state-reasons.separation-cutter-turned-on" = "Separation Cutter Turned On"; -// TRANSLATORS: Separation Cutter Under Temperature -"printer-state-reasons.separation-cutter-under-temperature" = "Separation Cutter Under Temperature"; -// TRANSLATORS: Separation Cutter Unrecoverable Failure -"printer-state-reasons.separation-cutter-unrecoverable-failure" = "Separation Cutter Unrecoverable Failure"; -// TRANSLATORS: Separation Cutter Unrecoverable Storage Error -"printer-state-reasons.separation-cutter-unrecoverable-storage-error" = "Separation Cutter Unrecoverable Storage Error"; -// TRANSLATORS: Separation Cutter Warming Up -"printer-state-reasons.separation-cutter-warming-up" = "Separation Cutter Warming Up"; -// TRANSLATORS: Sheet Rotator Added -"printer-state-reasons.sheet-rotator-added" = "Sheet Rotator Added"; -// TRANSLATORS: Sheet Rotator Almost Empty -"printer-state-reasons.sheet-rotator-almost-empty" = "Sheet Rotator Almost Empty"; -// TRANSLATORS: Sheet Rotator Almost Full -"printer-state-reasons.sheet-rotator-almost-full" = "Sheet Rotator Almost Full"; -// TRANSLATORS: Sheet Rotator At Limit -"printer-state-reasons.sheet-rotator-at-limit" = "Sheet Rotator At Limit"; -// TRANSLATORS: Sheet Rotator Closed -"printer-state-reasons.sheet-rotator-closed" = "Sheet Rotator Closed"; -// TRANSLATORS: Sheet Rotator Configuration Change -"printer-state-reasons.sheet-rotator-configuration-change" = "Sheet Rotator Configuration Change"; -// TRANSLATORS: Sheet Rotator Cover Closed -"printer-state-reasons.sheet-rotator-cover-closed" = "Sheet Rotator Cover Closed"; -// TRANSLATORS: Sheet Rotator Cover Open -"printer-state-reasons.sheet-rotator-cover-open" = "Sheet Rotator Cover Open"; -// TRANSLATORS: Sheet Rotator Empty -"printer-state-reasons.sheet-rotator-empty" = "Sheet Rotator Empty"; -// TRANSLATORS: Sheet Rotator Full -"printer-state-reasons.sheet-rotator-full" = "Sheet Rotator Full"; -// TRANSLATORS: Sheet Rotator Interlock Closed -"printer-state-reasons.sheet-rotator-interlock-closed" = "Sheet Rotator Interlock Closed"; -// TRANSLATORS: Sheet Rotator Interlock Open -"printer-state-reasons.sheet-rotator-interlock-open" = "Sheet Rotator Interlock Open"; -// TRANSLATORS: Sheet Rotator Jam -"printer-state-reasons.sheet-rotator-jam" = "Sheet Rotator Jam"; -// TRANSLATORS: Sheet Rotator Life Almost Over -"printer-state-reasons.sheet-rotator-life-almost-over" = "Sheet Rotator Life Almost Over"; -// TRANSLATORS: Sheet Rotator Life Over -"printer-state-reasons.sheet-rotator-life-over" = "Sheet Rotator Life Over"; -// TRANSLATORS: Sheet Rotator Memory Exhausted -"printer-state-reasons.sheet-rotator-memory-exhausted" = "Sheet Rotator Memory Exhausted"; -// TRANSLATORS: Sheet Rotator Missing -"printer-state-reasons.sheet-rotator-missing" = "Sheet Rotator Missing"; -// TRANSLATORS: Sheet Rotator Motor Failure -"printer-state-reasons.sheet-rotator-motor-failure" = "Sheet Rotator Motor Failure"; -// TRANSLATORS: Sheet Rotator Near Limit -"printer-state-reasons.sheet-rotator-near-limit" = "Sheet Rotator Near Limit"; -// TRANSLATORS: Sheet Rotator Offline -"printer-state-reasons.sheet-rotator-offline" = "Sheet Rotator Offline"; -// TRANSLATORS: Sheet Rotator Opened -"printer-state-reasons.sheet-rotator-opened" = "Sheet Rotator Opened"; -// TRANSLATORS: Sheet Rotator Over Temperature -"printer-state-reasons.sheet-rotator-over-temperature" = "Sheet Rotator Over Temperature"; -// TRANSLATORS: Sheet Rotator Power Saver -"printer-state-reasons.sheet-rotator-power-saver" = "Sheet Rotator Power Saver"; -// TRANSLATORS: Sheet Rotator Recoverable Failure -"printer-state-reasons.sheet-rotator-recoverable-failure" = "Sheet Rotator Recoverable Failure"; -// TRANSLATORS: Sheet Rotator Recoverable Storage -"printer-state-reasons.sheet-rotator-recoverable-storage" = "Sheet Rotator Recoverable Storage"; -// TRANSLATORS: Sheet Rotator Removed -"printer-state-reasons.sheet-rotator-removed" = "Sheet Rotator Removed"; -// TRANSLATORS: Sheet Rotator Resource Added -"printer-state-reasons.sheet-rotator-resource-added" = "Sheet Rotator Resource Added"; -// TRANSLATORS: Sheet Rotator Resource Removed -"printer-state-reasons.sheet-rotator-resource-removed" = "Sheet Rotator Resource Removed"; -// TRANSLATORS: Sheet Rotator Thermistor Failure -"printer-state-reasons.sheet-rotator-thermistor-failure" = "Sheet Rotator Thermistor Failure"; -// TRANSLATORS: Sheet Rotator Timing Failure -"printer-state-reasons.sheet-rotator-timing-failure" = "Sheet Rotator Timing Failure"; -// TRANSLATORS: Sheet Rotator Turned Off -"printer-state-reasons.sheet-rotator-turned-off" = "Sheet Rotator Turned Off"; -// TRANSLATORS: Sheet Rotator Turned On -"printer-state-reasons.sheet-rotator-turned-on" = "Sheet Rotator Turned On"; -// TRANSLATORS: Sheet Rotator Under Temperature -"printer-state-reasons.sheet-rotator-under-temperature" = "Sheet Rotator Under Temperature"; -// TRANSLATORS: Sheet Rotator Unrecoverable Failure -"printer-state-reasons.sheet-rotator-unrecoverable-failure" = "Sheet Rotator Unrecoverable Failure"; -// TRANSLATORS: Sheet Rotator Unrecoverable Storage Error -"printer-state-reasons.sheet-rotator-unrecoverable-storage-error" = "Sheet Rotator Unrecoverable Storage Error"; -// TRANSLATORS: Sheet Rotator Warming Up -"printer-state-reasons.sheet-rotator-warming-up" = "Sheet Rotator Warming Up"; -// TRANSLATORS: Printer offline -"printer-state-reasons.shutdown" = "Shutdown"; -// TRANSLATORS: Slitter Added -"printer-state-reasons.slitter-added" = "Slitter Added"; -// TRANSLATORS: Slitter Almost Empty -"printer-state-reasons.slitter-almost-empty" = "Slitter Almost Empty"; -// TRANSLATORS: Slitter Almost Full -"printer-state-reasons.slitter-almost-full" = "Slitter Almost Full"; -// TRANSLATORS: Slitter At Limit -"printer-state-reasons.slitter-at-limit" = "Slitter At Limit"; -// TRANSLATORS: Slitter Closed -"printer-state-reasons.slitter-closed" = "Slitter Closed"; -// TRANSLATORS: Slitter Configuration Change -"printer-state-reasons.slitter-configuration-change" = "Slitter Configuration Change"; -// TRANSLATORS: Slitter Cover Closed -"printer-state-reasons.slitter-cover-closed" = "Slitter Cover Closed"; -// TRANSLATORS: Slitter Cover Open -"printer-state-reasons.slitter-cover-open" = "Slitter Cover Open"; -// TRANSLATORS: Slitter Empty -"printer-state-reasons.slitter-empty" = "Slitter Empty"; -// TRANSLATORS: Slitter Full -"printer-state-reasons.slitter-full" = "Slitter Full"; -// TRANSLATORS: Slitter Interlock Closed -"printer-state-reasons.slitter-interlock-closed" = "Slitter Interlock Closed"; -// TRANSLATORS: Slitter Interlock Open -"printer-state-reasons.slitter-interlock-open" = "Slitter Interlock Open"; -// TRANSLATORS: Slitter Jam -"printer-state-reasons.slitter-jam" = "Slitter Jam"; -// TRANSLATORS: Slitter Life Almost Over -"printer-state-reasons.slitter-life-almost-over" = "Slitter Life Almost Over"; -// TRANSLATORS: Slitter Life Over -"printer-state-reasons.slitter-life-over" = "Slitter Life Over"; -// TRANSLATORS: Slitter Memory Exhausted -"printer-state-reasons.slitter-memory-exhausted" = "Slitter Memory Exhausted"; -// TRANSLATORS: Slitter Missing -"printer-state-reasons.slitter-missing" = "Slitter Missing"; -// TRANSLATORS: Slitter Motor Failure -"printer-state-reasons.slitter-motor-failure" = "Slitter Motor Failure"; -// TRANSLATORS: Slitter Near Limit -"printer-state-reasons.slitter-near-limit" = "Slitter Near Limit"; -// TRANSLATORS: Slitter Offline -"printer-state-reasons.slitter-offline" = "Slitter Offline"; -// TRANSLATORS: Slitter Opened -"printer-state-reasons.slitter-opened" = "Slitter Opened"; -// TRANSLATORS: Slitter Over Temperature -"printer-state-reasons.slitter-over-temperature" = "Slitter Over Temperature"; -// TRANSLATORS: Slitter Power Saver -"printer-state-reasons.slitter-power-saver" = "Slitter Power Saver"; -// TRANSLATORS: Slitter Recoverable Failure -"printer-state-reasons.slitter-recoverable-failure" = "Slitter Recoverable Failure"; -// TRANSLATORS: Slitter Recoverable Storage -"printer-state-reasons.slitter-recoverable-storage" = "Slitter Recoverable Storage"; -// TRANSLATORS: Slitter Removed -"printer-state-reasons.slitter-removed" = "Slitter Removed"; -// TRANSLATORS: Slitter Resource Added -"printer-state-reasons.slitter-resource-added" = "Slitter Resource Added"; -// TRANSLATORS: Slitter Resource Removed -"printer-state-reasons.slitter-resource-removed" = "Slitter Resource Removed"; -// TRANSLATORS: Slitter Thermistor Failure -"printer-state-reasons.slitter-thermistor-failure" = "Slitter Thermistor Failure"; -// TRANSLATORS: Slitter Timing Failure -"printer-state-reasons.slitter-timing-failure" = "Slitter Timing Failure"; -// TRANSLATORS: Slitter Turned Off -"printer-state-reasons.slitter-turned-off" = "Slitter Turned Off"; -// TRANSLATORS: Slitter Turned On -"printer-state-reasons.slitter-turned-on" = "Slitter Turned On"; -// TRANSLATORS: Slitter Under Temperature -"printer-state-reasons.slitter-under-temperature" = "Slitter Under Temperature"; -// TRANSLATORS: Slitter Unrecoverable Failure -"printer-state-reasons.slitter-unrecoverable-failure" = "Slitter Unrecoverable Failure"; -// TRANSLATORS: Slitter Unrecoverable Storage Error -"printer-state-reasons.slitter-unrecoverable-storage-error" = "Slitter Unrecoverable Storage Error"; -// TRANSLATORS: Slitter Warming Up -"printer-state-reasons.slitter-warming-up" = "Slitter Warming Up"; -// TRANSLATORS: Spool Area Full -"printer-state-reasons.spool-area-full" = "Spool Area Full"; -// TRANSLATORS: Stacker Added -"printer-state-reasons.stacker-added" = "Stacker Added"; -// TRANSLATORS: Stacker Almost Empty -"printer-state-reasons.stacker-almost-empty" = "Stacker Almost Empty"; -// TRANSLATORS: Stacker Almost Full -"printer-state-reasons.stacker-almost-full" = "Stacker Almost Full"; -// TRANSLATORS: Stacker At Limit -"printer-state-reasons.stacker-at-limit" = "Stacker At Limit"; -// TRANSLATORS: Stacker Closed -"printer-state-reasons.stacker-closed" = "Stacker Closed"; -// TRANSLATORS: Stacker Configuration Change -"printer-state-reasons.stacker-configuration-change" = "Stacker Configuration Change"; -// TRANSLATORS: Stacker Cover Closed -"printer-state-reasons.stacker-cover-closed" = "Stacker Cover Closed"; -// TRANSLATORS: Stacker Cover Open -"printer-state-reasons.stacker-cover-open" = "Stacker Cover Open"; -// TRANSLATORS: Stacker Empty -"printer-state-reasons.stacker-empty" = "Stacker Empty"; -// TRANSLATORS: Stacker Full -"printer-state-reasons.stacker-full" = "Stacker Full"; -// TRANSLATORS: Stacker Interlock Closed -"printer-state-reasons.stacker-interlock-closed" = "Stacker Interlock Closed"; -// TRANSLATORS: Stacker Interlock Open -"printer-state-reasons.stacker-interlock-open" = "Stacker Interlock Open"; -// TRANSLATORS: Stacker Jam -"printer-state-reasons.stacker-jam" = "Stacker Jam"; -// TRANSLATORS: Stacker Life Almost Over -"printer-state-reasons.stacker-life-almost-over" = "Stacker Life Almost Over"; -// TRANSLATORS: Stacker Life Over -"printer-state-reasons.stacker-life-over" = "Stacker Life Over"; -// TRANSLATORS: Stacker Memory Exhausted -"printer-state-reasons.stacker-memory-exhausted" = "Stacker Memory Exhausted"; -// TRANSLATORS: Stacker Missing -"printer-state-reasons.stacker-missing" = "Stacker Missing"; -// TRANSLATORS: Stacker Motor Failure -"printer-state-reasons.stacker-motor-failure" = "Stacker Motor Failure"; -// TRANSLATORS: Stacker Near Limit -"printer-state-reasons.stacker-near-limit" = "Stacker Near Limit"; -// TRANSLATORS: Stacker Offline -"printer-state-reasons.stacker-offline" = "Stacker Offline"; -// TRANSLATORS: Stacker Opened -"printer-state-reasons.stacker-opened" = "Stacker Opened"; -// TRANSLATORS: Stacker Over Temperature -"printer-state-reasons.stacker-over-temperature" = "Stacker Over Temperature"; -// TRANSLATORS: Stacker Power Saver -"printer-state-reasons.stacker-power-saver" = "Stacker Power Saver"; -// TRANSLATORS: Stacker Recoverable Failure -"printer-state-reasons.stacker-recoverable-failure" = "Stacker Recoverable Failure"; -// TRANSLATORS: Stacker Recoverable Storage -"printer-state-reasons.stacker-recoverable-storage" = "Stacker Recoverable Storage"; -// TRANSLATORS: Stacker Removed -"printer-state-reasons.stacker-removed" = "Stacker Removed"; -// TRANSLATORS: Stacker Resource Added -"printer-state-reasons.stacker-resource-added" = "Stacker Resource Added"; -// TRANSLATORS: Stacker Resource Removed -"printer-state-reasons.stacker-resource-removed" = "Stacker Resource Removed"; -// TRANSLATORS: Stacker Thermistor Failure -"printer-state-reasons.stacker-thermistor-failure" = "Stacker Thermistor Failure"; -// TRANSLATORS: Stacker Timing Failure -"printer-state-reasons.stacker-timing-failure" = "Stacker Timing Failure"; -// TRANSLATORS: Stacker Turned Off -"printer-state-reasons.stacker-turned-off" = "Stacker Turned Off"; -// TRANSLATORS: Stacker Turned On -"printer-state-reasons.stacker-turned-on" = "Stacker Turned On"; -// TRANSLATORS: Stacker Under Temperature -"printer-state-reasons.stacker-under-temperature" = "Stacker Under Temperature"; -// TRANSLATORS: Stacker Unrecoverable Failure -"printer-state-reasons.stacker-unrecoverable-failure" = "Stacker Unrecoverable Failure"; -// TRANSLATORS: Stacker Unrecoverable Storage Error -"printer-state-reasons.stacker-unrecoverable-storage-error" = "Stacker Unrecoverable Storage Error"; -// TRANSLATORS: Stacker Warming Up -"printer-state-reasons.stacker-warming-up" = "Stacker Warming Up"; -// TRANSLATORS: Stapler Added -"printer-state-reasons.stapler-added" = "Stapler Added"; -// TRANSLATORS: Stapler Almost Empty -"printer-state-reasons.stapler-almost-empty" = "Stapler Almost Empty"; -// TRANSLATORS: Stapler Almost Full -"printer-state-reasons.stapler-almost-full" = "Stapler Almost Full"; -// TRANSLATORS: Stapler At Limit -"printer-state-reasons.stapler-at-limit" = "Stapler At Limit"; -// TRANSLATORS: Stapler Closed -"printer-state-reasons.stapler-closed" = "Stapler Closed"; -// TRANSLATORS: Stapler Configuration Change -"printer-state-reasons.stapler-configuration-change" = "Stapler Configuration Change"; -// TRANSLATORS: Stapler Cover Closed -"printer-state-reasons.stapler-cover-closed" = "Stapler Cover Closed"; -// TRANSLATORS: Stapler Cover Open -"printer-state-reasons.stapler-cover-open" = "Stapler Cover Open"; -// TRANSLATORS: Stapler Empty -"printer-state-reasons.stapler-empty" = "Stapler Empty"; -// TRANSLATORS: Stapler Full -"printer-state-reasons.stapler-full" = "Stapler Full"; -// TRANSLATORS: Stapler Interlock Closed -"printer-state-reasons.stapler-interlock-closed" = "Stapler Interlock Closed"; -// TRANSLATORS: Stapler Interlock Open -"printer-state-reasons.stapler-interlock-open" = "Stapler Interlock Open"; -// TRANSLATORS: Stapler Jam -"printer-state-reasons.stapler-jam" = "Stapler Jam"; -// TRANSLATORS: Stapler Life Almost Over -"printer-state-reasons.stapler-life-almost-over" = "Stapler Life Almost Over"; -// TRANSLATORS: Stapler Life Over -"printer-state-reasons.stapler-life-over" = "Stapler Life Over"; -// TRANSLATORS: Stapler Memory Exhausted -"printer-state-reasons.stapler-memory-exhausted" = "Stapler Memory Exhausted"; -// TRANSLATORS: Stapler Missing -"printer-state-reasons.stapler-missing" = "Stapler Missing"; -// TRANSLATORS: Stapler Motor Failure -"printer-state-reasons.stapler-motor-failure" = "Stapler Motor Failure"; -// TRANSLATORS: Stapler Near Limit -"printer-state-reasons.stapler-near-limit" = "Stapler Near Limit"; -// TRANSLATORS: Stapler Offline -"printer-state-reasons.stapler-offline" = "Stapler Offline"; -// TRANSLATORS: Stapler Opened -"printer-state-reasons.stapler-opened" = "Stapler Opened"; -// TRANSLATORS: Stapler Over Temperature -"printer-state-reasons.stapler-over-temperature" = "Stapler Over Temperature"; -// TRANSLATORS: Stapler Power Saver -"printer-state-reasons.stapler-power-saver" = "Stapler Power Saver"; -// TRANSLATORS: Stapler Recoverable Failure -"printer-state-reasons.stapler-recoverable-failure" = "Stapler Recoverable Failure"; -// TRANSLATORS: Stapler Recoverable Storage -"printer-state-reasons.stapler-recoverable-storage" = "Stapler Recoverable Storage"; -// TRANSLATORS: Stapler Removed -"printer-state-reasons.stapler-removed" = "Stapler Removed"; -// TRANSLATORS: Stapler Resource Added -"printer-state-reasons.stapler-resource-added" = "Stapler Resource Added"; -// TRANSLATORS: Stapler Resource Removed -"printer-state-reasons.stapler-resource-removed" = "Stapler Resource Removed"; -// TRANSLATORS: Stapler Thermistor Failure -"printer-state-reasons.stapler-thermistor-failure" = "Stapler Thermistor Failure"; -// TRANSLATORS: Stapler Timing Failure -"printer-state-reasons.stapler-timing-failure" = "Stapler Timing Failure"; -// TRANSLATORS: Stapler Turned Off -"printer-state-reasons.stapler-turned-off" = "Stapler Turned Off"; -// TRANSLATORS: Stapler Turned On -"printer-state-reasons.stapler-turned-on" = "Stapler Turned On"; -// TRANSLATORS: Stapler Under Temperature -"printer-state-reasons.stapler-under-temperature" = "Stapler Under Temperature"; -// TRANSLATORS: Stapler Unrecoverable Failure -"printer-state-reasons.stapler-unrecoverable-failure" = "Stapler Unrecoverable Failure"; -// TRANSLATORS: Stapler Unrecoverable Storage Error -"printer-state-reasons.stapler-unrecoverable-storage-error" = "Stapler Unrecoverable Storage Error"; -// TRANSLATORS: Stapler Warming Up -"printer-state-reasons.stapler-warming-up" = "Stapler Warming Up"; -// TRANSLATORS: Stitcher Added -"printer-state-reasons.stitcher-added" = "Stitcher Added"; -// TRANSLATORS: Stitcher Almost Empty -"printer-state-reasons.stitcher-almost-empty" = "Stitcher Almost Empty"; -// TRANSLATORS: Stitcher Almost Full -"printer-state-reasons.stitcher-almost-full" = "Stitcher Almost Full"; -// TRANSLATORS: Stitcher At Limit -"printer-state-reasons.stitcher-at-limit" = "Stitcher At Limit"; -// TRANSLATORS: Stitcher Closed -"printer-state-reasons.stitcher-closed" = "Stitcher Closed"; -// TRANSLATORS: Stitcher Configuration Change -"printer-state-reasons.stitcher-configuration-change" = "Stitcher Configuration Change"; -// TRANSLATORS: Stitcher Cover Closed -"printer-state-reasons.stitcher-cover-closed" = "Stitcher Cover Closed"; -// TRANSLATORS: Stitcher Cover Open -"printer-state-reasons.stitcher-cover-open" = "Stitcher Cover Open"; -// TRANSLATORS: Stitcher Empty -"printer-state-reasons.stitcher-empty" = "Stitcher Empty"; -// TRANSLATORS: Stitcher Full -"printer-state-reasons.stitcher-full" = "Stitcher Full"; -// TRANSLATORS: Stitcher Interlock Closed -"printer-state-reasons.stitcher-interlock-closed" = "Stitcher Interlock Closed"; -// TRANSLATORS: Stitcher Interlock Open -"printer-state-reasons.stitcher-interlock-open" = "Stitcher Interlock Open"; -// TRANSLATORS: Stitcher Jam -"printer-state-reasons.stitcher-jam" = "Stitcher Jam"; -// TRANSLATORS: Stitcher Life Almost Over -"printer-state-reasons.stitcher-life-almost-over" = "Stitcher Life Almost Over"; -// TRANSLATORS: Stitcher Life Over -"printer-state-reasons.stitcher-life-over" = "Stitcher Life Over"; -// TRANSLATORS: Stitcher Memory Exhausted -"printer-state-reasons.stitcher-memory-exhausted" = "Stitcher Memory Exhausted"; -// TRANSLATORS: Stitcher Missing -"printer-state-reasons.stitcher-missing" = "Stitcher Missing"; -// TRANSLATORS: Stitcher Motor Failure -"printer-state-reasons.stitcher-motor-failure" = "Stitcher Motor Failure"; -// TRANSLATORS: Stitcher Near Limit -"printer-state-reasons.stitcher-near-limit" = "Stitcher Near Limit"; -// TRANSLATORS: Stitcher Offline -"printer-state-reasons.stitcher-offline" = "Stitcher Offline"; -// TRANSLATORS: Stitcher Opened -"printer-state-reasons.stitcher-opened" = "Stitcher Opened"; -// TRANSLATORS: Stitcher Over Temperature -"printer-state-reasons.stitcher-over-temperature" = "Stitcher Over Temperature"; -// TRANSLATORS: Stitcher Power Saver -"printer-state-reasons.stitcher-power-saver" = "Stitcher Power Saver"; -// TRANSLATORS: Stitcher Recoverable Failure -"printer-state-reasons.stitcher-recoverable-failure" = "Stitcher Recoverable Failure"; -// TRANSLATORS: Stitcher Recoverable Storage -"printer-state-reasons.stitcher-recoverable-storage" = "Stitcher Recoverable Storage"; -// TRANSLATORS: Stitcher Removed -"printer-state-reasons.stitcher-removed" = "Stitcher Removed"; -// TRANSLATORS: Stitcher Resource Added -"printer-state-reasons.stitcher-resource-added" = "Stitcher Resource Added"; -// TRANSLATORS: Stitcher Resource Removed -"printer-state-reasons.stitcher-resource-removed" = "Stitcher Resource Removed"; -// TRANSLATORS: Stitcher Thermistor Failure -"printer-state-reasons.stitcher-thermistor-failure" = "Stitcher Thermistor Failure"; -// TRANSLATORS: Stitcher Timing Failure -"printer-state-reasons.stitcher-timing-failure" = "Stitcher Timing Failure"; -// TRANSLATORS: Stitcher Turned Off -"printer-state-reasons.stitcher-turned-off" = "Stitcher Turned Off"; -// TRANSLATORS: Stitcher Turned On -"printer-state-reasons.stitcher-turned-on" = "Stitcher Turned On"; -// TRANSLATORS: Stitcher Under Temperature -"printer-state-reasons.stitcher-under-temperature" = "Stitcher Under Temperature"; -// TRANSLATORS: Stitcher Unrecoverable Failure -"printer-state-reasons.stitcher-unrecoverable-failure" = "Stitcher Unrecoverable Failure"; -// TRANSLATORS: Stitcher Unrecoverable Storage Error -"printer-state-reasons.stitcher-unrecoverable-storage-error" = "Stitcher Unrecoverable Storage Error"; -// TRANSLATORS: Stitcher Warming Up -"printer-state-reasons.stitcher-warming-up" = "Stitcher Warming Up"; -// TRANSLATORS: Partially stopped -"printer-state-reasons.stopped-partly" = "Stopped Partly"; -// TRANSLATORS: Stopping -"printer-state-reasons.stopping" = "Stopping"; -// TRANSLATORS: Subunit Added -"printer-state-reasons.subunit-added" = "Subunit Added"; -// TRANSLATORS: Subunit Almost Empty -"printer-state-reasons.subunit-almost-empty" = "Subunit Almost Empty"; -// TRANSLATORS: Subunit Almost Full -"printer-state-reasons.subunit-almost-full" = "Subunit Almost Full"; -// TRANSLATORS: Subunit At Limit -"printer-state-reasons.subunit-at-limit" = "Subunit At Limit"; -// TRANSLATORS: Subunit Closed -"printer-state-reasons.subunit-closed" = "Subunit Closed"; -// TRANSLATORS: Subunit Cooling Down -"printer-state-reasons.subunit-cooling-down" = "Subunit Cooling Down"; -// TRANSLATORS: Subunit Empty -"printer-state-reasons.subunit-empty" = "Subunit Empty"; -// TRANSLATORS: Subunit Full -"printer-state-reasons.subunit-full" = "Subunit Full"; -// TRANSLATORS: Subunit Life Almost Over -"printer-state-reasons.subunit-life-almost-over" = "Subunit Life Almost Over"; -// TRANSLATORS: Subunit Life Over -"printer-state-reasons.subunit-life-over" = "Subunit Life Over"; -// TRANSLATORS: Subunit Memory Exhausted -"printer-state-reasons.subunit-memory-exhausted" = "Subunit Memory Exhausted"; -// TRANSLATORS: Subunit Missing -"printer-state-reasons.subunit-missing" = "Subunit Missing"; -// TRANSLATORS: Subunit Motor Failure -"printer-state-reasons.subunit-motor-failure" = "Subunit Motor Failure"; -// TRANSLATORS: Subunit Near Limit -"printer-state-reasons.subunit-near-limit" = "Subunit Near Limit"; -// TRANSLATORS: Subunit Offline -"printer-state-reasons.subunit-offline" = "Subunit Offline"; -// TRANSLATORS: Subunit Opened -"printer-state-reasons.subunit-opened" = "Subunit Opened"; -// TRANSLATORS: Subunit Over Temperature -"printer-state-reasons.subunit-over-temperature" = "Subunit Over Temperature"; -// TRANSLATORS: Subunit Power Saver -"printer-state-reasons.subunit-power-saver" = "Subunit Power Saver"; -// TRANSLATORS: Subunit Recoverable Failure -"printer-state-reasons.subunit-recoverable-failure" = "Subunit Recoverable Failure"; -// TRANSLATORS: Subunit Recoverable Storage -"printer-state-reasons.subunit-recoverable-storage" = "Subunit Recoverable Storage"; -// TRANSLATORS: Subunit Removed -"printer-state-reasons.subunit-removed" = "Subunit Removed"; -// TRANSLATORS: Subunit Resource Added -"printer-state-reasons.subunit-resource-added" = "Subunit Resource Added"; -// TRANSLATORS: Subunit Resource Removed -"printer-state-reasons.subunit-resource-removed" = "Subunit Resource Removed"; -// TRANSLATORS: Subunit Thermistor Failure -"printer-state-reasons.subunit-thermistor-failure" = "Subunit Thermistor Failure"; -// TRANSLATORS: Subunit Timing Failure -"printer-state-reasons.subunit-timing-Failure" = "Subunit Timing Failure"; -// TRANSLATORS: Subunit Turned Off -"printer-state-reasons.subunit-turned-off" = "Subunit Turned Off"; -// TRANSLATORS: Subunit Turned On -"printer-state-reasons.subunit-turned-on" = "Subunit Turned On"; -// TRANSLATORS: Subunit Under Temperature -"printer-state-reasons.subunit-under-temperature" = "Subunit Under Temperature"; -// TRANSLATORS: Subunit Unrecoverable Failure -"printer-state-reasons.subunit-unrecoverable-failure" = "Subunit Unrecoverable Failure"; -// TRANSLATORS: Subunit Unrecoverable Storage -"printer-state-reasons.subunit-unrecoverable-storage" = "Subunit Unrecoverable Storage"; -// TRANSLATORS: Subunit Warming Up -"printer-state-reasons.subunit-warming-up" = "Subunit Warming Up"; -// TRANSLATORS: Printer stopped responding -"printer-state-reasons.timed-out" = "Timed Out"; -// TRANSLATORS: Out of toner -"printer-state-reasons.toner-empty" = "Toner Empty"; -// TRANSLATORS: Toner low -"printer-state-reasons.toner-low" = "Toner Low"; -// TRANSLATORS: Trimmer Added -"printer-state-reasons.trimmer-added" = "Trimmer Added"; -// TRANSLATORS: Trimmer Almost Empty -"printer-state-reasons.trimmer-almost-empty" = "Trimmer Almost Empty"; -// TRANSLATORS: Trimmer Almost Full -"printer-state-reasons.trimmer-almost-full" = "Trimmer Almost Full"; -// TRANSLATORS: Trimmer At Limit -"printer-state-reasons.trimmer-at-limit" = "Trimmer At Limit"; -// TRANSLATORS: Trimmer Closed -"printer-state-reasons.trimmer-closed" = "Trimmer Closed"; -// TRANSLATORS: Trimmer Configuration Change -"printer-state-reasons.trimmer-configuration-change" = "Trimmer Configuration Change"; -// TRANSLATORS: Trimmer Cover Closed -"printer-state-reasons.trimmer-cover-closed" = "Trimmer Cover Closed"; -// TRANSLATORS: Trimmer Cover Open -"printer-state-reasons.trimmer-cover-open" = "Trimmer Cover Open"; -// TRANSLATORS: Trimmer Empty -"printer-state-reasons.trimmer-empty" = "Trimmer Empty"; -// TRANSLATORS: Trimmer Full -"printer-state-reasons.trimmer-full" = "Trimmer Full"; -// TRANSLATORS: Trimmer Interlock Closed -"printer-state-reasons.trimmer-interlock-closed" = "Trimmer Interlock Closed"; -// TRANSLATORS: Trimmer Interlock Open -"printer-state-reasons.trimmer-interlock-open" = "Trimmer Interlock Open"; -// TRANSLATORS: Trimmer Jam -"printer-state-reasons.trimmer-jam" = "Trimmer Jam"; -// TRANSLATORS: Trimmer Life Almost Over -"printer-state-reasons.trimmer-life-almost-over" = "Trimmer Life Almost Over"; -// TRANSLATORS: Trimmer Life Over -"printer-state-reasons.trimmer-life-over" = "Trimmer Life Over"; -// TRANSLATORS: Trimmer Memory Exhausted -"printer-state-reasons.trimmer-memory-exhausted" = "Trimmer Memory Exhausted"; -// TRANSLATORS: Trimmer Missing -"printer-state-reasons.trimmer-missing" = "Trimmer Missing"; -// TRANSLATORS: Trimmer Motor Failure -"printer-state-reasons.trimmer-motor-failure" = "Trimmer Motor Failure"; -// TRANSLATORS: Trimmer Near Limit -"printer-state-reasons.trimmer-near-limit" = "Trimmer Near Limit"; -// TRANSLATORS: Trimmer Offline -"printer-state-reasons.trimmer-offline" = "Trimmer Offline"; -// TRANSLATORS: Trimmer Opened -"printer-state-reasons.trimmer-opened" = "Trimmer Opened"; -// TRANSLATORS: Trimmer Over Temperature -"printer-state-reasons.trimmer-over-temperature" = "Trimmer Over Temperature"; -// TRANSLATORS: Trimmer Power Saver -"printer-state-reasons.trimmer-power-saver" = "Trimmer Power Saver"; -// TRANSLATORS: Trimmer Recoverable Failure -"printer-state-reasons.trimmer-recoverable-failure" = "Trimmer Recoverable Failure"; -// TRANSLATORS: Trimmer Recoverable Storage -"printer-state-reasons.trimmer-recoverable-storage" = "Trimmer Recoverable Storage"; -// TRANSLATORS: Trimmer Removed -"printer-state-reasons.trimmer-removed" = "Trimmer Removed"; -// TRANSLATORS: Trimmer Resource Added -"printer-state-reasons.trimmer-resource-added" = "Trimmer Resource Added"; -// TRANSLATORS: Trimmer Resource Removed -"printer-state-reasons.trimmer-resource-removed" = "Trimmer Resource Removed"; -// TRANSLATORS: Trimmer Thermistor Failure -"printer-state-reasons.trimmer-thermistor-failure" = "Trimmer Thermistor Failure"; -// TRANSLATORS: Trimmer Timing Failure -"printer-state-reasons.trimmer-timing-failure" = "Trimmer Timing Failure"; -// TRANSLATORS: Trimmer Turned Off -"printer-state-reasons.trimmer-turned-off" = "Trimmer Turned Off"; -// TRANSLATORS: Trimmer Turned On -"printer-state-reasons.trimmer-turned-on" = "Trimmer Turned On"; -// TRANSLATORS: Trimmer Under Temperature -"printer-state-reasons.trimmer-under-temperature" = "Trimmer Under Temperature"; -// TRANSLATORS: Trimmer Unrecoverable Failure -"printer-state-reasons.trimmer-unrecoverable-failure" = "Trimmer Unrecoverable Failure"; -// TRANSLATORS: Trimmer Unrecoverable Storage Error -"printer-state-reasons.trimmer-unrecoverable-storage-error" = "Trimmer Unrecoverable Storage Error"; -// TRANSLATORS: Trimmer Warming Up -"printer-state-reasons.trimmer-warming-up" = "Trimmer Warming Up"; -// TRANSLATORS: Unknown -"printer-state-reasons.unknown" = "Unknown"; -// TRANSLATORS: Wrapper Added -"printer-state-reasons.wrapper-added" = "Wrapper Added"; -// TRANSLATORS: Wrapper Almost Empty -"printer-state-reasons.wrapper-almost-empty" = "Wrapper Almost Empty"; -// TRANSLATORS: Wrapper Almost Full -"printer-state-reasons.wrapper-almost-full" = "Wrapper Almost Full"; -// TRANSLATORS: Wrapper At Limit -"printer-state-reasons.wrapper-at-limit" = "Wrapper At Limit"; -// TRANSLATORS: Wrapper Closed -"printer-state-reasons.wrapper-closed" = "Wrapper Closed"; -// TRANSLATORS: Wrapper Configuration Change -"printer-state-reasons.wrapper-configuration-change" = "Wrapper Configuration Change"; -// TRANSLATORS: Wrapper Cover Closed -"printer-state-reasons.wrapper-cover-closed" = "Wrapper Cover Closed"; -// TRANSLATORS: Wrapper Cover Open -"printer-state-reasons.wrapper-cover-open" = "Wrapper Cover Open"; -// TRANSLATORS: Wrapper Empty -"printer-state-reasons.wrapper-empty" = "Wrapper Empty"; -// TRANSLATORS: Wrapper Full -"printer-state-reasons.wrapper-full" = "Wrapper Full"; -// TRANSLATORS: Wrapper Interlock Closed -"printer-state-reasons.wrapper-interlock-closed" = "Wrapper Interlock Closed"; -// TRANSLATORS: Wrapper Interlock Open -"printer-state-reasons.wrapper-interlock-open" = "Wrapper Interlock Open"; -// TRANSLATORS: Wrapper Jam -"printer-state-reasons.wrapper-jam" = "Wrapper Jam"; -// TRANSLATORS: Wrapper Life Almost Over -"printer-state-reasons.wrapper-life-almost-over" = "Wrapper Life Almost Over"; -// TRANSLATORS: Wrapper Life Over -"printer-state-reasons.wrapper-life-over" = "Wrapper Life Over"; -// TRANSLATORS: Wrapper Memory Exhausted -"printer-state-reasons.wrapper-memory-exhausted" = "Wrapper Memory Exhausted"; -// TRANSLATORS: Wrapper Missing -"printer-state-reasons.wrapper-missing" = "Wrapper Missing"; -// TRANSLATORS: Wrapper Motor Failure -"printer-state-reasons.wrapper-motor-failure" = "Wrapper Motor Failure"; -// TRANSLATORS: Wrapper Near Limit -"printer-state-reasons.wrapper-near-limit" = "Wrapper Near Limit"; -// TRANSLATORS: Wrapper Offline -"printer-state-reasons.wrapper-offline" = "Wrapper Offline"; -// TRANSLATORS: Wrapper Opened -"printer-state-reasons.wrapper-opened" = "Wrapper Opened"; -// TRANSLATORS: Wrapper Over Temperature -"printer-state-reasons.wrapper-over-temperature" = "Wrapper Over Temperature"; -// TRANSLATORS: Wrapper Power Saver -"printer-state-reasons.wrapper-power-saver" = "Wrapper Power Saver"; -// TRANSLATORS: Wrapper Recoverable Failure -"printer-state-reasons.wrapper-recoverable-failure" = "Wrapper Recoverable Failure"; -// TRANSLATORS: Wrapper Recoverable Storage -"printer-state-reasons.wrapper-recoverable-storage" = "Wrapper Recoverable Storage"; -// TRANSLATORS: Wrapper Removed -"printer-state-reasons.wrapper-removed" = "Wrapper Removed"; -// TRANSLATORS: Wrapper Resource Added -"printer-state-reasons.wrapper-resource-added" = "Wrapper Resource Added"; -// TRANSLATORS: Wrapper Resource Removed -"printer-state-reasons.wrapper-resource-removed" = "Wrapper Resource Removed"; -// TRANSLATORS: Wrapper Thermistor Failure -"printer-state-reasons.wrapper-thermistor-failure" = "Wrapper Thermistor Failure"; -// TRANSLATORS: Wrapper Timing Failure -"printer-state-reasons.wrapper-timing-failure" = "Wrapper Timing Failure"; -// TRANSLATORS: Wrapper Turned Off -"printer-state-reasons.wrapper-turned-off" = "Wrapper Turned Off"; -// TRANSLATORS: Wrapper Turned On -"printer-state-reasons.wrapper-turned-on" = "Wrapper Turned On"; -// TRANSLATORS: Wrapper Under Temperature -"printer-state-reasons.wrapper-under-temperature" = "Wrapper Under Temperature"; -// TRANSLATORS: Wrapper Unrecoverable Failure -"printer-state-reasons.wrapper-unrecoverable-failure" = "Wrapper Unrecoverable Failure"; -// TRANSLATORS: Wrapper Unrecoverable Storage Error -"printer-state-reasons.wrapper-unrecoverable-storage-error" = "Wrapper Unrecoverable Storage Error"; -// TRANSLATORS: Wrapper Warming Up -"printer-state-reasons.wrapper-warming-up" = "Wrapper Warming Up"; -// TRANSLATORS: Idle -"printer-state.3" = "Idle"; -// TRANSLATORS: Processing -"printer-state.4" = "Processing"; -// TRANSLATORS: Stopped -"printer-state.5" = "Stopped"; -// TRANSLATORS: Printer Uptime -"printer-up-time" = "Printer Uptime"; -"processing" = "processing"; -// TRANSLATORS: Proof Print -"proof-print" = "Proof Print"; -// TRANSLATORS: Proof Print Copies -"proof-print-copies" = "Proof Print Copies"; -// TRANSLATORS: Punching -"punching" = "Punching"; -// TRANSLATORS: Punching Locations -"punching-locations" = "Punching Locations"; -// TRANSLATORS: Punching Offset -"punching-offset" = "Punching Offset"; -// TRANSLATORS: Punch Edge -"punching-reference-edge" = "Punch Edge"; -// TRANSLATORS: Bottom -"punching-reference-edge.bottom" = "Bottom"; -// TRANSLATORS: Left -"punching-reference-edge.left" = "Left"; -// TRANSLATORS: Right -"punching-reference-edge.right" = "Right"; -// TRANSLATORS: Top -"punching-reference-edge.top" = "Top"; -"request id is %s-%d (%d file(s))" = "request id is %s-%d (%d file(s))"; -"request-id uses indefinite length" = "request-id uses indefinite length"; -// TRANSLATORS: Requested Attributes -"requested-attributes" = "Requested Attributes"; -// TRANSLATORS: Retry Interval -"retry-interval" = "Retry Interval"; -// TRANSLATORS: Retry Timeout -"retry-time-out" = "Retry Timeout"; -// TRANSLATORS: Save Disposition -"save-disposition" = "Save Disposition"; -// TRANSLATORS: None -"save-disposition.none" = "None"; -// TRANSLATORS: Print and Save -"save-disposition.print-save" = "Print and Save"; -// TRANSLATORS: Save Only -"save-disposition.save-only" = "Save Only"; -// TRANSLATORS: Save Document Format -"save-document-format" = "Save Document Format"; -// TRANSLATORS: Save Info -"save-info" = "Save Info"; -// TRANSLATORS: Save Location -"save-location" = "Save Location"; -// TRANSLATORS: Save Name -"save-name" = "Save Name"; -"scheduler is not running" = "scheduler is not running"; -"scheduler is running" = "scheduler is running"; -// TRANSLATORS: Separator Sheets -"separator-sheets" = "Separator Sheets"; -// TRANSLATORS: Type of Separator Sheets -"separator-sheets-type" = "Type of Separator Sheets"; -// TRANSLATORS: Start and End Sheets -"separator-sheets-type.both-sheets" = "Start and End Sheets"; -// TRANSLATORS: End Sheet -"separator-sheets-type.end-sheet" = "End Sheet"; -// TRANSLATORS: None -"separator-sheets-type.none" = "None"; -// TRANSLATORS: Slip Sheets -"separator-sheets-type.slip-sheets" = "Slip Sheets"; -// TRANSLATORS: Start Sheet -"separator-sheets-type.start-sheet" = "Start Sheet"; -// TRANSLATORS: 2-Sided Printing -"sides" = "2-Sided Printing"; -// TRANSLATORS: Off -"sides.one-sided" = "Off"; -// TRANSLATORS: On (Portrait) -"sides.two-sided-long-edge" = "On (Portrait)"; -// TRANSLATORS: On (Landscape) -"sides.two-sided-short-edge" = "On (Landscape)"; -"stat of %s failed: %s" = "stat of %s failed: %s"; -"status\t\tShow status of daemon and queue." = "status\t\tShow status of daemon and queue."; -// TRANSLATORS: Status Message -"status-message" = "Status Message"; -// TRANSLATORS: Staple -"stitching" = "Staple"; -// TRANSLATORS: Stitching Angle -"stitching-angle" = "Stitching Angle"; -// TRANSLATORS: Stitching Locations -"stitching-locations" = "Stitching Locations"; -// TRANSLATORS: Staple Method -"stitching-method" = "Staple Method"; -// TRANSLATORS: Automatic -"stitching-method.auto" = "Automatic"; -// TRANSLATORS: Crimp -"stitching-method.crimp" = "Crimp"; -// TRANSLATORS: Wire -"stitching-method.wire" = "Wire"; -// TRANSLATORS: Stitching Offset -"stitching-offset" = "Stitching Offset"; -// TRANSLATORS: Staple Edge -"stitching-reference-edge" = "Staple Edge"; -// TRANSLATORS: Bottom -"stitching-reference-edge.bottom" = "Bottom"; -// TRANSLATORS: Left -"stitching-reference-edge.left" = "Left"; -// TRANSLATORS: Right -"stitching-reference-edge.right" = "Right"; -// TRANSLATORS: Top -"stitching-reference-edge.top" = "Top"; -"stopped" = "stopped"; -// TRANSLATORS: Subject -"subject" = "Subject"; -// TRANSLATORS: Subscription Privacy Attributes -"subscription-privacy-attributes" = "Subscription Privacy Attributes"; -// TRANSLATORS: All -"subscription-privacy-attributes.all" = "All"; -// TRANSLATORS: Default -"subscription-privacy-attributes.default" = "Default"; -// TRANSLATORS: None -"subscription-privacy-attributes.none" = "None"; -// TRANSLATORS: Subscription Description -"subscription-privacy-attributes.subscription-description" = "Subscription Description"; -// TRANSLATORS: Subscription Template -"subscription-privacy-attributes.subscription-template" = "Subscription Template"; -// TRANSLATORS: Subscription Privacy Scope -"subscription-privacy-scope" = "Subscription Privacy Scope"; -// TRANSLATORS: All -"subscription-privacy-scope.all" = "All"; -// TRANSLATORS: Default -"subscription-privacy-scope.default" = "Default"; -// TRANSLATORS: None -"subscription-privacy-scope.none" = "None"; -// TRANSLATORS: Owner -"subscription-privacy-scope.owner" = "Owner"; -"system default destination: %s" = "system default destination: %s"; -"system default destination: %s/%s" = "system default destination: %s/%s"; -// TRANSLATORS: T33 Subaddress -"t33-subaddress" = "T33 Subaddress"; -// TRANSLATORS: To Name -"to-name" = "To Name"; -// TRANSLATORS: Transmission Status -"transmission-status" = "Transmission Status"; -// TRANSLATORS: Pending -"transmission-status.3" = "Pending"; -// TRANSLATORS: Pending Retry -"transmission-status.4" = "Pending Retry"; -// TRANSLATORS: Processing -"transmission-status.5" = "Processing"; -// TRANSLATORS: Canceled -"transmission-status.7" = "Canceled"; -// TRANSLATORS: Aborted -"transmission-status.8" = "Aborted"; -// TRANSLATORS: Completed -"transmission-status.9" = "Completed"; -// TRANSLATORS: Cut -"trimming" = "Cut"; -// TRANSLATORS: Cut Position -"trimming-offset" = "Cut Position"; -// TRANSLATORS: Cut Edge -"trimming-reference-edge" = "Cut Edge"; -// TRANSLATORS: Bottom -"trimming-reference-edge.bottom" = "Bottom"; -// TRANSLATORS: Left -"trimming-reference-edge.left" = "Left"; -// TRANSLATORS: Right -"trimming-reference-edge.right" = "Right"; -// TRANSLATORS: Top -"trimming-reference-edge.top" = "Top"; -// TRANSLATORS: Type of Cut -"trimming-type" = "Type of Cut"; -// TRANSLATORS: Draw Line -"trimming-type.draw-line" = "Draw Line"; -// TRANSLATORS: Full -"trimming-type.full" = "Full"; -// TRANSLATORS: Partial -"trimming-type.partial" = "Partial"; -// TRANSLATORS: Perforate -"trimming-type.perforate" = "Perforate"; -// TRANSLATORS: Score -"trimming-type.score" = "Score"; -// TRANSLATORS: Tab -"trimming-type.tab" = "Tab"; -// TRANSLATORS: Cut After -"trimming-when" = "Cut After"; -// TRANSLATORS: Every Document -"trimming-when.after-documents" = "Every Document"; -// TRANSLATORS: Job -"trimming-when.after-job" = "Job"; -// TRANSLATORS: Every Set -"trimming-when.after-sets" = "Every Set"; -// TRANSLATORS: Every Page -"trimming-when.after-sheets" = "Every Page"; -"unknown" = "unknown"; -"untitled" = "untitled"; -"variable-bindings uses indefinite length" = "variable-bindings uses indefinite length"; -// TRANSLATORS: X Accuracy -"x-accuracy" = "X Accuracy"; -// TRANSLATORS: X Dimension -"x-dimension" = "X Dimension"; -// TRANSLATORS: X Offset -"x-offset" = "X Offset"; -// TRANSLATORS: X Origin -"x-origin" = "X Origin"; -// TRANSLATORS: Y Accuracy -"y-accuracy" = "Y Accuracy"; -// TRANSLATORS: Y Dimension -"y-dimension" = "Y Dimension"; -// TRANSLATORS: Y Offset -"y-offset" = "Y Offset"; -// TRANSLATORS: Y Origin -"y-origin" = "Y Origin"; -// TRANSLATORS: Z Accuracy -"z-accuracy" = "Z Accuracy"; -// TRANSLATORS: Z Dimension -"z-dimension" = "Z Dimension"; -// TRANSLATORS: Z Offset -"z-offset" = "Z Offset"; -"{service_domain} Domain name" = "{service_domain} Domain name"; -"{service_hostname} Fully-qualified domain name" = "{service_hostname} Fully-qualified domain name"; -"{service_name} Service instance name" = "{service_name} Service instance name"; -"{service_port} Port number" = "{service_port} Port number"; -"{service_regtype} DNS-SD registration type" = "{service_regtype} DNS-SD registration type"; -"{service_scheme} URI scheme" = "{service_scheme} URI scheme"; -"{service_uri} URI" = "{service_uri} URI"; -"{txt_*} Value of TXT record key" = "{txt_*} Value of TXT record key"; -"{} URI" = "{} URI"; -"~/.cups/lpoptions file names default destination that does not exist." = "~/.cups/lpoptions file names default destination that does not exist."; diff --git a/locale/po2strings.c b/locale/po2strings.c deleted file mode 100644 index 8981490994..0000000000 --- a/locale/po2strings.c +++ /dev/null @@ -1,395 +0,0 @@ -/* - * Convert a GNU gettext .po file to an Apple .strings file. - * - * Copyright © 2020-2024 by OpenPrinting. - * Copyright 2007-2017 by Apple Inc. - * - * Licensed under Apache License v2.0. See the file "LICENSE" for more information. - * - * Usage: - * - * po2strings filename.strings filename.po - * - * Compile with: - * - * gcc -o po2strings po2strings.c `cups-config --libs` - */ - -#include - - -/* - * The .strings file format is simple: - * - * // comment - * "msgid" = "msgstr"; - * - * The GNU gettext .po format is also fairly simple: - * - * #. comment - * msgid "some text" - * msgstr "localized text" - * - * The comment, msgid, and msgstr text can span multiple lines using the form: - * - * #. comment - * #. more comments - * msgid "" - * "some long text" - * msgstr "" - * "localized text spanning " - * "multiple lines" - * - * Both the msgid and msgstr strings use standard C quoting for special - * characters like newline and the double quote character. - */ - -static char *normalize_string(const char *idstr, char *buffer, size_t bufsize); - - -/* - * main() - Convert .po file to .strings. - */ - -int /* O - Exit code */ -main(int argc, /* I - Number of command-line args */ - char *argv[]) /* I - Command-line arguments */ -{ - int i; /* Looping var */ - const char *pofile, /* .po filename */ - *stringsfile; /* .strings filename */ - cups_file_t *po, /* .po file */ - *strings; /* .strings file */ - char s[4096], /* String buffer */ - *ptr, /* Pointer into buffer */ - *temp, /* New string */ - *msgid, /* msgid string */ - *msgstr, /* msgstr string */ - normalized[8192];/* Normalized msgid string */ - size_t length; /* Length of combined strings */ - int use_msgid; /* Use msgid strings for msgstr? */ - - - /* - * Process command-line arguments... - */ - - pofile = NULL; - stringsfile = NULL; - use_msgid = 0; - - for (i = 1; i < argc; i ++) - { - if (!strcmp(argv[i], "-m")) - use_msgid = 1; - else if (argv[i][0] == '-') - { - puts("Usage: po2strings [-m] filename.po filename.strings"); - return (1); - } - else if (!pofile) - pofile = argv[i]; - else if (!stringsfile) - stringsfile = argv[i]; - else - { - puts("Usage: po2strings [-m] filename.po filename.strings"); - return (1); - } - } - - if (!pofile || !stringsfile) - { - puts("Usage: po2strings [-m] filename.po filename.strings"); - return (1); - } - - /* - * Read strings from the .po file and write to the .strings file... - */ - - if ((po = cupsFileOpen(pofile, "r")) == NULL) - { - perror(pofile); - return (1); - } - - if ((strings = cupsFileOpen(stringsfile, "w")) == NULL) - { - perror(stringsfile); - cupsFileClose(po); - return (1); - } - - msgid = msgstr = NULL; - - while (cupsFileGets(po, s, sizeof(s)) != NULL) - { - if (s[0] == '#' && s[1] == '.') - { - /* - * Copy comment string... - */ - - if (msgid && msgstr) - { - /* - * First output the last localization string... - */ - - if (*msgid) - cupsFilePrintf(strings, "\"%s\" = \"%s\";\n", msgid, - (use_msgid || !*msgstr) ? msgid : msgstr); - - free(msgid); - free(msgstr); - msgid = msgstr = NULL; - } - - cupsFilePrintf(strings, "//%s\n", s + 2); - } - else if (s[0] == '#' || !s[0]) - { - /* - * Skip blank and file comment lines... - */ - - continue; - } - else - { - /* - * Strip the trailing quote... - */ - - if ((ptr = strrchr(s, '\"')) == NULL) - continue; - - *ptr = '\0'; - - /* - * Find start of value... - */ - - if ((ptr = strchr(s, '\"')) == NULL) - continue; - - ptr ++; - - /* - * Create or add to a message... - */ - - if (!strncmp(s, "msgid", 5)) - { - /* - * Output previous message as needed... - */ - - if (msgid && msgstr) - { - if (*msgid) - cupsFilePrintf(strings, "\"%s\" = \"%s\";\n", msgid, normalize_string((use_msgid || !*msgstr) ? msgid : msgstr, normalized, sizeof(normalized))); - } - - if (msgid) - free(msgid); - - if (msgstr) - free(msgstr); - - msgid = strdup(ptr); - msgstr = NULL; - } - else if (s[0] == '\"' && (msgid || msgstr)) - { - /* - * Append to current string... - */ - - size_t ptrlen = strlen(ptr); /* Length of string */ - - length = strlen(msgstr ? msgstr : msgid); - - if ((temp = realloc(msgstr ? msgstr : msgid, - length + ptrlen + 1)) == NULL) - { - free(msgid); - if (msgstr) - free(msgstr); - perror("Unable to allocate string"); - return (1); - } - - if (msgstr) - { - /* - * Copy the new portion to the end of the msgstr string - safe - * to use strcpy because the buffer is allocated to the correct - * size... - */ - - msgstr = temp; - - memcpy(msgstr + length, ptr, ptrlen + 1); - } - else - { - /* - * Copy the new portion to the end of the msgid string - safe - * to use strcpy because the buffer is allocated to the correct - * size... - */ - - msgid = temp; - - memcpy(msgid + length, ptr, ptrlen + 1); - } - } - else if (!strncmp(s, "msgstr", 6) && msgid) - { - /* - * Set the string... - */ - - if (msgstr) - free(msgstr); - - if ((msgstr = strdup(ptr)) == NULL) - { - free(msgid); - perror("Unable to allocate msgstr"); - return (1); - } - } - } - } - - if (msgid && msgstr) - { - if (*msgid) - cupsFilePrintf(strings, "\"%s\" = \"%s\";\n", msgid, normalize_string((use_msgid || !*msgstr) ? msgid : msgstr, normalized, sizeof(normalized))); - } - - if (msgid) - free(msgid); - - if (msgstr) - free(msgstr); - - cupsFileClose(po); - cupsFileClose(strings); - - return (0); -} - - -/* - * 'normalize_string()' - Normalize a msgid string. - * - * This function converts ASCII ellipsis and double quotes to their Unicode - * counterparts. - */ - -static char * /* O - Normalized string */ -normalize_string(const char *idstr, /* I - msgid string */ - char *buffer, /* I - Normalized string buffer */ - size_t bufsize) /* I - Size of string buffer */ -{ - char *bufptr = buffer, /* Pointer into buffer */ - *bufend = buffer + bufsize - 3; /* End of buffer */ - int quote = 0, /* Quote direction */ - html = 0; /* HTML text */ - - - while (*idstr && bufptr < bufend) - { - if (!strncmp(idstr, "') - html = 0; - - if (*idstr == '.' && idstr[1] == '.' && idstr[2] == '.') - { - /* - * Convert ... to Unicode ellipsis... - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0xA6; - idstr += 2; - } - else if (!html && *idstr == '\\' && idstr[1] == '\"') - { - if (quote) - { - /* - * Convert second \" to Unicode right (curley) double quote. - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0x9D; - quote = 0; - } - else if (strchr(idstr + 2, '\"') != NULL) - { - /* - * Convert first \" to Unicode left (curley) double quote. - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0x9C; - quote = 1; - } - else - { - /* - * Convert lone \" to Unicode double prime. - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0xB3; - } - - idstr ++; - } - else if (*idstr == '\'') - { - if (strchr(idstr + 1, '\'') == NULL || quote) - { - /* - * Convert second ' (or ' used for a contraction) to Unicode right - * (curley) single quote. - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0x99; - quote = 0; - } - else - { - /* - * Convert first ' to Unicode left (curley) single quote. - */ - - *bufptr++ = (char)0xE2; - *bufptr++ = (char)0x80; - *bufptr++ = (char)0x98; - quote = 1; - } - } - else - *bufptr++ = *idstr; - - idstr ++; - } - - *bufptr = '\0'; - - return (buffer); -} diff --git a/vcnet/config.h b/vcnet/config.h index 404c249292..3460e43552 100644 --- a/vcnet/config.h +++ b/vcnet/config.h @@ -101,8 +101,8 @@ typedef unsigned long useconds_t; * Version of software... */ -#define CUPS_SVERSION "CUPS v2.5.0" -#define CUPS_MINIMAL "CUPS/2.5.0" +#define CUPS_SVERSION "CUPS v2.5b1" +#define CUPS_MINIMAL "CUPS/2.5b1" /* @@ -651,13 +651,6 @@ typedef unsigned long useconds_t; /* #undef HAVE_SYS_VFS_H */ -/* - * Location of macOS localization bundle, if any. - */ - -/* #undef CUPS_BUNDLEDIR */ - - /* * Do we have XPC? */ diff --git a/xcode/config.h b/xcode/config.h index 83cc783d76..ec5b9a1013 100644 --- a/xcode/config.h +++ b/xcode/config.h @@ -19,8 +19,8 @@ * Version of software... */ -#define CUPS_SVERSION "CUPS v2.5.0" -#define CUPS_MINIMAL "CUPS/2.5.0" +#define CUPS_SVERSION "CUPS v2.5b1" +#define CUPS_MINIMAL "CUPS/2.5b1" /* @@ -582,17 +582,6 @@ /* #undef HAVE_SYS_VFS_H */ -/* - * Location of localization bundle, if any. - */ - -#if TARGET_OS_OSX -# define CUPS_BUNDLEDIR "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A" -#else -# define CUPS_BUNDLEDIR "/System/Library/PrivateFrameworks/PrintKit.framework/Versions/A" -#endif /* TARGET_OS_OSX */ - - /* * Do we have XPC? */