intl/icu/source/extra/uconv/resources/root.txt

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 // -*- Coding: utf-8; -*- [all uconv resource files]
michael@0 2 // Copyright (c) 2000-2004 IBM, Inc. and Others.
michael@0 3 //
michael@0 4 // Root translation file for uconv messages.
michael@0 5 // So you want to translate this file??? Great!
michael@0 6 // 1. copy it to a new name [ex: se.txt]
michael@0 7 //
michael@0 8 // 2. You might wish to comment out ALL lines, and then uncomment them
michael@0 9 // as you add translations. That way, you don't inadvertently mark
michael@0 10 // an untranslated English (or whatever) string as already
michael@0 11 // translated. The base translation might change!
michael@0 12 //
michael@0 13 // 3. These files are in UTF-8 format (even though root uses only
michael@0 14 // ASCII)
michael@0 15 //
michael@0 16 // 4. Make note of the location of {0}, {1}, etc.. they are taken from
michael@0 17 // arguments to u_wmsg() in order..
michael@0 18 //
michael@0 19 // 5. Add se.txt to RESSRC= in resfiles.mk and to the project file on
michael@0 20 // the Windows side.
michael@0 21 //
michael@0 22 // 6. Send it in to srl@jtcsv.com or ask on the ICU mailing list! thanks!
michael@0 23
michael@0 24 root
michael@0 25 {
michael@0 26 // uconv errors
michael@0 27
michael@0 28 lcUsageWord { "usage" }
michael@0 29 ucUsageWord { "Usage" }
michael@0 30 usage {
michael@0 31 "{0}: {1} "
michael@0 32 "[ -h, -?, --help ] [ -V, --version ] [ -s, --silent ] [ -v, --verbose ] "
michael@0 33 "[ -l, --list | --list-code code | --default-code | -L, --list-transliterators ] "
michael@0 34 "[ --canon ] [ -x transliteration ] "
michael@0 35 "[ --to-callback callback | -c ] [ --from-callback callback | -i ] [ --callback callback ] "
michael@0 36 "[ --fallback | --no-fallback ] "
michael@0 37 "[ -b, --block-size size ] "
michael@0 38 "[ -f, --from-code code ] [ -t, --to-code code ] "
michael@0 39 "[ --add-signature ] [ --remove-signature ] "
michael@0 40 "[ -o, --output file ] "
michael@0 41 "[ file ... ]\n" }
michael@0 42
michael@0 43 help { "Options: -h, --help print this message\n"
michael@0 44 " -V, --version print the program version\n"
michael@0 45 " -s, --silent suppress messages\n"
michael@0 46 " -v, --verbose display progress information\n"
michael@0 47 " -l, --list list all available encodings\n"
michael@0 48 " --list-code code list only the given encoding\n"
michael@0 49 " --default-code list only the default encoding\n"
michael@0 50 " -L, --list-transliterators list all available transliterators\n"
michael@0 51 " --canon print list in cnvrtrs.txt(5) format\n"
michael@0 52 " -x transliteration run everything through transliteration\n"
michael@0 53 " --to-callback callback use callback on destination encoding\n"
michael@0 54 " -c omit invalid characters from the output\n"
michael@0 55 " --from-callback callback use callback on original encoding\n"
michael@0 56 " -i ignore invalid sequences in the input\n"
michael@0 57 " --callback callback use callback on both encodings\n"
michael@0 58 " -b, --block-size size read size bytes blocks (default: 4096)\n"
michael@0 59 " --fallback use fallback mapping\n"
michael@0 60 " --no-fallback do not use fallback mapping\n"
michael@0 61 " -f, --from-code code set the original encoding\n"
michael@0 62 " -t, --to-code code set the destination encoding\n"
michael@0 63 " --add-signature add a U+FEFF Unicode signature character (BOM)\n"
michael@0 64 " --remove-signature remove a U+FEFF Unicode signature character (BOM)\n"
michael@0 65 " -o, --output file write output to file\n"
michael@0 66 "\n"
michael@0 67 "Callbacks:"
michael@0 68 }
michael@0 69
michael@0 70 cantGetNames { "Couldn''t get available converter names.\n" } // 0: err
michael@0 71 cantGetTag { "Couldn''t get standard tag name: {0}.\n" } // 0: err
michael@0 72
michael@0 73 noSuchCodeset { "Couldn''t find encoding: {0}.\n" } // 0: name of the encoding
michael@0 74 noFromCodeset { "No original encoding set (use -f).\n" }
michael@0 75 noToCodeset { "No destination encoding set (use -t).\n" }
michael@0 76
michael@0 77 badBlockSize { "Bad block size: {0}.\n" } // 0: size of the block
michael@0 78
michael@0 79 cantSetInBinMode { "Couldn't set standard input to binary mode." }
michael@0 80 cantSetOutBinMode { "Couldn't set standard output to binary mode." }
michael@0 81
michael@0 82 cantOpenFromCodeset { "Couldn''t open converter for original encoding {0}: {1}.\n" } // 0:set, 1: err
michael@0 83 cantOpenToCodeset { "Couldn''t open converteur for destination encoding {0}: {1}.\n" } // 0: set, 1: err
michael@0 84
michael@0 85 cantCreateTranslit { "Couldn''t create transliteration \"{0}\": {1}.\n" } // 0: set, 1: err
michael@0 86 cantCreateTranslitParseErr { "Couldn''t create transliteration \"{0}\": {1}, line {2}, offset {3}.\n" } // 0: set, 1: err, 2: line, 3: offset
michael@0 87
michael@0 88 cantSetCallback { "Couldn''t set transcoding callback: {0}.\n" } // 0: err
michael@0 89
michael@0 90 unknownCallback { "Unknown callback: {0}.\n" } // 0: callback name
michael@0 91
michael@0 92 cantOpenInputF { "Couldn''t open input file {0}: {1}.\n" } // 0: file, 1: strerror [OS error string]
michael@0 93 cantCreateOutputF { "Couldn''t create output file {0}: {1}.\n" } // 0: file, 1: strerror [OS error string]
michael@0 94
michael@0 95 cantWrite { "The converted text couldn't be written: {0}.\n" } // 0: OS error string
michael@0 96 cantRead { "Error reading from input file: {0}.\n" } // 0: OS error string
michael@0 97
michael@0 98 problemCvtToU { "Conversion to Unicode from codepage failed at input byte position {0}. Bytes: {1} Error: {2}\n" } // 0: position, 1: bytes, 2: err
michael@0 99 problemCvtFromU { "Conversion from Unicode to codepage failed at input byte position {0}. Unicode: {1} Error: {2}\n"} // 0: position, 1: Unicode, 2: err
michael@0 100 problemCvtFromUOut { "Conversion from Unicode to codepage failed at output byte position {0}. Unicode: {1} Error: {2}\n"} // 0: position, 1: Unicode, 2: err
michael@0 101
michael@0 102 // ICU errors - used by u_wmsg_errorName()
michael@0 103
michael@0 104 U_USING_FALLBACK_ERROR { "Using fallback data" }
michael@0 105 U_USING_DEFAULT_ERROR { "Using default data" }
michael@0 106 U_ZERO_ERROR { "No error has occured" }
michael@0 107 U_ILLEGAL_ARGUMENT_ERROR { "Illegal argument" }
michael@0 108 U_MISSING_RESOURCE_ERROR { "A resource was missing" }
michael@0 109 U_INVALID_FORMAT_ERROR { "Invalid format" }
michael@0 110 U_FILE_ACCESS_ERROR { "Problem accessing that file/object" }
michael@0 111 U_INTERNAL_PROGRAM_ERROR { "Internal program error" }
michael@0 112 U_MESSAGE_PARSE_ERROR { "Parse error on message format" }
michael@0 113 U_MEMORY_ALLOCATION_ERROR { "Out of memory" }
michael@0 114 U_INDEX_OUTOFBOUNDS_ERROR { "An index was out-of-bounds" }
michael@0 115 U_PARSE_ERROR { "Parse error" }
michael@0 116 U_INVALID_CHAR_FOUND { "Invalid character found" }
michael@0 117 U_TRUNCATED_CHAR_FOUND { "Truncated character found" }
michael@0 118 U_ILLEGAL_CHAR_FOUND { "Illegal character found" }
michael@0 119 U_INVALID_TABLE_FORMAT { "Invalid table data format" }
michael@0 120 U_INVALID_TABLE_FILE { "Invalid table data file" }
michael@0 121 U_BUFFER_OVERFLOW_ERROR { "Buffer overflow" }
michael@0 122 U_UNSUPPORTED_ERROR { "A feature was unsupported" }
michael@0 123 U_RESOURCE_TYPE_MISMATCH { "Resource type mismatch" }
michael@0 124 U_ILLEGAL_ESCAPE_SEQUENCE { "Illegal escape sequence found" }
michael@0 125 U_UNSUPPORTED_ESCAPE_SEQUENCE {"Unsupported escape sequence found" }
michael@0 126 }
michael@0 127

mercurial